数据库信息查询语句记录 --- 引擎,隔离级别等
查看数据表使用的引擎:
show create table [your table name];
show table status from [db name] where name='[your table name]';
select table_schema,table_name,engine from information_schema.tables where table_name='[your table name]';
查看数据库的隔离级别: select @@global.trans
原创
2021-03-04 17:09:30 ·
138 阅读 ·
0 评论