SQL TUTORIALS-
SQL LIKE Operator
Introduction-
How To Use SQL LIKE Operator Explained with Examples | SQL Pattern Matching
✅SQL LIKE operator is used to search for a specified pattern in a column. It works with WHERE and is commonly used in SELECT, UPDATE, or DELETE statements..mostly Wildcard Symbols in LIKE.EXAMPLE-'a%' = starts with "a" AND 'a_' = "a" + one character.
-✅Symbols in LIKE:- %, _,
| ID | Name | CITY |
|---|---|---|
| 1 | ANNI | PUNE |
| 2 | SUJAN | MUMBAI |
| 3 | BOULT | DELHI |