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 -
select convert(varchar(8), getdate(), 3)
simply use this for dd/mm/yy and this
select convert(varchar(8), getdate(), 1)
for mm/dd/yy