1 SELECT & WHERE
SQL reads rows from tables. SELECT chooses columns; WHERE filters rows. List columns explicitly rather than using *.
SELECT name, email
FROM users
WHERE country = 'FI';
SELECT, WHERE, ORDER BY and basic data changes.
SQL reads rows from tables. SELECT chooses columns; WHERE filters rows. List columns explicitly rather than using *.
SELECT name, email
FROM users
WHERE country = 'FI';
Sort results with ORDER BY (ASC/DESC) and cap them with LIMIT.
SELECT name, score
FROM players
ORDER BY score DESC
LIMIT 10;
Change data with INSERT, UPDATE and DELETE. Always include a WHERE on updates and deletes, or you change every row.
INSERT INTO users (name, country) VALUES ('Ada', 'GB');
UPDATE users SET country = 'UK' WHERE name = 'Ada';
DELETE FROM users WHERE name = 'Ada';
7 tasks across 3 pages — multiple-choice and fill-in (type the answer). Score 70% or higher to earn your certificate.
🔒 Pass the quiz above (70%+) to unlock your downloadable certificate.
Congratulations! Enter your name to generate your certificate.