获取临时表中所有列名
select name from tempdb.dbo.syscolumns where id=object_id( '#TempTB')
判断临时表中是否存在指定列名
sql;">
if col_length('tempdb.dbo.#TempTB','columnName') is not null
print '存在'
else
print '不存在'
原文链接:https://www.f2er.com/mssql/62729.html获取临时表中所有列名
select name from tempdb.dbo.syscolumns where id=object_id( '#TempTB')
判断临时表中是否存在指定列名