@Query("select count(a) from Accession a where a.institute.country = ?1 and a.historic = false")
longcountByLocation(Countrycountry);
@Query("select count(a) from Accession a where a.crop = ?1 and a.historic = false")
longcountByCrop(Cropcrop);
@Query(value="select a.cropName, count(a.id) from Accession a where a.institute = ?1 and a.historic = false group by a.cropName order by count(a) desc",countQuery="select count(distinct a.cropName) from Accession a where a.institute = ?1")