Question: What will happen if you query the emp table as shown below: select empno, DISTINCT ename, Salary from emp;
A
B
C
D
EMPNO, unique value of ENAME and then SALARY are displayed
B
EMPNO, unique value ENAME and unique value of SALARY are displayed
C
DISTINCT is not a valid keyword in SQL
D
No values will be displayed because the statement will return an error
Note: Not available