212k views
2 votes
The SQL command used to select attributes from rows in one or more tables is _____.

User Iterniam
by
5.0k points

1 Answer

3 votes

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;

User Chemik
by
5.7k points