createView
Creates a new database view.Note: Liquibase supports views, but does not support materialized views.
Uses
You can use the createView
Change Type to create a view on a table. A view is a virtual table that stores the result of a particular SELECT
SQL statement for easy access (without altering the table). For example, joining multiple tables into a single, easy-to-query object.
Note: The Liquibase extension for Databricks extends this Change Type to support Databricks features, including STRUCT and MAP variable types.
Run createView
To run this Change Type, follow these steps:
Add the Change Type to your changeset, as shown in the examples on this page.
Specify any required attributes. Use the table on this page to see which ones your database requires.
Deploy your changeset by running the
update
command:liquibase update
Available attributes
Name | Description | Required for | Supports |
| Name of the catalog | all | |
| Encoding used in the file specified in the | all | |
| Set to | all | |
| Path to file containing view definition. Using the | all | |
| Specifies whether the file path is relative to the changelog file rather than looked up in the search path. Default: | all | |
| A short descriptive comment | all | |
| If Available in Liquibase 1.5+. | databricks, db2, firebird, h2, hsqldb, ingres, mariadb, mssql, mysql, oracle, postgresql, sqlite, sybase | |
| Name of the schema | all | |
| SQL for generating the view | informix | all |
| The table properties you want to specify. Specify properties using the format Note: This attribute is only available with the Liquibase extension for Databricks. It is not available for SQL changelogs. For more information, see Databricks SQL Reference: CREATE VIEW. | databricks | |
| Name of the view | all | all |
Database support
Database | Notes | |
DB2/LUW | Supported | Yes |
DB2/z | Supported | Yes |
Derby | Supported | Yes |
Firebird | Supported | Yes |
Google BigQuery | Supported | Yes |
H2 | Supported | Yes |
HyperSQL | Supported | Yes |
INGRES | Supported | Yes |
Informix | Supported | Yes |
MariaDB | Supported | Yes |
MySQL | Supported | Yes |
Oracle | Supported | Yes |
PostgreSQL | Supported | Yes |
Snowflake | Supported | Yes |
SQL Server | Supported | Yes |
SQLite | Supported | Yes |
Sybase | Supported | Yes |
Sybase Anywhere | Supported | Yes |