Is there a way to insert multiple records in a database in a single SQL statement? I'm running the Insert statements separately to input in the track table. My SQL is below. create table track ( trkid integer, trknum integer not null, trktitle varchar(25) not null, trklength decimal(4,2) not null...