31
GB
Which of the following queries displays the sum of all employee salaries for those employees not making commission, for each job, including only those sums greater than 2500?
IN
निम्नलिखित में से कौन सा प्रश्न उन कर्मचारियों के लिए सभी कर्मचारियों के वेतन का योग प्रदर्शित करता है जो प्रत्येक कार्य के लिए कमीशन नहीं बनाते हैं, जिसमें केवल 2500 से अधिक की राशि शामिल है?
A
select job, sum(sal) from emp where sum(sal) > 2500 and comm is null;
रोजगार का चयन करें, एएमपी से राशि (साल) जहां राशि (साल) > 2500 और कॉम शून्य है;
B
select job, sum(sal) from emp where comm is null group by job having sum(sal) > 2500;
एम्प से नौकरी, योग (साल) का चयन करें, जहां कॉम शून्य समूह है, जिसमें नौकरी का योग (सैल) > 2500 है;
C
select job, sum(sal) from emp where sum(sal) > 2500 and comm is null group by job;
नौकरी का चयन करें, एएमपी से राशि (साल) जहां राशि (साल) > 2500 और कॉम नौकरी के आधार पर शून्य समूह है;
D
select job, sum(sal) from emp group by job having sum(sal) > 2500 and comm is not null;
एएमपी समूह से नौकरी का चयन करें, राशि (साल) > 2500 और कॉम शून्य नहीं है;
✅ Correct Answer: