I make this command to bring the date in a YYYY / MM / DD format:
DECLARE @SomeExampleDate DATETIME;
SELECT @SomeExampleDate = '2016/08/20';
SELECT STUFF(REPLACE('/'+CONVERT(CHAR(10),@SomeExampleDate,102), '.', '/'),1,1,'')
But I want that...
asked by
20.08.2016 / 21:24