Viewing 2 posts - 1 through 2 (of 2 total)
SELECT M.last_name, M.first_name
FROM Members AS M
WHERE M.birth_date BETWEEN CAST(CURRENT_TIMESTAMP AS DATE)
AND DATEADD (DD, 30, CAST(CURRENT_TIMESTAMP AS DATE));
Thank you for cleaning it up, and the CURRENT_TIMESTAMP tip. Also, this query...
September 23, 2012 at 3:55 pm
#1541244
I got it thanks. I had the cast statements wrong. I don't know if this is more complicated but I figured it out.
SELECT ...
September 18, 2012 at 3:19 pm
#1539307