DB Basics
Database
DBMS (Database Management System)
Relational Database (RDBMS)
RDBMS vs NOSQL

Basic Terms
Schema
Table (Relation)
PK
SQL (Structured Query Language)

Creating Tables
Rename Table
Data Types (in SQLite)
SQLite)
SELECT
CREATE
IF NOT EXISTS
View Tables
INSERT
UPDATE
DELETE
Select exercise
1. Retrieve all data from the flights table
2. Retrieve all waypoints
3. Retrieve id and flight_num of flights with airfare less than 600
4. Retrieve departure of flights with destination Incheon and price 500 or above
5. Retrieve id and flight_num of flights where the numeric part starts with 0 and ends with 2, and the waypoint is Beijing
.read
Pretty Display in CLI
Last updated