Alina_0229
Alina_0229
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Alina_0229的博客
全部文章
/ 题解
(共80篇)
题解 | #返回更高价格的产品#
第一种写法:因为是等于或者高于9美元,直接用>= select prod_id,prod_name from Products where prod_price>=9 第二种写法:where or 两者条件中的一个 select prod_id,prod_name from Produc...
Mysql
2022-03-08
5
496
题解 | #检查SQL语句#
SELECT vend_name, FROM Vendors ORDER vend_name DESC; 以上语句中: order by 缺少by select 查询单个字段时不应添加, SELECT vend_name FROM Vendors ORDER by vend_name DESC
Mysql
2022-03-08
4
595
题解 | #按照数量和价格排序#
select quantity,item_price from OrderItems order by quantity desc,item_price desc 或 select * from OrderItems order by quantity desc,item_price desc
Mysql
2022-03-08
0
311
题解 | #计算用户的平均次日留存率#
以下仅为个人笔记 一开始自己陷入了误区,想着直接拿表一表二进行拼接,然后获取相应的值就可以了,但是忽略了一点,表一表二拼接时,以左表为准,右表的日期应该进行偏移后一位,这样才能得到想要的值,date_add 函数向日期添加指定的时间间隔date_add(日期表达式,interval 时间间隔数 ty...
Mysql
2022-03-07
0
230
题解 | #计算用户8月每天的练题数量#
以下仅为个人笔记 一开始陷入了一个误区,以为是把八月份的练题数量找出来,但是忽略了“每天”,利用时间函数,获取到8月份练题的天数,然后进行统计,再根据天进行分组 select day(date) day,count(question_id) from question_practice_detail...
Mysql
2022-03-01
0
285
题解 | #插入记录(一)#
insert into exam_record(uid,exam_id,start_time,submit_time,score) values (1001,9001,"2021-09-01 22:11:12","2021-09-01 23:01:12",90), (1002,9002,"2021-...
Mysql
2022-02-21
0
219
题解 | #插入记录(一)#
insert into exam_record(uid,exam_id,start_time,submit_time,score) values (1001,9001,"2021-09-04 22:11:12","2021-09-04 23:01:12",90), (1002,9002,"2021-...
Mysql
2022-02-21
0
221
题解 | #查看不同年龄段的用户明细#
select device_id,gender,case when age<20 then "20岁以下" when age between 20 and 24 then "20-24岁" when age>=25 then "25岁及以上" else "其他" end age_cut ...
Mysql
2022-02-21
0
234
题解 | #计算25岁以上和以下的用户数量#
条件函数if、case when 表达式 then、case 表达式 when then case when 表达式 then 写法 select case when age<25 or age is null then "25岁以下" when age>=25 then "25岁及以上...
Mysql
2022-02-21
0
302
题解 | #查找山东大学或者性别为男生的信息#
#查询山东大学的device_id、gender、age和gpa数据 select device_id,gender,age,gpa from user_profile where university="山东大学" #查询性别为男的用户的device_id、gender、age和gpa数据 sel...
Mysql
2022-02-20
0
259
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页