I have to do the following transformation
Round(sum(column),2)
The datatype of column is float..
Round() function is available in oracle.
--How to implement this requirement in Teradata.Should I use CAST()?
I have another query:
Suppose the column contains values like 20.123456
The target column datatype is decimal(16,2)..What will happen if I dont cast the source column..Will I get the same result as one i will get after cast as decimal(16,2).
Thanks in Advance
↧