Executing QueriesΒΆ

‘TODO’

SELECT * FROM table_name;

‘TODO’

Keywords and clauses include:

For example:

SELECT first_column_name, second_column_name
FROM table_name
WHERE first_column_name > 1000;

‘TODO’

Previous topic

Examples

Next topic

WHERE

This Page