gpt4 book ai didi

postgresql - 使用 GORM 排序 postgres 索引

转载 作者:行者123 更新时间:2023-11-29 12:21:26 24 4
gpt4 key购买 nike

我想知道如何设置索引的默认顺序。 Grails 2.3.3,postgres 9。

目标是这个索引:

"crstate_idx" btree (cr_state, last_updated DESC)

这个 GORM 代码:

static mapping = {
crState index: 'crState_Idx'
lastUpdated index: 'crState_Idx'
}

让我:

"crstate_idx" btree (cr_state, last_updated)

如何添加DESC部分?

最佳答案

没有降序索引这样的东西。 B 树索引只是从最低值到最高值排序。 DESC 与 ASC 的定义是从末尾还是从头开始扫描。这是关于您执行的查询,所以我建议您查找如何执行按降序返回行的查询。

关于postgresql - 使用 GORM 排序 postgres 索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20468589/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com