I am able to query a view with a where clause (< or > operator) in BigQuery console but if I am running a same query in SDK with (< or > operator) I an getting access denied error. Is there any limitations in SDK while filtering the views?
Below query for reference
bq query --use_legacy_sql=false "select * from view where column1>'2018-06-30'"
=but not with>or<in theWHEREclause, executing both queries through SDK. - enle lin