Add seedList module for URL initialization, comprehensive SQL utilities for database analysis, and update project configuration.
8 lines
208 B
SQL
8 lines
208 B
SQL
-- File: snapshots_per_url.sql
|
|
-- Basic count of snapshots per URL
|
|
-- Usage: \i misc/sql/snapshots_per_url.sql
|
|
|
|
SELECT url, COUNT(*) as snapshot_count
|
|
FROM snapshots
|
|
GROUP BY url
|
|
ORDER BY snapshot_count DESC; |