Oracle SQL 更新数据

insert

1
2
insert into 表名 (列名)
values(值);
1
2
insert into 表名 (列名)
select

update

1
2
3
update 表名 
set 列 = 新值
where ;

delete

1
delete from 表名; -- DML
1
truncate table students; -- DDL,无法回滚