Login
Remember
Register
Ask a Question
Query to select all records with "bar" in their name?
0
votes
asked
Dec 15, 2020
in
Sql
by
SakshiSharma
Query to select all records with "bar" in their name?
SELECT * FROM people WHERE name = "%bar%";
SELECT * FROM people WHERE name LIKE "%bar%";
SELECT * FROM people WHERE name IN ("bar");
SELECT * FROM people WHERE name = "_bar_"
#sql-query
Please
log in
or
register
to answer this question.
0
Answers
...