发布网友 发布时间:2022-05-01 12:44
共3个回答
懂视网 时间:2022-05-01 17:05
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脚本记录
标签:
热心网友 时间:2022-05-01 14:13
oracle数据块的增删改都会记录到日志文件中,包括增删改之前和之后的数据块等相关信息,可以用于实例崩溃后进行实例恢复。但是你说的查看增删改的日志是什么意思?热心网友 时间:2022-05-01 15:31
天门中断楚江开,碧水东流至此回。