The UK Master List contains some duplicate entries, i.e. the same taxon_id is referred to multiple times in the one list. This seems wrong to me. The following query lists such entries on warehouse1.
select taxon_id, count(*) from
taxa_taxon_lists ttl
where taxon_list_id = 15
and deleted = false
group by taxon_id
having count(*) > 1
order by count(*)
desc
The UK Master List contains some duplicate entries, i.e. the same taxon_id is referred to multiple times in the one list. This seems wrong to me. The following query lists such entries on warehouse1.