I am try select from mysql database with this
select * from mytable where where name like '%job's you%');
It's give me error message. How to fix it? thank for you help!
I am try select from mysql database with this
select * from mytable where where name like '%job's you%');
It's give me error message. How to fix it? thank for you help!
The ' in job's is escaping your query and the ) shouldn't be there. Try:
select * from mytable where where name like '%job\'s you%';
You have two time where , an improper ) and you have a single quote inside so you should wrap with double quotes
select * from mytable where name like "%job's you%";
The ' in "job's" is escaping your query, you can try:
select * from mytable where where name like "%job's you%"