是否可以在 SF 中以我可能用于插入另一个(新)表的格式从一个表中获取数据,例如:
insert into new_table values
(5, '2020-04-02 15:05:15.400','2020-04-03 15:14:30.400', 3),
(6, '2020-04-02 17:07:16.300','2020-04-02 19:10:15.400', 4),
(7, '2020-04-03 15:05:45.127','2020-04-04 18:05:15.400', 2);
我不会使用 insert ...select
语法(或使用 csv/tsv 填充)。
答案 0 :(得分:0)
在雪花中,据我所知,你需要制作 external table
。
外部表引用位于云存储(Amazon S3、Google Cloud Storage 或 Microsoft Azure)数据湖中的数据文件。
在此处阅读更多相关信息:Working with External Tables