您好,登錄后才能下訂單哦!
本文主要給大家簡單講講MySQL事務特性,相關專業術語大家可以上網查查或者找一些相關書籍補充一下,這里就不涉獵了,我們就直奔主題吧,希望MySQL事務特性這篇文章可以給大家帶來一些實際幫助。
1. Atomicity(原子性)
2. Consistency(一致性)
3. Isolation(隔離性)
4. Durability(持久性)
select @@tx_isolation;
//開始事務
start transaction/begin;
//提交或回滾
commit/rollback
SET autocommit = {0 | 1}
SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL READ COMMITTED
可選的事務隔離級別有:
REPEATABLE READ
READ COMMITTED
READ UNCOMMITTED
SERIALIZABLE
事務T1讀取了事務T2未提交的更新后的數據。
事務T1執行過程中,事務T2提交了新數據,事務T1在事務T2提交前后讀到的數據不一致。
事務T1的插入或刪除(事務已提交)導致事務T2在行數上不一致的情況。
事務隔離級別 | 讀臟 | 不可重復讀 | 幻讀 |
---|---|---|---|
讀未提交(Read-Uncommitted) | 可能 | 可能 | 可能 |
讀提交(Read-Committed) | 不可能 | 可能 | 可能 |
可重復讀(Repeatable-Read) | 不可能 | 不可能 | 可能 |
串行化(Serializable) | 不可能 | 不可能 | 不可能 |
create table goods(
id int primary key,
name varchar(100),
amount int not null
);
事務1 | 事務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' |
對于事務1,開始表為空的,后來插入是重復的key,幻覺出現。
事務1 | 事務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 |
對于事務1,開始查詢表有一條記錄,后來更新卻發現有兩條數據被更新了,幻覺出現。
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鎖,一個事務對資源加共享鎖,那么其他事務還可以對此資源加共享鎖,但是不能加排他鎖。也即是說對資源加共享鎖意味著資源可以被讀但是不能對其進行刪除和修改。如果事務T1對某一資源加共享鎖,在沒有其他事務對此資源加共享鎖的情況下那么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鎖,在事務中刪除、更新以及插入都會對資源加排它鎖,對資源加排它鎖后就不能對其加共享鎖和排它鎖了。如果再加則會引起阻塞直到上一個鎖釋放。 使用語法: begin; select * from tableName where id=2 for update;
commit;
MySQL事務特性就先給大家講到這里,對于其它相關問題大家想要了解的可以持續關注我們的行業資訊。我們的板塊內容每天都會捕捉一些行業新聞及專業知識分享給大家的。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。