首页 > 代码库 > Oracle增删改DML脚本记录
Oracle增删改DML脚本记录
--insert into添加数据 insert into student(sno,sname,ssex) values(‘110‘,‘王军‘,‘男‘); --提交事物 commit; --回滚事物 --rollback; insert into teacher1 select * from teacher; insert into teacher1(ton,tname,prof) select ton,tname,prof from teacher; --选择性插入两表之间 insert into teacher1 t(ton,tname,prof) select ton,tname,prof from teacher where ton=‘804‘; --修改 update update student set sclass=‘95031‘,ssex=‘女‘ where son=‘104‘; commit --修改成绩 update score set degree=degree+1; --将空sclass内容更改95033 update student set sclass=‘95033‘ where sclass is null; --删除 delete delete from student where sno=‘104‘; --全表快速清空:先删表,在建表 truncate table stdent;
Oracle增删改DML脚本记录
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。