Is it possible to create a table with multiple nested tables, such as this example?
create or replace type t_products is object(
    name varchar(20),
    price float(4,2),
    drinks col_drinks,
    foods col_foods
);
/
create table products of t_products nested table drinks, foods store as drink, food;