The SELECT Clause
In this lesson, we will take a look at the SELECT statement.
We'll cover the following...
The SELECT clause
The SQL SELECT statement is used to fetch the data from a database table that returns this data in the form of a result table. These result tables are called result-sets.
Syntax
The basic syntax of the SELECT
statement is as follows:
SELECT column1, column2, ... columnN
...