1
0

mysql事务问题演示

This commit is contained in:
2025-09-01 04:31:37 +08:00
parent 484bd7eb02
commit 71c569c9bd
3 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
create schema errors;
-- 生成演示用的表
create table errors.customer
(
id int auto_increment
primary key,
username varchar(50) not null
);
create table errors.customer_back
(
id int auto_increment
primary key,
username varchar(50) not null
);