gpt4 book ai didi

postgresql - PostgreSQL 中的 left() 函数

转载 作者:行者123 更新时间:2023-11-29 14:05:03 25 4
gpt4 key购买 nike

我只需要显示时间。以下脚本是我尝试做同样的事情。

示例:

select left(visittime,2) from records;

这里visittime包含:

10:00:00;

所以我只需要显示其中的 10 个。我尝试使用上面的脚本,但出现错误。

错误:

function left(time without time zone, integer) does not exist

最佳答案

select to_char(visittime, 'HH24') from records;

关于postgresql - PostgreSQL 中的 left() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25245069/

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