Reputation: 1662
For example, something like this in Postgres:
CREATE VIEW whatever AS
select *
from some_table
Upvotes: 1
Views: 898
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