Created
April 13, 2022 15:50
-
-
Save krummja/18651634977bcc147f1a6dab7905180c to your computer and use it in GitHub Desktop.
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
create table combined_accounts_contacts | |
as select A.*, | |
B.company_id, | |
B.first_name, | |
B.last_name | |
from defaultdb_public_accounts A | |
full join defaultdb_public_contacts B | |
on A.external_id = B.company_id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment