SQL, How To Select Columns, Rows And Join Tables
Selecting Specific Columns From a Table:
SELECT command, used to retrieve information from the database, allows you to select the columns to be including in a query. A query is a request for information, and one of the most common DB operations. Queries are performed by the SELECT command. A SELECT command must have at least two clauses; the first one is SELECT (the columns to retrieve) and second is FROM (the tables which contains those columns). You may place the clauses on the same line or on separate lines but always follow the last clause with a semicolon, e.g.
SELECT DNAME FROM DEPT: