psychodad71
IS-IT--Management
My table contains a field (m_akt) which discribes the day when to start a DTS-Paket. This works fine when to start once a month. I would like to insert 1,15,25 in this field to start the paket on the first, the fifteens and the twentyfifth a month. But this does not work.
Here is my query:
SELECT *
FROM DTS_Paket
WHERE (cast(DAY(GETDATE())as varchar(2)) in (m_akt))
Any ideas ?
Here is my query:
SELECT *
FROM DTS_Paket
WHERE (cast(DAY(GETDATE())as varchar(2)) in (m_akt))
Any ideas ?