iT邦幫忙

0

SQL組內如何按照不同方式排序

sql
  • 分享至 

  • xImage

按照group_num分组,group_num=1的,組內時間DESC;group_num=3的,組內時間ASC。

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

2
暐翰
iT邦大師 1 級 ‧ 2018-03-07 15:08:24
最佳解答

以下是我寫的測試跟範例
使用ORDER BY CASE WHEN達到ASC跟DESC

--測試資料
create table #Tem_Table ([Date] Date,group_num int );
with Tem_Table as (
	select '2018-03-01' [Date],1 group_num union all
	select '2018-03-04' [Date],1 group_num union all
	select '2018-03-02' [Date],1 group_num union all
	select '2018-03-02' [Date],3 group_num union all
	select '2018-03-05' [Date],3 group_num union all
	select '2018-03-03' [Date],3 group_num 
)
insert into #Tem_Table select * from Tem_Table;
select * from #Tem_Table;
select * from #Tem_Table
order by 
case when group_num=1 then [DATE] end DESC, --group_num=1的,組內時間DESC
case when group_num=3 then [DATE] end ASC  --group_num=3的,組內時間ASC。 

我要發表回答

立即登入回答