EN
MySQL - how to check existing table engine?
1 answers
0 points
How can I check an existing table engine? I created the table some time ago and I don't remember which engine I specified when creating it.
1 answer
0 points
Use the following query:
xxxxxxxxxx
1
SHOW TABLE STATUS WHERE Name = 'table_name';
Note:
Change only the
table_name
.
0 commentsShow commentsAdd comment