-1
select PERIOD_NAME
    from gl_periods
    where :l_date_from between start_date and end_date
    and :l_date_to between start_date and end_date

此查询不起作用。我需要从这两个列之间的日期和日期中进行选择。并且应该显示这两个日期之间的所有期间名称。帮我解决这个问题。

4

1 回答 1

2

试试这个:

select PERIOD_NAME
    from gl_periods
where :l_date_from <= end_date
    and :l_date_to >= start_date
于 2012-08-14T06:29:51.887 回答