A VALUES clause will only insert a single record, and you can't have multiple like that. If you can get the values from a table you can use a SELECT clause to insert multiple records:
INSERT INTO...
SELECT...
FROM...
If not, you'll have to run your insert once for every record.