初次研究: 表: sql: show table status from carsale_db LIKE 'tb_car' 结果: 想办法取得这其中的值.... 在Internet上找到这个资料: MySQL中可以使用 show table status 查看表的状态,但是不能像select 语句选出结果那样做结果过滤. 有没有办法像select语句那样过滤呢,答案是有的,就是从information_schema库的tables表中查询. 如下是模仿show table status 的SQL…