根据另一个表对一个表进行排序

发布于 2024-12-15 07:27:52 字数 793 浏览 0 评论 0原文

我有一个表 A.

|----+----|
| P  |  S |
|----+----|
| p1 |  1 |
| p2 |  7 |
| p3 | 14 |
| p4 | 23 |
| p5 |  1 |
|----+----|

和表 B

|----+----|
|  S |  C |
|----+----|
|  1 | 21 |
|  5 | 21 |
| 23 | 21 |
|  1 | 30 |
|  7 | 90 |
|----+----|

我需要对表 A 进行排序。

排序顺序:

A. TableA.S exists where  (TableA.S = TableB.S) and TableB.C = 21
B. TableA.P

最终输出:

|----+----|
| P  |  S |
|----+----|
| p1 |  1 |
| p4 | 23 |
| p5 |  1 |
| p2 |  7 |
| p3 | 14 |
|----+----|

这需要转换为 DBIx::Class 查询。

我尝试了以下操作:

Select tableA.P, tableA.S
from tableA left join tableB on tableA.S = tableB.S
where (tableB.C = 21 or tableB.C is NULL)
order by tableB.C, tableA.P

但是我缺少某个地方来获取 tableB.S 为“7”的结果。

谢谢。

I have a table A.

|----+----|
| P  |  S |
|----+----|
| p1 |  1 |
| p2 |  7 |
| p3 | 14 |
| p4 | 23 |
| p5 |  1 |
|----+----|

and table B

|----+----|
|  S |  C |
|----+----|
|  1 | 21 |
|  5 | 21 |
| 23 | 21 |
|  1 | 30 |
|  7 | 90 |
|----+----|

I need to sort table A.

Sorting order:

A. TableA.S exists where  (TableA.S = TableB.S) and TableB.C = 21
B. TableA.P

Final Output:

|----+----|
| P  |  S |
|----+----|
| p1 |  1 |
| p4 | 23 |
| p5 |  1 |
| p2 |  7 |
| p3 | 14 |
|----+----|

This needs to be converted to DBIx::Class query.

I tried following:

Select tableA.P, tableA.S
from tableA left join tableB on tableA.S = tableB.S
where (tableB.C = 21 or tableB.C is NULL)
order by tableB.C, tableA.P

But I am missing somewhere to get the result where tableB.S is '7'.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最终幸福 2024-12-22 07:27:52

对于 A 中的所有记录,按 AP 排序,在 B 中找到匹配的记录,然后按 AP 对其他记录排序。

 SQL> select A.P
       , A.S
from A 
     left join B        
        on ( A.S = B.S 
             and B.C = 21)
order by nvl2(B.S, 'ZZZZZZZZZZ', A.P), A.P
/

  2    3    4    5    6    7    8  
P           S
-- ----------
p1          1
p4         23
p5          1
p2          7
p3         14

SQL>

This sorts by A.P for all the records in A a matching record is found in B then by A.P for the other records.

 SQL> select A.P
       , A.S
from A 
     left join B        
        on ( A.S = B.S 
             and B.C = 21)
order by nvl2(B.S, 'ZZZZZZZZZZ', A.P), A.P
/

  2    3    4    5    6    7    8  
P           S
-- ----------
p1          1
p4         23
p5          1
p2          7
p3         14

SQL>
终陌 2024-12-22 07:27:52

您实际上可以避免使用 CASE 或相关的等效项(例如 COALESCE(...) 和特定于数据库的相关函数):

SELECT TableA.p, TableA.s
FROM TableA
LEFT JOIN TableB
       ON TableA.s = TableB.s
          AND TableB.c = 21
ORDER BY TableB.c, TableA.p

为什么这有效? Oracle(和其他一些数据库)的默认行为是将 null 排序为“最大”值(有些人认为它是“最低”值,在这种情况下修复起来很简单)。因此,首先给出在给定列中具有值(这是一个常量值)的行,然后给出那些没有...

You can actually avoid the use of CASE or related equivalents (such as COALESCE(...) and the db-specific related functions):

SELECT TableA.p, TableA.s
FROM TableA
LEFT JOIN TableB
       ON TableA.s = TableB.s
          AND TableB.c = 21
ORDER BY TableB.c, TableA.p

Why does this work? Default behavior of Oracle (and some other dbs) is that null sorts as the "greatest" value (some consider it the "lowest" value, which would be trivial to fix in this case). So first rows with a value in the given column (which is a constant value) are given, then those without...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文