首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
牛客972521404号
获赞
5
粉丝
1
关注
0
看过 TA
17
The University of Melbourne
2023
数据分析师
IP属地:山东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑牛客972521404号吗?
发布(29)
评论
刷题
收藏
牛客972521404号
关注TA,不错过内容更新
关注
2023-09-22 14:50
The University of Melbourne 数据分析师
题解 | #返回2020年1月的所有订单的订单号和订单日期#
select order_num, order_date from Orders where year(order_date) = 2020 and month(order_date) = 01 order by order_date
0
点赞
评论
收藏
分享
2023-09-22 14:24
The University of Melbourne 数据分析师
题解 | #顾客登录名#
SELECT cust_id, cust_name, UPPER(CONCAT(SUBSTRING(cust_contact, 1, 2), SUBSTRING(cust_city, 1, 3))) AS user_login FROM Customers;
0
点赞
评论
收藏
分享
2023-09-22 14:15
The University of Melbourne 数据分析师
题解 | #打折#
select prod_id, prod_price, 0.9*prod_price as sale_price from Products
0
点赞
评论
收藏
分享
2023-09-22 14:14
The University of Melbourne 数据分析师
题解 | #别名#
select vend_id, vend_name as vname, vend_address as vaddress, vend_city as vcity from Vendors order by vname
0
点赞
评论
收藏
分享
2023-09-22 14:09
The University of Melbourne 数据分析师
题解 | #检索产品名称和描述(四)#
select prod_name, prod_desc from Products where prod_desc like '%toy%carrots%'
0
点赞
评论
收藏
分享
2023-09-22 14:05
The University of Melbourne 数据分析师
题解 | #检索产品名称和描述(三)#
select prod_name, prod_desc from Products where prod_desc like '%toy%' and prod_desc like '%carrots%'
0
点赞
评论
收藏
分享
2023-09-21 16:44
The University of Melbourne 数据分析师
题解 | #检索产品名称和描述(二)#
select prod_name, prod_desc from Products where prod_desc not like '%toy%' order by prod_desc desc
0
点赞
评论
收藏
分享
2023-09-21 16:43
The University of Melbourne 数据分析师
题解 | #检索产品名称和描述(一)#
select prod_name, prod_desc from Products where prod_desc like '%toy%'
0
点赞
评论
收藏
分享
2023-09-21 16:39
The University of Melbourne 数据分析师
题解 | #纠错2#
SELECT vend_name FROM Vendors WHERE vend_country = 'USA' AND vend_state = 'CA' ORDER BY vend_name
0
点赞
评论
收藏
分享
2023-09-21 16:37
The University of Melbourne 数据分析师
题解 | #返回所有价格在3美元到6美元之间的名称和价格#
select prod_name, prod_price from Products where prod_price between 3 and 6 order by prod_price
0
点赞
评论
收藏
分享
2023-09-21 16:34
The University of Melbourne 数据分析师
题解 | #检索并列出已订购产品的清单#
select order_num, prod_id, quantity from OrderItems where prod_id in ('BR01', 'BR02', 'BR03') and quantity >= 100
0
点赞
评论
收藏
分享
2023-09-21 16:27
The University of Melbourne 数据分析师
题解 | #检索供应商名称#
select vend_name from Vendors where vend_country = 'USA' and vend_state = 'CA'
0
点赞
评论
收藏
分享
2023-09-21 16:25
The University of Melbourne 数据分析师
题解 | #返回更多的产品#
select distinct order_num from OrderItems where quantity >= 100
0
点赞
评论
收藏
分享
2023-09-21 16:24
The University of Melbourne 数据分析师
题解 | #返回产品并且按照价格排序#
select prod_name, prod_price from Products where prod_price between 3 and 6 order by prod_price asc
0
点赞
评论
收藏
分享
1
2
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务