无码av一区二区三区无码,在线观看老湿视频福利,日韩经典三级片,成 人色 网 站 欧美大片在线观看

歡迎光臨散文網(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的評論 (共 條)

分享到微博請遵守國家法律
准格尔旗| 搜索| 江永县| 和平县| 濉溪县| 洪洞县| 镇远县| 绥中县| 岑溪市| 西和县| 延安市| 牡丹江市| 中江县| SHOW| 临清市| 昭觉县| 中西区| 烟台市| 大埔县| 黔西县| 黄龙县| 兴城市| 博罗县| 奇台县| 花莲市| 三江| 鲜城| 江华| 德令哈市| 克拉玛依市| 兴城市| 舞钢市| 鄢陵县| 团风县| 濮阳县| 集安市| 新河县| 彰化县| 遵义市| 华安县| 高碑店市|