Feb 12, 2007 #1 karephul Programmer Joined May 14, 2006 Messages 24 Location 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 Joined Apr 13, 2006 Messages 5,416 Location 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 Joined Feb 15, 2005 Messages 14,912 Location 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