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

This commit is contained in:
Dan Buch 2012-02-11 12:09:19 -05:00
commit d8c66a41a8
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored Normal file
View File

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

6
ex1.sql Normal file
View File

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