gpt4 book ai didi

postgresql - COLLATE pg_catalog ."default"对 postgres 数据库表中的文本属性做了什么?

转载 作者:行者123 更新时间:2023-11-29 11:10:28 38 4
gpt4 key购买 nike

建表时其中一个字段说明如下

id text COLLATE pg_catalog."default"

最佳答案

它只是告诉您正在为该列使用默认的 lc_collat​​e

但是默认的排序规则是什么?使用 SHOW 来发现这一点。

SHOW lc_collate;

PostgreSQL 允许创建具有不同类型排序规则的列:

CREATE TABLE collate_test
(
default_collate text, --Default collation
custom_collate text COLLATE pg_catalog."C" --Custom collation
);

你看出区别了吗?

有关排序规则的更多信息在 docs 上:

The collation feature allows specifying the sort order and character classification (...)

关于postgresql - COLLATE pg_catalog ."default"对 postgres 数据库表中的文本属性做了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44008252/

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