Computer Science, asked by harshit181872apskhal, 5 months ago

Which SQL command is used to display the records from a database table? (1)
Update
Select
Insert​

Answers

Answered by nadhoose
2

Answer:

Select Command is used to display the records from a database table

Answered by adventureisland
0

The SELECT command is used to select data from a database. The information is kept in a section called the result-set.

About SELECT command in SQL :

  • To pick data from a database, use the SELECT command. The data is saved in a results section known as the result-set.
  • The SELECT statement's fundamental syntax is as follows: FROM table name, SELECT column1, column2, column N.
  • The fields of a database whose values you wish to get are column1, column2,... You may use the following format to get a list of all the fields accessible in a field.
Similar questions