Native dynamic SQL processes most dynamic SQL statements with the _____________________ statement.

Options
- EXECUTE IMMEDIATE
- EXECUTE
- RUN
- ALL


CORRECT ANSWER : EXECUTE IMMEDIATE

Discussion Board
EXECUTE IMMEDIATE

To process most dynamic SQL statements, you use the EXECUTE IMMEDIATE statement. To process a multi-row query (SELECT statement), you use the OPEN-FOR, FETCH, and CLOSE statements. The EXECUTE IMMEDIATE statement executes a dynamic SQL statement or anonymous PL/SQL block. You can use it to issue SQL statements that cannot be represented directly in PL/SQL, or to build up statements where you do not know all the table names, WHERE clauses, and so on in advance.

Prajakta Pandit 02-24-2017 06:26 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement