如果表处于不同的模式,我们可以在 postgresql 中连接两个表吗?
我在 public
架构中有一个表,在 deepak
架构中有第二个表。两个模式都位于同一数据库下。
我可以连接这两个表中的数据吗?
I have one table in public
schema and a second table in deepak
schema. Both the schemas are under same database.
Can I join data from these two tables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,只需使用它们的完全限定名称
public.t1 JOIN deepak.t2 USING (col)
即可。Sure, just use their fully-qualified names
public.t1 JOIN deepak.t2 USING (col)
.是的,您只需添加模式即可。
Yes, you just prepend the schema.