0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-12 04:39:26 +00:00
Files
libsql/libsql-sqlite3/test/fixtures/rowvaluefault.test
2024-05-27 12:59:10 +02:00

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);