0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-21 14:18:16 +00:00
Files

13 lines
201 B
Plaintext
Raw Permalink Normal View History

PRAGMA cache_size = 5;
CREATE TABLE t1(a, b, c);
INSERT INTO t1 VALUES(1, 2, 3);
CREATE TABLE t1(a, b, c);
INSERT INTO t1 VALUES($a, $b, $c);
INSERT INTO t1 VALUES($c, $b, $a);