Skip to main content
The ALTER VIEW applies a schema change to a .
The ALTER VIEW statement performs a schema change. For more information about how online schema changes work in CockroachDB, see .

Required privileges

  • To change the schema of a view with ALTER VIEW ... SET SCHEMA, the user must have the DROP on the view and the CREATE privilege on the new schema.
  • To rename a view with ALTER VIEW ... RENAME TO, the user must have the DROP on the view and the CREATE privilege on the view’s database.

Syntax

alter_view syntax diagram

Parameters

Known limitations

ALTER VIEW does not currently support:
  • Changing the statement executed by a view. Instead, you must drop the existing view and create a new view.
  • Renaming a view that other views depend on. This feature may be added in the future.

Examples

Rename a view

Suppose you create a new view that you want to rename:
Note that RENAME TO only changes the name of the view; it cannot move the view to a different database or schema. To change a view’s schema, use the SET SCHEMA clause.

Change the schema of a view

Suppose you want to add the expensive_rides view to a schema called cockroach_labs: By default, created in the database belong to the public schema:
If the new schema does not already exist, :
Then, change the view’s schema:

See also