I am using format in a stored procedure. My problem is that on the server the SQL Server version is old, and format()
does not work.
My use:
FORMAT([Data], 'dd.MM.yyyy')
where data is: 2008-10-31 00:00:00.000
How can I use convert()
to obtain the same result?