SQL FORMAT Function
Example Format a date: DECLARE @d DATETIME = ’12/01/2018′; SELECT FORMAT (@d, ‘d’, ‘en-US’) AS ‘US English Result’, FORMAT (@d, ‘d’, ‘no’) AS ‘Norwegian Result’, FORMAT (@d, ‘d’, ‘zu’) AS ‘Zulu Result’; Definition and Usage The FORMAT() function…