Answer Posted / santosh kumar
declare
v_ddl_stat varchar2(200):='create table '||'&table_name'||'
('||'&column_names'||')'; --col_name like(eid number(5),name
varchar2(10))
begin
EXECUTE IMMEDIATE v_ddl_stat;
END;
/
Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
In a distributed database system, can we execute two queries simultaneously?
What is an exception in PL/SQL? What are the two types of exceptions?
What is trigger in sql? Explain
Is left join and outer join same?
Which sorts rows in sql?
What is nvarchar max in sql?
What are tuples in sql?
How do you rank data in sql?
How delete all data from all tables in sql?
Is clustered index a primary key?
Can a commit statement be executed as part of a trigger?
How do you sort in sql?
What does := mean in pl sql?
What is a system versioned table?
What are triggers in sql?