Changes between Version 29 and Version 30 of CookBook join ROE_RHT
- Timestamp:
- Nov 3, 2011 10:57:09 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBook join ROE_RHT
v29 v30 215 215 create table rht.rht_bdcarthage_roev2_nbdams as 216 216 select id_drain, count(nbdams) as nbdams from rht.rht_bdcarthage_roev2 as r group by id_drain; 217 }}} 217 218 alter table rht.rht_bdcarthage_roev2_nbdams add column c_height integer; 219 alter table rht.rht_bdcarthage_roev2_nbdams add column c_score integer; 220 update rht.rht_bdcarthage_roev2_nbdams set c_height=1; 221 update rht.rht_bdcarthage_roev2_nbdams set c_score=1; 222 }}}