<bdo id='UMTsl'></bdo><ul id='UMTsl'></ul>

      1. <legend id='UMTsl'><style id='UMTsl'><dir id='UMTsl'><q id='UMTsl'></q></dir></style></legend>
      2. <i id='UMTsl'><tr id='UMTsl'><dt id='UMTsl'><q id='UMTsl'><span id='UMTsl'><b id='UMTsl'><form id='UMTsl'><ins id='UMTsl'></ins><ul id='UMTsl'></ul><sub id='UMTsl'></sub></form><legend id='UMTsl'></legend><bdo id='UMTsl'><pre id='UMTsl'><center id='UMTsl'></center></pre></bdo></b><th id='UMTsl'></th></span></q></dt></tr></i><div id='UMTsl'><tfoot id='UMTsl'></tfoot><dl id='UMTsl'><fieldset id='UMTsl'></fieldset></dl></div>
        <tfoot id='UMTsl'></tfoot>

        <small id='UMTsl'></small><noframes id='UMTsl'>

      3. 如何在将列添加到 PL/SQL 中的现有表之前检查列是否存在?

        How to check if a column exists before adding it to an existing table in PL/SQL?(如何在将列添加到 PL/SQL 中的现有表之前检查列是否存在?)

        <small id='FPhLh'></small><noframes id='FPhLh'>

      4. <i id='FPhLh'><tr id='FPhLh'><dt id='FPhLh'><q id='FPhLh'><span id='FPhLh'><b id='FPhLh'><form id='FPhLh'><ins id='FPhLh'></ins><ul id='FPhLh'></ul><sub id='FPhLh'></sub></form><legend id='FPhLh'></legend><bdo id='FPhLh'><pre id='FPhLh'><center id='FPhLh'></center></pre></bdo></b><th id='FPhLh'></th></span></q></dt></tr></i><div id='FPhLh'><tfoot id='FPhLh'></tfoot><dl id='FPhLh'><fieldset id='FPhLh'></fieldset></dl></div>
            <bdo id='FPhLh'></bdo><ul id='FPhLh'></ul>
              1. <tfoot id='FPhLh'></tfoot>
                <legend id='FPhLh'><style id='FPhLh'><dir id='FPhLh'><q id='FPhLh'></q></dir></style></legend>

                    <tbody id='FPhLh'></tbody>
                • 本文介绍了如何在将列添加到 PL/SQL 中的现有表之前检查列是否存在?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何在向 oracle 数据库的表中添加列之前添加简单的检查?我已经包含了用于添加列的 SQL.

                  How do I add a simple check before adding a column to a table for an oracle db? I've included the SQL that I'm using to add the column.

                  ALTER TABLE db.tablename 
                    ADD columnname NVARCHAR2(30);
                  

                  推荐答案

                  可以使用以下视图之一访问有关 Oracle 数据库中列的所有元数据.

                  All the metadata about the columns in Oracle Database is accessible using one of the following views.

                  user_tab_cols;-- 用户拥有的所有表

                  user_tab_cols; -- For all tables owned by the user

                  all_tab_cols ;-- 用户可以访问的所有表

                  all_tab_cols ; -- For all tables accessible to the user

                  dba_tab_cols;-- 对于数据库中的所有表.

                  dba_tab_cols; -- For all tables in the Database.

                  因此,如果您要在 SCOTT.EMP 表中查找类似 ADD_TMS 的列,并且仅在该列不存在时才添加该列,则 PL/SQL 代码将遵循这些行..

                  So, if you are looking for a column like ADD_TMS in SCOTT.EMP Table and add the column only if it does not exist, the PL/SQL Code would be along these lines..

                  DECLARE
                    v_column_exists number := 0;  
                  BEGIN
                    Select count(*) into v_column_exists
                      from user_tab_cols
                      where upper(column_name) = 'ADD_TMS'
                        and upper(table_name) = 'EMP';
                        --and owner = 'SCOTT --*might be required if you are using all/dba views
                  
                    if (v_column_exists = 0) then
                        execute immediate 'alter table emp add (ADD_TMS date)';
                    end if;
                  end;
                  /
                  

                  如果您打算将此作为脚本(不是过程的一部分)运行,最简单的方法是在脚本中包含 alter 命令并查看脚本末尾的错误,假设您没有 Begin- 脚本结束..

                  If you are planning to run this as a script (not part of a procedure), the easiest way would be to include the alter command in the script and see the errors at the end of the script, assuming you have no Begin-End for the script..

                  如果你有file1.sql

                  If you have file1.sql

                  alter table t1 add col1 date;
                  alter table t1 add col2 date;
                  alter table t1 add col3 date;
                  

                  并且 col2 存在,当脚本运行时,其他两列将添加到表中,并且日志会显示col2"已经存在的错误,所以你应该没问题.

                  And col2 is present,when the script is run, the other two columns would be added to the table and the log would show the error saying "col2" already exists, so you should be ok.

                  这篇关于如何在将列添加到 PL/SQL 中的现有表之前检查列是否存在?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to redirect the output of DBMS_OUTPUT.PUT_LINE to a file?(如何将 DBMS_OUTPUT.PUT_LINE 的输出重定向到文件?)
                  How do I get column datatype in Oracle with PL-SQL with low privileges?(如何使用低权限的 PL-SQL 在 Oracle 中获取列数据类型?)
                  Get a list of all functions and procedures in an Oracle database(获取 Oracle 数据库中所有函数和过程的列表)
                  Why cannot I create triggers on objects owned by SYS?(为什么我不能在 SYS 拥有的对象上创建触发器?)
                  Returning result even for elements in IN list that don#39;t exist in table(即使对于表中不存在的 IN 列表中的元素也返回结果)
                  Reset Sequence in oracle 11g(oracle 11g 中的重置序列)

                  <small id='bUXk2'></small><noframes id='bUXk2'>

                  • <bdo id='bUXk2'></bdo><ul id='bUXk2'></ul>
                    <tfoot id='bUXk2'></tfoot>
                    <i id='bUXk2'><tr id='bUXk2'><dt id='bUXk2'><q id='bUXk2'><span id='bUXk2'><b id='bUXk2'><form id='bUXk2'><ins id='bUXk2'></ins><ul id='bUXk2'></ul><sub id='bUXk2'></sub></form><legend id='bUXk2'></legend><bdo id='bUXk2'><pre id='bUXk2'><center id='bUXk2'></center></pre></bdo></b><th id='bUXk2'></th></span></q></dt></tr></i><div id='bUXk2'><tfoot id='bUXk2'></tfoot><dl id='bUXk2'><fieldset id='bUXk2'></fieldset></dl></div>

                          <tbody id='bUXk2'></tbody>

                          • <legend id='bUXk2'><style id='bUXk2'><dir id='bUXk2'><q id='bUXk2'></q></dir></style></legend>