SQL to show all tables in database - character set / collation settings

What SQL should I run to show all tables in database with related settings like table engine, character set / collation ? How can I get these information ?
0
give a positive ratinggive a negative rating
Hi,

To get the list of all tables in database by using SQL, you can use:

SHOW TABLE STATUS;
In the results, you can find information about table engine, character set etc.
Is it possible to somehow get the results using SELECT, so I can use the results also for other purposes ?
Share on FacebookShare on TwitterShare on LinkedInSend email
2 answers
x
x
2025 AnswerTabsTermsContact us