From 27b6a2be5e4a7245a8539487360bf1620358ae9b Mon Sep 17 00:00:00 2001 From: mba1398 Date: Thu, 17 Dec 2020 21:14:38 +0800 Subject: [PATCH] =?UTF-8?q?Update=20Task01=EF=BC=9A=E5=88=9D=E8=AF=86?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Task01:初识数据库.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Task01:初识数据库.md b/Task01:初识数据库.md index 15e17fa..60fbb09 100644 --- a/Task01:初识数据库.md +++ b/Task01:初识数据库.md @@ -323,7 +323,7 @@ INSERT INTO productins VALUES ('0004', '菜刀', '厨房用具', 3000, 2800, '20 -- 多行INSERT ( DB2、SQL、SQL Server、 PostgreSQL 和 MySQL多行插入) INSERT INTO productins VALUES ('0002', '打孔器', '办公用品', 500, 320, '2009-09-11'), ('0003', '运动T恤', '衣服', 4000, 2800, NULL), - ('0004', '菜刀', '厨房用具', 3000, 2800, '2009-09-20');   + ('0004', '菜刀', '厨房用具', 3000, 2800, '2009-09-20');   -- Oracle中的多行INSERT INSERT ALL INTO productins VALUES ('0002', '打孔器', '办公用品', 500, 320, '2009-09-11') INTO productins VALUES ('0003', '运动T恤', '衣服', 4000, 2800, NULL)