SELECT * FROM <table name> WHERE (CONVERT(<column name> USING utf8) LIKE '%textbox%' OR CONVERT(<column name> USING utf8) LIKE '%textbox%' OR .........
- Anant Kumar Singh
Select * from tblproduct where Concat(field1, '', field2, '', fieldn) like "%textbox%"
or
Using MATCH and AGAINST in mysql
SELECT * FROM tblproduct WHERE MATCH (field1, field2, field3) AGAINST ('textbox')
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
SELECT * FROM <table name> WHERE (CONVERT(<column name> USING utf8) LIKE '%textbox%' OR CONVERT(<column name> USING utf8) LIKE '%textbox%' OR .........
- Anant Kumar Singh