Transactions are not about efficiency
Transactions allow you to group several statements to one atomic statement, meaning that it will complete completely or not at all, but it must not complete partially. E.g. if you remove money from one bank account and then add it to another bank account then this action should either happen completely (account a as $x less and account b has $x more) or not at all. What MUST NOT happen is that you remove money from account a, then the system crashes and money is lost in the digital void.
You can't have no transactions
When you are using PDO and you don't explicitly start a transaction then you are in auto-commit mode. That means that every time you start a query, a transaction is started, the query is executed and the transaction is committed (means marked as complete) immediately.
Still thinking about performance?
There are some rare cases where thinking about performance and transactions may be justified. E.g. if you are manipulation large amounts of data it can be (whether it really is depends on your DB) faster to do all your statements in one large transactions. On the other hand in this case it is probably logical to do these manipulations in a transaction anyway, because if your program crashes, you want to rerun the program and it should start of from the beginning, not somewhere where it left of the last time.
SELECTstatements and make sure they see data from the same point in the sequence of database modifications. If you use aREPEATABLE READorSERIALIZABLEtransaction you can be sure that the affects of anINSERT,UPDATE, orDELETEin a different transaction won't be absent from the results of oneSELECTbut present in the next. – kgrittn Jun 17 '12 at 17:42