I try to build a backend for quiz game statistics : I want to know recognition percent for each image globally and recognition percent of images by country.
Currently datamodel is :
TABLE results ( country text, percent float, image_id text, fail int, ok int, shown int, PRIMARY KEY (country, percent, image_id) );
I can query results by country, but I can't get global results(images with higher percent).
Any hint ?