发布网友 发布时间:2022-04-08 00:16
共5个回答
热心网友 时间:2022-04-08 01:45
select * from 表热心网友 时间:2022-04-08 03:03
select * from table t where to_char(t.date, 'hh24:mi:ss') >= '07:00:00' and to_char(t.date, 'hh24:mi:ss') <= '11:00:00'热心网友 时间:2022-04-08 04:38
1,表里需要有一个date类型的字段,假设字段名为TempDate热心网友 时间:2022-04-08 06:29
你可以把时间全部to_char成字符串类型,然后根据长度判断,如果是只精确到天的话,长度肯定是10,把长度为10的字段修改为精确到每天8点。热心网友 时间:2022-04-08 08:37
select * from table where to_char(datecolumn,'hh24') between '7' and '11'