1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01:40 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -1,4 +1,4 @@
<p>Table:&nbsp;<code>Product</code></p>
<p>表:&nbsp;<code>Product</code></p>
<pre>
+--------------+---------+
@@ -8,11 +8,11 @@
| product_name | varchar |
| unit_price | int |
+--------------+---------+
Product_id是该表的主键。
product_id 是该表的主键(具有唯一值的列)
该表的每一行显示每个产品的名称和价格。
</pre>
<p>Table:&nbsp;<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>&nbsp;</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>&nbsp;</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>