mysql相关
Posted vdvvdd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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相关的主要内容,如果未能解决你的问题,请参考以下文章