Where Clause
This example shows how to filter results using the WHERE clause. The WHERE clause lets you specify conditions that rows must meet to be included in the results.
Query
SELECT * FROM users WHERE id > 1;
Interactive SQL execution coming soon