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、ネストされたテーブル) は期待外れのようです。クライアント ソフトウェアが有用な方法でデータを取得するのは非常に困難です。可能ですが、難しいです。
アドバイスをいただければ幸いです。
varray の簡単な例
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;