Changes between Version 3 and Version 4 of CookBook join Corine Land Cover-RHT


Ignore:
Timestamp:
Sep 30, 2011 11:50:05 AM (14 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBook join Corine Land Cover-RHT

    v3 v4  
    1313 
    1414{{{ 
     15#!sql 
    1516create schema clc2000; 
    1617drop table if exists clc2000.area_clc; 
     
    152153select * from rht.attributs_rht_fev_2011_vs2 where id_drain='223887' 
    153154}}}  
     155 
     156{{{ 
     157#!sql 
     158CREATE INDEX indexareaclc 
     159ON clc2000.area_clc 
     160USING btree (reach_number); 
     161 
     162CREATE INDEX indexupareaclc 
     163ON clc2000.uparea_clc 
     164USING btree (reach_number); 
     165}}}