mssql怎么查看最新更新的数据表?
想要看下最新修改的数据表是哪个.怎么看呢
------解决方案--------------------------------------------------------
用
- SQL code
select crdate from sysobjects where name= 'TABLENAME' and xtype= 'U '
select crdate from sysobjects where name= 'TABLENAME' and xtype= 'U '