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.
リンクされたデータベースを使用して、ローカル データベースの異なるスキーマにテーブルを作成するにはどうすればよいですか?
create table schema1.table1 select * from schema.table@LinkedDB;
あなたは近かった - 使用:
CREATE TABLE schema1.table1 AS (SELECT * FROM SCHEMA.table@LinkedDB);
詳細については、こちらをご覧ください。