Which will be faster in execution among the following cases? (It is required to decide appropriate approach in my project)
insert into table values (v1, v2, v3);
or
insert into table1 value (v1)
insert into table1 value (v2)
insert into table1 value (v3)
what are your opinions?
Not my opinion; but from experience doing something in one query rather than multiple ones to achieve the same thing is always faster.