首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
GB279824
获赞
5
粉丝
0
关注
1
看过 TA
9
中国计量大学
2025
测试工程师
IP属地:浙江
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑GB279824吗?
发布(201)
评论
刷题
收藏
GB279824
关注TA,不错过内容更新
关注
05-20 15:48
中国计量大学 测试工程师
题解 | 确定 Products 表中价格不超过 10 美元的最贵产品的价格
select max(prod_price) as max_price from Products where prod_price <= 10;
0
点赞
评论
收藏
分享
05-20 15:42
中国计量大学 测试工程师
2025-05-20
在牛客打卡9天,今天学习:代码提交 29 次
0
点赞
评论
收藏
分享
05-20 15:41
中国计量大学 测试工程师
题解 | 确定已售出产品项 BR01 的总数
select sum(quantity) as items_ordered from OrderItems where prod_id = 'BR01';
0
点赞
评论
收藏
分享
05-20 15:40
中国计量大学 测试工程师
题解 | 确定已售出产品的总数
select sum(quantity) as items_ordered from OrderItems;
0
点赞
评论
收藏
分享
05-20 15:38
中国计量大学 测试工程师
题解 | 返回 2020 年 1 月的所有订单的订单号和订单日期
select order_num,order_date from Orders where year(order_date) = 2020 and month(order_date) = 1 order by order_date ASC;
0
点赞
评论
收藏
分享
05-20 15:35
中国计量大学 测试工程师
题解 | 顾客登录名
select cust_id, cust_name, upper(concat(substring(cust_contact,1,2),substring(cust_city,1,3))) as user_login from Customers;
0
点赞
评论
收藏
分享
05-20 15:29
中国计量大学 测试工程师
题解 | 打折
select prod_id, prod_price, (0.9 * prod_price) as sale_price from Products;
0
点赞
评论
收藏
分享
05-20 15:20
中国计量大学 测试工程师
题解 | 检索产品名称和描述(四)
select prod_name,prod_desc from Products where prod_desc like '%toy%carrots%';
0
点赞
评论
收藏
分享
05-20 15:18
中国计量大学 测试工程师
题解 | 检索产品名称和描述(三)
select prod_name,prod_desc from Products where prod_desc like "%toy%" and prod_desc like "%carrots%";
0
点赞
评论
收藏
分享
05-20 15:16
中国计量大学 测试工程师
题解 | 检索产品名称和描述(二)
select prod_name,prod_desc from Products where prod_desc not like "%toy%"
0
点赞
评论
收藏
分享
05-19 23:07
中国计量大学 测试工程师
题解 | 检索并列出已订购产品的清单
select distinct(prod_id) as prod_id from OrderItems
0
点赞
评论
收藏
分享
05-19 23:03
中国计量大学 测试工程师
2025-05-19
在牛客打卡8天,今天也很努力鸭!
0
点赞
评论
收藏
分享
05-18 14:11
中国计量大学 测试工程师
2025-05-18
在牛客打卡7天,今天也很努力鸭!
0
点赞
评论
收藏
分享
05-17 21:06
中国计量大学 测试工程师
题解 | 每个月Top3的周杰伦歌曲
select * from( select month(p.fdate) as month, row_number() over(partition by month(fdate) order by count(s.song_id) DESC, p.song_id ASC) as ranking, song_name, count(s.song_id) as play_pv from user_info u left join play_log p on u.user_id = p.user_id left join song_info s on p.song_id = s.song_id w...
0
点赞
评论
收藏
分享
05-17 20:24
中国计量大学 测试工程师
题解 | 浙大不同难度题目的正确率
select qd.difficult_level, round(AVG(if(q.result = 'right',1,0)),4) as correct_rate from user_profile u join question_practice_detail q on u.device_id = q.device_id join question_detail qd on q.question_id = qd.question_id where u.university = '浙江大学' group by qd.difficult_level order by correct_rate...
0
点赞
评论
收藏
分享
1
9
10
11
12
13
14
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务