怎樣用PL SQL表實現陣列功能

2021-04-13 11:13:11 字數 472 閱讀 5873

pl/sql表與其他過程化語言(如c語言)的一維陣列類似。實現pl/sql表需要建立乙個資料型別並另外進行變數說明。

type 《型別名》 is

table of 《資料型別》

index by binary_integer;

以下為乙個例子:

declare

type array_type is

table of number

index by binary_integer;

my_array array_type;

begin

for i in 1..10 loop

my_array(i) := i*2;

end loop;

for i in 1..10 loop

dbms_output.put_line(to_char(my_array(i)));

end loop;

end;

怎樣用matlab實現do while

matlab 中的while迴圈只有 while statement end 這種迴圈結構。有時候由於問題的需要,使用do.while 結構能夠更好的解決問題。其實仔細分析一下,do while 的結構就是可以保證先執行一次操作,再進行判斷。而while 條件 是先對條件進行判斷來決定是否採取相應的...

php mysql建表例項 怎樣用mysql建表?

在mysql中可以使用 create table 語法來建立資料表,語法格式 create table 表定義選項 表選項 分割槽選項 其中 表定義選項 的格式為 列名1 型別1 列名n 型別n 在 mysql 中,可以使用 create table 語句建立表。其語法格式為 create tabl...

怎樣用JS實現非同步轉同步

安裝 npm install sync 其中引用了fiber庫,用c編譯的node庫,可以實現yield 功能 詳細使用方法參見官網 url 如何使用 首先引入模組,var sync require sync 任何同步呼叫都必須位於乙個sync.block塊內,sync.block描述可以巢狀。sy...