按x排序然后按SQL Server中的y列排序

问题描述 投票:5回答:4

考虑像这样的表

   debit    credit  code
-----------------------------
    0       10      5
    5       0       3
    0       11      2
    0       15      1
    7       0       6
    6       0       2
    5       0       1

我需要生成一个这样的结果集,首先是借记,然后按代码列排序:

debit   credit  code
----------------------------
5       0       1
6       0       2
5       0       3
7       0       6
0       15      1
0       11      2
0       10      5
sql sql-server tsql
4个回答
7
投票

你可以用它。

DECLARE  @MyTable TABLE(debit INT, credit INT,  code INT)

INSERT INTO @MyTable VALUES 
(0, 10, 5),
(5, 0 , 3),
(0, 11, 2),
(0, 15, 1),
(7, 0 , 6),
(6, 0 , 2),
(5, 0 , 1)

SELECT * FROM 
    @MyTable 
ORDER BY 
    (CASE WHEN debit > 0 THEN 0 ELSE 1 END) ,
    code , 
    debit

结果:

debit       credit      code
----------- ----------- -----------
5           0           1
6           0           2
5           0           3
7           0           6
0           15          1
0           11          2
0           10          5

3
投票

请在order by clause中使用下面的一个,您将获得您正在寻找的输出

  order by cast(cast(code as varchar(50)) 
                              + cast(debit as varchar(2)+ cast(credit as varchar(2) as int)

2
投票
;WITH Props AS
(
SELECT *,
    ROW_NUMBER() OVER (ORDER BY c,cc) AS RowNumber
FROM Location

)
select * from Props order by d desc,RowNumber

试试上面的代码

WOrking fiddle here


0
投票

使用此选项可以帮助您:

SELECT debit, code, credit  
FROM table a
WHERE debit > 0
or debit = 0
order by debit  code, credit desc

要么

SELECT debit, code, credit  
FROM table a
WHERE debit > 0
or debit = 0
group by debit, code, credit
order by debit  code, credit desc
© www.soinside.com 2019 - 2024. All rights reserved.