From dba370ef301a37a913be724712e79f7e68ef420f Mon Sep 17 00:00:00 2001 From: mba1398 <26516464+mba1398@users.noreply.github.com> Date: Fri, 17 Dec 2021 23:18:20 +0800 Subject: [PATCH] =?UTF-8?q?Update=20ch03:=20=E5=A4=8D=E6=9D=82=E4=B8=80?= =?UTF-8?q?=E7=82=B9=E7=9A=84=E6=9F=A5=E8=AF=A2.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ch03: 复杂一点的查询.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch03: 复杂一点的查询.md b/ch03: 复杂一点的查询.md index fdcf602..9e3d27b 100644 --- a/ch03: 复杂一点的查询.md +++ b/ch03: 复杂一点的查询.md @@ -794,8 +794,8 @@ COALESCE(NULL, NULL, '2020-11-01') AS col_3; -- DDL :创建表 CREATE TABLE samplelike ( strcol VARCHAR(6) NOT NULL, -PRIMARY KEY (strcol) -samplelike); + PRIMARY KEY (strcol) +); -- DML :插入数据 START TRANSACTION; -- 开始事务 INSERT INTO samplelike (strcol) VALUES ('abcddd');