输入banner图图片脚本导航/分类

mysql相关

1)查看当前所处的数据库:

select database();

2)查看表的一些状态信息,比如最后一次更新日期

show table status from your_db like 'your_table';

或者

select *
from   information_schema.tables
where  table_schema = 'your_db'
   and table_name = 'your_table'

mysql相关

标签:status   tables   数据库   show   mat   tab   format   状态   mysql