双色球遗漏统计的制作

来源:百度知道 编辑:UC知道 时间:2024/09/21 17:48:25
在EXCEL里,我想实现做双色球的遗漏统计
我看过官方网页有这个数据
但我需要自己来统计,请问如何建立公式来实现

现在的人,咋什么问题都放出来问呢???
郁闷!!!!!

存储过程实现
declare
Type arr_tab_type Is Table Of Number(2) Index By Binary_Integer;
tab arr_tab_type;
begin
for i in 1..7 loop
if i<>7 then
Select trunc(dbms_random.Value(1,34)) Into tab(i) From dual;
else
select trunc(dbms_random.value(1,17)) into tab(i) from dual;
end if;
if i>=2 and i<>7 then
for j in i..1 loop
if tab(i)=tab(j-1) then
select trunc(dbms_random.Value(1,34)) into tab(i) from dual;
else
null;
end if;
end loop;
end if;
dbms_output.put_line(tab(i));
end loop; end;

你建立个图表吧