Sunday, 1 July 2012

SQL SELECT STATEMENT

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.

Examples:-

SELECT * FROM table_name

SELECT column1,column2 FROM table_name

No comments:

Post a Comment