溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

oracle中怎么判斷表中列是否存在并修改表結(jié)構(gòu)

發(fā)布時(shí)間:2021-08-02 11:57:59 來(lái)源:億速云 閱讀:426 作者:Leah 欄目:大數(shù)據(jù)

oracle中怎么判斷表中列是否存在并修改表結(jié)構(gòu),相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

判斷表中列是否存在的方法

  • 方法一:

    可以用user_tab_cols表進(jìn)行查詢,查詢有結(jié)果表示字段存在:
    sql:select * from user_tab_cols where table_name='T_AAA' and column_name='COL_BBB';


  • 方法二:

    也可以用all_tab_columns表進(jìn)行查詢,查詢有結(jié)果表示字段存在:
    sql:select * from all_tab_columns where owner='SYS_CCC' and table_name='T_AAA' and column_name='COL_BBB';
    備注:所有的查詢字段必須是大寫,否則查詢會(huì)有誤差。

修改表結(jié)構(gòu)方法

  • 增加字段語(yǔ)法:alter table tablename add (column datatype [default value][null/not null],….);
    說(shuō)明:alter table 表名 add (字段名 字段類型 默認(rèn)值 是否為空);
       例:alter table sf_users add (HeadPIC blob);
       例:alter table sf_users add (userName varchar2(30) default '空' not null);


  • 修改字段的語(yǔ)法:alter table tablename modify (column datatype [default value][null/not null],….);
    說(shuō)明:alter table 表名 modify (字段名 字段類型 默認(rèn)值 是否為空);
       例:alter table sf_InvoiceApply modify (BILLCODE number(4));


  • 刪除字段的語(yǔ)法:alter table tablename drop (column);
    說(shuō)明:alter table 表名 drop column 字段名;
       例:alter table sf_users drop column HeadPIC;

  • 字段的重命名:
    說(shuō)明:alter table 表名 rename  column  列名 to 新列名   (其中:column是關(guān)鍵字)
       例:alter table sf_InvoiceApply rename column PIC to NEWPIC;

  • 表的重命名:
    說(shuō)明:alter table 表名 rename to  新表名
       例:alter table sf_InvoiceApply rename to  sf_New_InvoiceApply;

腳本實(shí)例

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;

看完上述內(nèi)容,你們掌握oracle中怎么判斷表中列是否存在并修改表結(jié)構(gòu)的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI