Problem with SQL?
A2k (9.0.4402) SR-1
I have four records with the following record create dates:
11/07/01
11/08/01
11/08/01
11/09/01
This SQL returns all four records:
strSQLSELECT s.lngBPermitID INTO tblResultsBP
FROM qrytblBPermit s
WHERE s.dtmDateCreate >= #11/07/01#
AND s.dtmDateCreate = #11/08/01#
AND s.dtmDateCreate = #11/07/01#
AND s.dtmDateCreate <= #11/08/01# ORDER BY strPermitNo
What is wrong with the second and third SQL statement?
Thanks, John Graves