SQL Select
The SELECT statement subsets the data of a table.
Contents
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 expression.
The SELECT statement subsets the data of a table.
Contents
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 expression.
SQL/Select (last edited 2023-06-23 03:08:13 by DominicRicottone)