SQL commands: select
SELECT "column_name" FROM "table_name"
the two keywords that are used are column name and table name:
that will select the particular information from the table...
a particular example can be
select name from employee;
which will show all the names of employees from the employee table....
the two keywords that are used are column name and table name:
that will select the particular information from the table...
a particular example can be
select name from employee;
which will show all the names of employees from the employee table....

0 Comments:
Post a Comment
<< Home