Skip to content

Commit

Permalink
add: wild cards
Browse files Browse the repository at this point in the history
  • Loading branch information
thutasann committed Jan 29, 2025
1 parent 5ad6f2d commit 30455fe
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sql/full_course/clause/wild_cards.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
SELECT * FROM employees
WHERE first_name LIKE "%h%"

SELECT * FROM employees
WHERE hire_date LIKE "2025%"

SELECT * FROM employees
WHERE job LIKE "_anage_"

SELECT * FROM employees
WHERE job LIKE "__o%"

0 comments on commit 30455fe

Please sign in to comment.