注意:oracle中update多列用逗号分隔。
1.update IOP_T_USERINFO t set (t.birthday, t.department)=(select '5202','南京' from dual ) where t.userid='321';
2.update IOP_T_USERINFO t set t.birthday='5202', t.department='南京' where t.userid='321';
3.insert into IOP_T_USERINFO t(t.userAccount,t.username) values('zhai','zhaiqinghong');
insert 插入的是一条或多条记录,不能用where ,但where 可以使用在update中,因为update 是对记录的修改。
本文链接:https://my.lmcjl.com/post/3021.html
展开阅读全文
4 评论