首页 > 数据库 > MySQL > 正文

MYSQL高级特性 -- 事务处理

2024-07-24 12:55:33
字体:
来源:转载
供稿:网友

下面以两个银行账户之间的转账为例子进行演示。

要使用mysql中的事务处理,首先需要创建使用事务表类型(如bdb = berkeley db或innodb)的表。

create table account (
account_id bigint unsigned not null primary key auto_increment,
balance double
) type = innodb;


要在事务表上使用事务处理,必须要首先关闭自动提交:

set autocommit = 0;

事务处理以begin命令开始:

begin;

现在mysql客户处在于服务器相关的事物上下文中。任何对事务表所做的改变在提交之前不会成为永久性的改变。

update account set balance = 50.25 where account_id = 1;
update account set balance = 100.25 where account_id = 2;

在做出所有的改变之后,使用commit命令完成事务处理:

commit;

当然,事务处理的真正优点是在执行第二条语句发生错误时体现出来的,若在提交前终止整个事务,可以进行回滚操作:

rollback;

下面是另一个例子,通过mysql直接进行数学运算:

select @first := balance from account where account_id = 1;
select @second := balance from account where account_id = 2;
update account set balance = @first - 25.00 where account_id = 1;
update account set balance = @second + 25.00 where account_id = 2;

除了commit命令外,下列命令也会自动结束当前事务:

alter table
begin
create index
drop database
drop table
lock tables
rename table
truncate
unlock tables

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表