insert into temp
select code,
case when code = 'S' then 1
when code = 'U' then 0
when code = 'R' then 4
end
from "table" r
temp table error如何在snowflake中创建temp表而不必记录每一列
insert into temp
select code,
case when code = 'S' then 1
when code = 'U' then 0
when code = 'R' then 4
end
from "table" r
temp table error如何在snowflake中创建temp表而不必记录每一列
2条答案
按热度按时间w8rqjzmb1#
lrpiutwd2#
只需指定目标临时表中与select语句中的列列表匹配的列。
是的,您必须指定包括数据类型在内的所有列名。
文件参考:https://docs.snowflake.com/en/sql-reference/sql/insert.html#optional-参数