Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9b61d57

Browse files
committed
update README of lesson 1
1 parent 1bac04e commit 9b61d57

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

Week1/README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
# Lesson 1: Retrieving Data
1+
# Lesson 1: Basics of creation, insertion and retrieval of data
22

3-
In this class, students will be introduced to relational data terminology (row, column), the function of a primary key, and retrieving data from a MySQL database using SELECT queries.
3+
In this class, students will be introduced to relational database terminologies:
4+
Tables, rows, columns, primary key.
5+
Creation of a database table and insertion will be demonstrated.
6+
Retrieving data from a MySQL database using SELECT queries will be demonstrated.
47

5-
Objective: Students should be able to retrieve data from a database table using SELECT statements that include WHERE, GROUP BY, and ORDER BY.
8+
Objective: Students should be able to create tables,
9+
insert values in tables and
10+
retrieve data from tables using SELECT statements that include FROM, WHERE clauses.
611

712
## Pre-Class Readings
813

@@ -19,19 +24,21 @@ Before arriving to class on Sunday, please watch all of the videos in [this vide
1924
- Joining tables
2025

2126
## Pre-Class Preparation
22-
- Install MySQL windows guys can follow the [official docs](https://dev.mysql.com/doc/refman/5.7/en/windows-installation.html) unix users have it easyier as usual 😉
27+
- Install MySQL windows guys can follow the [official docs](https://dev.mysql.com/doc/refman/5.7/en/windows-installation.html)
28+
Unix users have it easier as usual 😉
2329

2430

2531
## Main Topics
2632

2733
- The relational model of data
2834
- A 'database' vs. a 'DBMS' (database management system)
29-
- The concept of a schema
3035
- The properties of an 'entity' (or 'row')
31-
- Basic entity relationship diagrams
36+
- A basic CREATE statement
37+
- A basic INSERT statement
3238
- A basic SELECT statement
39+
- Data types in SQL
3340
- Constructing more complex SELECT statements
34-
- JOIN
41+
- JOIN (if time permits)
3542
- Selecting composite data from multiple tables
3643
- Compare JOIN WHERE with cartesian product
3744
- Naming Conventions: UpperCamelCase/PascalCase, lowerCamelCase, snake_case, hnHungarianNotation/HNHungarianNotation

0 commit comments

Comments
 (0)