Update Task01:初识数据库.md

This commit is contained in:
mba1398 2020-12-17 21:14:38 +08:00 committed by GitHub
parent 6368d4d498
commit 27b6a2be5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)