Multiple choice technology mainframe

The performance of static SQL is better than dynamic SQL, because for static SQL the binding is done only once and the program can be executed many times

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Static SQL is pre-compiled and bound before execution, meaning the access path is determined only once, whereas dynamic SQL must be prepared and parsed at runtime, giving static SQL a performance advantage.