I have an Insert in a table (ex. field a1) which is a calculated value in a SELECT field01Value/1000000 .
How can I format the field to display 20 or more decimals after the operation. I tried CAST(field01Value as double precision)/1000000 but the value is displayed as 2E-5. Thanks!