Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 deletions
|
|
@ -0,0 +1,6 @@
|
|||
REM Create a table to associate keys with values
|
||||
CREATE TABLE associative_array ( KEY_COLUMN VARCHAR2(10), VALUE_COLUMN VARCHAR2(100)); .
|
||||
REM Insert a Key Value Pair
|
||||
INSERT (KEY_COLUMN, VALUE_COLUMN) VALUES ( 'VALUE','KEY');.
|
||||
REM Retrieve a key value pair
|
||||
SELECT aa.value_column FROM associative_array aa where aa.key_column = 'KEY';
|
||||
Loading…
Add table
Add a link
Reference in a new issue