ID | Title | Difficulty | |
---|---|---|---|
Loading... |
2159. Order Two Columns Independently
Medium
LeetCode
Database
Problem
Table: Data
+-------------+------+
| Column Name | Type |
+-------------+------+
| first_col | int |
| second_col | int |
+-------------+------+
There is no primary key for this table and it may contain duplicates.
Write an SQL query to independently:
order first_col in ascending order. order second_col in descending order. The query result format is in the following example.
Example 1:
Input:
Data table:
+-----------+------------+
| first_col | second_col |
+-----------+------------+
| 4 | 2 |
| 2 | 3 |
| 3 | 1 |
| 1 | 4 |
+-----------+------------+
Output:
+-----------+------------+
| first_col | second_col |
+-----------+------------+
| 1 | 4 |
| 2 | 3 |
| 3 | 2 |
| 4 | 1 |
+-----------+------------+
Code
SELECT first_col, second_col
FROM (
SELECT first_col, ROW_NUMBER() OVER(ORDER BY first_col ASC) AS r
FROM Data
) a
JOIN (
SELECT second_col, ROW_NUMBER() OVER(ORDER BY second_col DESC) AS r
FROM Data
) b
ON a.r = b.r
按 <- 键看上一题!
2153. The Number of Passengers in Each Bus II
按 -> 键看下一题!
2173. Longest Winning Streak