From 401105f85afa77e27ace42ddea4d147aaa8ccc91 Mon Sep 17 00:00:00 2001 From: mba1398 <26516464+mba1398@users.noreply.github.com> Date: Thu, 16 May 2024 16:11:45 +0800 Subject: [PATCH] fix error --- ch02:基础查询与排序.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch02:基础查询与排序.md b/ch02:基础查询与排序.md index 9308357..2a1228d 100644 --- a/ch02:基础查询与排序.md +++ b/ch02:基础查询与排序.md @@ -255,7 +255,7 @@ NULL的真值结果既不为真,也不为假,因为并不知道这样一个 #### 2.1 -编写一条SQL语句,从 `product`(商品) 表中选取出“登记日期(`regist_date`)在2009年4月28日之后”的商品,查询结果要包含 `product name` 和 `regist_date` 两列。 +编写一条SQL语句,从 `product`(商品) 表中选取出“登记日期(`regist_date`)在2009年4月28日之后”的商品,查询结果要包含 `product_name` 和 `regist_date` 两列。 #### 2.2