B. Name the query that is used to do the following.
1. Select the data from one or more tables and then display it in the order in which the user
wants to display it.
Answers
Answered by
1
Answer:
SELECT query is used to retrieve data from a table. It is the most used SQL query. We can retrieve complete table data, or partial by specifying conditions using the WHERE clause.
Syntax of SELECT query
SELECT query is used to retieve records from a table. We can specify the names of the columns which we want in the resultset.
Similar questions