gpt4 book ai didi

sql - 按特定月份-年份过滤时间戳

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

我是 postgres 的新手,希望得到任何建议。我有一个带有 timestamp 列的 postgres 表,其值的格式为:1970-01-01 00:00:00

我的目标是从过去整整三个月(2016 年 12 月、2017 年 1 月和 2017 年 2 月)中选择记录。如何使用 SELECT 编写只有读取权限的查询?

当我开始时:

SELECT to_char("start_time", 'YYYY-MM-DD HH:MM:SS') FROM trips;

时间转换为上午/下午,但我只对按月和年提取和子集感兴趣

最佳答案

给你:

SELECT *
FROM trips
WHERE start_time BETWEEN '2016-01-01 00:00:00'::timestamp AND '2017-02-28 23:59:59'::timestamp;

关于sql - 按特定月份-年份过滤时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42751660/

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