Changes between Version 13 and Version 14 of Cookbook CCM21_France


Ignore:
Timestamp:
May 27, 2010 4:48:00 PM (15 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cookbook CCM21_France

    v13 v14  
    1818 -- a table containing three columns  
    1919{{{ 
     20#!sql 
    2021 drop table  if exists france.wso; 
    2122 CREATE TABLE france.wso ( 
     
    2627}}} 
    2728{{{ 
     29#!sql 
    2830insert into france.wso(wso_id)  
    2931select distinct on (wso_id)  wso_id from ccm21.riversegments r 
     
    3638 
    3739{{{ 
     40#!sql 
    3841select * from ccm21.riversegments where wso_id in (select wso_id from france.wso where area='France')--170703 lines 
    3942}}} 
    4043 
    4144{{{ 
     45#!sql 
    4246CREATE INDEX france_wso_id 
    4347  ON france.wso