题库 软件开发 题目列表 这里有一张员工信息表(只展示了部分数据,数据格式类...
单选题
这里有一张员工信息表(只展示了部分数据,数据格式类似)
+-------+---------------+-------+
|   id  |   language    | name  |
+-------+---------------+-------+
|   1   |   C++         | MA    |
|   2   |   C++         | VA    |
|   3   |   Go          | VC    |
|   4   |   Python      | MB    |
|   5   |   Php         | VA    |
+-------+---------------+-------+
查询哪些员工会使用3种及以上的编程语言
A.

select name,count(*) as count from info  having count > 2 order by count desc;

B.

select name,count(*) as count from info group by name and count > 2 order by count desc;

C.

select name,count(*) as count from info group by name where count >= 2 order by count desc;

D.

select name,count(*) as count from info group by name having count > 2 order by count desc;

题目信息
校招真题
-
正确率
0
评论
17
点击