Files
Tyler Cloutier 44df6c6e7d Initial commit
2023-08-01 23:16:37 +02:00

13 lines
244 B
Plaintext

statement ok
CREATE TABLE inventory (inventory_id INTEGER, name TEXT)
statement ok
INSERT INTO inventory (inventory_id, name) VALUES (1, 'health1');
query IT
select * from inventory
----
1 'health1'
#TODO: It fails with many sperate inserts