在 PostgreSQL 中啟用跨資料庫查詢
雖然 PostgreSQL 最初似乎限制跨資料庫查詢,但存在一個實用的解決方案。 postgres_fdw
(外部資料包裝器)模組提供了連接和查詢不同 PostgreSQL 資料庫中的資料表所需的功能,無論其位置為何(本地或遠端)。
重要注意事項:在單一機器上實作跨資料庫查詢之前,請先探索使用模式。 模式提供了一種更簡單的方法來查詢不同的資料集,而不需要額外的配置。
postgres_fdw
相容性:
postgres_fdw
模組與 PostgreSQL 版本 9.3 及更高版本相容。 對於 9.3 之前的版本,dblink
函數提供了類似的解決方案。
實作步驟:
利用postgres_fdw
進行跨資料庫查詢:
<code class="language-sql">CREATE FOREIGN DATA WRAPPER postgres_fdw OPTIONS ( host 'hostname', port '5432', -- Standard PostgreSQL port dbname 'target_database' );</code>
<code class="language-sql">CREATE SERVER target_server FOREIGN DATA WRAPPER postgres_fdw OPTIONS ( user 'username', password 'password' );</code>
<code class="language-sql">CREATE USER MAPPING FOR current_user SERVER target_server OPTIONS ( user 'target_user', password 'target_password' );</code>
<code class="language-sql">IMPORT FOREIGN SCHEMA all FROM SERVER target_server INTO schema_name;</code>
<code class="language-sql">SELECT * FROM schema_name.target_table;</code>
以上是如何在PostgreSQL中進行跨資料庫查詢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!