题解 | #21年8月份练题总数#
21年8月份练题总数
https://www.nowcoder.com/practice/b8f30b239b454ed490367b53ea95607d
select count(distinct device_id) as did_cnt, count(question_id) as question_cnt from question_practice_detail where year(date)='2021' and month(date)='8';
考察:1、日期函数 格式:year/month/day(date)='数值';2、distinct关键词,取某字段不同的值 直接 distinct 字段名。
限定条件:2021年8月份,匹配date字段即可,匹配方法主要有三种:
(1)like语法:date like "2021-08%"
(2)year、month函数:year(date)='2021' and month(date)='08';
(3)date_format函数:date_format(date, '%Y-%m')='2021-08';