最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

database_leetcode 2159 Order Two Columns Independently

2022-02-16 20:20 作者:您是打尖兒還是住店呢  | 我要投稿


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 ? ? ? ? ?|

+-----------+------------+

*/


Create table Data (first_col int, second_col int)

Truncate table Data

insert into Data (first_col, second_col) values ('4', '2')

insert into Data (first_col, second_col) values ('2', '3')

insert into Data (first_col, second_col) values ('3', '1')

insert into Data (first_col, second_col) values ('1', '4')

;

/* Write your T-SQL query statement below */


database_leetcode 2159 Order Two Columns Independently的評論 (共 條)

分享到微博請遵守國家法律
根河市| 简阳市| 柘荣县| 鸡东县| 自贡市| 宣武区| 黄陵县| 长春市| 洪湖市| 英山县| 丁青县| 榆中县| 安泽县| 宝丰县| 潢川县| 屯昌县| 高台县| 鲜城| 无为县| 潜江市| 三门峡市| 威信县| 阿鲁科尔沁旗| 稷山县| 霞浦县| 绩溪县| 南木林县| 临沭县| 富川| 海盐县| 永川市| 赤水市| 陈巴尔虎旗| 博兴县| 高青县| 安福县| 西乌珠穆沁旗| 靖安县| 武胜县| 洪湖市| 保亭|