33 | | -- pour aller rajouter les op_id dans la table poissons |
34 | | select * from wrbd.operation_op order by op_date; -- un pb de date |
35 | | update wrbd.operation_op set op_date='2009-09-27' where op_date='0009-09-27' |
36 | | select * from wrbd.fish_fi left join (select * from wrbd.operation_op where op_nbtotal>0)as ope |
37 | | on (fi_date,fi_st_id)=(ope.op_date,ope.op_st_id) ; --2357 |
38 | | select count(*) from wrbd.fish_fi; -- 2208 |
39 | | -- voir les changements dans operation pour règler le pb de jointure |
| 33 | -- pour aller rajouter les op_id dans la table poissons ticket #75 |
| 34 | |