SitePoint Sponsor |
|
User Tag List
Results 1 to 2 of 2
Thread: Retrive data by entering 2 dates
-
Dec 27, 2006, 01:03 #1
- Join Date
- Nov 2006
- Posts
- 13
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Retrive data by entering 2 dates
hi
i want to display data which is in access database and one date field, i want to show a data from date1 to from date 2
somene help me
-
Jan 4, 2007, 11:37 #2
- Join Date
- Feb 2005
- Posts
- 42
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Need to run a SQL query:
Code:SELECT * FROM table WHERE date>=#1/1/2007# AND date<=#1/2/2007#
Then display however you need.
Bookmarks