oracle 中,查找 指定日期 距离 最近的日期 (但给定日期要大于得到的日...
发布网友
发布时间:2022-04-30 16:49
我来回答
共2个回答
热心网友
时间:2022-04-10 04:10
1.col_name为date格式的例子
(select col_name from table where abs(col_name-to_date(&date))=(select min(abs(col_name-to_date(&date)) from table);
2 col_name为char的话就to_date(给定的时间)
测试通过
热心网友
时间:2022-04-10 05:28
select max(date_col) from table where date_col<指定日期