gpt4 book ai didi

postgresql - 从时间戳列postgresql获取月份名称

转载 作者:行者123 更新时间:2023-12-05 02:43:37 25 4
gpt4 key购买 nike

我想获取每月的贷款数量,但找不到将时间戳更改为月份名称的方法,每次都会出错...

这是表格 enter image description here

最佳答案

如果您正在寻找月份的英文名称,您可以使用 to_char 从您的时间戳中获取它:

SELECT to_char(created, 'Month')

这是今天的样子:

SELECT to_char(now(), 'Month') as month;
month
-----------
March
(1 row)

关于postgresql - 从时间戳列postgresql获取月份名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66838077/

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