当前位置:网站首页>Byte warehouse intern interview SQL questions
Byte warehouse intern interview SQL questions
2022-04-23 12:57:00 【Look at the data at the top of the mountain】
Subject requirements
id cnt url
1 12 a
2 21 f
1 32 eRelated instructions :
cnt Equivalent to date
Here, you need to split the table into the following types
id Maximum date url Minimum date url
1 32 e 12 a
The brain suddenly became hot , A little nervous in front of the interviewer , This problem has not been worked out , After the interview, I reviewed the question again , Concrete sql The statement is as follows
select
t3.id,t3.cnt,t3.url,t4.cnt,t4.url
from
(select
t1.*
from
(select
id,cnt,url,row_number() over(partition by id order by cnt) temp
from info) t1
where t1.temp <2 ) t3
join
(select
t2.*
from
(select
id,cnt,url,row_number() over(partition by id order by cnt desc) temp
from info) t2
where t2.temp <2) t4
on t3.id = t4.id
The main point of this problem is to eliminate the redundant columns , Only the largest and smallest columns are reserved in the table .
版权声明
本文为[Look at the data at the top of the mountain]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230615025321.html
边栏推荐
- The El table horizontal scroll bar is fixed at the bottom of the visual window
- 22. 括号生成
- mysql中 innoDB执行过程分析
- After the data of El table is updated, the data in the page is not updated this$ Forceupdate() has no effect
- Try the server for one month for free, and attach the tutorial
- CGC: contractual graph clustering for community detection and tracking
- BUUCTF WEB [BUUCTF 2018]Online Tool
- BaseRecyclerViewAdapterHelper 实现下拉刷新和上拉加载
- 网站首页文件被攻击篡改的形式有哪些
- 风尚云网学习-h5的input:type属性的image属性
猜你喜欢
Wonderful review | the sixth issue of "source" - open source economy and industrial investment
ZigBee CC2530 minimum system and register configuration (1)
云原生KubeSphere部署Mysql
如何防止网站被黑客入侵篡改
实现一个盒子在父盒子中水平垂直居中的几种“姿势”
CGC: contractual graph clustering for community detection and tracking
leetcode:437. Path sum III [DFS selected or not selected?]
How to prevent the website from being hacked and tampered with
Try the server for one month for free, and attach the tutorial
Use compressorjs to compress pictures, optimize functions, and compress pictures in all formats
随机推荐
Recommended website for drawing result map
Customize classloader and implement hot deployment - use loadclass
Idea的src子文件下无法创建servlet
Plato farm - a game of farm metauniverse with Plato as the goal
精度、速度完美平衡,最新图像分割SOTA模型重磅发布!!!
BUUCTF WEB [BUUCTF 2018]Online Tool
拥抱机器视觉新蓝海,冀为好望开启数字经济发展新“冀”遇
The continuous construction of the Internet industry platform is not only able to collect traffic
STM32 is connected to the motor drive, the DuPont line supplies power, and then the back burning problem
CGC: contractual graph clustering for community detection and tracking
Customize the shortcut options in El date picker, and dynamically set the disabled date
ZigBee CC2530 minimum system and register configuration (1)
Softbank vision fund entered the Web3 security industry and led a new round of investment of US $60 million in certik
Importerror after tensorflow installation: DLL load failed: the specified module cannot be found, and the domestic installation is slow
C#,二维贝塞尔拟合曲线(Bézier Curve)参数点的计算代码
Bert base Chinese Download (SMART)
Calculate the past date and days online, and calculate the number of live days
Buuctf Web [gxyctf2019] no dolls
BaseRecyclerViewAdapterHelper 实现下拉刷新和上拉加载
Pytorch: a pit about the implementation of gradreverselayer