I\'m using SQL Server 2008 R2. I want to convert the system date to this format: dd/mm/yy
dd/mm/yy
\"2013-01-01 00:00:00.000\" to \"Score Calculation -
The query below will result in dd-mmm-yy format.
select cast(DAY(getdate()) as varchar)+'-'+left(DATEname(m,getdate()),3)+'-'+ Right(Year(getdate()),2)