JOOQ物化视图
JOOQ materialized views
是否可以使用 JOOQ 构建器创建物化视图?像这样
DSL.createMaterializedView().execute()
在 jOOQ 3.14 中,还没有:https://github.com/jOOQ/jOOQ/issues/9483
但是您可以使用 plain SQL templating 来解决这个限制,至少在您的语句中获得 一些 类型安全:
ctx.execute("create materialized view view_name as {0}", select);
是否可以使用 JOOQ 构建器创建物化视图?像这样
DSL.createMaterializedView().execute()
在 jOOQ 3.14 中,还没有:https://github.com/jOOQ/jOOQ/issues/9483
但是您可以使用 plain SQL templating 来解决这个限制,至少在您的语句中获得 一些 类型安全:
ctx.execute("create materialized view view_name as {0}", select);