sql判断表名与字段名是否存在语句
来源:懂视网
责编:小采
时间:2020-11-09 09:59:57
sql判断表名与字段名是否存在语句
sql判断表名与字段名是否存在语句:文章介绍了关于sql判断表名与字段名是否存在语句有需要的同学参考一下。 1.字段是否存在 代码如下 if(( count(*) from syscolumns where name = '字段名' and id=(select id from sysobjects where name='表名')
导读sql判断表名与字段名是否存在语句:文章介绍了关于sql判断表名与字段名是否存在语句有需要的同学参考一下。 1.字段是否存在 代码如下 if(( count(*) from syscolumns where name = '字段名' and id=(select id from sysobjects where name='表名')
文章介绍了关于sql判断表名与字段名是否存在语句有需要的同学参考一下。
1.字段是否存在
代码如下 |
|
if(( count(*) from syscolumns where name = '字段名' and id=(select id from sysobjects where name='表名'))=0)
begin
end
|
2.表是否存在
代码如下 |
|
if exists (select * from sysobjects where id = OBJECT_ID('表名') and OBJECTPROPERTY(id, 'IsUserTable') = 1)
DROP TABLE 表名
|
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
sql判断表名与字段名是否存在语句
sql判断表名与字段名是否存在语句:文章介绍了关于sql判断表名与字段名是否存在语句有需要的同学参考一下。 1.字段是否存在 代码如下 if(( count(*) from syscolumns where name = '字段名' and id=(select id from sysobjects where name='表名')