✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
| 12345678910111213141516 | S0> BEGIN;S0> SELECT sum(id) FROM Tabelle1;|sum|-------|42 S1> BEGIN;S1> INSERT INTO Tabelle1 VALUES (12345);S1> COMMIT; S0> SELECT sum(id) FROM Tabelle1;|sum|-------|42 S0> COMMIT; |