Changes between Version 33 and Version 34 of Cookbook CCM21_UGA
- Timestamp:
- Aug 30, 2010 5:37:37 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Cookbook CCM21_UGA
v33 v34 106 106 Suppression des lignes de doublons 107 107 {{{ 108 delete 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;108 delete from uga2010.wso where wso_id not in (select wso_id from uga2010.wso group by wso_id having count(wso_id)>1); 109 109 -- Réinsertion des wso_id supprimés (sans doublon) 110 110 INSERT INTO uga2010.wso (wso_id) (select wso_id from uga2010.wso group by wso_id having count(wso_id)>1);