SQL

SQL Select

19/08/2008 04:26
    The SQL SELECT Statement The SELECT statement is used to select data from a table. The tabular result is stored in a result table (called the result-set). Syntax SELECT column_name(s) FROM table_name Note: SQL...

—————

SQL Where

19/08/2008 04:23
  The WHERE clause is used to specify a selection criterion. The WHERE Clause  To conditionally select data from a table, a WHERE clause can be added to the SELECT statement. Syntax SELECT column FROM table WHERE column operator value ...

—————