Emery Lapinski
Emery Lapinski

Reputation: 1662

Is it possible to create a BigQuery view in a SQL statement?

For example, something like this in Postgres:

CREATE VIEW whatever AS
select *
from some_table

Upvotes: 1

Views: 898

Answers (1)

Mikhail Berlyant
Mikhail Berlyant

Reputation: 172954

No, you cannot create view in a SQL statement (at least in its current dialect - who knows what will be introduced in current GCP NEXT)

See more on how to create View in BigQuery https://cloud.google.com/bigquery/querying-data#views

Upvotes: 1

Related Questions