Last active
February 22, 2023 00:23
-
-
Save julian-a-avar-c/36d131679d0882ca8e323ff33415bc05 to your computer and use it in GitHub Desktop.
simpler table joining for many to many
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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