If you're talking about the ability to insert multiple rows in one statement,
like this:
insert into foo (bar, baz) values
(1, 2),
(3, 4),
(5, 6);
Then this is in fact defined by the SQL standard, and is supported in many
DBMSs. I would not call that a "very database-specific feature" at all. Maybe
instead say "only some databases support that standard feature".
-- Darren Duncan