Table A, columns OrderId, OrderTimeStamp (datetime).
I want to SELECT all records for any date, but between 10 am and 1 pm, for example.
How do I do that?
Thanks!
declare @t table(d datetime)
insert @t values('2012-01-01 09:00'),('2012-01-01 10:00'),('2012-01-01 11:00')
select cast(d as time) from @t where cast(d as time) between '10:00' and '13:00'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With