热线电话:13121318867

登录
2020-06-02 阅读量: 976
MYSQL:group by 和having的执行顺序是在select之后

一、题目描述

从titles表获取按照title进行分组,每组个数大于等于2,给出title以及对应的数目t。
CREATE TABLE IF NOT EXISTS "titles" (
`emp_no` int(11) NOT NULL,
`title` varchar(50) NOT NULL,
`from_date` date NOT NULL,
`to_date` date DEFAULT NULL);

二、需要关注的是group by 和having的执行顺序是在select之后

select title,count(title) as t

from titles

group by title

having count(title)>=2

;

13.7705
2
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子