mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
13 lines
305 B
MySQL
13 lines
305 B
MySQL
|
|
||
|
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);
|