i have some large SQL-Files with many "INSERT INTO" Statements.
My Command:
mysql> Load data local infile 'values.sql' into table test_table;
My Statements look like these:
INSERT INTO test_table(column1,column2) VALUES('1','2');
INSERT INTO test_table(column1,column2) VALUES('3','4');
When i run this Command, my test_table column1 will be filled with the complete Statement. Whats my mistake?