select * from sysproperties

解决方案 »

  1.   

    http://expert.csdn.net/Expert/topic/901/901091.xml?temp=.150921
      

  2.   

    select * from syscolumns where id in (select id from sysobjects
      where name='gcdjb') 显示这个表的字段信息
    注:数据库得信息都在master数据库中,其中sysobjects和syscolumns中
    存放表格(视图之类)和字段的详细信息
      

  3.   

    你是不是要这个? select d.name,a.name ,b.name ,a.length, a.isnullable from syscolumns a, systypes b,sysobjects d where a.xtype=b.xusertype and a.id=d.id and d.xtype='U'