gpt4 book ai didi

sql - 基于NULL值的表列排序

转载 作者:行者123 更新时间:2023-12-02 17:32:38 25 4
gpt4 key购买 nike

我想根据 Column1 值对 column2 进行排序。我想根据 NULL 值拆分列 1 数据。最终查询结果将在评估列1中的值时显示

   Column1    Column2 
NULL 100
NULL 60
NULL 90
10 22
20 40
05 35
15 20
40 10
30 25
20 30

Would become:

Column1 Column2
20 40
05 35
20 30
30 25
10 22
15 20
40 10
NULL 100
NULL 90
NULL 60

Thanks

最佳答案

您可以在 order by 子句中使用 case,如下所示:

Select * from t
Order by case when column1 is null then 1 else 0 end, column2 desc

关于sql - 基于NULL值的表列排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42412044/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com