Write a query using COUNT and HAVING clause ? - B M SOLUTION
  • Write a query using COUNT and HAVING clause ?

     SELECT FamilyId, COUNT(FamilyId) 

    FROM tblFamilyMembersDetails_VD 

    GROUP BY FamilyId

    HAVING COUNT(FamilyId) > 2

  • You might also like

    No comments :

    Post a Comment