The DESCRIBE and EXPLAIN statements are synonyms.
In practice, the DESCRIBE keyword is more often used to obtain information about table structure.
Whereas EXPLAIN is used to obtain a query execution plan (that is, an explanation of how MySQL would execute a query).
EXPLAIN SELECT * FROM `test`;