求助:有没有一条语句可以实现获得SQL SERVER中的用户表??

解决方案 »

  1.   

    select * from sysobjects where xtype='u'
      

  2.   

    select name from dbname..sysobjects where xtype='u'
      

  3.   

    要不要同时把用户表里的记录也取出来,很想知道这个用一条SQL 语句是怎么实现的,
      

  4.   

    select * from sysobjects where xtype='u'
      

  5.   

    select Name from sysobjects where xtype='u'
      

  6.   

    select * from sysobjects where xtype='u'
      

  7.   

    select * from sysobjects where xtype='u' and name<>'dtproperties'