Skip to content

Instantly share code, notes, and snippets.

@julian-a-avar-c
Last active February 22, 2023 00:23
Show Gist options
  • Save julian-a-avar-c/36d131679d0882ca8e323ff33415bc05 to your computer and use it in GitHub Desktop.
Save julian-a-avar-c/36d131679d0882ca8e323ff33415bc05 to your computer and use it in GitHub Desktop.
simpler table joining for many to many
with a_b_name_in(table_a_name, table_b_name)
as (
values
('table a 1', 'table b 1'),
('table a 2', 'table b 1'),
)
insert into a_b (a_id, b_name)
select a.id, b.id
from a_b_name_in
inner join table_a
on a_b_name_in.table_a_name = table_a.id
inner join table_b
on a_b_name_in.table_b_name = table_b.id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment