SQL运用记录

来源:互联网 发布:霍恩布洛尔船长 知乎 编辑:程序博客网 时间:2024/06/09 18:52
--读取库中的所有表名--1.select name from sysobjects where xtype='u'--读取指定表的所有列名select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名')--得到表中列的描述内容select a.name,g.value from syscolumns as a left join sysproperties g   on a.id=g.id AND a.colid = g.smallid where a.id=Object_id('表名')
--获取表的字段列名很说明及类型
select distinct a.name,g.value,type_name(a.xtype) as typename  from syscolumns as a left join sysproperties g on a.id=g.id AND a.colid = g.smallid where a.id=Object_id('ou_Project') and g.value is not null and g.value !=''


原创粉丝点击