Opened 7 years ago

#234 new enhancement

Noms communs pour les genres

Reported by: timothee Owned by: timothee
Priority: minor Milestone: 5 Release stacomiR_0.5
Component: database Version: 0.5
Keywords: taxon, genre, nom commun Cc:

Description

Pour légender les graphiques issus de bilans sur des taxons "genre", il faudrait compléter la colonne des noms communs dans la table des taxons.

Proposition de requête UPDATE avec mappage des noms communs :

UPDATE ref.tr_taxon_tax
   SET tax_nom_commun='Lamproie (genre)'
 WHERE tax_nom_latin='Lampetra';

update ref.tr_taxon_tax as taxon
set
    tax_nom_commun = genres.tax_nom_commun
from (values
    ('Lampetra', 'Lamproie (genre)'),
    ('Barbus', 'Barbeau (genre)'),
    ('Micropterus','Black bass (genre)'),
    ('Alosa','Alose (genre)'),
    ('Carassius','Carassin (genre)'),
    ('Leuciscus','Ciprinidé (genre Leuciscus)'),
    ('Chelon','Mulet (genre Chelon)'),
    ('Liza','Mulet (genre Liza)'),
    ('Salmo','Salmonidé (genre Salmo)')  
) as genres(tax_nom_latin, tax_nom_commun) 
where genres.tax_nom_latin = taxon.tax_nom_latin;

Change History (0)

Note: See TracTickets for help on using tickets.