For general information about this feature, see SQL Pass-Through Facility.
Here are the SQL pass-through facility specifics for the Google BigQuery interface.
bigquery.bigquery alias is used.This example uses the
DBCON alias to connect to mysrv1 the
Google BigQuery database and execute a query. The connection alias
is optional.
proc sql;
connect to bigquery as dbcon
(cred_path='/u/BigQuery/xxx-yyy-9e99c10a8888.json'
project='project1' schema='Region1');
select * from connection to dbcon
(select * from customers WHERE customer like '1%');
quit;