there are four coding errors can you identify them for oracle sql so far all i can find is the x 12 doesn't work?
SELECT employee_id, last_name
sal x 12 Annual Salary
from employees;
ANSWER:-
SELECT employee_id, last_name,
(sal*12) Annual_Salary
from employees;
// if any other doubt please comment
there are four coding errors can you identify them for oracle sql so far all i...