当前位置:网站首页>SQL exam questions
SQL exam questions
2022-08-03 09:33:00 【Hip Hop∠※】
目录
考点1:in的用法
题目:现在运营想要找到学校为北大、复旦和山大的同学进行调研,请你取出相关数据.
select device_id,gender,age,university,gpa
from user_profile
where university in ("北京大学","复旦大学","山东大学")
考点2:or的用法
题目:现在运营想要找到学校为北大或GPA在3.7以上(不包括3.7)的用户进行调研,请你取出相关数据(使用OR实现)
select device_id,gender,age,university,gpa
from user_profile
where university = "北京大学" or gpa > 3.7
考点3:不为空
题目:现在运营想要对用户的年龄分布开展分析,在分析时想要剔除没有获取到年龄的用户,请你取出所有年龄值不为空的用户的设备ID,性别,年龄,学校的信息.
select device_id,gender,age,university
from user_profile
where
age !=""
# 第二种age is not null
考点4:does not contain an item
题目:现在运营想要查看除复旦大学以外的所有用户明细,请你取出相应数据
select device_id,gender,age,university
from user_profile
#where university !="复旦大学"
#where university not like "复旦大学"
where university not in ("复旦大学")
考点5:and和or
题目:现在运营想要找到gpa在3.5以上(不包括3.5)of Shandong University
用户 或 gpa在3.8以上(不包括3.8)的复旦大学
Students conduct user research,请你取出相应数据
select device_id,gender,age,university,gpa
from user_profile
where (gpa>3.5 and university="山东大学")
or (gpa>3.8 and university="复旦大学")
考点6:like模糊语句
题目:Now the operation wants to view all the universitieswith Beijing
的用户的信息,请你取出相应数据.
select device_id,age,university
from user_profile
where university like ("%北京%")
#Including Beijing university like ("%北京%")
#以北京开头的 university like ("北京%")
# It ends with Beijing("%北京")
考点7:distinctGo heavy only
题目:现在运营需要查看用户来自于哪些学校,Please remove the school's from the user information sheet去重
数据.
select distinct university from user_profile
考点8:Maximum and descending order(取第一行数据)
题目:Operations want to know复旦大学
学生gpa最高值
是多少,请你取出相应数据
法1:by descending order,然后取第一条
select gpa
from user_profile
where university = "复旦大学"
order by gpa DESC limit 1
法2:使用聚合函数取最大值
select max(gpa)
from user_profile
where university = "复旦大学"
边栏推荐
猜你喜欢
RSTP(端口角色+端口状态+工作机制)|||| 交换机接口分析
go泛型使用方法
mysql数据库配置性能调优
GO开发环境配置
机器学习(公式推导与代码实现)--sklearn机器学习库
STP和RSTP的BPDU报文中flag位 对比+分析
Redis实现分布式锁
go版本升级
Flink Yarn Per Job - 提交应用
Rabbit and Falcon are all covered, Go lang1.18 introductory and refined tutorial, from Bai Ding to Hongru, the whole platform (Sublime 4) Go lang development environment to build EP00
随机推荐
深度学习之 10 卷积神经网络1
多媒体数据处理实验3:图像特征提取与检索
子查询和关联查询的区别
SQL每日一练(牛客新题库)——第5天:高级查询
Partition table (1)
软体按摩机器人驱动器的设计与仿真
Redis和MySQL如何保持数据一致性
chrome F12 network 保留之前请求信息
浅析什么是伪类和伪元素?伪类和伪元素的区别解析
MySQL 中 is null 和 =null 的区别
C语言二维数组用一维数组进行调用
响应式布局经典范例——巨幅背景大标题
go中select语句
【微信小程序】底部有安全距离,适配iphone X等机型的解决方案
110 MySQL interview questions and answers (continuous updates)
Scala parallel collections, parallel concurrency, thread safety issues, ThreadLocal
MySQL的存储过程
LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之二:编码实现
milvus
Rabbit and Falcon are all covered, Go lang1.18 introductory and refined tutorial, from Bai Ding to Hongru, the whole platform (Sublime 4) Go lang development environment to build EP00