Industry-relevant training in Business, Technology, and Design to help professionals and graduates upskill for real-world careers.
Fun, engaging games to boost memory, math fluency, typing speed, and English skills—perfect for learners of all ages.
Structured Query Language (SQL) serves as the foundational tool for managing relational databases, allowing users to define, manipulate, and control access to data. The chapter focuses on the Data Definition Language (DDL) commands like CREATE TABLE, ALTER TABLE, and DROP TABLE, essential for establishing the structure of databases. It then transitions into Data Manipulation Language (DML) commands, exploring INSERT, SELECT, UPDATE, and DELETE for managing data within those structures, while also addressing SQL standards and basic data types.
References
Untitled document (19).pdfClass Notes
Memorization
What we have learnt
Final Test
Revision Tests
Term: SQL
Definition: Structured Query Language, used to communicate with and manage data in relational databases.
Term: DDL
Definition: Data Definition Language, used to define and modify the structure of database tables.
Term: DML
Definition: Data Manipulation Language, used for managing and manipulating the actual data stored within database tables.
Term: Constraints
Definition: Rules enforced on data columns or tables to maintain integrity and prevent invalid data.
Term: CREATE TABLE
Definition: A SQL command used to create a new table in the database.
Term: INSERT
Definition: A SQL command used to add new rows of data into an existing table.
Term: SELECT
Definition: A SQL command used to retrieve data from one or more tables.
Term: UPDATE
Definition: A SQL command used to modify existing data in a table.
Term: DELETE
Definition: A SQL command used to remove existing rows from a table.