Answer:
The correct answer for the given question is “SELECT command”
Step-by-step explanation:
Select command is used to retrieved the record from the database
It is used to fetch the rows from from in one or more tables
Select command is an DQL command
The syntax of using select command is
SELECT FIELDNAME from TABLENAME;
EXAMPLE :
Suppose we have to fetch the record from 2 table
SELECT table1.*, table2.* /* select the all field of table 1 and table2 */
FROM
table1, table2;