Question:A table of employees has the following values for its salary field: 10000, 11000, 12000, 10000, 14000, 12000, 13000, 10000, 14000, 10000 What will the following query return? Select distinct (salary) from employees
A 10000, 14000, 12000, 10000, 11000
B 10000, 11000, 12000, 10000, 14000, 12000
C 10000, 11000, 14000, 12000, 13000, 10000
D 10000, 11000, 12000, 13000, 10000, 14000
E 10000, 11000, 12000, 14000, 13000
+ AnswerE
+ Report