


The LIKE function is used to search for patterns in text data.
% -> Represents any number of characters (including zero).
_ → Represents a single character.
SELECT column1, column2 FROM table_name WHERE column_name LIKE 'pattern'; SELECT * FROM Students WHERE Age LIKE '2%'; Question number:
Contact
Donate
About
Privacy Policy
Changelog