Show Tables
SHOW TABLES; lists tables in the current database. USE college; first. SHOW TABLES LIKE 'stu%'; filters names.
information_schema.TABLES is the SQL way if you need to join metadata. For a viva, SHOW TABLES is enough.
Trap — SHOW TABLES in the wrong database — empty list, panic, recreate tables that already exist elsewhere.
On the example next to this theory: Show Tables: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Exam tip
USE college; SHOW TABLES;