Tuesday 4 October 2011

SQL SELECT Statement



previousnext

This chapter will explain the SELECT and the SELECT * statements.

The SQL SELECT Statement

The SELECT statement is used to select data from a database.
The result is stored in a result table, called the result-set.

SQL SELECT Syntax

SELECT column_name(s)
FROM table_name
and
SELECT * FROM table_name
NoteNote: SQL is not case sensitive. SELECT is the same as select.

No comments:

Post a Comment