Hello there, I have a database related to different fonts. There are millions of records in the database. Now I want to fetch the specific record from the specific table in the database. Can anyone tell me how it possible. Thanks in advance. |
You will need to use a WHERE on your SELECT statement. The condition used in the WHERE clause will be dependent on your database schema. If your table has a primary key then the form will be SELECT column FROM table WHERE pk = val There are many online SQL tutorials. You may benefit from googling "SQL tutorial" and going through the resources. HTH Thank you so much for helping me. I will follow the following instructions to solve my problem.
(14 Oct '22, 07:25)
sorhelene2
|