Skip to content

Instantly share code, notes, and snippets.

@gscattolin
Created November 14, 2013 12:50
Show Gist options
  • Save gscattolin/7466251 to your computer and use it in GitHub Desktop.
Save gscattolin/7466251 to your computer and use it in GitHub Desktop.
how-do-i-query-for-all-dates-greater-than-a-certain-date-in-sql-server
select *
from dbo.March2010 A
where A.Date >= Convert(datetime, '2010-04-01' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment