Evaluate this SQL statement:<br /> SELECT e.employee_id, (.15* e.salary) + (.5 * e.commission_pct) + (s.sales amount * (.35 * e.bonus)) AS CALC_VALUE<br /> FROM employees e, sales s<br /> WHERE e.employee_id = s.emp_id;<br /> What will happen if you remove all the parentheses from the calculation? ()<p> Evaluate this SQL statement:<br /> SELECT e.employee_id, (.15* e.salary) + (.5 * e.commission_pct) + (s.sales amount * (.35 * e.bonus)) AS CALC_VALUE<br /> FROM employees e, sales s<br /> WHERE e.employee_id = s.emp_id;<br /> What will happen if you remove all the parentheses from the calculation? ()</p>
A、A. The value displayed in the CALC_VALUE column will be lower.
B、B. The value displayed in the CALC_VALUE column will be higher.
C、C. There will be no difference in the value displayed in the CALC_VALUE column.
D、D. An error will be reported.