Skip to main content

Get Records from Current Date in SQL


Select * from <Table Name> Where  <date column> is not null
and CAST( <date column> as DATE) = DATEADD(DAY, 0, CAST(GETDATE() AS DATE)) 

Comments