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
27 May 2021 at 08:42 AM
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.
0
give a positive ratinggive a negative rating
29 May 2021 at 11:53 AM
Tim
Is it possible to somehow get the results using SELECT, so I can use the results also for other purposes ?
0
give a positive ratinggive a negative rating
30 May 2021 at 04:48 PM
Share on FacebookShare on TwitterShare on LinkedInSend email
x
x
2024 AnswerTabsTermsContact us