关于sqlserver的简单问题(20分)

  • 主题发起人 主题发起人 grayguygg
  • 开始时间 开始时间
G

grayguygg

Unregistered / Unconfirmed
GUEST, unregistred user!
大家五一快乐啊,该休息的都要休息啊,不过还有个问题要请教一下<br><br>我在sqlserver数据表中的字段是用英文命名的,描述是用中文的,那么在程序里面能不能取到这个描述呢?我以前没有这样做过,不知道各位有没有这样做过的<br><br>我试了下,好象不行,有做过的,麻烦告诉下
 
select &nbsp;so.name,<br>&nbsp; &nbsp; &nbsp; &nbsp; sc.name,<br>&nbsp; &nbsp; &nbsp; &nbsp; sp.value &nbsp; <br>from &nbsp; &nbsp;sysproperties &nbsp;sp<br>&nbsp; &nbsp; &nbsp; &nbsp; inner join syscolumns sc <br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;on sp.id = sc.id and sp.smallid = sc.colid<br>&nbsp; &nbsp; &nbsp; &nbsp; left join sysobjects so<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; on so.id = sc.id <br>where &nbsp; so.name = 表名 and sc.name = 字段名
 
那个值的描述信息在表sysproperties中。
 
多谢,我以前还没有这样用过
 
后退
顶部