数字转换为月份名称

数字转换为月份名称

我正在尝试将字符串数字转换为月份名称,但我搜索了很多资源,但没有帮助我。

这是我的查询

SELECT CAST(extract('month'
                    FROM to_date(proforma_invoice_date, 'DD/MM/YYYY')) AS VARCHAR) AS proforma_invoice_date
FROM proforma_invoice

这是我的输出...

sql - 如何在 PostgreSQL 中将数字转换为月份名称?-LMLPHP

最佳答案

使用 to_char() :

to_char(to_date(proforma_invoice_date, 'DD/MM/YYYY')), 'Month')

关于sql - 如何在 PostgreSQL 中将数字转换为月份名称?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59267191/

10-15 20:46