8 lines
151 B
SQL
8 lines
151 B
SQL
SELECT host, COUNT(*) AS row_count
|
|
FROM snapshots
|
|
WHERE response_code IS NOT NULL
|
|
AND error IS NULL
|
|
GROUP BY host
|
|
ORDER BY row_count DESC
|
|
LIMIT 10;
|