SQLServer获取临时表所有列名或是否存在指定列名

2023年 4月 20日 63.6k 0

获取临时表中所有列名 select name from tempdb.dbo.syscolumns where id=object_id( '#TempTB') 判断临时表中是否存在指定列名 if col_length('tempdb.dbo.#TempTB','columnName') is not null print '存在'else print '不存在

获取临时表中所有列名

select name from tempdb.dbo.syscolumns where id=object_id( '#TempTB')

判断临时表中是否存在指定列名

if col_length('tempdb.dbo.#TempTB','columnName') is not null
print '存在'
else
print '不存在'

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持每日运维!

相关文章

Oracle如何使用授予和撤销权限的语法和示例
Awesome Project: 探索 MatrixOrigin 云原生分布式数据库
下载丨66页PDF,云和恩墨技术通讯(2024年7月刊)
社区版oceanbase安装
Oracle 导出CSV工具-sqluldr2
ETL数据集成丨快速将MySQL数据迁移至Doris数据库

发布评论