Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 929 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 929 Bytes

sql_book_code

Source code for Introduction to SQL by Tealeaf Academy. All SQL commands used in the book chapters are provided and should be run in the same sequence while following along with the book.

How to

###Chapter 3: Your first Database. $ cd chapter3 $ mysql -u root -p $ source create_database.sql $ source create_table.sql
$ source insert_data.sql
$ source select_data.sql
$ source alter_table.sql
$ source update_data.sql

###Chapter 4: Multiple Tables and Joins

$ cd chapter4
$ mysql -u root -p
$ source chapter4_ddl.sql
$ source chapter4_data.sql        
$ source chapter4_dml.sql 

###Chapter 5: Import/Export, Advanced Querying

$ cd chapter5
$ mysql -u root -p
$ source chapter5_import_export.sql

Copyright © 2014 Tealeaf Academy. All rights reserved.