当前位置:数据库 > SQLServer >>

sql判断表名与字段名是否存在语句

1.字段是否存在

 代码如下 复制代码

if((select 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 表名

补充:数据库,Mssql
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,