Tagged: SQL Server Date Format

Formatting Dates in SQL Server

Hello everyone, In this article, I will give information about date formatting in SQL Server. In SQL Server, in some cases, we may want to format the date as we want. You can do this easily with the help of the codes below. SELECT CONVERT(VARCHAR, GETDATE(), 1); SELECT CONVERT(VARCHAR, GETDATE(),...

Don`t copy text!