What is PL/SQL? How is it different from SQL?

Question

can you help me with this question

Answer ( 1 )

    0
    2025-02-28T15:39:53+00:00

    PL/SQL is Oracle’s procedural extension for SQL that allows procedural programming like loops, conditions, and error handling.

    Feature SQL PL/SQL
    Type Query language Procedural language
    Execution One statement at a time Block execution
    Error Handling Minimal Uses exception handling
    Performance Slower Faster (reduces multiple DB calls)

Leave an answer