mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
10 lines
275 B
Plaintext
10 lines
275 B
Plaintext
|
|
CREATE TABLE xyz(one, two, thr, fou);
|
|
INSERT INTO xyz VALUES('A', 'A', 'A', 1);
|
|
INSERT INTO xyz VALUES('B', 'B', 'B', 2);
|
|
INSERT INTO xyz VALUES('C', 'C', 'C', 3);
|
|
INSERT INTO xyz VALUES('D', 'D', 'D', 4);
|
|
|
|
CREATE UNIQUE INDEX xyz_one_two ON xyz(one, two);
|
|
|