MySQL 1Z0-909 FAQ covering exam format, topics, and prep questions.
Yes, but not only syntax. It is about correctness: NULL semantics, join behavior, grouping, index use, and query-plan reasoning with EXPLAIN.
Joins, aggregation, indexing, and EXPLAIN. If you can predict outputs and spot non-sargable predicates, you will collect a lot of points.
No. Focus on common families: string and date functions, aggregation, and the patterns used with JSON extraction and filtering.
Edge cases: NULL in NOT IN, filtering after a LEFT JOIN, and accidentally changing grouping granularity or index usability.
Focus on:
NULL predicates and subquery edge casesEXPLAINThey avoid choosing the fanciest query or feature. On this exam, the right answer is usually the one that stays correct under edge conditions and works with the optimizer.