I have already used Microsoft SQL Server 2005 and found it very simple to execute single / multiple sql query strings.
Example:
insert into tablea
($vala, $valb, $valc)
values
($vala, $valb, $valc);
insert into tableb
($vala, $valb, $valc)
values
($vala, $valb, $valc);
How to complete the second part? In MSSQL, I select the second insert tab and press F5. How to do it in mySQL?
source
share