select so.name,<br> sc.name,<br> sp.value <br>from sysproperties sp<br> inner join syscolumns sc <br> on sp.id = sc.id and sp.smallid = sc.colid<br> left join sysobjects so<br> on so.id = sc.id <br>where so.name = 表名 and sc.name = 字段名