Hi,
I want only Date from Current DateTime in SQL Server.
Please help
Please use the GETDATE function and CAST it to only DATE.
SELECT CAST(GETDATE() as DATE)
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.