Created
December 31, 2016 16:32
-
-
Save kerbelp/9f4bb1d36b50b6a67caf8897969aabe3 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 stv_tbl_perm.db_id, | |
stv_tbl_perm.id, | |
stv_tbl_perm.name, | |
SUM(stv_tbl_perm. "rows") AS "rows", | |
SUM(stv_tbl_perm. "rows") - SUM(stv_tbl_perm.sorted_rows) AS unsorted_rows | |
FROM stv_tbl_perm | |
GROUP BY stv_tbl_perm.db_id, | |
stv_tbl_perm.id, | |
stv_tbl_perm.name; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment