You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Week1/README.md
+14-7Lines changed: 14 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,13 @@
1
-
# Lesson 1: Retrieving Data
1
+
# Lesson 1: Basics of creation, insertion and retrieval of data
2
2
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.
4
7
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.
6
11
7
12
## Pre-Class Readings
8
13
@@ -19,19 +24,21 @@ Before arriving to class on Sunday, please watch all of the videos in [this vide
19
24
- Joining tables
20
25
21
26
## 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 😉
23
29
24
30
25
31
## Main Topics
26
32
27
33
- The relational model of data
28
34
- A 'database' vs. a 'DBMS' (database management system)
0 commit comments