国产精品天干天干,亚洲毛片在线,日韩gay小鲜肉啪啪18禁,女同Gay自慰喷水

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

分享到微博請遵守國家法律
台前县| 长治县| 大余县| 湛江市| 财经| 凤城市| 孟津县| 乃东县| 铅山县| 滨海县| 汉川市| 汉源县| 宝应县| 五华县| 自治县| 泗阳县| 南溪县| 自治县| 泾阳县| 疏勒县| 禄丰县| 大田县| 左权县| 汾西县| 苗栗县| 广河县| 武功县| 姚安县| 中江县| 广水市| 分宜县| 法库县| 九龙城区| 绍兴市| 松江区| 东乌珠穆沁旗| 疏勒县| 会理县| 新宁县| 四子王旗| 清水县|