Hi,
I'm trying to store numbers into one of the custom table column. This column must contain unique value for each record.
Now the issue is if i want to insert a record with zero after decimal point its removing that zero.
Emp Id (number)
1234.1
1234.2
...
...
1234.9
1234.10 --> 1234.1 (this is what is getting stored in table)
1234.11
...
I want to store 1234.10 not 1234.1, is there any way that i can store zeros as well after decimal point for NUMBER data type column.
Thanks in advance,