A apple_ge Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-10 #1 数据库SQL Server字段采用英文,每隔字段对应一个中文描述信息。 如何在程序中取得这个描述信息?恳请指教!
黑 黑猫 Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-10 #2 在SQL SERVER 建立的数据库的表中有一个系统表sysproperties,里面存储了你 所建立的所有表字段的描述信息,另一个系统表syscolumns中有每个字段的ID号,根据 字段的ID号查找sysproperties表中的该字段的描述(字段是VALUE)就可以了
在SQL SERVER 建立的数据库的表中有一个系统表sysproperties,里面存储了你 所建立的所有表字段的描述信息,另一个系统表syscolumns中有每个字段的ID号,根据 字段的ID号查找sysproperties表中的该字段的描述(字段是VALUE)就可以了
荷 荷塘新月 Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-10 #3 呵呵,自己建立一个中文说明表,将各个表的字段表达的意思保存在这个表中不就解决了嘛!
J jrq Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-10 #4 to 黑猫:》查找sysproperties表中的该字段的描述(字段是VALUE)就可以了 VALUE是可以自己描述的吗? 即是不是可以自己填入中文意思? 我的syscolumns中有我的所有字段, 但是sysproperties中空空如也,何故? 需要我自己填写吗? 3Q 学习了, 谢谢! 提前!
to 黑猫:》查找sysproperties表中的该字段的描述(字段是VALUE)就可以了 VALUE是可以自己描述的吗? 即是不是可以自己填入中文意思? 我的syscolumns中有我的所有字段, 但是sysproperties中空空如也,何故? 需要我自己填写吗? 3Q 学习了, 谢谢! 提前!
H hbezwwl Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-10 #5 就是黑猫说的,你在建表时输入字段说明,然后查询 系统表就可以获得。
Z ZQFILE Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-10 #6 Select value from sysproperties where id in (Select id from sysindexes where name='表名') OR Select value from sysproperties where id in (Select id from sysindexes where name='PK_表名')
Select value from sysproperties where id in (Select id from sysindexes where name='表名') OR Select value from sysproperties where id in (Select id from sysindexes where name='PK_表名')