I send a parameter in my PLSQL function which is the name of the Table. In my code, I want to insert into the table that is being received in the parameter.
When I type the insert statement
insert into TABLE_VARIABLE_NAME
VALUES (1, 2, 3);
It gives the error of Table Doesn't exist. How can I use Table's Name as the parameter of the function?