如何在PostgreSQL的select语句中联接来自不同数据库的表

时间:2019-01-08 04:39:34

标签: postgresql

我最近开始使用Postgres DB。
我无法从另一个数据库访问数据。
让我知道您是否有解决办法。
我在下面创建了从多个数据库访问两个访问数据的视图

create OR REPLACE View DistributedPatientView AS
  SELECT * from webims.public.patientview union all
  SELECT * from webimslt.public.patientview union all
  SELECT * from webimslt1.public.patientview union all
  SELECT * from webimslt2.public.patientview union all
  SELECT * from webimslt3.public.patientview union all
  SELECT * from webimslt4.public.patientview 

它抛出异常:

  

跨数据库引用未实现:   “ webims.public.patientview”

0 个答案:

没有答案