首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
爱吃鱼的丹尼尔已run
获赞
0
粉丝
0
关注
1
看过 TA
0
测试工程师
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑爱吃鱼的丹尼尔已run吗?
发布(12)
评论
刷题
收藏
爱吃鱼的丹尼尔已run
关注TA,不错过内容更新
关注
2023-11-15 12:00
测试工程师
题解 | #计算总和#
select order_num, sum(item_price * quantity) as total_price from OrderItems group by order_num having sum(item_price * quantity) >=1000 order by order_num
0
点赞
评论
收藏
分享
2023-10-19 18:13
测试工程师
题解 | #计算总和#
select order_num, sum(item_price * quantity) as total_price from OrderItems group by order_num having sum(item_price * quantity) >=1000 order by order_num
0
点赞
评论
收藏
分享
2023-10-19 18:07
测试工程师
题解 | #返回订单数量总和不小于100的所有订单的订单号#
select order_num from OrderItems group by order_num having sum(quantity) >= 100 order by order_num
0
点赞
评论
收藏
分享
2023-10-19 11:51
测试工程师
题解 | #每个供应商成本最低的产品#
关键词 min() select vend_id,min(prod_price) cheapest_item from Products group by vend_id order by cheapest_item
0
点赞
评论
收藏
分享
2023-10-19 11:23
测试工程师
题解 | #返回每个订单号各有多少行数#
关键词: count() group by order by select order_num,count(order_num) order_lines from OrderItems group by order_num order by order_lines
0
点赞
评论
收藏
分享
2023-10-19 11:18
测试工程师
题解 | X
关键词: max() select max(prod_price) max_price from Products where prod_price <= 10
0
点赞
评论
收藏
分享
2023-10-19 10:06
测试工程师
题解 | #确定已售出产品项 BR01 的总数#
select sum(quantity) prod_item from OrderItems where prod_id = 'BR01'
0
点赞
评论
收藏
分享
2023-10-13 12:29
测试工程师
题解 | #确定已售出产品的总数#
关键字:sum() select sum(quantity) as items_ordered from OrderItems
0
点赞
评论
收藏
分享
2023-10-13 11:18
测试工程师
题解 |
关键词:YEAR(),MONTH() select order_num, order_date from Orders where year(order_date)='2020' and month(order_date)='01' order by order_date
0
点赞
评论
收藏
分享
2023-10-13 10:59
测试工程师
题解 | #顾客登录名#
关键词: substring,concat,upper 代码 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 17:44
测试工程师
题解 | #检索产品名称和描述(二)#
select prod_name,prod_desc from Products where prod_desc not like '%toy%' order by prod_name
0
点赞
评论
收藏
分享
2023-09-22 12:04
测试工程师
题解 | #检索并列出已订购产品的清单#
select order_num,prod_id,quantity from OrderItems where prod_id != "BR017" having quantity > 100
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务