mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-15 22:39:05 +00:00
ad79ef48a2
* add tests * add bench
11 lines
137 B
Plaintext
11 lines
137 B
Plaintext
|
|
CREATE TABLE abc(a PRIMARY KEY, b, c);
|
|
|
|
|
|
CREATE TABLE t1(x, y);
|
|
INSERT INTO t1 VALUES(1, 2);
|
|
|
|
|
|
SELECT * FROM t1;
|
|
|