HackerRank SQL(Basic Select+Aggregation)

本文介绍了HackerRank上一系列SQL题目,包括查询最短和最长城市名称、不含首尾元音字母的城市、最小北方纬度、欧几里得距离计算以及错误的平均月薪计算等。通过解决这些问题,读者可以加深对SQL语法和函数的理解,如LEN(), LENGTH(), REGEXP, AVG(), REPLACE()等。" 88937345,8162675,Python实现全景图片拼接技术,"['计算机视觉', '图像拼接', 'Python编程', '图像处理技术', '图像融合']
摘要由CSDN通过智能技术生成

Weather Observation Station 5

PROBLEM

Query the two cities in STATION with the shortest and longest CITY names, as well as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or largest city, choose the one that comes first when ordered alphabetically.
The STATION table is described as follows:
在这里插入图片描述
where LAT_N is the northern latitude and LONG_W is the western longitude.

Sample Input

For example, CITY has four entries: DEF, ABC, PQRS and WXY.

Sample Output

ABC 3
PQRS 4

Explanation

When ordered alphabetically, the CITY names are listed as ABC, DEF, PQRS, and WXY, with lengths 3,3,4
and 3. The longest name is PQRS, but there are 3 options for shortest named city. Choose ABC, because it comes first alphabetically.
Note
You can write two separate queries to get the desired output. It need not be a single query.

ANSWER

SQL Server

SELECT TOP 1 CITY,LEN(CITY) FROM STATION 
ORDER BY LEN(CITY) ASC, CITY ;
SELECT TOP 1 CITY,LEN(CITY) FROM STATION 
ORDER BY LEN(CITY) DESC, CITY ;

MySQL

SELECT CITY ,LENGTH(CITY) FROM STATION
ORDER
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值