Database vs Schema
In MySQL, CREATE DATABASE and CREATE SCHEMA are the same statement. ‘Schema’ in MySQL = that database. In SQL Server / Postgres, a schema is a namespace inside a database (dbo, public). Say: ‘In MySQL they are synonyms; in other products they are not.’
Trap — copying Postgres schema answers into a MySQL viva without that sentence.
On the example next to this theory: Database vs Schema: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Exam tip
MySQL: CREATE SCHEMA = CREATE DATABASE. Postgres: different.