Question asked by visitor DBB
select Name, MAX(SALARY)
from EMP
where DEPT 'xxxx';
My question here is above query contains obvious error; it is missing '='. however in this case sql will display error message, but what is the value for MAX(SALARY) (before fixing the error)?