Change Table Name
RENAME TABLE students TO learners; or ALTER TABLE students RENAME TO learners; Both change the table name. Apps and FOREIGN KEYs that still say students will break until you update them.
Trap — renaming in production during peak hours without updating the app.
On the example next to this theory: Change Table Name: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Exam tip
RENAME TABLE students TO learners;