I need to make a query for a dataset provided by a public project. I created my own project and added their dataset to my project. There is a table named: domain_publi
BigQuery can't find your data
Make sure your FROM
location contains 3 parts
bigquery-public-data
)hacker_news
)stories
)Like so
`bigquery-public-data.hacker_news.stories`
*note the backticks
Wrong
SELECT *
FROM `stories`
Wrong
SELECT *
FROM `hacker_news.stories`
Correct
SELECT *
FROM `bigquery-public-data.hacker_news.stories`