oracle中怎么判断表中列是否存在并修改表结构,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
判断表中列是否存在的方法
方法一:
可以用user_tab_cols表进行查询,查询有结果表示字段存在:
sql:select * from user_tab_cols where table_name='T_AAA' and column_name='COL_BBB';
方法二:
也可以用all_tab_columns表进行查询,查询有结果表示字段存在:
sql:select * from all_tab_columns where owner='SYS_CCC' and table_name='T_AAA' and column_name='COL_BBB';
备注:所有的查询字段必须是大写,否则查询会有误差。
修改表结构方法
增加字段语法:alter table tablename add (column datatype [default value][null/not null],….);
说明:alter table 表名 add (字段名 字段类型 默认值 是否为空);
例:alter table sf_users add (HeadPIC blob);
例:alter table sf_users add (userName varchar2(30) default '空' not null);
修改字段的语法:alter table tablename modify (column datatype [default value][null/not null],….);
说明:alter table 表名 modify (字段名 字段类型 默认值 是否为空);
例:alter table sf_InvoiceApply modify (BILLCODE number(4));
删除字段的语法:alter table tablename drop (column);
说明:alter table 表名 drop column 字段名;
例:alter table sf_users drop column HeadPIC;
字段的重命名:
说明:alter table 表名 rename column 列名 to 新列名 (其中:column是关键字)
例:alter table sf_InvoiceApply rename column PIC to NEWPIC;
表的重命名:
说明:alter table 表名 rename to 新表名
例:alter table sf_InvoiceApply rename to sf_New_InvoiceApply;
脚本实例
declare v_count integer;
v_sql varchar2(5000):='';
begin
--查询是否有这前列
select count(*) into v_count from user_tab_cols where table_name=upper('tSkuPlu') and column_name=upper('pluremark');
if v_count>0 then
dbms_output.put_line('列已存在!');
else
v_sql:=' alter table tSkuPlu add (PluRemark varchar2(50)) ';
execute immediate v_sql;
end if;
end;
看完上述内容,你们掌握oracle中怎么判断表中列是否存在并修改表结构的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。