Changes between Version 3 and Version 4 of CookBook join Corine Land Cover-RHT
- Timestamp:
- Sep 30, 2011 11:50:05 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBook join Corine Land Cover-RHT
v3 v4 13 13 14 14 {{{ 15 #!sql 15 16 create schema clc2000; 16 17 drop table if exists clc2000.area_clc; … … 152 153 select * from rht.attributs_rht_fev_2011_vs2 where id_drain='223887' 153 154 }}} 155 156 {{{ 157 #!sql 158 CREATE INDEX indexareaclc 159 ON clc2000.area_clc 160 USING btree (reach_number); 161 162 CREATE INDEX indexupareaclc 163 ON clc2000.uparea_clc 164 USING btree (reach_number); 165 }}}