Changes between Version 5 and Version 6 of Ticket #44


Ignore:
Timestamp:
Mar 2, 2010 6:00:20 PM (15 years ago)
Author:
cedric
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #44 – Description

    v5 v6  
    3939||36||-11560|| 
    4040||86380||0|| 
     41{{{ 
     42drop table if exists tabledistance; 
     43CREATE TABLE tabledistance AS( 
     44select cum_len_sea-len_tom as diff, rivernodes.the_geom from rivernodes 
     45 inner join riversegments on riversegments.tonode=rivernodes.id  
     46where cum_len_sea != len_tom); 
     47alter table tabledistance add column id serial; 
     48drop table tabledistance; 
     49}}}