qustion in natural lang|sql query ground truth|colmns retived|rows retirved "Which species in our database contain amatoxins, and at what > concentrations?"|"SELECT s.scientific_name, c.preferred_name, o.concentration_mg_per_g FROM bio_species_compound_occurrences o JOIN tax_species s ON s.id = o.species_id JOIN bio_compounds c ON c.id = o.compound_id JOIN bio_toxin_amatoxins t ON t.compound_id = c.id ORDER BY s.scientific_name, c.preferred_name;"|scientific_name, preferred_name, concentration_mg_per_g|3 "Show me ITS sequences with their species and the herbarium voucher > they came from."|"SELECT s.scientific_name, h.ih_code || ' ' || sp.catalog_number AS voucher, seq.length_bp, seq.gc_content_pct FROM gen_sequences seq JOIN spc_specimens sp ON sp.id = seq.specimen_id JOIN people_herbaria h ON h.id = sp.herbarium_id JOIN tax_species s ON s.id = sp.identified_species_id WHERE seq.locus = 'its';"|scientific_name, voucher, length_bp, gc_content_pct|4 "Which Agaricales species are classified as deadly, and what is the > mean amatoxin concentration reported for each?"|"SELECT s.scientific_name, e.edibility_class, AVG(o.concentration_mg_per_g) AS mean_amatoxin FROM ord_agaricales_edibility e JOIN tax_species s ON s.id = e.species_id LEFT JOIN bio_species_compound_occurrences o ON o.species_id = s.id LEFT JOIN bio_toxin_amatoxins t ON t.compound_id = o.compound_id WHERE e.edibility_class = 'deadly' GROUP BY s.scientific_name, e.edibility_class;"|scientific_name, edibility_class, mean_amatoxin|2