1
1
mirror of https://github.com/tstack/lnav.git synced 2024-09-11 13:05:51 +03:00
lnav/test/simple-db.sql

13 lines
305 B
SQL

CREATE TABLE IF NOT EXISTS person (
id integer PRIMARY KEY,
first_name text,
last_name text,
age integer
);
INSERT INTO person (id, first_name, last_name, age)
VALUES (0, "Phil", "Myman", 30);
INSERT INTO person (id, first_name, last_name, age)
VALUES (1, "Lem", "Hewitt", 35);