| Total records |
|---|
| select sum("RECORDS") as "RECORDS" from gmap_taxa |
| Records per 1km square |
|
select "RECORDS", "GRID_REF" from gmap_grid order by 1,2 |
| Year date vs date entered |
|---|
|
select md_year_date, extract(year from md_date_enter) as md_year_enter, count(*) as records from mapinfo_fast_access group by 1,2 order by 1,2 |
| Records (and %) in best years |
|
select records, 100*records/total as percent, year from (select count(*) as total from mapinfo_fast_access) foo, (select md_year_date as year, count(*) as records from mapinfo_fast_access group by 1) bar order by 1 desc limit 10 |