码迷,mamicode.com
首页 > 数据库 > 详细

mysql相关

时间:2019-08-13 15:35:26      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:status   tables   数据库   show   mat   tab   format   状态   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   

原文地址:https://www.cnblogs.com/vdvvdd/p/11345762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!