SQL (Structured Query Language) is the standard language for relational database management systems. It allows you to create, read, update, and delete data stored in tables.
SELECT first_name, last_name
FROM employees
WHERE department = 'Sales';
Enter a query below to see a preview of the result (simulation only).