I am trying not to show the period in the values using the Replace function but I am getting Buffer Overflow error when I use my select statement like this:
SELECT
Volume, REPLACE(Volume,'.','')
FROM MyTable
The data in my table looks like this:
88.97
448.58 and etc
i want to show like this with out the period:
8897
44858
I have tried to use different ways but still getting the error. How can I achieve this?