fix biblionumber
[google-map-tiles.git] / koha-import.pl
index 6729adc..b2ba4d1 100755 (executable)
@@ -166,3 +166,21 @@ while( my $row = $sth->fetchrow_hashref ) {
                , dump($location)
        );
 }
+
+eval { $g_dbh->do(qq{ drop table geo_count }) };
+$g_dbh->do(qq{
+
+select
+       count(biblionumber)
+       ,point(lat,lng)
+       ,geo_city.city
+       ,geo_city.city_koha
+       ,country
+into geo_count
+from geo_biblioitems
+join geo_city on city_koha = geo_biblioitems.city
+where length(geo_city.city) > 1
+group by geo_city.city, country, lat, lng, city_koha
+order by count(biblionumber) desc
+
+});