om/数据库/mysql/查表搜索引擎.md

12 lines
227 B
Markdown
Raw Permalink Normal View History

2023-11-07 02:38:13 -05:00
```sql
SELECT table_name, table_type, engine FROM information_schema.tables WHERE table_schema = 'frp_xiongbang' and engine !='InnoDB' ORDER BY table_name DESC;
ALTER TABLE `f_purchase_consult_line` ENGINE = InnoDB;
```