oracle - tables in pl/sql -


i have following table in oracle pl/sql

in stored procedure can't create table in normal way, need execute string. command: execute "create table example_table ( product_id number,price number)'; execute "(string create table)"

insert avaible on execute to. execute "(string insert)"


Comments