Inline OracleDB . How to use input variable as Oracle table name?
-- :name1 (text)
-- :name2 (text)
-- :table_name (text)
INSERT INTO :table_name (COLUMN1, COLUMN2) VALUES (:name1, :name2);
Is that possible to define a variable as input for the table name and if so, what is the correct format ?