SQLServer获取临时表所有列名或是否存在指定列名的方法
时间:2020-10-26 23:16:52|栏目:MsSql|点击: 次
获取临时表中所有列名
select name from tempdb.dbo.syscolumns where id=object_id( '#TempTB')
判断临时表中是否存在指定列名
if col_length('tempdb.dbo.#TempTB','columnName') is not null print '存在' else print '不存在'
上一篇:sum(case when then)(判断男女生的个数)
栏 目:MsSql
下一篇:批处理 动态sql
本文标题:SQLServer获取临时表所有列名或是否存在指定列名的方法
本文地址:http://www.codeinn.net/misctech/16101.html