12 lines
227 B
Markdown
12 lines
227 B
Markdown
|
```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;
|
||
|
|
||
|
```
|
||
|
|