Changes between Version 4 and Version 5 of Recette SQL SommeEffectifsCiv et SommeEffectifsAgj


Ignore:
Timestamp:
Sep 21, 2010 5:26:56 PM (14 years ago)
Author:
brice
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Recette SQL SommeEffectifsCiv et SommeEffectifsAgj

    v4 v5  
    77[[BR]] 
    88== Somme des effectifs annuels de civelles sur les deux passes à anguilles  == 
     9 
    910{{{ 
    1011-- attention cette requête suppose que les coefficients de conversion sont entrés journalièrement 
     
    8687 
    8788[[BR]] 
    88 == Somme des effectifs d'anguilles en fonction du devenir de lot entre 2002 et 2006 == 
     89== Somme des effectifs annuels d'anguilles jaunes sur les deux passes à anguilles et la passe à bassins == 
     90 
     91SELECT cast(t_operation_ope.ope_date_debut as date) AS ope_date_eff,   
     92 sum(t_lot_lot.lot_effectif) as effectif 
     93   FROM iav.t_operation_ope 
     94   JOIN iav.t_lot_lot ON t_lot_lot.lot_ope_identifiant = t_operation_ope.ope_identifiant 
     95      where ope_dic_identifiant in (5,6,12) 
     96       and lot_tax_code='2038' 
     97       and lot_std_code='AGJ' 
     98       and lot_effectif>0 
     99       and lot_lot_identifiant IS NULL 
     100    group by ope_date_eff 
     101    order by ope_date_eff