import just new cities
authorDobrica Pavlinusic <dpavlin@rot13.org>
Sun, 3 Apr 2011 15:38:44 +0000 (17:38 +0200)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Sun, 3 Apr 2011 15:38:44 +0000 (17:38 +0200)
koha-import.pl

index 21ba1b4..6729adc 100755 (executable)
@@ -142,7 +142,7 @@ create table geo_city (
 my $sth_insert = $g_dbh->prepare(qq{insert into geo_city values (?,?,?,?,?,?,?,?)});
 
 my $sth = $g_dbh->prepare(qq{
-select count(*),city from geo_biblioitems group by city order by count(city) desc
+select count(*),city from geo_biblioitems where city not in (select city_koha from geo_city) group by city order by count(city) desc
 });
 $sth->execute;