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 SQL operator precedence, multiplication (*) and division (/) have higher precedence than addition (+) and subtraction (-). Both multiplication and division are evaluated before addition and subtraction, following the standard mathematical order of operations.