Created
September 13, 2014 18:42
-
-
Save Clorith/8b5ea2bdbef9b68cccb2 to your computer and use it in GitHub Desktop.
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 | |
( | |
SELECT | |
COUNT(DISTINCT id) | |
FROM | |
messages | |
WHERE | |
nickname = '" . $_GET['nickname'] . "' | |
AND | |
is_question = 1 | |
) AS questions, | |
( | |
SELECT | |
COUNT(DISTINCT id) | |
FROM | |
messages | |
WHERE | |
nickname = '" . $_GET['nickname'] . "' | |
AND | |
is_docbot IS NOT NULL | |
) AS docbot, | |
( | |
SELECT | |
COUNT(DISTINCT id) | |
FROM | |
messages | |
WHERE | |
is_appreciation LIKE ('%" . $_GET['nickname'] . "%') | |
) AS appreciation | |
FROM | |
messages | |
LIMIT 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment