DBMS
DBMS is the software that manages databases — MySQL Server is a DBMS. A database is the data (college). The DBMS stores it, locks it, backs it up, and runs SQL.
RDBMS is a DBMS that uses relational tables (rows/columns/keys). MySQL is an RDBMS. MongoDB is a DBMS that is document-based, not relational.
Trap: ‘MySQL is a database’ vs ‘MySQL is a DBMS’. Casual speech says both. Viva: DBMS = software, database = the stored data.
On the example next to this theory: DBMS: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Exam tip
MySQL Server = RDBMS. college = a database inside it.