Oracle update语句用法

Posted Aurora-zzz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle update语句用法相关的知识,希望对你有一定的参考价值。

一、更新数据

1、更新一条数据

update table_name set column_name=value where somestations;

注意:

①不加where限制条件会更新全部数据

②where后面有多个条件要用and连接

③set后面有两个以上的等式要加逗号

eg:从student表中删除“数据库原理”的课的选课纪录的SQL语句

update student set  sage=sage+1,ssex='女' where sname='王朝阳';

2.更新多条数据(将一个表的数据更新到另一个表上)

update table_name1 t1 set column_name=(select* from table_name2 t2 where t1.column_name=t2.column_name);

eg:aa表有lm列(lm列有数据),bb表有hm、hn列(hm列有数据),将aa表中lm列和bb表中hm列数值相同的行 更新到bb表中的hn列上。

update bb set hn=(select * from aa where aa.lm=bb.hm);

注意:

① t1和t2不能是同一张表

② 如果aa表中只有一列一行(即只有一个值),则不需要写where后面的条件,因为select语句只能查到一个值。

二、改变某列的数据类型(用到update语句)

两种方式:一是照着原表建立一个新表,二是照着原列建立一个新列

接下来以建立一个新表为例:

①先建立一个新表

②将改变数据类型的列清空

③将该列的数据更新回来

create table table_name_new as select * from table_name_old;

update table_name_old set column_name=null;

alter table table_name_old modify column_name varchar2(10);

update table_name_old o set o.column_name=(select n.column_name from table_name_new n where n.cname=o.cname);

eg:将b表t1列数据类型改为varchar2(10)

create table a as select * from b;
update b set b.t1=null;
alter table b modify b.t1 varchar2(10);
update b set b.t1=(select a.t1 from a where b.t2=a.t2);

关于Oracle update set 语句的语法

update set table1 fir set fir.a=(select name from table2 sec where fir.id_1=sec.id) and fir.b=(select name from table2 sec where fir.id_2=sec.id);想要做此更新多个字段应该如何写sql?这个sql报ORA-00933 命令未正确结束

实际上是语法错误。
同时更新多个字段,不是使用and连接,而是使用','逗号隔开。
所以,你这个语句的正确写法是,把and改成,
update set table1 fir set fir.a=(select name from table2 sec where fir.id_1=sec.id) , fir.b=(select name from table2 sec where fir.id_2=sec.id);
参考技术A update table1 set RYMC = '人员名称'||rownum;
LZ这样试试,执行前备份一下table1里的数据,别不是你想要的结果

如果是全表修改不用加条件,如果不是的全表修改,比如只修改前50条
update table1 set RYMC = '人员名称'||rownum where rownum<=50;
参考技术B update set table1 fir
set (
fir.a=(select name from table2 secwhere fir.id_1=sec.id) ,fir.b=(select name from table2 sec where fir.id_2=sec.id)
);本回答被提问者采纳

以上是关于Oracle update语句用法的主要内容,如果未能解决你的问题,请参考以下文章

oracle merge into用法

Oracle 中MERGE语句的用法(转载)

Oracle中Merge into用法总结

SQL语句update中的where条件的用法问题

Oracle之with as和update用法

oracle 中update 多列