Changes between Version 29 and Version 30 of CookBook join ROE_RHT


Ignore:
Timestamp:
Nov 3, 2011 10:57:09 AM (13 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBook join ROE_RHT

    v29 v30  
    215215create table rht.rht_bdcarthage_roev2_nbdams as 
    216216select id_drain, count(nbdams) as nbdams from rht.rht_bdcarthage_roev2 as r group by id_drain; 
    217 }}} 
     217 
     218alter table rht.rht_bdcarthage_roev2_nbdams add column c_height integer; 
     219alter table rht.rht_bdcarthage_roev2_nbdams add column c_score integer; 
     220update rht.rht_bdcarthage_roev2_nbdams set c_height=1; 
     221update rht.rht_bdcarthage_roev2_nbdams set c_score=1; 
     222}}}