在 sqlalchemy core 中连接多个具有相同列名的表 - 如何?
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在我发现了一些东西,但我不确定它是否正确:
此时我可以将列访问为 s_、l_、f_*。 (不需要使用完整的表名,这是默认的)
Now I found something, but I'm not sure, if it is correct:
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)