float postgres

Solutions on MaxInterview for float postgres by the best coders in the world

showing results for - "float postgres"
Celia
24 Jun 2016
1CREATE TABLE float_point (floatn FLOAT4); 	      -- precision min 4, maximum 8
2INSERT INTO float_point (floatn) VALUES (543.23); -- 543,23
3CREATE TABLE float_point_r (real_no REAL); 		  -- 1E-37 to 1E+37, 6 decimal max
4INSERT INTO float_point_r (real_no) VALUES (12345623); -- 1,234562€+07