Changes between Version 40 and Version 41 of CookBook join ROE_CCM


Ignore:
Timestamp:
Mar 23, 2010 12:12:04 PM (15 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBook join ROE_CCM

    v40 v41  
    164164 
    165165== Some statistics about the dam projection == 
     166We create a table of regions 
     167DROP TABLE if exists france.region; 
     168CREATE TABLE france.region as( 
     169SELECT ST_Collect(the_geom) as the_geom,code_reg FROM france.departement GROUP BY code_reg); 
     170Alter table france.region ADD column reg_id serial PRIMARY KEY; 
    166171