Quantcast
Channel: CodeSection,代码区,SQL Server(mssql)数据库 技术分享 - CodeSec
Viewing all articles
Browse latest Browse all 3160

SQL-查看某天新建的表的名称和建表时间 SQL SQL数据库 建表时间查询 表名称查询

$
0
0
SQL-查看某天新建的表的名称和建表时间
select object_name ,to_char(created,'yyyy-mm-dd hh24:mm:ss') from user_objects
where object_type='TABLE' and to_char(created,'yyyy-mm-dd')='2016-08-02';

Viewing all articles
Browse latest Browse all 3160

Latest Images

Trending Articles