SQL Keywords

All SQL topics
∙ Topic

SQL Keywords

SQL keywords are reserved or commonly used words that define commands, clauses, conditions, joins, grouping, sorting, and database operations.

📝Example Query
SELECT department, COUNT(*) AS employee_count
FROM employees
WHERE active = TRUE
GROUP BY department
HAVING COUNT(*) >= 5
ORDER BY employee_count DESC;
sql-keywords.sql
📝 Edit Code
👁 Preview
💡 This preview does not execute SQL; itÒ€ℒs for reading/editing the query.