Working through Learn SQL The Hard Way since we may be using it in a future course for non-programmers at work.

cat-town
Dan Buch 13 years ago
commit d8c66a41a8

1
.gitignore vendored

@ -0,0 +1 @@
*.db

@ -0,0 +1,6 @@
CREATE TABLE person (
id INTEGER PRIMARY KEY,
first_name TEXT,
last_name TEXT,
age INTEGER
);
Loading…
Cancel
Save