Fetch the repository succeeded.
从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);
select title,count(emp_no) t from titles group by title having count(emp_no) >= 2
Sign in for post a comment
Comment ( 0 )