I have a table A looks like :
id isin typ1 typ2
1 aa typA typB
2 bb typD typC
I need to insert into a table B that looks like:
id isin fld value
1 aa typ1 typA
2 aa typ2 typB
3 bb typ1 typD
4 bb typ2 typC
Can I do with an SQL instruction?