Sql query to display [SIZE]
Posted: Fri Aug 26, 2005 7:18 am
I'd like to run a query that would search the post table for [SIZE] bbcode.
This works to list all posts with my name in it. How would I modify it to search for [SIZE].
SELECT *
FROM post
WHERE pagetext
LIKE '%Andy%'
ORDER BY threadid DESC;
This works to list all posts with my name in it. How would I modify it to search for [SIZE].
SELECT *
FROM post
WHERE pagetext
LIKE '%Andy%'
ORDER BY threadid DESC;