Feb 12, 2007 #1 karephul Programmer May 14, 2006 24 US I have a relation in which I am maintaing all the registered users and have a column date which shows the joining date. How can I query the table like list all the users registered in a specific month ?
I have a relation in which I am maintaing all the registered users and have a column date which shows the joining date. How can I query the table like list all the users registered in a specific month ?
Feb 12, 2007 #2 AlexCuse Programmer Apr 13, 2006 5,416 US Something like this (for february)? Code: select * from Table where month(DateColumn) = 2 Ignorance of certain subjects is a great part of wisdom Upvote 0 Downvote
Something like this (for february)? Code: select * from Table where month(DateColumn) = 2 Ignorance of certain subjects is a great part of wisdom
Feb 12, 2007 #3 gmmastros Programmer Feb 15, 2005 14,902 US Can you show some sample data and expected results? -George Strong and bitter words indicate a weak cause. - Fortune cookie wisdom Upvote 0 Downvote
Can you show some sample data and expected results? -George Strong and bitter words indicate a weak cause. - Fortune cookie wisdom