由 UNION 形成的表的列名

发布于 2024-07-10 11:17:05 字数 449 浏览 4 评论 0原文

给定几个简单的表,如下所示:

create table R(foo text);
create table S(bar text);

如果我要在查询中将它们联合在一起,我该如何称呼该列?

select T.????
from (
    select foo
    from R
    union
    select bar
    from S) as T;

现在,在 mysql 中,我显然可以将 T 的列称为“foo”——联合中第一个关系的匹配列的名称。 然而,在 sqlite3 中,这似乎不起作用。 有没有一种方法可以在所有 SQL 实现中都是标准的?

如果没有,那么只使用 sqlite3 怎么样?

更正:毕竟 sqlite3 确实允许您将 T 的列称为“foo”! 哎呀!

Given a couple of simple tables like so:

create table R(foo text);
create table S(bar text);

If I were to union them together in a query, what do I call the column?

select T.????
from (
    select foo
    from R
    union
    select bar
    from S) as T;

Now, in mysql, I can apparently refer to the column of T as 'foo' -- the name of the matching column for the first relation in the union. In sqlite3, however, that doesn't seem to work. Is there a way to do it that's standard across all SQL implementations?

If not, how about just for sqlite3?

Correction: sqlite3 does allow you to refer to T's column as 'foo' after all! Oops!

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

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

发布评论

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

评论(3

¢蛋碎的人ぎ生 2024-07-17 11:17:05

尝试给列起一个别名;

select T.Col1
from (
    select foo as Col1
    from R
    union
    select bar as Col1
    from S) as T;

或者如果列名不是必需的,那么 T.* 就足够了。

Try to give an alias to columns;

select T.Col1
from (
    select foo as Col1
    from R
    union
    select bar as Col1
    from S) as T;

or If the name of column is not necessary then T.* will be enough.

野味少女 2024-07-17 11:17:05

尽管没有拼写规则,但我们可以使用联合查询中第一个子查询的列名来获取联合结果。

Although there is no spelled rule, we can use the column names from the first subquery in the union query to fetch the union results.

瑾夏年华 2024-07-17 11:17:05

您只需要在第一次选择时使用列别名(在 SQl Server 2008 R2 中测试)

select T.Col1
from (
    select 'val1' as Col1
    union
    select 'val2'
    union
    select 'val3'     
) as T;

you only need column aliases only in first select (tested in SQl Server 2008 R2)

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