1 DML(数据操纵语言)Data Manipulation Language 2 用于增、删、改 数据库中的数据 3 常伴随着TCL(事物操作语言)----commit(保存);rollback(回滚); 4 create table stu( id number(5), name char(12) ); 5 6 1.向表中插入数据; 7 insert into stu (id ,name) values(1,‘秦舞阳‘);----第一种写法 8 insert into stu values(2,"孙悟空"); ----第二种写法(简洁版) 9 commit; -----保存操作 10 2.删除表中的数据; 11 delete from stu where id="1";---删除stu表里符合where条件的数据,不写where条件则全删; 12 3.更改表中的数据 13 update stu set name=‘齐天大圣‘ where id="2"; ---将id=2的名字改为‘齐天大圣’ 14 15 16 17 18 19 20
时间: 2024-11-10 08:08:55