我2:10点创建的所有的表,怎么通过t-sql语句查询出来?

解决方案 »

  1.   

    select name,crdate from sysobjects where xtype = 'U'
      

  2.   

    select name,crdate from sysobjects where xtype = 'U' and crdate between '2009-07-31 02:00' and '2009-07-31 03:00'
      

  3.   

    select * from sysobjects
    不就能看清楚了
     where xtype = 'U' U为用户类
      

  4.   

    select name,crdate from sysobjects where xtype = 'U'
      

  5.   

    select name,crdate from sysobjects where xtype = 'U'
      

  6.   

    select name,crdate from sysobjects where xtype = 'U'
      

  7.   

    按4楼的
    sysobjects中crdate字段为对象的创建时间
      

  8.   

    select name,crdate from sysobjects where xtype = 'U' and crdate between '2009-07-31 02:00' and '2009-07-31 03:00'