jgerk
jgerk

Reputation: 21

Does Google Cloud Spanner support VIEWS

Couldn't find it in the Cloud Spanner documentation, does anyone that's used it know if it supports SQL Views?

Upvotes: 2

Views: 1085

Answers (2)

Drew
Drew

Reputation: 6639

As of 20-Aug-2021, Views are supported in Cloud Spanner

The syntax is

{ CREATE VIEW | CREATE OR REPLACE VIEW } view_name
SQL SECURITY INVOKER
AS query

More information in the Cloud Spanner Documentation.

Upvotes: 0

Albert Cui
Albert Cui

Reputation: 394

Sorry, it doesn't. Views are in the backlog.

Upvotes: 1

Related Questions