hive> select cast(12345678910.231 as double);
1.2345678910231E10
Time taken: 0.164 seconds, Fetched: 1 row(s)
but need the value 12345678910.231 stored as double.
select cast(cast(12345678910.231 as double) as double); also wont work and is similar as the above.
I dont need the output format to be change using the printf() UDF, rather i need the value to be stored and retrieved while querying as a non exponential form.