首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
晕糖
获赞
43
粉丝
6
关注
2
看过 TA
226
女
门头沟学院
2024
算法工程师
IP属地:广东
想要个当牛马的机会
私信
关注
拉黑
举报
举报
确定要拉黑晕糖吗?
发布(79)
评论
刷题
收藏
晕糖
关注TA,不错过内容更新
关注
2024-05-18 19:33
门头沟学院 算法工程师
题解 | #返回所有价格在3美元到6美元之间价格和商品名称#
select prod_name, prod_price from Products where prod_price >=3 and prod_price <= 6 order by prod_price
0
点赞
评论
收藏
分享
2024-05-18 19:30
门头沟学院 算法工程师
题解 | #检索并列出已订购产品的清单#
select order_num, prod_id, quantity from OrderItems where quantity >= 100
0
点赞
评论
收藏
分享
2024-05-18 19:28
门头沟学院 算法工程师
题解 | #检索供应商名称#
select vend_name from Vendors where vend_country = 'USA' and vend_state = 'CA'
0
点赞
评论
收藏
分享
2024-05-18 19:20
门头沟学院 算法工程师
题解 | #返回更多的产品#
select distinct order_num from OrderItems where quantity >= 100
0
点赞
评论
收藏
分享
2024-05-18 19:18
门头沟学院 算法工程师
题解 | #返回产品并且按照价格排序#
select prod_name, prod_price from Products where prod_price >= 3 and prod_price <= 6
0
点赞
评论
收藏
分享
2024-05-18 19:12
门头沟学院 算法工程师
题解 | #返回更高价格的产品#
select prod_id, prod_name from Products where prod_price >= "9"
0
点赞
评论
收藏
分享
2024-05-18 19:11
门头沟学院 算法工程师
题解 | #返回固定价格的产品#
select prod_id, prod_name from Products where prod_price = "9.49"
0
点赞
评论
收藏
分享
2024-05-18 19:07
门头沟学院 算法工程师
题解 | #检查SQL语句#
select vend_name from Vendors order by vend_name DESC
0
点赞
评论
收藏
分享
2024-05-18 19:06
门头沟学院 算法工程师
题解 | #按照数量和价格排序#
select quantity, item_price from OrderItems order by quantity DESC, item_price DESC
0
点赞
评论
收藏
分享
2024-05-18 19:04
门头沟学院 算法工程师
题解 | #对顾客ID和日期排序#
select cust_id, order_num from Orders order by cust_id, order_date DESC
0
点赞
评论
收藏
分享
2024-05-18 19:01
门头沟学院 算法工程师
题解 | #检索顾客名称并且排序#
select cust_name from Customers order by cust_name DESC # DESC 降序排列
0
点赞
评论
收藏
分享
2024-05-18 18:57
门头沟学院 算法工程师
题解 | #检索并列出已订购产品的清单#
select distinct prod_id from OrderItems 去重: distinct
0
点赞
评论
收藏
分享
2024-05-18 18:50
门头沟学院 算法工程师
发现打卡功能的第一天! 今日进度:刷完SQL入门系列所有题目 希望可以一直坚持,今天还剩下********还没有刷,溜啦
2024-05-18
在牛客打卡1天,今天学习:刷题 60 道/代码提交 8 次
0
点赞
评论
收藏
分享
2024-05-18 18:47
门头沟学院 算法工程师
题解 | #提取博客URL中的用户名#
select device_id, substring_index(blog_url, '/', -1) as user_name from user_submit
0
点赞
评论
收藏
分享
2024-05-18 18:26
门头沟学院 算法工程师
题解 | #21年8月份练题总数#
select count(distinct device_id) as did_cnt, count(question_id) as question_cnt from question_practice_detail where year(date) = 2021 and month(date) = 8
0
点赞
评论
收藏
分享
1
2
3
4
5
6
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务