You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
257 B

INSERT INTO person (id, first_name, last_name, age)
VALUES (1, "Dan", "Buch", 31);
INSERT INTO pet (id, name, breed, age, dead)
VALUES (2, "Franny", "Dog", 14, 1);
INSERT INTO pet (id, name, breed, age, dead)
VALUES (3, "Zooey", "Cat", 7, 0);