Re: Alias for arguments in TABLE function

2012-04-27 Thread Łukasz Drumiński
urn an array. But I'm not sure if it is > possible to do that. > > LP > > > 2012/4/27 Łukasz Drumiński > >> Hello, >> >> this is working fine: >> >> SELECT * FROM TABLE(ID NUMBER=(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)) >> >> but I n

Alias for arguments in TABLE function

2012-04-27 Thread Łukasz Drumiński
Hello, this is working fine: SELECT * FROM TABLE(ID NUMBER=(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)) but I need to do something like this: SELECT * FROM TABLE(GET_NUMBERS()) is this posible? I could create alias GET_NUMBERS for some Java method but I don't know how this method should look. I will be g