数据库-----catalog与schema:
一个数据库系统包含多个Catalog,每个Catalog包含多个Schema,每个Schema包含多个数据库对象(表、视图、字段等)
如数据库对象表的全限定名可表示为:Catalog名.Schema名.表名
查看数据库中使用MyISAM的存储引擎:
select table_catalog
,table_schema
,table_name
,engine
from information_schema.tables
where engine='MyISAM';
修改
ALTER TABLE TABLENAME ENGINE=InnoDB;