SqlServer和Oracle判断表和列是否存在

SqlServer

1.判断表Users是否存在
if object_id(N'Users',N'U') is not null
    print '存在'
else 
    print '不存在'
    
2.判断表Users中是否存在Name这一列
if exists(select * from syscolumns where id=object_id('Users') and name='Name' 
collate Chinese_PRC_CI_AI_WS)
    print '存在'
else
    print '不存在'
备注:collate Chinese_PRC_CI_AI_WS代表不区分大小写

 Oracle

1.判断表是否村子
declare 
  -- 这里是本地变量
  i integer;
begin
  -- 这里是测试语句
  select count(1) into i from all_tables where table_name='SITE_INFO' AND owner='WIFI';
  if(i>0)
  then
     dbms_output.put_line('存在');
  else
     dbms_output.put_line('不存在');
  end if;
end;
2.判断列是否存在
declare 
  -- 这里是本地变量
  i integer;
begin
  -- 这里是测试语句
  select count(1) into i from all_tab_columns where owner='WIFI' and table_name='SITE_INFO' and column_name='SITE_ID';
  if(i>0)
  then
     dbms_output.put_line('存在');
  else
     dbms_output.put_line('不存在');
  end if;
end;

 

说明:PL/SQL需要新建一个Test Window才能运行上面的语句

转载于:https://www.cnblogs.com/duanjt/p/5778667.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值