40.9k views
5 votes
.This type of SQL statement is used to retrieve the rows from a table?(select,get,read,retrieve)

User Kevinbrink
by
5.4k points

1 Answer

3 votes

Answer: Select

Step-by-step explanation:

The SELECT statement in the structured query language is used to retrieve the row from the table. This statement is basically used to access the desire records from the database table and this query is most frequently use in structured query language.

In this statement it is mandatory to mention the particular table name from which we want to retrieve the given data.

Syntax of SELECT statement is:

SELECT row 1 from table name;

User TheGraeme
by
5.5k points