Created
June 17, 2009 07:38
-
-
Save josernestodavila/131124 to your computer and use it in GitHub Desktop.
Selecciona el campo T.Cantidad con mayor valor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT MAX( T.Cantidad ) , T.civicrm_contribution_source | |
FROM ( | |
SELECT COUNT( * ) AS Cantidad, civicrm_contribution.source AS civicrm_contribution_source | |
FROM civicrm_contact | |
LEFT JOIN civicrm_contribution ON civicrm_contact.id = civicrm_contribution.contact_id | |
WHERE civicrm_contact.id =8 | |
GROUP BY civicrm_contribution.source | |
ORDER BY Cantidad DESC | |
) AS T |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment