If column "Payment" contains the data set (10000, 15000, 25000, 10000, 15000), what will be the output after the execution of the given query?
SELECT SUM(DISTINCT PAYMENT) FROM EMPLOYEE;
1
75000
2
25000
3
10000
4
50000
If column "Payment" contains the data set (10000, 15000, 25000, 10000, 15000), what will be the output after the execution of the given query?
SELECT SUM(DISTINCT PAYMENT) FROM EMPLOYEE;