Skip to content

Commit 7a9aa35

Browse files
author
Steven Feuerstein
authored
Create README.md
1 parent fb063ae commit 7a9aa35

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

plsql/dynamic-sql/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
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

Comments
 (0)