postgresql 如何使用Liquibase定义具有升序/降序列的表索引,空值最后使用

ct2axkht  于 2024-01-07  发布在  PostgreSQL
关注(0)|答案(1)|浏览(158)

使用本机查询

CREATE INDEX IF NOT EXISTS index
    ON public.table USING btree
    (column1 ASC NULLS LAST, column2 ASC NULLS LAST);

字符串
如何使用Liquibase定义相似索引?

<createIndex tableName="table" indexName="ACT_IDX_table" unique="true">
     <column name="column1" />
     <column name="column2" />
</createIndex>


DB - Postgres

xzv2uavs

xzv2uavs1#

据我所知,你不能在liquibase中最后设置NULL。你当然可以使用标签来精确地写你需要的东西。

<sql>
   CREATE INDEX IF NOT EXISTS index
   ON public.table USING btree
   (column1 ASC NULLS LAST, column2 ASC NULLS LAST); 
</sql>

字符串

相关问题