在oracle中,可以使用「update」指令來修改列的值,該語句可以用來修改、更新一個或多個表的數據,語法為「update 表名set 列名1=值1,列名2=值2,列名3=值3..... where 條件」。
本教學操作環境:Windows7系統、Oracle 11g版、Dell G3電腦。
在oracle中,可以使用「update」指令來修改列的值。
update語句可以用來修改、更新一個或多個表格的資料。
語法:
update 表名 set 列名1=值1,列名2=值2,列名3=值3..... where 条件
案例1、更新學生「張三」的年齡和身分證資訊:
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更新回學生「張三」的年齡與身分證:
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中文網其他相關文章!