BigQuery error: Encountered " "WHERE" "WHERE "" -
i tried run following in bigquery:
select * repository_owner = 'facebook' , repository_name = 'react' [githubarchive:github.timeline] limit 1000
but received error:
error: encountered " "where" "where "" @ line 2, column 1. expecting:
what error mean , how can fix it?
this error pops if where
clause in wrong place. changing query to
select * [githubarchive:github.timeline] repository_owner = 'facebook' , repository_name = 'react' limit 1000
fixes problem.
Comments
Post a Comment