![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hve tble with date field. the query prompts the user for the dates ( inclusive): query is select name, datesold from table where datesold >= '12-Feb-2004' and datesold <= '15-Feb-2004' The query returns data from the 12, 13, and 14. but not from the 15th. What is the syntax for the query to have data from the 15th included. TIA |
#3
| |||
| |||
|
|
Hve tble with date field. the query prompts the user for the dates ( inclusive): query is select name, datesold from table where datesold >= '12-Feb-2004' and datesold <= '15-Feb-2004' The query returns data from the 12, 13, and 14. but not from the 15th. What is the syntax for the query to have data from the 15th included. TIA |
#4
| |||
| |||
|
|
Hve tble with date field. the query prompts the user for the dates ( inclusive): query is select name, datesold from table where datesold >= '12-Feb-2004' and datesold <= '15-Feb-2004' The query returns data from the 12, 13, and 14. but not from the 15th. What is the syntax for the query to have data from the 15th included. TIA |
#5
| |||
| |||
|
|
Hello! Try this: select name, datesold from table where datesold >= '12-Feb-2004' and datesold < '16-Feb-2004' Best regards, Yaroslav. "Bob" <bob_NOSPAM_ (AT) e-wpm (DOT) com> сообщил/сообщила в новостях следующее: news:403152c2 (AT) news (DOT) splitrock.net... Hve tble with date field. the query prompts the user for the dates ( inclusive): query is select name, datesold from table where datesold >= '12-Feb-2004' and datesold <= '15-Feb-2004' The query returns data from the 12, 13, and 14. but not from the 15th. What is the syntax for the query to have data from the 15th included. TIA |
![]() |
| Thread Tools | |
| Display Modes | |
| |