gpt4 book ai didi

sql - 从 PostgreSQL 中的 unix 时间中提取年份

转载 作者:行者123 更新时间:2023-11-29 12:46:54 25 4
gpt4 key购买 nike

我有一个日志表,这是它的描述:

user_id(bigint)
time (bigint)

我的问题是,如何从 PostgreSQL 的 time 列中提取年份?

这适用于 MySQL:

 SELECT l.user_id, year(from_unixtime(l.time)) 
FROM log l;

最佳答案

select date_part('year', to_timestamp(1365682413));

to_timestamp是我们这里的 friend ,至少从 8.1 版开始就使用了 unix 时间。

关于sql - 从 PostgreSQL 中的 unix 时间中提取年份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15948326/

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