この記事では、Oracle に関する関連知識を提供します。主に、トランザクション レベルの一時テーブル、セッション レベルの一時テーブルなどの一時テーブルに関する関連問題を以下に紹介します。見てみましょう。皆様のお役に立てれば幸いです。
# 推奨チュートリアル: 「Oracle ビデオ チュートリアル #」
create global temporary table 临时表名(colum,colum,.......)on commit delete rows;on commit preserve rows;説明:
-- 创建事务级临时表 tmp_user 注:on commit delete rows 可省略create global temporary table tmp_user ( user_id varchar2(10), user_name varchar2(20)) on commit delete rows;
#2.2. セッションレベルの一時テーブル
-- 创建会话级临时表 tmp_user1create global temporary table tmp_user1 ( user_id varchar2(10), user_name varchar2(20))on commit preserve rows;
# 3 、一時テーブルの説明
推奨チュートリアル: 「
Oracle ビデオ チュートリアル以上がOracle 一時テーブルの詳細な例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。