Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Array
  2. (
  3. [1] => 18
  4. [5] => 20
  5. [3] => 333333
  6. )
  7.  
  8. select * from funcname( ARRAY [ ARRAY[ '1','18' ], ARRAY[ '5','20' ], ARRAY[ '3','333333' ] ] )
  9.  
  10. create or replace function funcname( IN p_attributes_list varchar(255)[][] ) returns int as
  11. ...
  12. FOREACH next_attribute_value IN ARRAY p_attribute_list
  13. LOOP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement