commit d8c66a41a8e68cb1aa31b6a8b05aaeb6109530db Author: Dan Buch Date: Sat Feb 11 12:09:19 2012 -0500 Working through Learn SQL The Hard Way since we may be using it in a future course for non-programmers at work. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..98e6ef6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.db diff --git a/ex1.sql b/ex1.sql new file mode 100644 index 0000000..a11c388 --- /dev/null +++ b/ex1.sql @@ -0,0 +1,6 @@ +CREATE TABLE person ( + id INTEGER PRIMARY KEY, + first_name TEXT, + last_name TEXT, + age INTEGER +);