Oracle では、「update」コマンドを使用して列の値を変更できます。このステートメントは、1 つ以上のテーブルのデータを変更および更新するために使用できます。構文は「update table name set」です。列名 1 = 値 1、列名 2 = 値 2、列名 3 = 値 3.... where 条件」。
このチュートリアルの動作環境: Windows 7 システム、Oracle 11g バージョン、Dell G3 コンピューター。
Oracle では、「update」コマンドを使用して列の値を変更できます。
update ステートメントは、1 つ以上のテーブルのデータを変更および更新するために使用できます。
文法:
update 表名 set 列名1=值1,列名2=值2,列名3=值3..... where 条件
ケース 1. 学生「Zhang San」の年齢と ID カード情報を更新します:
update student.stuinfo t set t.age = '24', t.idnumber = '3503021994XXXXXXXX' where t.stuname = '张三'; commit; select * from student.stuinfo t where t.stuname='张三';
結果
update 別のテーブルの関連付けを使用してこのテーブルのデータを更新するコマンド構造は次のとおりです。
update 表1 set 列名=(select 列名 from 表2 where 表1.列名=表2.列名) where exists (select 1 from 表2 where 表1.列名=表2.列名)
ケース 2 、バックアップ テーブル stuinfo_2018 を使用して更新し直します。 学生「Zhang San」の年齢と ID カード:
update student.stuinfo t set (age, idnumber) = (select age, idnumber from student.stuinfo_2018 b where b.stuid = t.stuid) where exists (select 1 from student.stuinfo_2018 b where b.stuid = t.stuid and b.stuname = '张三'); select *from student.stuinfo t where t.stuname='张三';
結果は次のとおりです:
##推奨チュートリアル: 「Oracle チュートリアル》
以上がOracleで列の値を変更する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。