Is it possible to insert more than one row in a table with one insert statement? I know this will happen if I do:
insert into table ( fields ) select values
No, this is not possible. As you already stated yourself, it is only possible with a select clause providing the insert values and rows.