首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
苏柏
获赞
2
粉丝
0
关注
0
看过 TA
9
大连海洋大学
2024
Java
IP属地:贵州
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑苏柏吗?
发布(106)
评论
刷题
收藏
苏柏
关注TA,不错过内容更新
关注
2023-05-14 16:01
大连海洋大学 Java
题解 | #组合 Products
select prod_name from Products union select cust_name as prod_name from Customers order by prod_name
0
点赞
评论
收藏
分享
2023-05-14 15:56
大连海洋大学 Java
题解 | #将两个 SELECT 语句结合起来(二)#
select prod_id,quantity from OrderItems where quantity=100 union select prod_id,quantity from OrderItems where prod_id like 'BNBG%' order by prod_id
0
点赞
评论
收藏
分享
2023-05-14 15:47
大连海洋大学 Java
题解 | #将两个 SELECT 语句结合起来(一)#
select prod_id,quantity from OrderItems where prod_id like'%BNBG%' or quantity=100 order by prod_id
0
点赞
评论
收藏
分享
2023-05-14 15:34
大连海洋大学 Java
题解 | #列出供应商及其可供产品的数量#
select vend_id,count(prod_id) from Vendors left join Products using(vend_id) group by vend_id order by vend_id
0
点赞
评论
收藏
分享
2023-05-14 15:26
大连海洋大学 Java
题解 | #返回产品名称和与之相关的订单号#
select prod_name,order_num from Products left join OrderItems using(prod_id) order by prod_name
0
点赞
评论
收藏
分享
2023-05-14 15:02
大连海洋大学 Java
题解 | #检索每个顾客的名称和所有的订单号(一)#
select cust_name,order_num from Customers inner join Orders on Customers.cust_id=Orders.cust_id order by cust_name
0
点赞
评论
收藏
分享
2023-05-14 14:35
大连海洋大学 Java
题解
select cust_id,order_date from OrderItems a,Orders b where a.prod_id='BR01' and a.order_num=b.order_num order by order_date
0
点赞
评论
收藏
分享
2023-05-14 10:56
大连海洋大学 Java
题解 | #返回顾客名称和相关订单号#
select a.cust_name,b.order_num from Customers a,Orders b where a.cust_id = b.cust_id order by a.cust_name , a.cust_id
0
点赞
评论
收藏
分享
2023-05-14 10:20
大连海洋大学 Java
个人题解
select b.cust_id,b.order_date from OrderItems a,Orders b where a.prod_id='BR01' and a.order_num =b.order_num order by order_date
0
点赞
评论
收藏
分享
2023-05-13 10:53
大连海洋大学 Java
题解 | #确定已售出产品的总数#
select sum(quantity) as items_ordered from OrderItems
0
点赞
评论
收藏
分享
2023-05-13 10:41
大连海洋大学 Java
题解 | #打折#
select prod_id,prod_price,(prod_price*0.9) as sale_price from Products
0
点赞
评论
收藏
分享
2023-05-13 10:39
大连海洋大学 Java
题解 | #别名#
select vend_id,vend_name vname,vend_address vaddress,vend_city vcity from Vendors order by Vname
0
点赞
评论
收藏
分享
2023-05-13 10:35
大连海洋大学 Java
题解 | #检索产品名称和描述(四)#
select prod_name,prod_desc from Products where prod_desc like '%toy%carrots%'
0
点赞
评论
收藏
分享
2023-05-13 10:33
大连海洋大学 Java
题解 | #检索产品名称和描述(三)#
select prod_name,prod_desc from Products where prod_desc like '%toy%' and prod_desc like '%carrots%'
0
点赞
评论
收藏
分享
2023-05-13 10:24
大连海洋大学 Java
题解 | #检索产品名称和描述(二)#
select prod_name,prod_desc from Products where prod_desc not like '%toy' order by prod_name
0
点赞
评论
收藏
分享
1
2
3
4
5
6
8
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务