blob: 0c6b396c16a066d24b88f1d38b7c23aba50e92ad [file] [log] [blame]
select track.type as type, depth, count(*) as count
from slice
inner join track on slice.track_id = track.id
group by track.type, depth
order by track.type, depth;