Changes between Version 30 and Version 31 of Cookbook CCM21_UGA


Ignore:
Timestamp:
Aug 30, 2010 4:03:33 PM (15 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cookbook CCM21_UGA

    v30 v31  
    104104}}} 
    105105 
     106Suppression des lignes de doublons 
     107{{{ 
     108delete from uga2010.wso where wso_id not in (select wso_id from uga2010.wso group by wso_id having count(wso_id)>1) order by wso_id; 
     109INSERT INTO uga2010.wso (wso_id) (select wso_id from uga2010.wso group by wso_id having count(wso_id)>1); 
     110INSERT INTO uga2010.wso (uga) VALUES ('RhoneMediterranee') where wso_id  ; 
     111}}} 
     112 
     113 
     114 
    106115'''J'ai un doute pour la requête entre wso_id et wso1_id  lequel choisir ??'''  
    107116["Requete uga wso1_id"]