DarkPrince2005 Posted October 26, 2007 Share Posted October 26, 2007 I've got two web pages... The first one enables the user to select a month from a drop down list. the second then generates a report depending on the selected month, but it also has to generate the previous months report for comparison. Ok the current months query would look like: "Select * from dis where monthname(Date_Saved) like 'September'; But I am having trouble with the previous month's query: "Select * from dis where monthname(Date_Saved) like '9-1'; (where the 9 is gathered from the dropdownlist as the value for September) Quote Link to comment Share on other sites More sharing options...
fenway Posted October 26, 2007 Share Posted October 26, 2007 You need to use Date_Saved - INTERVAL 1 MONTH. Quote Link to comment Share on other sites More sharing options...
DarkPrince2005 Posted October 28, 2007 Author Share Posted October 28, 2007 Thanx for the help Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.