Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Create Table #Temp(DateTimeColumn DateTime)
Insert Into #Temp
Select '3/23/2006' Union All
Select '3/24/2006' Union All
Select '3/24/2006 3:33:25 PM'
-- This returns 2 records because of the >
Select *
From #Temp
Where DateTimeColumn > '3/23/2006'
-- This returns 3 records because of the >=
Select *
From #Temp
Where DateTimeColumn >= '3/23/2006'
Drop Table #Temp
create table tt (d datetime)
insert into tt
select '3/23/2006 9:18:57 PM' union all
select '3/24/2006 0:00:00 AM'
select * from tt