jbpunjabi Posted June 4, 2003 Share Posted June 4, 2003 Select item_id, customer_name, DATE_FORMAT(picked_up_date,\'%D %M, %Y\' pickedUp_date from jb_inventory where (picked_up_date >=1/3/2002 and picked_up_date<=6/3/2003) and is_picked_up=\'Y\' order by ticket_id I am trying to get al the records between 1/3/2002 and 6/3/2003. But this query is giving me nothing and if I change the \'and\' to \'or\' then it gives me all the records.. any help !!!!! Quote Link to comment Share on other sites More sharing options...
effigy Posted June 4, 2003 Share Posted June 4, 2003 does the database use the same date format that you are using in your query? you may try quoting the info or using BETWEEN. http://www.mysql.com/doc/en/Comparison_Operators.html Quote Link to comment Share on other sites More sharing options...
jbpunjabi Posted June 4, 2003 Author Share Posted June 4, 2003 Actualy I even tried using the dateformat cos the format in database is diff from the format in quert, but still its same result..but I havent tried the between..let me try that Quote Link to comment Share on other sites More sharing options...
jbpunjabi Posted June 5, 2003 Author Share Posted June 5, 2003 I worked, I put the date in quotes and used the date format function to change the database date Select item_id, customer_name from jb_inventory where (DATE_FORMAT(picked_up_date,\'%c/%e/%Y\') >=\'1/9/2002\' and DATE_FORMAT(picked_up_date,\'%c/%e/%Y\') <=\'6/4/2003\') and is_picked_up=\'Y\' order by ticket_id Thanks effigy 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.