Executing Line/Multiple Lines Only in mySQL Query Browser
Posted
by David Bonnici
on Stack Overflow
See other posts from Stack Overflow
or by David Bonnici
Published on 2009-06-09T10:15:32Z
Indexed on
2010/03/15
10:29 UTC
Read the original article
Hit count: 410
I already used Microsoft SQL Server 2005 and found really easy to execute single/multiple lines of an sql query.
Example:
insert into tablea
($vala, $valb, $valc)
values
($vala, $valb, $valc);
insert into tableb
($vala, $valb, $valc)
values
($vala, $valb, $valc);
How can I execute the second part only? In MSSQL i will highlight the second insert statment and press F5. How can do this in mySQL?
© Stack Overflow or respective owner