Oracle中的SQL查询,用于查找varchar列中表示的范围字段中的数字

时间:2011-01-17 12:25:32

标签: sql oracle range

我在Oracle中有Colors表,其数据如下:

ID    Color    Ranges (nvarchar2!)
--    -----    -------------------------
1     Blue     1-9,23.5-25.1,27.11,99.14
2     Red      4
3     Green    4.44-5.3
4     Black    18-22,101

您可以猜到,Ranges列代表一些数字和数字范围。

无法保存其他表中的范围(例如RangesTableColorIDMinValMaxVal),但我可以以某种方式将此Ranges - 列标准化(总体排序,或者将单个数字表示为范围(“4-4”而不是“4”)或者这样)。

问题:我正在寻找一种方法来查询我的Oracle根据这个字段,通过询问它:我有哪些颜色(或ids ...)范围包含5?(答案是蓝色和绿色),或哪种颜色重叠“5-6”范围?(答案是,蓝色[1-9]和绿色[ 4.44-5.3])。

怎么做? (我猜Regex在这里不会帮忙......)。

写入能够分割这些范围并在其中搜索的数据库功能是否合理?还有其他建议吗?

谢谢!

3 个答案:

答案 0 :(得分:3)

您可以使用此查询获取范围:

SQL> select id
  2         , color
  3         , to_number(case when ranges like '%-%' then regexp_substr(ranges,'[^-]+',1,1) else ranges end) low_value
  4         , to_number(case when ranges like '%-%' then regexp_substr(ranges,'[^-]+',1,2) else ranges end) high_value
  5      from colors
  6     model
  7           return updated rows
  8           partition by (id,color)
  9           dimension by (0 i)
 10           measures (ranges,nvl(length(regexp_replace(ranges,'[^,]')),0) + nvl2(ranges,1,0) as number_of_parts)
 11           ( ranges[for i from 1 to number_of_parts[0] increment 1]
 12             = regexp_substr(ranges[0],'[^,]+',1,cv(i))
 13           )
 14  /

                  ID COLOR            LOW_VALUE           HIGH_VALUE
-------------------- ----- -------------------- --------------------
                   2 Red                      4                    4
                   1 Blue                     1                    9
                   1 Blue                  23.5                 25.1
                   1 Blue                 27.11                27.11
                   1 Blue                 99.14                99.14
                   4 Black                   18                   22
                   4 Black                  101                  101
                   3 Green                 4.44                  5.3

8 rows selected.

的问候,
罗布。

答案 1 :(得分:1)

你可以像这样创建一个PL / SQL函数:

function value_included (p_value in number, p_ranges in varchar2)
return number
is
    l_ranges_tab apex_application_global.vc_arr2;
    l_values_tab apex_application_global.vc_arr2;
    l_retval number := 0;
begin
    l_ranges_tab := apex_util.string_to_table (p_ranges, ',');
    for i in 1..l_ranges_tab.count loop
         l_values_tab := apex_util.string_to_table (l_ranges_tab(i), '-');
         if l_values_tab.count = 1 then
             if p_value = l_values_tab(1) then
                 l_retval := 1;
                 exit;
             end if;
         else
             if p_value between l_values_tab(1) and l_values_tab(2) then
                 l_retval := 1;
                 exit;
             end if;
         end if;
    end loop;
    return l_retval;
end;

如果值包含在范围内,则返回1,否则返回0,可以像这样使用:

select color from colors where value_included(5, ranges);

可以编写类似的函数来处理重叠范围:

function range_overlap (p_from in number, p_to in number, p_ranges in varchar2)
return number
is
    l_ranges_tab apex_application_global.vc_arr2;
    l_values_tab apex_application_global.vc_arr2;
    l_retval number := 0;
begin
    l_ranges_tab := apex_util.string_to_table (p_ranges, ',');
    for i in 1..l_ranges_tab.count loop
         l_values_tab := apex_util.string_to_table (l_ranges_tab(i), '-');
         if l_values_tab.count = 1 then
             if l_values_tab(1) between p_from and p_to then
                 l_retval := 1;
                 exit;
             end if;
         else
             if p_to >= l_values_tab(1) and p_from <= l_values_tab(2) then
                 l_retval := 1;
                 exit;
             end if;
         end if;
    end loop;
    return l_retval;
end;

注意:apex_util.string_to_table函数在最新版本的Oracle中作为标准提供;在早期版本中,您可能需要编写自己的字符串解析器函数,如this one

答案 2 :(得分:0)

我通过使用SQL嵌套表和流水线函数来提供第三个选项。

首先创建SQL类型和相关的嵌套表:

create or replace type range_type as object (range_from number, range_to number);
create or replace type range_table as table of range_type;

然后创建一个可以解码范围列的流水线函数。可以轻松地重写该函数以利用上面使用的apex_util.string_to_table函数。

create or replace function range_to_nested_table(i_ranges in varchar2) 
  return range_table pipelined is

  thisRange varchar2(4000);
  loop_counter number := 1;

  output_row range_type;

begin

  loop
    thisRange := rtrim(regexp_substr(i_ranges, '[^,]*,?', 1, loop_counter), ',');

    exit when thisRange is null;
    loop_counter := loop_counter + 1;

    if thisRange like '%-%' then 
      output_row := range_type(to_number(regexp_substr(thisRange, '[^-]*', 1, 1)), 
                               to_number(regexp_substr(thisRange, '[^-]*(-|$)', 1, 2)));
    else
      output_row := range_type(to_number(thisRange), to_number(thisRange));
    end if;

    pipe row(output_row);

  end loop;

  RETURN;

end;

然后运行以下查询以检索数据:

with my_sample_data as (
  select 1 as id, 'Blue' as color, '1-9,23.5-25.1,27.11,99.14' as range from dual union all
  select 2 as id, 'Red' as color, '4' as range from dual union all
  select 3 as id, 'Green' as color, '4.44-5.3' as range from dual union all
  select 4 as id, 'Black' as color, '18-22,101' as range from dual
)
select id, color, range, b.*
from my_sample_data a, table(range_to_nested_table(a.range)) b
where 5 between b.range_from and b.range_to