oracle中查询时日期时间作为条件,该怎么处理
发布网友
发布时间:2022-04-21 05:36
我来回答
共1个回答
热心网友
时间:2022-06-18 06:33
select 目标列 from 表名 where 时间列=to_date('时间','yyyy-mm-dd hh24:mi:ss');
比如
select name from birth_info where
birthday between to_date ('2001-03-05','yyyy-mm-dd')
and
to_date ('2001-03-15','yyyy-mm-dd');