如何修改Oracle表中的資料
阿新 • • 發佈:2019-01-28
一 語法
UPDATE table_name SET column1=value1,... [WHERE conditions]二 例項 1、無條件更新
SQL> update userinfo
2set userpwd='111111';
已更新4行。
SQL>select userpwd from userinfo;
USERPWD
--------------------
111111
111111
111111
111111
SQL> update userinfo
2set userpwd='111',email='[email protected]
已更新4行。
SQL>select userpwd,email from userinfo;
USERPWD EMAIL
--------------------------------------------------
111 [email protected].com
111 [email protected].com
111 [email protected].com
111 [email protected]
SQL> update userinfo
2set userpwd ='1234567'
3where username='xxx'
4;
已更新1行。
SQL>select username,userpwd from userinfo;
USERNAME USERPWD
----------------------------------------
xxx 1234567
yyy 111
111
111