forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Lu, Huayi <luhuayi@huawei.com> Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
3.5 KiB
3.5 KiB
Table Operators
The functions that can be called in the FROM clause of a query are from the table operator.
Input: Table operator with RETURNS
1 2 | SELECT * FROM TABLE( sales_retrieve (9005) RETURNS ( store INTEGER, item CLOB, quantity BYTEINT) ) AS ret; |
Output
1 2 | SELECT * FROM sales_retrieve(9005) AS ret (store, item, quantity); |
Parent topic: Functions and Operators