Created
May 31, 2009 00:37
-
-
Save alcides/120690 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 tasks_after_deadline, tasks_open, tasks_after_deadline/tasks_open as ratio | |
FROM ( | |
SELECT COUNT( * ) as tasks_after_deadline | |
FROM `gestor_actionitem` | |
WHERE `due_date` < NOW( ) | |
AND `done` =0 | |
LIMIT 0 , 30 | |
)tab, ( | |
SELECT COUNT( * ) as tasks_open | |
FROM `gestor_actionitem` | |
WHERE `done` =0 | |
LIMIT 0 , 30 | |
)tab2 |
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
tasks_after_deadline tasks_open ratio | |
29 42 0.6905 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment