Bit of a crap question, really, but is there a single command to find out the table type of an mySQL table?
I know I can do:
SHOW CREATE TABLE someTable;
and then suck the data off the end of the result, or you can do:
SHOW TABLE STATUS FROM databaseName LIKE "tablename";
and then check the Type column, but I'm in one of those "Oh, you can just shift click a link and it opens in a new window... really!" type stages where I miss every little time saving trick in the book.
Cheers me dears.