Suppose I have a big query project A and B. I need to join a table of project A with project B. How I can we join two projects using python.
project_id = 'xyz'
query_job = """SELECT * from test limit 10"""
results_df = gbq.read_gbq(query_job,project_id=project_id, private_key='client_secrets.json')
In the above code, I can use only one project_id. If I need to use multiple codes what can be done for that?