Skip to main content
Practice

5

sql

-- View all clients
SELECT * FROM clients;

-- Find clients missing an email
SELECT name
FROM clients
WHERE email IS NULL;

-- Find clients who provided an email
SELECT name
FROM clients
WHERE email IS NOT NULL;

Want to learn more?

Join CodeFriends Plus membership or enroll in a course to start your journey.