Which three methods will show the storage engine for the Country table?

Which three methods will show the storage engine for the Country table?

Which three methods will show the storage engine for the Country table?

A.
SELECT ENGINE FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME=
‘Country’;

B.
SELECT ENGINE FROM INFORMATION_SCHEMA.ENGINES WHERE
TABLE_NAME= ‘Country’;

C.
SHOW TABLE STATUS LIKE ‘Country’;

D.
SHOW ENGINE Country STATUS;

E.
SHOW CREATE TABLE Country;



Leave a Reply 4

Your email address will not be published. Required fields are marked *