Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Boolean
4. Boolean – querying the table
Date and time
Summary

Instruction

Excellent! You may, of course, use the boolean type in your SELECT statements:

SELECT
  *
FROM verification
WHERE is_verified = false;

The above query will select all users that have not been verified.

Exercise

Let's see which users are verified. Select all user_id values where the users have been verified (column is_verified).