Forum Moderators: coopster
SELECT * FROM myTable WHERE myField LIKE 'thu, %' OR myField LIKE '% thu,%' OR myField LIKE '%, thu'
it will only return records that either contain
1) thu, **********
2) **, thu, **
3) ***, thu
and will not return any row that says "rthuxx"
[edited by: Anyango at 6:36 am (utc) on Nov. 11, 2008]