Before writing any SQL, you need the core vocabulary of how a relational database is structured.
Database schema/structure vs data โ the schema is the design/blueprint of the database (table names, field names, field types, keys), while the data is the actual content stored within that structure. You can have an empty database with a defined schema but no data yet.
Example
Table: Learners Schema: LearnerID (primary key, autonumber), Name (text), Grade (integer) Data/records: 1, 'Thabo', 11 2, 'Aisha', 10
๐ก Exam Tip
Don't confuse 'field' and 'record' โ a field is a column (one type of data across all rows), a record is a row (one complete entry).