【牛客刷题--SQL篇】SQL14操作符混合运用(多种写法)&&SQL15查看学校名称中含北京的用户_drop table if exists user_profile;(1)

img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

需要这份系统化资料的朋友,可以戳这里获取

gender varchar(14) NOT NULL,
age int ,
university varchar(32) NOT NULL,
province varchar(32) NOT NULL,
gpa float);
INSERT INTO user_profile VALUES(1,2138,‘male’,21,‘北京大学’,‘BeiJing’,3.4);
INSERT INTO user_profile VALUES(2,3214,‘male’,null,‘复旦大学’,‘Shanghai’,4.0);
INSERT INTO user_profile VALUES(3,6543,‘female’,20,‘北京大学’,‘BeiJing’,3.2);
INSERT INTO user_profile VALUES(4,2315,‘female’,23,‘浙江大学’,‘ZheJiang’,3.6);
INSERT INTO user_profile VALUES(5,5432,‘male’,25,‘山东大学’,‘Shandong’,3.8);

输出
3214|male|None|复旦大学|4.0
5432|male|25|山东大学|3.8

输入:
drop table if exists user_profile;
CREATE TABLE `user\_profile` (
`id` int NOT NULL,
`device\_id` int NOT NULL,
`gender` varchar(14) NOT NULL,
`age` int ,
`university` varchar(32) NOT NULL,
`province` varchar(32)  NOT NULL,
`gpa` float);
INSERT INTO user_profile VALUES(1,2138,'male',21,'北京大学','BeiJing',3.4);
INSERT INTO user_profile VALUES(2,3214,'male',null,'复旦大学','Shanghai',4.0);
INSERT INTO user_profile VALUES(3,6543,'female',20,'北京大学','BeiJing',3.2);
INSERT INTO user_profile VALUES(4,2315,'female',23,'浙江大学','ZheJiang',3.6);
INSERT INTO user_profile VALUES(5,5432,'male',25,'山东大学','Shandong',3.8);
复制
输出:
3214|male|None|复旦大学|4.0
5432|male|25|山东大学|3.8

在这里插入图片描述

1.1.1、SQL语句(第一种写法)

select
device_id,
gender,
age,
university,
gpa
from
user_profile
where
(
gpa > 3.5
and university = ‘山东大学’
)
or (
gpa > 3.8
and university = ‘复旦大学’
)

select
  device_id,
  gender,
  age,
  university,
  gpa
from
  user_profile
where
  (
    gpa > 3.5
    and university = '山东大学'
  )
  or (
    gpa > 3.8
    and university = '复旦大学'
  )

在这里插入图片描述
在这里插入图片描述

1.1.2、SQL语句(第二种写法)

select
device_id,
gender,
age,
university,
gpa
from
user_profile
where
gpa > 3.5
and university = ‘山东大学’
union
select
device_id,
gender,
age,
university,
gpa
from
user_profile
where
gpa > 3.8
and university = ‘复旦大学’

select
  device_id,
  gender,
  age,
  university,
  gpa
from
  user_profile
where
  gpa > 3.5
  and university = '山东大学'
union
select
  device_id,
  gender,
  age,
  university,
  gpa
from
  user_profile
where
  gpa > 3.8
  and university = '复旦大学'

在这里插入图片描述

1.1.3、SQL语句(第三种写法)

select
device_id,
gender,
age,
university,
gpa
from
user_profile
where
gpa > 3.5
and university = ‘山东大学’
union all
select
device_id,
gender,
age,
university,
gpa
from
user_profile
where
gpa > 3.8
and university = ‘复旦大学’

select
  device_id,
  gender,
  age,
  university,
  gpa
from
  user_profile
where
  gpa > 3.5
  and university = '山东大学'
union all
select
  device_id,
  gender,
  age,
  university,
  gpa
from
  user_profile
where
  gpa > 3.8
  and university = '复旦大学'

在这里插入图片描述

1.2、SQL15 查看学校名称中含北京的用户

  • 描述

题目:现在运营想查看所有大学中带有北京的用户的信息,请你取出相应数据。
在这里插入图片描述

  • 示例1

输入
drop table if exists user_profile;
CREATE TABLE user_profile (
id int NOT NULL,
device_id int NOT NULL,

img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

需要这份系统化资料的朋友,可以戳这里获取

-iVxOjQjI-1715007168066)]
[外链图片转存中…(img-As0jBVI3-1715007168067)]

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

需要这份系统化资料的朋友,可以戳这里获取

  • 23
    点赞
  • 30
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值