```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;
```