1. 程式人生 > >資料庫中的事務控制語句

資料庫中的事務控制語句

1、提交事務(commit)

說明:把物件資料庫的修改操作,真實在底層執行,只有提交事務以後,資料才真實存在

create table emp(

id number(4)

name varchar2(20)

);

首先表插入資料:

insert into emp values(1,'his');

insert into emp values(2,'me');

insert into emp values(3,'she');

2、回滾事務(ROLLBACK)

說明:可以撤銷未提交的事務

insert into emp values(4,'bing');

insert into emp values(5,'com');

ROLLBACK;  ---------表示回撤