select count(*) from emp;
select count(idcard) from emp;
select avg(age) from emp;
select max(age) from emp;
select min(age) from emp;
select sum(age) from emp where workaddress = "西安";
MySQL-DQL-聚合函数
最新推荐文章于 2024-11-08 22:59:30 发布
这些SQL语句用于从emp表中获取数据:计算所有员工的数量,按身份证计数,计算平均年龄,找出最高和最低年龄,以及在西安工作的员工的年龄总和。
摘要由CSDN通过智能技术生成