select name from sysobjects where type='U'select table_name from information_schema.tables

解决方案 »

  1.   

    oops, sorry, the second one should beselect table_name from information_schema.tables  where table_type = 'BASE TABLE'
      

  2.   

    oops, sorry, the second one should be
    select table_name from information_schema.tables  where table_type = 'BASE TABLE'
      

  3.   

    select * from information_schema.tables  表名﹑視圖名
    select * from INFORMATION_SCHEMA.VIEWS 視圖
    INFORMATION_SCHEMA.。。等等(看幫助)
      

  4.   

    select name from sysobjects where type='U'
      

  5.   

    http://expert.csdn.net/Expert/topic/2175/2175723.xml?temp=.0643732
      

  6.   

    select name from sysobjects where type='U'