首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
冷凡社长
获赞
467
粉丝
351
关注
0
看过 TA
1373
男
临沂大学
2017
数据分析师
IP属地:山东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑冷凡社长吗?
发布(136)
评论
刷题
冷凡社长
关注TA,不错过内容更新
关注
2022-08-15 16:49
临沂大学 数据分析师
题解 | #确定已售出产品项 BR01 的总数#
select sum(quantity) as items_ordered from OrderItems where prod_id="BR01" 知识点:1、在上题的基础上,增加了条件筛选
0
点赞
评论
收藏
分享
2022-08-15 16:45
临沂大学 数据分析师
题解 | #确定已售出产品的总数#
select sum(quantity) as items_ordered from OrderItems 知识点:1、聚合函数 sum的使用2、列别名
0
点赞
评论
收藏
分享
2022-08-15 16:42
临沂大学 数据分析师
题解 | #返回 2020 年 1 月的所有订单的#
select order_num,order_date from Orders where year(order_date)=2020 and month(order_date)=1 order by order_date 知识点:主要就是日期函数的使用
0
点赞
评论
收藏
分享
2022-08-12 19:13
临沂大学 数据分析师
题解 | #顾客登录名#
select cust_id,cust_name, upper(concat(left(cust_contact,2),left(cust_city,3))) as user_login from Customers 知识点:1、字符串函数 left的使用2、使用 concat 拼接函数3、使用upper调整字母大写 易错点,大小写忘记、left 后面分别跟对指定字段
0
点赞
评论
收藏
分享
2022-08-12 18:56
临沂大学 数据分析师
题解 | #打折#
select prod_id,prod_price, prod_price*0.9 as sale_price from Products 知识点:列计算及别名点使用
0
点赞
评论
收藏
分享
2022-08-12 18:50
临沂大学 数据分析师
题解 | #别名#
select vend_id, vend_name as vname, vend_address as vaddress, vend_city as vcity from Vendors order by vend_name 知识点:列别名的使用易错点:vcity 在最后边,位置也会导致错误
0
点赞
评论
收藏
分享
2022-08-12 18:43
临沂大学 数据分析师
题解 | #检索产品名称和描述(四)#
select prod_name , prod_desc from Products where prod_desc like "%toy%carrots%" order by prod_name 主要是like%的使用,通配符,这样的需求在实际中遇到的还不多,都不太熟悉这个知识点。
0
点赞
评论
收藏
分享
2022-08-12 18:39
临沂大学 数据分析师
题解 | #检索产品名称和描述(三)#
select prod_name , prod_desc from Products where prod_desc like "%toy%" and prod_desc like "%carrots%" order by prod_name 就是两个like
0
点赞
评论
收藏
分享
2022-08-12 18:26
临沂大学 数据分析师
题解 | #检索产品名称和描述(二)#
select prod_name , prod_desc from Products where prod_desc not like "%toy%" order by prod_name 知识点 not的使用,not like
0
点赞
评论
收藏
分享
2022-08-12 18:12
临沂大学 数据分析师
题解 | #检索产品名称和描述(一)#
select prod_name , prod_desc from Products where prod_desc like "%toy%" 知识点:like的用法,%为通配符,表示0个或多个字符。
0
点赞
评论
收藏
分享
2022-08-12 18:09
临沂大学 数据分析师
题解 | #纠错2#
SELECT vend_name FROM Vendors WHERE vend_country = 'USA' AND vend_state = 'CA' ORDER BY vend_name 将order by 放到语句最后即可。知识点,考察sql关键词的顺序。order by 的位置位于所有语句的倒数第二,倒数第一是 limit
0
点赞
评论
收藏
分享
2022-08-12 18:03
临沂大学 数据分析师
题解 | #返回所有价格在 3美元到 6美元之间#
select prod_name,prod_price from Products where prod_price >= 3 and prod_price<=6 order by prod_price 和69题重复了~
0
点赞
评论
收藏
分享
2022-08-12 17:19
临沂大学 数据分析师
题解 | #检索并列出已订购产品的清单#
select order_num,prod_id,quantity from OrderItems where prod_id in ('BR01','BR02','BR03') and quantity >= 100 这个题简单思考了下,就是想考察 in 和 and多列筛选。所以不用考虑需要对某个列分组求和,判断数值。这样就麻烦了
0
点赞
评论
收藏
分享
2022-08-12 16:59
临沂大学 数据分析师
题解 | #检索供应商名称#
select vend_name from Vendors where vend_country = 'USA' and vend_state = 'CA' 知识点:1、多列筛选 使用 and链接2、筛选为字符串 使用单双引号都可以,没有区别3、注意这里的字符串要大写
0
点赞
评论
收藏
分享
2022-08-12 16:52
临沂大学 数据分析师
题解 | #返回更多的产品#
select order_num from OrderItems group by order_num having sum(quantity) >= 100 知识点:分组后使用having进行结果集的筛选
0
点赞
评论
收藏
分享
1
4
5
6
7
8
10
关注他的用户也关注了:
牛客网
牛客企业服务