首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
已注销
获赞
337
粉丝
5
关注
7
看过 TA
140
IP属地:江苏
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑已注销吗?
发布(158)
评论
刷题
收藏
已注销
关注TA,不错过内容更新
关注
2022-05-19 08:15
题解 | #纠错2#
SELECT vend_name FROM Vendors WHERE vend_country = 'USA' AND vend_state = 'CA' ORDER BY vend_name;
0
点赞
评论
收藏
分享
2022-05-19 08:14
题解 | #返回所有价格在 3美元到 6美元之间的产品的名称和价格#
select prod_name, prod_price from Products where prod_price between 2 and 6 order by prod_price asc;
0
点赞
评论
收藏
分享
2022-05-19 08:04
题解 | #合并两个排序的链表#
/* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ public class Solution { public ListNode Merge(ListNode list1,ListNode list2) { if(list1 == null) { return list2; } else if (list2 == null) { return list1; } if(list2.val > list1.val) { list1.next =...
0
点赞
评论
收藏
分享
2022-05-18 19:22
2022.05.18 在牛客打卡55天!
0
点赞
评论
收藏
分享
2022-05-18 15:14
题解 | #检索并列出已订购产品的清单#
select order_num, prod_id, quantity from OrderItems where quantity >= 100 and prod_id in ('BR01', 'BR02', 'BR03');
0
点赞
评论
收藏
分享
2022-05-18 15:02
题解 | #检索供应商名称#
select vend_name from Vendors where vend_state='CA' and vend_country='USA'
0
点赞
评论
收藏
分享
2022-05-18 11:05
题解 | #替换空格#
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s string字符串 * @return string字符串 */ public String replaceSpace (String s) { // write code here return s.replaceAll(" ", "%20"); } }
0
点赞
评论
收藏
分享
2022-05-18 10:54
题解 | #数组中重复的数字#
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param numbers int整型一维数组 * @return int整型 */ public int duplicate (int[] numbers) { // write code here if(numbers == null || numbers.length == 0) { return -1; } Map<Integer,Integer> map = new HashMap<...
0
点赞
评论
收藏
分享
2022-05-18 10:08
题解 | #返回更多的产品#
select distinct order_num from OrderItems where quantity>= 100;
0
点赞
评论
收藏
分享
2022-05-18 10:05
题解 | #返回产品并且按照价格排序#
select prod_name, prod_price from Products where prod_price between 3 and 6 order by prod_price asc;
0
点赞
评论
收藏
分享
2022-05-18 10:03
题解 | #返回更高价格的产品#
select prod_id, prod_name from Products where prod_price >=9;
0
点赞
评论
收藏
分享
2022-05-18 10:01
题解 | #返回固定价格的产品#
select prod_id, prod_name from Products where prod_price = '9.49';
0
点赞
评论
收藏
分享
2022-05-18 09:59
题解 | #检查SQL语句#
多了逗号,这个容易被忽略 SELECT vend_name FROM Vendors ORDER BY vend_name DESC;
0
点赞
评论
收藏
分享
2022-05-18 09:52
题解 | #按照数量和价格排序#
select quantity, item_price from OrderItems order by quantity desc, item_price desc;
0
点赞
评论
收藏
分享
2022-05-18 09:38
题解 | #对顾客ID和日期排序#
select cust_id, order_num from Orders order by cust_id, order_date desc;
0
点赞
评论
收藏
分享
1
2
3
4
5
6
11
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务