当前位置:网站首页>Daily sql-statistics of the number of professionals (including the number of professionals is 0)

Daily sql-statistics of the number of professionals (including the number of professionals is 0)

2022-08-11 07:15:00 Eating too much sugar will not gain weight

Daily sql-count the number of professionals (including 0 professionals)

DDL

CREATE TABLE IF NOT EXISTS student (student_id INT,student_name VARCHAR(45), gender VARCHAR(6), dept_id INT);CREATE TABLE IF NOT EXISTS department (dept_id INT, dept_name VARCHAR(255));insert into student (student_id, student_name, gender, dept_id) values ​​(1, 'Jack', 'M', 1);insert into student (student_id, student_name, gender, dept_id) values ​​(2, 'Jane', 'F', 1);insert into student (student_id, student_name, gender, dept_id) values ​​(3, 'Mark', 'M', 2);insert into department (dept_id, dept_name) values ​​(1, 'Engineering');insert into department (dept_id, dept_name)values ​​(2, 'Science');insert into department (dept_id, dept_name) values ​​(3, 'Law');

insert image description here

sql

select t2.dept_name,count(t1.student_id) as student_number from student t1 right join department t2 on t1.dept_id = t2.dept_id group by t2.dept_name;

insert image description here

原网站

版权声明
本文为[Eating too much sugar will not gain weight]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/223/202208110517396476.html