Home > Database > Mysql Tutorial > 查询数据库最后修改时间与创建时间(表的修改时间)

查询数据库最后修改时间与创建时间(表的修改时间)

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 17:47:29
Original
2525 people have browsed it

查询数据库最后修改时间与创建时间(表的修改时间)

查询最后修改时间与创建时间(表的修改时间)

//查询数据库最后修改时间2005
select modify_date from sys.objects where object_id=object_id('table_name')

select modify_date from sys.objects where object_id=object_id('table_name')

//表最后修改时间
select * from sysobjects
//这样只能查出创建日期

select * from sys.databases

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template