Forum Moderators: coopster
SELECT * FROM blog_posts WHERE keywords CONTAINS 'design' ORDER BY timestamp
but that gave a query error
so say I have a row where keywords = "ewoinfd cweowm wo design fwpom dwopkjo weo"
I want the query to return that row
SELECT * FROM blog_posts WHERE keywords LIKE '%design%' ORDER BY timestamp
I had a similar prob to ocelot
I spent a whole night tryin to find the right answer and all that was missing from my script was a couple of percentage signs :: rolls eyes ::
cheers :)