I like #MySQL very much. I've been using it for years to teach SQL to undergraduate students.
There are, however, quirks in MySQL that confuse the students and I would love to have either MySQL or MariaDB, or both, address them.
Here are two examples:
`SELECT * FROM capital INNER JOIN country;` effectively yields a CROSS JOIN. :/
`SELECT * FROM capital CROSS JOIN country ON capital.country_id = country.country_id;` effectively yields... you guessed it: an INNER join.
Oy vey...