Information noteNote: The above example has only DML statements. If the group of SQL statements
contains DDL statements, type execute immediate
followed by the DDL statement. For example:
begin
update table1 set name='Shong' where id=2;
execute immediate 'drop table t3';
commit;
end;