SELECT SalesOrderID, SalesOrderDetailID, ProductID, LineTotal, ModifiedDate
FROM Sales.SalesOrderDetail
WHERE (ModifiedDate = 'July 1, 2005') OR
(ModifiedDate = '07/01/2005')
ORDER BY SalesOrderID, SalesOrderDetailID
This is what I have and is not bring back any values. I am again using the adventure works database.
Am I setting up the date selection wrong because I know there should be some brought back but the statement is returning nothing.
Thanks

New Topic/Question
Reply



MultiQuote




|