4
To return from values from Drizzled you most commonly use the SELECT
5
command. An example of this would be:
4
Queries retrieve data from a database based on specific criteria. They
5
are performed with the declarative SELECT statement, which has no
6
persistent effects on the database. SELECT simply retrieves data from
7
one or more tables, or expressions.
9
A query includes a list of columns to be included in a result set; an example of this would be: ::
11
SELECT * FROM table_1;
13
SELECT * FROM is an example of using SELECT with a clause. Other keywords and clauses include:
b'\\ No newline at end of file'