当前位置:网站首页>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');
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;
边栏推荐
猜你喜欢
随机推荐
radix-4 FFT principle and C language code implementation
MySQL01
抖音API接口
sql--Users who have purchased more than 3 times (inclusive) within 7 days (including the current day), and the purchase amount in the past 7 days exceeds 1,000
命令输出给变量
iptables 使用脚本来管理规则
亚马逊API接口大全
会议OA项目之我的会议
Daily sql - judgment + aggregation
HCIP OSPF动态路由协议
拼多多api接口应用示例
华为防火墙-4-安全策略
OA project meeting notice (query & whether attending & feedback for details)
一个小时快速熟悉MySQL基本用法
OA项目之待开会议&历史会议&所有会议
淘宝API常用接口与获取方式
亚马逊获得AMAZON商品详情 API 返回值说明
每日sql--统计员工近三个月的总薪水(不包括最新一个月)
HCIP BGP建邻实验
Implement general-purpose, high-performance sorting and quicksort optimizations