2013年10月12日

获取SQL Server数据库表的列名

摘要: SELECT syscolumns.name,systypes.name,syscolumns.isnullable,syscolumns.lengthFROM syscolumns, systypesWHERE syscolumns.xusertype = systypes.xusertype AND syscolumns.id = object_id('ChildrenCustomer') and syscolumns.name like '%obile' 阅读全文

posted @ 2013-10-12 11:18 骑蟋蟀的蝈蝈 阅读(126) 评论(0) 推荐(0)

导航