Tagged: SQL Server Date Formats

SQL Server Date Formats

Hello to everyone, In this article, I will talk about Date format change operations in SQL Server. Date format change is often used in SQL Server. You can use the codes below to change the date format. 1 SELECT CONVERT(VARCHAR, GETDATE(), 1); mm/dd/yy 12/30/06 2 SELECT CONVERT(VARCHAR, GETDATE(), 2); yy.mm.dd...

Don`t copy text!