FDW
FDW, or foreign data wrapper, is a component of PostgreSQL that enables a database server to query data stored outside of the local database as if it were a local table. FDWs are implemented as extensions that provide the logic for accessing external data sources, translating local SQL into operations understood by the remote system.
In PostgreSQL, the foreign data wrapper architecture consists of several objects. A wrapper defines how to
FDWs can support a range of capabilities. Some wrappers, such as postgres_fdw, allow full read and write
Common use cases include querying remote PostgreSQL databases, accessing non-PostgreSQL databases, and integrating data from files
FDW is defined in PostgreSQL’s SQL/MED standard, introduced to enable federated data access and to provide a