Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我计划创建一个包含数字数据数组的 Oracle 数据库。每个数组有 2 到 4 个维度,大约有 1000 个数据点。我想在 WHERE 子句中使用数组,例如 .
Oracle 的数组支持(VARRAYS、嵌套表)似乎令人失望。客户端软件很难以有用的方式检索数据。可能,但很难。
任何建议表示赞赏。
可变数组的简单示例
declare type array_example is varray(5) of varchar2(1); array array_example := array_example('A', 'B', 'C' , 'D', 'E'); begin for i in 1..array.count loop dbms_output.put_line(array(i)); end loop; end;