No you really can't do it with a single query. You can string multiple queries together and execute them consecutively, then the commit will make the changes to the database. So you could do this:
Code:
Query
Query
Query
Query
Commit
Rather than this:
Code:
Query
Commit
Query
Commit
Query
Commit