How to get Date only from the datetime value?

SELECT CONVERT(VARCHAR(10), getdate(), 101); Outputs in mm/dd/yyyy SELECT CAST(getdate() AS date); To get the current date time: SELECT getdate(); SELECT CURRENT_TIMESTAMP; Other related functions: ELECT CONVERT (time, SYSDATETIME()) ,CONVERT (time, SYSDATETIMEOFFSET()) ,CONVERT (time, SYSUTCDATETIME()) ,CONVERT (time, CURRENT_TIMESTAMP) ,CONVERT (time, GETDATE()) Read more…

SQL Server Development

SQL Server Developers are responsible to perform following activities: Designing databases and ensuring their stability, reliability, and performance. Design, create, and implement database systems based on the end user’s requirements. Impove application’s performances. Prepare documentations for database applications. Memory management Read more…