Skip to content
Advertisement

how to get current/Todays date data in sql server

how to write query to get today’s date data in SQL server ?

select * from tbl_name where date = <Todays_date>

Advertisement

Answer

The correct answer will depend of the exact type of your datecolumn. Assuming it is of type Date :

select * from tbl_name 
where datecolumn = cast(getdate() as Date)

If it is DateTime:

select * from tbl_name 
where cast(datecolumn as Date) = cast(getdate() as Date)
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement