获取临时表中所有列名
select name from tempdb.dbo.syscolumns where id=object_id( '#TempTB')
判断临时表中是否存在指定列名
if col_length('tempdb.dbo.#TempTB','columnName') is not null print '存在' else print '不存在'
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持潘少俊衡!
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/shujuku/MsSQL/97404.html