Simple way to reduce your DB size

Just FYI, this is the query that works on the current version of HA 2025.01

SELECT m.entity_id, COUNT(*) as count FROM states AS S
INNER JOIN states_meta AS M ON M.metadata_id = s.metadata_id
GROUP BY m.entity_id ORDER BY count DESC LIMIT 20;

Cheers

3 Likes