Lesson 11 of 3234%
(Progress persistence is disabled until Phase 9)
SQL
Beginner
Pattern Matching (LIKE)
Search for patterns in text.
Pattern Matching (LIKE)
Search for patterns in text.
Example
-- Find users whose email ends with example.com
SELECT * FROM users WHERE email LIKE '%@example.com';
Test it Yourself