首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
Kristenlin
获赞
3
粉丝
0
关注
4
看过 TA
2
女
厦门大学嘉庚学院
2022
数据分析师
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑Kristenlin吗?
发布(4)
评论
刷题
收藏
Kristenlin
关注TA,不错过内容更新
关注
2022-08-30 11:44
厦门大学嘉庚学院 数据分析师
题解 | #返回产品名称和每一项产品的总订单数#
mysql不支持外连接,左连接+右连接: select prod_name, count(order_num)orders from Products left join OrderItems using(prod_id) group by prod_name union select prod_name, count(order_num)orders from Products right join OrderItems using(prod_id) group by prod_name order by prod_name
0
点赞
评论
收藏
分享
2022-08-29 13:45
厦门大学嘉庚学院 数据分析师
题解 | #返回每个顾客不同订单的总金额#
两种写法 1.where等联结: select cust_id, sum(quantity*item_price) total_ordered from Orders join OrderItems on Orders.order_num = OrderItems.order_num group by cust_id order by total_ordered desc 2.表内连接: select cust_id, sum(quantity*item_price) total_ordered from Orders, OrderItems where Orders...
0
点赞
评论
收藏
分享
2022-08-26 15:11
厦门大学嘉庚学院 数据分析师
题解 | #计算总和#
两种方法(考虑sql运行顺序) 1.having: select order_num, sum(item_price*quantity)total_price from OrderItems group by order_num having sum(item_price*quantity)>=1000 order by order_num 2.子查询: select a.order_num,a.total_price from (select order_num, sum(item_price*quantity)tot...
0
点赞
评论
收藏
分享
2022-08-25 11:53
厦门大学嘉庚学院 数据分析师
题解 | #截取出年龄#
select age,count(a.device_id)number from (select substring(profile,12,2) age, device_id from user_submit)a group by age 考虑到sql的运行顺序,先from,子查询先出来age关键词,后续才能运行
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务