首页 > 数据库技术 > 详细

oracle----修改表中的数据

时间:2015-09-20 23:56:42      阅读:486      评论:0      收藏:0      [点我收藏+]

1. 修改表中的数据:UPDATE语句:

语法:

UPDTAE table_name
SET column1 = value1,...
[WHERE conditions]

(2),无条件的更新(没有where条件的更新):

SQL> update userinfo set userpwd=111111;

已更新4行。
SQL> select userpwd from userinfo;

USERPWD
--------------------
111111
111111
111111
111111

SQL>

更改多个字段以都好分隔;

SQL> update userinfo set userpwd=111,email=111@163.com;

已更新4行。

SQL> select userpwd,email from userinfo;

USERPWD              EMAIL
-------------------- ------------------------------
111                  111@163.com
111                  111@163.com
111                  111@163.com
111                  111@163.com

SQL>

 

 

(2),有条件的更新:

SQL> select username from userinfo;

USERNAME
--------------------
xxx
yyy

SQL> update userinfo set userpwd=123456
  2  where username=xxx;

已更新 1 行。

SQL> select id,username,userpwd from userinfo;

        ID USERNAME             USERPWD
---------- -------------------- --------------------
         1 xxx                  123456
         2 yyy                  111
         3                      111
         4                      111

SQL>

 

oracle----修改表中的数据

原文:http://www.cnblogs.com/blogofwyl/p/4824712.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!