I want to convert decimal number to specific format.
FROM 123456789.1234 to 12,34,56,789.00.
I tried it using
SELECT FORMAT(123456789.1234, 'N', 'en-us') as 'en-us'
but this returns:
123,456,789.12
I also tried
SELECT FORMAT(123456789.1234, '##,###.00') as 'en-us'
and got the same result.
Any suggestions on this?
12,34,56,789.00? maybe you mean123,456,789.00.##\,##\,##\,###\.\0\0?