I have a table with a column called Schedule. It's setup as varchar(120).
Schedule can contain several items at once like 'MO','WE','FR'.
I am trying to do a select like the following
but I can't get any results back.
I'm using MS Sql 2000.
SELECT * from tblMail
where 'MO' IN (Schedule)
Is this possible ?
Thanks.
Randy
Schedule can contain several items at once like 'MO','WE','FR'.
I am trying to do a select like the following
but I can't get any results back.
I'm using MS Sql 2000.
SELECT * from tblMail
where 'MO' IN (Schedule)
Is this possible ?
Thanks.
Randy
Comment