mirror of
https://github.com/rqlite/rqlite.git
synced 2026-01-25 12:26:20 +00:00
8 lines
220 B
SQL
8 lines
220 B
SQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN TRANSACTION;
|
|
CREATE TABLE foo (id integer not null primary key, name text);
|
|
INSERT INTO foo VALUES(1,'fiona');
|
|
INSERT INTO foo VALUES(2,'fiona');
|
|
INSERT INTO foo VALUES(3,'fiona');
|
|
COMMIT;
|