I am trying to make a query in SQL Server in which I do:
Round(Convert(float,A)/(Convert(float,B),2)
and you return this message:
The conversion of the nvarchar value '2968922618' overflowed an int column.
The value of the denominator is:
- b = 4841517826
If I delete the number 6, the last digit works perfectly. But if not, it fails. Any ideas?