C
Programming and Technical
Numerical Ability
Algebra
There is an employer table with key fields as employer number data in every n'th row are
needed for a simple following queries will get required results.
(a) select A employee number from employee A , where exists from employee B where A employee
no. >= B employee having (count(*) mod n)=0
(b) select employee number from employe A, employe B where A employe number>=B employ
number group by employee number having(count(*) mod n=0 )
(c) both (a) & (b)
(d) none of the above
CHOOSE THE CORRECT OPTION
Read Solution (Total 2)
-
- i think Ans is b)
- 10 years agoHelpfull: Yes(0) No(0)
- ans) b
logically b is correct and having claue is always associated with group by - 10 years agoHelpfull: Yes(0) No(0)
C Other Question