Here is a query that lists all tables in all databases and their storage engines:
SELECT table_name, table_schema, engine FROM information_schema.tables;
(From https://serverfault.com/a/244792/406647)