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.
2つのテーブルの単純な結合条件の結果に基づいて、列に値を挿入するにはどうすればよいですか?
UPDATEに対してこれを行うことができましたが、すべての値がコンマで区切られているため、INSERTではできません。
with expr(a,b) as ( select t.val, u.val from (values(0,1)) as t(id,val) join (values(0,2)) as u(id,val) on t.id = u.id ) insert into table(column) select a as vals from expr union all select b from expr