16

这是我第一次尝试回答我自己的问题,因为有人可能会遇到这个问题,所以它可能会有所帮助。使用 Firebird,我想使用 UNION ALL 组合两个查询的结果,然后对给定列的结果输出进行排序。就像是:

(select C1, C2, C3 from T1)
union all 
(select C1, C2, C3 from T2)
order by C3

括号来自其他数据库的有效语法,并且需要确保 UNION ALL 的参数(定义为在表上工作的操作 - 即无序的记录集)不会尝试单独排序。但是我无法让这种语法在 Firebird 中工作 - 怎么做?

4

6 回答 6

30
SELECT C1, C2, C3
FROM (
    select C1, C2, C3 from T1
    union all 
    select C1, C2, C3 from T2
)
order by C3
于 2008-12-09T21:08:04.620 回答
12

字段名称不需要相同。这就是为什么您不能在 order by 中使用字段名称的原因。
您可以改用字段索引。如:

(select C1, C2, C3 from T1)
union all 
(select C7, C8, C9 from T2)
order by 3  
于 2008-12-09T22:18:00.173 回答
7

怎么样:

select C1, C2, C3 from T1
union all 
select C1, C2, C3 from T2
order by 2

至少在较新的 Firebird 版本中,如果您按“编号”而不是使用别名进行订购,它可以工作。

于 2015-06-23T15:15:12.237 回答
2

在 Firebird 1.5 中,这对我有用

create view V1 (C1, C2, C3) as
  select C1, C2, C3 from T1
  union all 
  select C1, C2, C3 from T2

进而

select C1, C2, C3 from V1 order by C3
于 2009-02-03T14:48:14.843 回答
1

在视图中执行 UNION ALL(没有 ORDER BY 子句),然后使用 ORDER BY 从视图中进行选择。

于 2008-12-09T21:02:06.317 回答
0

移动order by到查询尾部对输出数据网格没有影响。

select * from (
    select first 1
        C1
    from T1
    order by id desc
)
union all
select * from (
    select first 1
        C1
    from T2
    order by id desc
)
于 2017-04-17T21:59:44.487 回答