我的桌子上有时间戳,我只想从中提取一个小时。我搜索并找到了提取功能,但无法用作查询。我需要先在varchar中转换时间戳,然后从中提取小时吗?这是我的查询:
select extract(hour from timestamp '2001-02-16 20:38:40') // example
实际查询:
select extract(hour from timestamp observationtime) from smartvakt_device_report
以下应该工作
select extract(hour from observationtime) from smartvakt_device_report