select count(计算规范) from 表明
SELECT COUNT(*) FROM student
SELECT COUNT(*) FROM student WHERE grnder = '男'
select count(all sqlScore) from student
—>select count( sqlScore) from student
select count(distinct age) from student
select avg(sqlScore) from student
ifnull(expr1,expr2)
判断是否为空值版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/justleavel/article/details/121334394
内容来源于网络,如有侵权,请联系作者删除!
select count(计算规范) from 表明
select count(distinct age) from student
select avg(sqlScore) from student
ifnull(expr1,expr2)
判断是否为空值