2015-02-03 13:49 GMT+01:00 Ramesh T <rameshparnanditech@xxxxxxxxx>:
Hi ,i created type on postgresCREATE TYPE order_list AS (order_id bigint);it works fine.then, i try to create a other table type using above created type.like,--create or replace type suborder_list_table as table of suborder_list;this on oracle formate
This syntax is not supported in Pg - resp. a collections are not supported by PostgreSQL.
use a arrays instead
Regards
Pavel Stehule
Pavel Stehule
i need to convert postgres and how to create a table type in postgres is it possibleorelse any other method.FYI,i am using these types in a function.thanks in advance,