Hi, I am using mysql 5.0.67 and am using the following to find the made up term terewS
Code:
SELECT ID, summary, category FROM news WHERE (lcase(concat(ID, summary, category)) LIKE '%terews%')
the above code does not work, but the following does:
Code:
SELECT ID, summary, category FROM news WHERE (lcase(concat(ID, summary, category)) LIKE '%terewS%')
Anyone know what I am doing wrong? I recently ported all of my data over from my MySQL database 4.0 to 5.0.
The code does work with the 4.0 database. I am looking into it. If I figure out the answer before anyone else does I will post a reply with the solution.
Bookmarks