我正在尝试进行查询,但是Google Cloud给出了语法错误。 我已将此代码编写为2017年编写。 我对Sql不了解
Syntax error: Unexpected "[" at [5:6]. If this is a table identifier, escape the name with `, e.g. `table.name` rather than [table.name].
查询为:
SELECT
f.repo_name,
f.path,
c.pkey
FROM
[bigquery-public-data:github_repos.files] f
JOIN (
SELECT
id,
答案 0 :(得分:2)
您可能正在使用标准SQL-这是一件好事。
尝试将表引用编写为:
FROM `bigquery-public-data.github_repos.files` f