Tech Junkie Blog - Real World Tutorials, Happy Coding!: SQL: SELECT Rows Between Certain Dates

Sunday, June 19, 2016

SQL: SELECT Rows Between Certain Dates

Let's say you want to know the orders that takes place in the Northwind database table Orders tables that occurs during the Christmas Eve 1997-12-24 and the New Years Day the following year in 1998-01-01. Here is the SQL to query the OrderID between those date range:

SELECT OrderID, OrderDate
FROM Orders
WHERE OrderDate BETWEEN '1997-12-24' AND '1998-01-01'



Similar Posts:


1 comment:

Search This Blog