Please enable JavaScript to use CodeHS

CodeHS Glossary


Where General

a clause in SQL that allows you to filter results of s SELECT with certain conditions.

SELECT *
FROM Table
WHERE condition;

Make sure to use quotes around strings (e.g., names of column, but not actual numbers like ids) when querying. Also, by convention, remind students to put all SQL commands on a new line Example:

SELECT *
FROM Table
WHERE name = “Ravenclaw”;