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

img
img

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

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

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

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,
gender varchar(14) NOT NULL,
age int ,
university varchar(32) NOT NULL,
gpa float);
INSERT INTO user_profile VALUES(1,2138,‘male’,21,‘北京大学’,3.4);
INSERT INTO user_profile VALUES(2,3214,‘male’,null,‘复旦大学’,4.0);
INSERT INTO user_profile VALUES(3,6543,‘female’,20,‘北京大学’,3.2);
INSERT INTO user_profile VALUES(4,2315,‘female’,23,‘浙江大学’,3.6);
INSERT INTO user_profile VALUES(5,5432,‘male’,25,‘山东大学’,3.8);
INSERT INTO user_profile VALUES(6,2131,‘male’,28,‘北京师范大学’,3.3);

输出
2138|21|北京大学
6543|20|北京大学
2131|28|北京师范大学

输入:
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,
`gpa` float);
INSERT INTO user_profile VALUES(1,2138,'male',21,'北京大学',3.4);
INSERT INTO user_profile VALUES(2,3214,'male',null,'复旦大学',4.0);
INSERT INTO user_profile VALUES(3,6543,'female',20,'北京大学',3.2);
INSERT INTO user_profile VALUES(4,2315,'female',23,'浙江大学',3.6);
INSERT INTO user_profile VALUES(5,5432,'male',25,'山东大学',3.8);
INSERT INTO user_profile VALUES(6,2131,'male',28,'北京师范大学',3.3);
复制
输出:
2138|21|北京大学
6543|20|北京大学
2131|28|北京师范大学

在这里插入图片描述

  • SQL语句

select

img
img
img

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

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

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

-3VnUG7LY-1715717154028)]
[外链图片转存中…(img-Rm6jwk3A-1715717154029)]

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

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

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值