Computer Science, asked by pmteja20, 6 months ago

------------------ command is used to retrieve data from a database.

Answers

Answered by khaninayath302
7

Answer:

Select statements are used to retrieve data from SQL tables. An asterisk after the word "select" means retrieve all fields (columns). The name of the table from which you are retrieving data is specified in the From clause. Use a semicolon to signify the end of a SQL statement.

Answered by kavyapsynergy
0

SQL SELECT command is used to retrieve data from a database.

SQL SELECT

  • In Structured Query Language, the SELECT command is the most regularly used command. It's used to look up information in one or more database tables and views. It also obtains the data that meets the criteria we specify.
  • We may also obtain a specific record from a certain column of the table by using this command. A result-set table is a table that contains the record returned by the SELECT command

Similar questions