How do I compare just the date portion of date time fields in SQL?

B

Branden

What is the Access SQL syntax for comparing only the date portion of two date
time fields?

Branden
 
J

John Vinson

What is the Access SQL syntax for comparing only the date portion of two date
time fields?

Branden

WHERE DateValue([DateFieldA]) = DateValue([DateFieldB])


John W. Vinson[MVP]
 
Top