Я хочу вставить значения, основанные на приведенном ниже коде, во временную таблицу в postgresql
declare @output table (AuditScratchID bigint, AuditID bigint);
merge table atb
using (select
s.ID
....
....
....
from @temporaryTableVariable s
inner join ....
...............
..............
) as s
on 1 = 2 -- Impossible Condition so they never match
when not matched then
insert (.....)
values (.....)
output s.ID, inserted.ID
into @output;
Просто упомянуть, как я могу соотнести значения во временную таблицу