I need to create a column which can hold bigint datatype. Sample of the value is 922337203685477 5803.

I tried creating a column using the 'number(20)' datatype, but it stores the value in the following format:

9.2233720368547 8E18.

Please provide the solution.

Thanks

Praveen