Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The following SQL statement selects all orders with an OrderDate BETWEEN '01-July-1996' and '31-July-1996':/* SELECT * FROM Orders WHERE OrderDate BETWEEN #1/07/1996# AND #31/07/1996#; /*OR:*/ SELECT * FROM Orders WHERE OrderDate BETWEEN '1996-07-01' AND '1996-07-31';
- Loading branch information