Updating SQL notes and guide
authorGreg Wilson <gvwilson@third-bit.com>
Fri, 29 Nov 2013 20:21:39 +0000 (15:21 -0500)
committerW. Trevor King <wking@tremily.us>
Tue, 11 Mar 2014 04:46:53 +0000 (21:46 -0700)
sql/novice/guide.md
sql/novice/index.md

index 705f9b5a590a3f12b24874c7197e86a31c3ad251..22fb50367ab00052fa532a813b570c7bc4da5415 100644 (file)
@@ -54,3 +54,6 @@ Teaching Notes
         so we have a better idea of what to teach and how to teach it.
     3.  NoSQL databases are as different from each other as they are from relational databases.
         Until a leader emerges, it isn't clear *which* NoSQL database we should teach.
+
+*   Run `sqlite3 survey.db < gen-survey-database.sql`
+    to re-create survey database before loading notebooks.
index 3d889b7011b0c622b3614b8d2cd5fb4a1a1d3e16..babcbe74ddd9824ba06f5258685e24925c070251 100644 (file)
@@ -23,16 +23,21 @@ and why they insist on structuring data in certain ways.
 
 Topics
 ------
-* [Selecting Data](01-select.html)
-* [Sorting and Removing Duplicates](02-sort-dup.html)
-* [Filtering](03-filter.html)
-* [Calculating New Values](04-calc.html)
-* [Missing Data](05-null.html)
-* [Aggregation](06-agg.html)
-* [Combining Data](07-join.html)
-* [Creating and Modifying Data](08-create.html)
-* [Programming with Databases](09-prog.html)
+*   [Selecting Data](01-select.html)
+*   [Sorting and Removing Duplicates](02-sort-dup.html)
+*   [Filtering](03-filter.html)
+*   [Calculating New Values](04-calc.html)
+*   [Missing Data](05-null.html)
+*   [Aggregation](06-agg.html)
+*   [Combining Data](07-join.html)
+*   [Creating and Modifying Data](08-create.html)
+*   [Programming with Databases](09-prog.html)
 
 See Also
 --------
-* [Instructor's Guide](guide.html)
+*   [Instructor's Guide](guide.html)
+
+Resources
+---------
+*   `gen-survey-database.sql`: re-generate survey database used in examples.
+*   `sqlitemagic.py`: IPython Notebook plugin to support SQLite interaction.