mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 19:53:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>表: <code>Courses</code></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
+-------------+---------+
 | 
						|
| Column Name | Type    |
 | 
						|
+-------------+---------+
 | 
						|
| student     | varchar |
 | 
						|
| class       | varchar |
 | 
						|
+-------------+---------+
 | 
						|
(student, class)是该表的主键(不同值的列的组合)。
 | 
						|
该表的每一行表示学生的名字和他们注册的班级。
 | 
						|
</pre>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
 | 
						|
<p>查询 <strong>至少有 5 个学生</strong> 的所有班级。</p>
 | 
						|
 | 
						|
<p>以 <strong>任意顺序 </strong>返回结果表。</p>
 | 
						|
 | 
						|
<p>结果格式如下所示。</p>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
 | 
						|
<p><strong class="example">示例 1:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>输入:</strong> 
 | 
						|
Courses table:
 | 
						|
+---------+----------+
 | 
						|
| student | class    |
 | 
						|
+---------+----------+
 | 
						|
| A       | Math     |
 | 
						|
| B       | English  |
 | 
						|
| C       | Math     |
 | 
						|
| D       | Biology  |
 | 
						|
| E       | Math     |
 | 
						|
| F       | Computer |
 | 
						|
| G       | Math     |
 | 
						|
| H       | Math     |
 | 
						|
| I       | Math     |
 | 
						|
+---------+----------+
 | 
						|
<strong>输出:</strong> 
 | 
						|
+---------+ 
 | 
						|
| class   | 
 | 
						|
+---------+ 
 | 
						|
| Math    | 
 | 
						|
+---------+
 | 
						|
<strong>解释: </strong>
 | 
						|
-数学课有 6 个学生,所以我们包括它。
 | 
						|
-英语课有 1 名学生,所以我们不包括它。
 | 
						|
-生物课有 1 名学生,所以我们不包括它。
 | 
						|
-计算机课有 1 个学生,所以我们不包括它。</pre>
 |