-
-
Save clifgriffin/ee290730f8682eb5576d to your computer and use it in GitHub Desktop.
This file contains 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 p.* , COUNT(*) AS items | |
FROM wp_shopp_purchase AS p | |
LEFT JOIN wp_shopp_purchased AS i ON i.purchase = p.id | |
GROUP BY i.purchase | |
ORDER BY created DESC | |
LIMIT 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment