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 | |
| 91 | SELECT 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 |