I am trying to insert into a table using the SQL INSERT INTO statement.
The table I am trying to insert into is called t_comments. That table has 8 columns.
This code works for 1 record:
INSERT INTO t_comments VALUES (1,2,3,4,5,6,7,8);
But, if I attempt to enter into multiple records:
INSERT...