I have datasets in two distinct projects.
I want to perform join of one table from a dataset in the first project to table in a dataset in the second project.
Can you provide an example of such a query?
I have datasets in two distinct projects.
I want to perform join of one table from a dataset in the first project to table in a dataset in the second project.
Can you provide an example of such a query?
Copyright © 2021 Jogjafile Inc.
Yes, you certainly can. You need to qualify the table name with project name, i.e. projectname:dataset.table Here is an example of my joining one of my tables against table in publicdata project:
Update: The syntax above is for Legacy SQL, with Standard SQL it becomes projectname.dataset.table, i.e.