I have sql dump file coming from FirebirdSQL. Looks same as exported from MySQL (MariaDB). In the said file there are table creation statements one of which are the following:
CREATE TABLE VALIORS (
....,
STK_SUM FLOAT DEFAULT 0,
TWO_PERC FLOAT,
....,
);
Later in the file are the following insert statements:
INSERT INTO VALIORS (...., SZK_ND,TWO_PERC, ....) values (...., 10039.349609375,200.78999328613281, ....);
INSERT INTO VALIORS (...., SZK_ND,TWO_PERC, ....) values (...., 10039.349609375,200.78999328613281, ....);
The whole file is bigger than 500 MB, so I only import it through command line on windows machine with xampp installed.
Everything else is imported correctly, but all float numbers are being rounded. My problem is I need them exact. Is there anyway to achieve it? And where the problem comes from?