如果不存在则创建视图?

发布于 2024-09-10 18:14:57 字数 54 浏览 8 评论 0原文

有没有办法创建视图(如果不存在)在 MySQL 或 H2 数据库中?

Is there any way to create view if not exists in MySQL or H2 Database?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

彼岸花似海 2024-09-17 18:14:57

来自 12.1.12 部分。 MySQL 5.0 参考手册的 CREATE VIEW 语法

CREATE VIEW Syntax

CREATE
    [OR REPLACE]
    [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]
    [DEFINER = { user | CURRENT_USER }]
    [SQL SECURITY { DEFINER | INVOKER }]
    VIEW view_name [(column_list)]
    AS select_statement
    [WITH [CASCADED | LOCAL] CHECK OPTION]

CREATE VIEW 语句创建一个新视图,或者在给出 OR REPLACE 子句时替换现有视图。该语句是在 MySQL 5.0.1 中添加的。如果视图不存在,CREATE OR REPLACE VIEW 与 CREATE VIEW 相同。如果视图确实存在,则 CREATE OR REPLACE VIEW 与 ALTER VIEW 相同。

From section 12.1.12. CREATE VIEW Syntax of the MySQL 5.0 Reference Manual:

CREATE VIEW Syntax

CREATE
    [OR REPLACE]
    [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]
    [DEFINER = { user | CURRENT_USER }]
    [SQL SECURITY { DEFINER | INVOKER }]
    VIEW view_name [(column_list)]
    AS select_statement
    [WITH [CASCADED | LOCAL] CHECK OPTION]

The CREATE VIEW statement creates a new view, or replaces an existing one if the OR REPLACE clause is given. This statement was added in MySQL 5.0.1. If the view does not exist, CREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does exist, CREATE OR REPLACE VIEW is the same as ALTER VIEW.

困倦 2024-09-17 18:14:57

通常的方法是使用创建或替换覆盖视图:

create or replace view YourView
as
select * from users

The usual way is to overwrite a view using create or replace:

create or replace view YourView
as
select * from users
猫性小仙女 2024-09-17 18:14:57

H2上,您可以在要创建的视图名称之前添加IF NOT EXISTS
例如:

CREATE VIEW IF NOT EXISTS viewExampleName (column1, column2) 
AS ( 
    SELECT column1, column2
    FROM example_table 
); 

On H2 you can add IF NOT EXISTS before the view name you want to create.
e.g.:

CREATE VIEW IF NOT EXISTS viewExampleName (column1, column2) 
AS ( 
    SELECT column1, column2
    FROM example_table 
); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文