postgresql 调用具有相同名称的列

Posted

技术标签:

【中文标题】postgresql 调用具有相同名称的列【英文标题】:postgresql calling column with same name 【发布时间】:2012-04-22 03:48:36 【问题描述】:

我有两个表,它们具有相同的 ID 名称(我无法更改表的设计方式)并且我正在尝试查询 table2 的 ID,当它们连接时我将如何执行此操作?

create table table1(
    id          integer, -- PG: serial
    description MediumString not null,
    primary key (id)
);


create table table2 (
    id          integer, -- PG: serial
    tid         references table1(id),
    primary key (id)
);

所以基本上当它们加入时,如果我执行以下查询,两列将具有相同的名称“id”

select * from table1
join table2 on table1.id = table2.tid;

【问题讨论】:

【参考方案1】:

如果您想要两个“id”,则为列命名

SELECT table1.id AS id1, table2.id AS id2
FROM table1...

【讨论】:

SELECT * 对于临时查询以外的任何事情通常都是个坏主意;如果您使用它,事情可能会根据架构更改以不可预测和令人惊讶的方式中断。【参考方案2】:

如果您想查询两个表上的所有 * 但仍然能够引用特定的 id,您也可以这样做,您最终会得到可能不会使用的重复 id 列,但在某些情况下,如果您真的需要所有的数据,值得。

select table1.*, table2.*, table1.id as 'table1.id', table2.id as 'table2.id'
from ...

【讨论】:

【参考方案3】:

您无法使用select * 选择它。 试试这个:

select table1.id, table1.description, table2.id, table2.tid
from table1
inner join table2
 on table1.id = table2.tid

【讨论】:

以上是关于postgresql 调用具有相同名称的列的主要内容,如果未能解决你的问题,请参考以下文章

如何在pyspark中连接具有相同名称的列的值

Liferay 6.2 自定义连接具有相同名称的列重叠

按 ID 合并两个 Excel 文件并合并具有相同名称的列(python、pandas)

在Postgres中加入两个表后如何为具有相同名称的列提供别名

如何组合长度不等的列并使它们在postgreSQL中相等

Oracle的函数WM_CONCAT,在PostgreSQL中具有相同功能的函数名称是啥?