databendlabs/databend

Multi-statement transactions

BohuTANG opened this issue · 1 comments

Summary

Summary

Syntax:

CREATE TABLE t1 (i int);
BEGIN [TRANSACTION];
INSERT INTO t1 (i) VALUES (1);
INSERT INTO t1 (i) VALUES (2);
COMMIT;