= SQL Select =

The '''`SELECT`''' statement subsets the data of a table.

<<TableOfContents>>

----



== Usage ==

{{{
SELECT col1, col2, col3 FROM table;
SELECT col1, col2, col3 FROM table WHERE col4=1;
}}}

To keep all columns, specify a star (`*`).

The `WHERE` clause accepts any [[SQL/Expressions|expression]].



----
CategoryRicottone