SQLServer获取临时表所有列名或是否存在指定列名的方法
程序员文章站
2022-03-09 23:19:45
获取临时表中所有列名
select name from tempdb.dbo.syscolumns where id=object_id( '#temptb')
判断临...
获取临时表中所有列名
select name from tempdb.dbo.syscolumns where id=object_id( '#temptb')
判断临时表中是否存在指定列名
if col_length('tempdb.dbo.#temptb','columnname') is not null print '存在' else print '不存在'
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
上一篇: log4j的使用