Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: Should taxa be unique within a taxonomic order system? #57

Open
roger-mahler opened this issue Sep 22, 2023 · 0 comments
Open
Assignees
Labels
new quality-control Quality control related task

Comments

@roger-mahler
Copy link
Collaborator

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 = 1
	group by taxon_id
	having count(*) > 1
)
order by taxon_id

All have different taxonomic_code, so I guess this is OK?

@roger-mahler roger-mahler added quality-control Quality control related task new labels Sep 22, 2023
@roger-mahler roger-mahler self-assigned this Sep 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new quality-control Quality control related task
Projects
None yet
Development

No branches or pull requests

1 participant