本文主要給大家簡單講講MySQL事務(wù)特性,相關(guān)專業(yè)術(shù)語大家可以上網(wǎng)查查或者找一些相關(guān)書籍補(bǔ)充一下,這里就不涉獵了,我們就直奔主題吧,希望MySQL事務(wù)特性這篇文章可以給大家?guī)硪恍?shí)際幫助。
隆安ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)建站的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!
1. Atomicity(原子性)
2. Consistency(一致性)
3. Isolation(隔離性)
4. Durability(持久性)
select @@tx_isolation;
//開始事務(wù)
start transaction/begin;
//提交或回滾
commit/rollback
SET autocommit = {0 | 1}
SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL READ COMMITTED
可選的事務(wù)隔離級別有:
REPEATABLE READ
READ COMMITTED
READ UNCOMMITTED
SERIALIZABLE
事務(wù)T1讀取了事務(wù)T2未提交的更新后的數(shù)據(jù)。
事務(wù)T1執(zhí)行過程中,事務(wù)T2提交了新數(shù)據(jù),事務(wù)T1在事務(wù)T2提交前后讀到的數(shù)據(jù)不一致。
事務(wù)T1的插入或刪除(事務(wù)已提交)導(dǎo)致事務(wù)T2在行數(shù)上不一致的情況。
事務(wù)隔離級別 | 讀臟 | 不可重復(fù)讀 | 幻讀 |
---|---|---|---|
讀未提交(Read-Uncommitted) | 可能 | 可能 | 可能 |
讀提交(Read-Committed) | 不可能 | 可能 | 可能 |
可重復(fù)讀(Repeatable-Read) | 不可能 | 不可能 | 可能 |
串行化(Serializable) | 不可能 | 不可能 | 不可能 |
create table goods(
id int primary key,
name varchar(100),
amount int not null
);
事務(wù)1 | 事務(wù)2 |
---|---|
begin; | begin; |
select * from goods; | |
Empty set (0.00 sec) | |
insert into goods(id, name, amount) values(1, '蘋果', 100); | |
commit; | |
insert into goods(id, name, amount) values(1, '蘋果', 100); | |
ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY' |
對于事務(wù)1,開始表為空的,后來插入是重復(fù)的key,幻覺出現(xiàn)。
事務(wù)1 | 事務(wù)2 |
---|---|
begin; | begin; |
select * from goods; | |
1 row in set (0.00 sec) | |
insert into goods(id, name, amount) values(2, '香蕉', 100); | |
commit; | |
update goods set amount=1; | |
Rows matched: 2 Changed: 2 Warnings: 0 |
對于事務(wù)1,開始查詢表有一條記錄,后來更新卻發(fā)現(xiàn)有兩條數(shù)據(jù)被更新了,幻覺出現(xiàn)。
A kind of lock that allows other transactions to read the locked object, and to also acquire other shared locks on
it, but not to write to it.
共享鎖又叫S鎖,一個(gè)事務(wù)對資源加共享鎖,那么其他事務(wù)還可以對此資源加共享鎖,但是不能加排他鎖。也即是說對資源加共享鎖意味著資源可以被讀但是不能對其進(jìn)行刪除和修改。如果事務(wù)T1對某一資源加共享鎖,在沒有其他事務(wù)對此資源加共享鎖的情況下那么T1還可以對此資源加排它鎖。
使用語法:
begin;
select * from tableName where id=2 lock in share mode;
commit;
A kind of lock that prevents any other transaction from locking the same row. Depending on the transaction isolation level, this kind of lock might block other transactions from writing to the same row, or might also block other transactions from reading the same row. The default InnoDB isolation level, REPEATABLE READ, enables higher concurrency by allowing transactions to read rows that have exclusive locks, a technique known as consistent read. 排他鎖又叫X鎖,在事務(wù)中刪除、更新以及插入都會(huì)對資源加排它鎖,對資源加排它鎖后就不能對其加共享鎖和排它鎖了。如果再加則會(huì)引起阻塞直到上一個(gè)鎖釋放。 使用語法: begin; select * from tableName where id=2 for update;
commit;
MySQL事務(wù)特性就先給大家講到這里,對于其它相關(guān)問題大家想要了解的可以持續(xù)關(guān)注我們的行業(yè)資訊。我們的板塊內(nèi)容每天都會(huì)捕捉一些行業(yè)新聞及專業(yè)知識(shí)分享給大家的。