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.
谁能帮我编写一个雪花存储过程来在表中获取 SQL 查询输出。我想编写一个雪花存储 Proc,它将数据从 SELECT SQL 查询输出插入到现有表中。
你可以只执行语句:
INSERT INTO <target_table> SELECT * FROM <source_table>;
作为您的 SP 的 JS 代码中的单个查询。