Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Postgres Foreign Data Wrapper を使用して、テーブルではなくビューを指す外部テーブルを作成することは可能ですか?
はい、可能です!
次のクエリは完全に機能しました。
CREATE FOREIGN TABLE facts(name character varying(255)) SERVER my_server OPTIONS (table_name 'facts');
テーブルの代わりにfactsビューがある場所。my_server
facts
my_server