I am trying to select a date range in this format from a database 1-Mar-03
to 26-Mar-03. The date is stored in a mySQL database in that format and when
doing a normal select it just selects the dates as if they are numbers.

How can I make this select work the way I want it to work? I am using the
following query:

"SELECT * FROM members WHERE member_date >= '01-Mar-03' AND member_date <=
'26-Mar-03'  ORDER BY member_date";

Jeff


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to