Changes between Version 1 and Version 2 of PATE Anguille


Ignore:
Timestamp:
Jan 17, 2012 6:01:39 PM (13 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PATE Anguille

    v1 v2  
    55}}} 
    66 
     7{{{ 
     8alter table "ROE-BV" set schema rht 
     9alter table rht."ROE-BV" rename to roe_pate_bv11axes 
     10alter table rht.roe_pate_bv11axes rename column "Id_ROE" to Id_ROE 
     11 
     12select count(*) from rht.roe_pate_bv11axes limit 7 
     13 
     14drop table if exists rht.rhtvs2_roe_pate_bv11axes; 
     15create table rht.rhtvs2_roe_pate_bv11axes as ( 
     16select r.id_drain,t.dmer, module, module_icinf, module_icsup, minqmx, minqmxicinf, minqmxicsup, b.* from rht.rhtvs2_roev2 r      
     17        join  rht.roe_pate_bv11axes b on r.id_roe=b.Id_ROE  
     18        join rht.rhtvs2 t on t.id_drain=r.id_drain 
     19        join rht.attributs_rht_fev_2011_vs2 a on r.id_drain=a.id_drain); 
     20}}}