This is my question
Can we create tables using stored procedures?


I treid like this but it din't work

SQL> create procedure create_table (table_name in varchar2,column1 in varchar2,column2 in varchar2)
as
2 begin
3 create table table_name (column1 varchar2(10),column2 varchar2(10));
4 end;
5 /


when i execute the above statement its showing the following waring

" Warning: Procedure created with compilation errors. "


please help me