在 sqlalchemy core 中连接多个具有相同列名的表 - 如何?

发布于 2025-01-10 08:50:20 字数 323 浏览 0 评论 0原文

我想使用 sqlalchemy core(v1.4,但使用 2.0 语法)连接三个表。 使用最简单的格式,

jo=s_table.join(l_table).join(f_table)
res=connection.execute(select(jo))
x=res.fetchone()

我得到的列的原始名称为 x,但如果结果包含相同的名称,第一个将获得原始名称,第二个将获得附加到列名称的“_1”,第三个“_2”等。 如何指定这些属性的命名规则?在 sqlalchemy 的文档中,我找到了 alias() 方法,但据我了解,它已被弃用,并将在 v2.0 中删除。

I'd like to join three tables, using sqlalchemy core (v1.4, but with 2.0 syntax).
Using the simplest format

jo=s_table.join(l_table).join(f_table)
res=connection.execute(select(jo))
x=res.fetchone()

I get columns with their original name in x, but if the result contains identical names, the first will get the original name, the second will get a '_1' appended to the column name, the third '_2' etc.
How can I specify the naming rules of these attributes? In the sqlalchemy's documentation I've found the alias() method, but it is deprecated and will be removed in v2.0 as far as I understand it.

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

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

发布评论

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

评论(1

音盲 2025-01-17 08:50:20

现在我发现了一些东西,但我不确定它是否正确:

from sqlaclhemy import alias, LABEL_STYLE_TABLENAME_PLUS_COL
...
alias1 = s_table.alias('s')
alias2 = l_table.alias('l')
alias3 = f_table.alias('f')

jo = alias1.join(alias2).join(alias3)
res = connection.execute(select(jo).set_label_style(LABEL_STYLE_TABLENAME_PLUS_COL)
x = res.fetchone()

此时我可以将列访问为 s_、l_、f_*。 (不需要使用完整的表名,这是默认的)

Now I found something, but I'm not sure, if it is correct:

from sqlaclhemy import alias, LABEL_STYLE_TABLENAME_PLUS_COL
...
alias1 = s_table.alias('s')
alias2 = l_table.alias('l')
alias3 = f_table.alias('f')

jo = alias1.join(alias2).join(alias3)
res = connection.execute(select(jo).set_label_style(LABEL_STYLE_TABLENAME_PLUS_COL)
x = res.fetchone()

At this point I can access the columns as s_, l_, f_*. (don't need to use the full table name, which is the default)

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