You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PL/SQL makes it very easy to execute dynamic SQL statements, including DDL and PL/SQL blocks, through either:
2
+
3
+
Native Dynamic SQL
4
+
* EXECUTE IMMEDIATE
5
+
* OPEN FOR
6
+
7
+
and
8
+
9
+
DBMS_SQL, a comprehensive supplied package API to dynamic SQL operations.
10
+
11
+
Generally, EXECUTE IMMEDIATE will handle almost all your dynamic SQL requirements. Consider using DBMS_SQL primarily for the most advanced requirements, such as method 4 dynamic SQL.
0 commit comments