Hi All,
I want my numbers to be converted from a column which is of nvarchar(100) datatype to decimal(18,2).
How can I correct it?
select CONVERT(DECIMAL(18,2),'129399389')
--I' am getting output as
129399389.00
I want my numbers to be converted from a column which is of nvarchar(100) datatype to decimal(18,2).
How can I correct it?
select CONVERT(DECIMAL(18,2),'129399389')
--I' am getting output as
129399389.00