Suppose I have a number as 123. In words it will be one two three
Is it possible to convert that number words into some other language without writing a conversion program in sql server.
I tried with
SET LANGUAGE Italian
declare @i int
set @i =1
print @i
but it is not working..
The expected output being
uno due tre
Help needed
NB~ Here I just set an example with Italian language. It can be Swedish, Spanish, French etc.