Selecting
Specific Columns
Specific columns can be selected by using SQL
select statement.
Example:
select department_id, department_name from
departments;
In the above example , out of all the columns
in a table departments only department_id,department_name are selected.
Columns are show in the order they are
selected.
An Example below: