您好,欢迎访问一九零五行业门户网

MYSQL修改所有表的存储引擎格式语句_MySQL

bitscn.com
select group_concat(concat( 'alter table ' ,table_name ,' engine=archive; ') separator '' )
from information_schema.tables as t
where table_schema = 'userinfo' and table_type = 'base table'
-- 将语句粘出来,执行;
bitscn.com
其它类似信息

推荐信息