Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,69 @@
# Day 1: SQL Basics & Advanced SQL Queries

- [x]Complete the SQL Basics course
- [x]Complete the Advanced SQL queries course

# Day 2: Relational Queries

- [x]Complete the Relational Queries course
- [x]Complete the Modifying databases with SQL course

# Day 3: Install Postgres and Complete Tutorials with psql

- [x] Install Homebrew by following instructions listed here
- [x] Install Postgres by following instructions listed here
- [x] Learn the psql command line tool by working through the following tutorials
- [x] complete the tutorial for createdb here
- [x] complete the tutorial for selecting the database here
- [x] complete the tutorial for dropping the database here
- [x] complete the tutorial for create table here
- [x] complete the tutorial for drop table here
- [x] complete the tutorial for schema here
- [x] complete the tutorial for insert here
- [x] complete the tutorial for select here
- [x] complete the tutorial for expressions here
- [x] complete the tutorial for where clause here
- [x] complete the tutorial for and and or operators here
- [x] complete the tutorial for update queries here
- [x] complete the tutorial for delete queries here
- [x] complete the tutorial for the like clause here
- [x] complete the tutorial for the limit clause here
- [x] complete the tutorial for the order by clause here
- [x] complete the tutorial for the group by clause here

#Day 4: Mini Project & Exercises

- [x]Exercises 1-11 in the sql-exercises repo are complete and written to the appropriate file:
- [x] sql/01-create-table-student.sql
- [x] sql/02-create-table-friend.sql
- [x] sql/03-create-table-like.sql
- [x] sql/04-load-table-learner.sql
- [x] sql/05-load-table-friend.sql
- [x] sql/06-load-table-like.sql
- [x] sql/07-query-friends-gabriel.sql
- [x] sql/08-query-likes-grade-two-or-more.sql
- [x] sql/09-mutual-likes.sql
- [x] sql/10-not-liked.sql
- [x] sql/11-liked-but-does-not-like.sql
[Stretch] sql/12-find-friends-in-common.sql
[Stretch] sql/13-popular-students.sql

# Day 5: Exercises on SQL Bolt

- [x] Complete the SQL Bolt tutorial


# General

- [x] All major features are added via pull requests with a clear description and concise commit messages.
- [x] SQL files are well formatted and readable.
- [x] All the SQL keywords are capitalized.

# Stretch

- [ ] Complete the Codeacademy course on SQL
- [ ] Complete the SQL Zoo quizzes

# SQL Exercises

Exercises to help exercise the SQL muscles.
Expand Down