Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 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