Multiple choice technology databases

Which operator will be evaluated first in the following SELECT statement?

  1. +

  2. *

  3. /

  4. _

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

In standard SQL operator precedence, multiplication (*) and division (/) have higher precedence than addition (+) and subtraction (-). When operators have equal precedence (like * and /), they are evaluated left-to-right. Among the options, * will be evaluated first assuming it appears before / in the expression.