You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This query returns 36 unique taxon_id's having more than one records in taxonomic order:
select*from tbl_taxonomic_order
where taxon_id in (
select taxon_id
from tbl_taxonomic_order
where taxonomic_order_system_id =1group by taxon_id
havingcount(*) >1
)
order by taxon_id
All have different taxonomic_code, so I guess this is OK?
The text was updated successfully, but these errors were encountered:
This query returns 36 unique taxon_id's having more than one records in taxonomic order:
All have different taxonomic_code, so I guess this is OK?
The text was updated successfully, but these errors were encountered: