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
domain_publi
The problem turned out to be due to wrong table name in the FROM clause. The right FROM clause should be:
FROM
FROM `censys-io.domain_public.current`
While I was typing:
FROM domain_public.current
So the project name is required in the FROM and `` are required because of - in the project name.
-