I am trying to add multiple rows in the table in snowflake using "insert into values" statement.
Here is create table statement :
create table table1(col1 float);
I am inserting multiple rows using following command :
insert into table1(col1) values (-3.4E20),(3.4E-20);
I am getting error like
"Numeric value '-340000000000000000000' is not recognized"
On the other hand if I try inserting both the rows separately its getting successful.
Insertion commands :
insert into table1(col1) values (-3.4E20);
insert into table1(col1) values (3.4E-20);
Can you please help me identify the issue with the insert command with multiple rows?
Any suggestions, help will be very helpful.