Multiple choice technology databases

What is the displayed result of the following: SELECT 3 / 4 * 100?

  1. 0

  2. .75

  3. 75

  4. 75.00

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

In SQL, when both operands are integers, division performs integer division. 3 divided by 4 equals 0 (the decimal part is truncated), and 0 multiplied by 100 equals 0.