Postgresql - 按UUID v1时间戳排序

时间:2016-06-08 21:21:33

标签: postgresql sorting timestamp uuid

我使用UUID v1作为主键。我想排序UUID v1时间戳。现在,如果我做了像

这样的事情
select id, title 
from table 
order by id desc

Postgresql不按UUID时间戳对记录进行排序,而是按UUID字符串表示形式排序,在我的情况下最终会出现意外的排序结果。

我错过了什么,或者在Postgresql中没有内置方法可以做到这一点?

1 个答案:

答案 0 :(得分:14)

时间戳是v1 UUID的一部分。从1582-10-15 00:00开始,它以十六进制格式存储为数百纳秒。此函数提取时间戳:

create or replace function uuid_v1_timestamp (_uuid uuid)
returns timestamp with time zone as $$

    select
        to_timestamp(
            (
                ('x' || lpad(h, 16, '0'))::bit(64)::bigint::double precision -
                122192928000000000
            ) / 10000000
        )
    from (
        select
            substring (u from 16 for 3) ||
            substring (u from 10 for 4) ||
            substring (u from 1 for 8) as h
        from (values (_uuid::text)) s (u)
    ) s
    ;

$$ language sql immutable;

select uuid_v1_timestamp(uuid_generate_v1());
       uuid_v1_timestamp       
-------------------------------
 2016-06-16 12:17:39.261338+00

122192928000000000是公历开始和Unix时间戳之间的间隔。

在您的查询中:

select id, title
from t
order by uuid_v1_timestamp(id) desc

为了提高性能,可以在其上创建索引:

create index uuid_timestamp_ndx on t (uuid_v1_timestamp(id));