Error: Not found: Dataset my-project-name:domain_public was not found in location US

前端 未结 3 716
野性不改
野性不改 2021-01-12 01:42

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

3条回答
  •  隐瞒了意图╮
    2021-01-12 02:06

    The problem turned out to be due to wrong table name in the FROM clause. The right FROM clause should be:

    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.

提交回复
热议问题