mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 15:01:40 +08:00
存量题库数据更新
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<p>Table: <code>Product</code></p>
|
||||
<p>表: <code>Product</code></p>
|
||||
|
||||
<pre>
|
||||
+--------------+---------+
|
||||
@@ -8,11 +8,11 @@
|
||||
| product_name | varchar |
|
||||
| unit_price | int |
|
||||
+--------------+---------+
|
||||
Product_id是该表的主键。
|
||||
product_id 是该表的主键(具有唯一值的列)。
|
||||
该表的每一行显示每个产品的名称和价格。
|
||||
</pre>
|
||||
|
||||
<p>Table: <code>Sales</code></p>
|
||||
<p>表:<code>Sales</code></p>
|
||||
|
||||
<pre>
|
||||
+-------------+---------+
|
||||
@@ -25,18 +25,18 @@ Product_id是该表的主键。
|
||||
| quantity | int |
|
||||
| price | int |
|
||||
+------ ------+---------+
|
||||
这个表没有主键,它可以有重复的行。
|
||||
product_id 是 Product 表的外键。
|
||||
这个表可能有重复的行。
|
||||
product_id 是 Product 表的外键(reference 列)。
|
||||
该表的每一行包含关于一个销售的一些信息。
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>编写一个SQL查询,报告<code>2019年春季</code>才售出的产品。即<strong>仅</strong>在<code><strong>2019-01-01</strong></code>至<code><strong>2019-03-31</strong></code>(含)之间出售的商品。</p>
|
||||
<p>编写解决方案,报告<code>2019年春季</code>才售出的产品。即<strong>仅</strong>在<code><strong>2019-01-01</strong></code>至<code><strong>2019-03-31</strong></code>(含)之间出售的商品。</p>
|
||||
|
||||
<p>以 <strong>任意顺序</strong> 返回结果表。</p>
|
||||
|
||||
<p>查询结果格式如下所示。</p>
|
||||
<p>结果格式如下所示。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
@@ -68,7 +68,7 @@ Product table:
|
||||
| 1 | S8 |
|
||||
+-------------+--------------+
|
||||
<strong>解释:</strong>
|
||||
id为1的产品仅在2019年春季销售。
|
||||
id为2的产品在2019年春季销售,但也在2019年春季之后销售。
|
||||
id 3的产品在2019年春季之后销售。
|
||||
我们只退回产品1,因为它是2019年春季才销售的产品。</pre>
|
||||
id 为 1 的产品仅在 2019 年春季销售。
|
||||
id 为 2 的产品在 2019 年春季销售,但也在 2019 年春季之后销售。
|
||||
id 为 3 的产品在 2019 年春季之后销售。
|
||||
我们只返回 id 为 1 的产品,因为它是 2019 年春季才销售的产品。</pre>
|
||||
|
Reference in New Issue
Block a user