At 15:07 +0200 1/4/03, Egor Egorov wrote:
On Friday 03 January 2003 19:25, aman raheja wrote:

 I have a datetime field in one of my tables in the MySQL database.
 Can I do something like return all records between two certain dates, say
 between Nov 02, 2002 and Nov 07, 2002.
SELECT .. WHERE mydatefield BETWEEN '2002-11-02 00:00:00' AND '2002-11-07
00:00:00'
Or, if records that occur any time on Nov 07 should be deleted, modify
the end of the query a little bit:

SELECT .. WHERE mydatefield BETWEEN '2002-11-02 00:00:00' AND '2002-11-07
23:59:59'


---------------------------------------------------------------------
Before posting, please check:
  http://www.mysql.com/manual.php   (the manual)
  http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to