Oracle增删改DML脚本记录

Posted 熊猫卡洛斯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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脚本记录的主要内容,如果未能解决你的问题,请参考以下文章

三MySQL 高级(DML 增删改)

MySQL语法------15-----DML语言-增删改

DML语言|表内数据增删改(MySQL)

DML语言|表内数据增删改(MySQL)

mysql 记录的增删改查

Mysql增删改查(DML)