{"per_item": [{"question": "How many singers do we have?", "predicted": "SELECT Count(*) FROM singer", "gold": "SELECT count(*) FROM singer", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the total number of singers?", "predicted": "SELECT Count(*) FROM singer", "gold": "SELECT count(*) FROM singer", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Show name, country, age for all singers ordered by age from the oldest to the youngest.", "predicted": "SELECT singer.Name, singer.Country, singer.Age FROM singer ORDER BY singer.Age Desc", "gold": "SELECT name , country , age FROM singer ORDER BY age DESC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names, countries, and ages for every singer in descending order of age?", "predicted": "SELECT singer.Name, singer.Country, singer.Age FROM singer ORDER BY singer.Age Desc", "gold": "SELECT name , country , age FROM singer ORDER BY age DESC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the average, minimum, and maximum age of all singers from France?", "predicted": "SELECT Avg(singer.Age), Min(singer.Age), Max(singer.Age) FROM singer WHERE singer.Country = \"Unitedn\"", "gold": "SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = 'France'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average, minimum, and maximum age for all French singers?", "predicted": "SELECT Avg(singer.Age), Min(singer.Age), Max(singer.Age) FROM singer WHERE singer.Country = \"Unitedn\"", "gold": "SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = 'France'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the name and the release year of the song by the youngest singer.", "predicted": "SELECT singer.Song_Name, singer.Song_release_year FROM singer ORDER BY singer.Age Asc LIMIT 1", "gold": "SELECT song_name , song_release_year FROM singer ORDER BY age LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names and release years for all the songs of the youngest singer?", "predicted": "SELECT singer.Song_Name, singer.Song_release_year FROM singer ORDER BY singer.Age Asc LIMIT 1", "gold": "SELECT song_name , song_release_year FROM singer ORDER BY age LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are all distinct countries where singers above age 20 are from?", "predicted": "SELECT DISTINCT singer.Country FROM singer WHERE singer.Age > 20", "gold": "SELECT DISTINCT country FROM singer WHERE age > 20", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the different countries with singers above age 20?", "predicted": "SELECT DISTINCT singer.Country FROM singer WHERE singer.Age > 20", "gold": "SELECT DISTINCT country FROM singer WHERE age > 20", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show all countries and the number of singers in each country.", "predicted": "SELECT singer.Country, Count(*) FROM singer GROUP BY singer.Country", "gold": "SELECT country , count(*) FROM singer GROUP BY country", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many singers are from each country?", "predicted": "SELECT singer.Country, Count(*) FROM singer GROUP BY singer.Country", "gold": "SELECT country , count(*) FROM singer GROUP BY country", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List all song names by singers above the average age.", "predicted": "SELECT singer.Song_Name FROM singer WHERE singer.Age > (SELECT Avg(singer.Age) FROM singer)", "gold": "SELECT song_name FROM singer WHERE age > (SELECT avg(age) FROM singer)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are all the song names by singers who are older than average?", "predicted": "SELECT singer.Song_Name FROM singer WHERE singer.Age > (SELECT Avg(singer.Age) FROM singer)", "gold": "SELECT song_name FROM singer WHERE age > (SELECT avg(age) FROM singer)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show location and name for all stadiums with a capacity between 5000 and 10000.", "predicted": "SELECT stadium.Location, stadium.Name FROM stadium WHERE stadium.Capacity BETWEEN 4000 AND 5000", "gold": "SELECT LOCATION , name FROM stadium WHERE capacity BETWEEN 5000 AND 10000", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the locations and names of all stations with capacity between 5000 and 10000?", "predicted": "SELECT stadium.Location, stadium.Name FROM stadium WHERE stadium.Capacity BETWEEN 4000 AND 5000", "gold": "SELECT LOCATION , name FROM stadium WHERE capacity BETWEEN 5000 AND 10000", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the maximum capacity and the average of all stadiums ?", "predicted": "SELECT Max(stadium.Capacity), Avg(stadium.Average) FROM stadium", "gold": "select max(capacity), average from stadium", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the average and maximum capacities for all stadiums ?", "predicted": "SELECT Avg(stadium.Capacity), Max(stadium.Average) FROM stadium", "gold": "select avg(capacity) , max(capacity) from stadium", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the name and capacity for the stadium with highest average attendance?", "predicted": "SELECT stadium.Name, stadium.Capacity FROM stadium ORDER BY stadium.Average Desc LIMIT 1", "gold": "SELECT name , capacity FROM stadium ORDER BY average DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the name and capacity for the stadium with the highest average attendance?", "predicted": "SELECT stadium.Name, stadium.Capacity FROM stadium ORDER BY stadium.Average Desc LIMIT 1", "gold": "SELECT name , capacity FROM stadium ORDER BY average DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many concerts are there in year 2014 or 2015?", "predicted": "SELECT Count(*) FROM concert WHERE concert.Year = 2014 OR concert.Year = 2015", "gold": "SELECT count(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many concerts occurred in 2014 or 2015?", "predicted": "SELECT Count(*) FROM concert WHERE concert.Year = 2014 OR concert.Year = 2015", "gold": "SELECT count(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the stadium name and the number of concerts in each stadium.", "predicted": "SELECT stadium.Name, Count(*) FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID GROUP BY concert.Stadium_ID", "gold": "SELECT T2.name , count(*) FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id GROUP BY T1.stadium_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For each stadium, how many concerts play there?", "predicted": "SELECT concert.Stadium_ID, Count(*) FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID GROUP BY concert.Stadium_ID", "gold": "SELECT T2.name , count(*) FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id GROUP BY T1.stadium_id", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the stadium name and capacity with most number of concerts in year 2014 or after.", "predicted": "SELECT stadium.Name, stadium.Capacity FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID WHERE concert.Year >= 2014 GROUP BY concert.Stadium_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.name , T2.capacity FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year >= 2014 GROUP BY T2.stadium_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 5, "pred_total": 5}}}, {"question": "What is the name and capacity of the stadium with the most concerts after 2013 ?", "predicted": "SELECT stadium.Name, stadium.Capacity FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID WHERE concert.Year > 300 GROUP BY concert.Stadium_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "select t2.name , t2.capacity from concert as t1 join stadium as t2 on t1.stadium_id = t2.stadium_id where t1.year > 2013 group by t2.stadium_id order by count(*) desc limit 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 5, "pred_total": 5}}}, {"question": "Which year has most number of concerts?", "predicted": "SELECT concert.Year FROM concert GROUP BY concert.Year ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT YEAR FROM concert GROUP BY YEAR ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the year that had the most concerts?", "predicted": "SELECT concert.Year FROM concert GROUP BY concert.Year ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT YEAR FROM concert GROUP BY YEAR ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show the stadium names without any concert.", "predicted": "SELECT stadium.Name FROM stadium WHERE stadium.Stadium_ID NOT IN (SELECT concert.Stadium_ID FROM concert)", "gold": "SELECT name FROM stadium WHERE stadium_id NOT IN (SELECT stadium_id FROM concert)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of the stadiums without any concerts?", "predicted": "SELECT stadium.Name FROM stadium WHERE stadium.Stadium_ID NOT IN (SELECT concert.Stadium_ID FROM concert)", "gold": "SELECT name FROM stadium WHERE stadium_id NOT IN (SELECT stadium_id FROM concert)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Show countries where a singer above age 40 and a singer below 30 are from.", "predicted": "SELECT singer.Country FROM singer WHERE singer.Age > 40 INTERSECT SELECT singer.Country FROM singer WHERE singer.Age < 30", "gold": "SELECT country FROM singer WHERE age > 40 INTERSECT SELECT country FROM singer WHERE age < 30", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show names for all stadiums except for stadiums having a concert in year 2014.", "predicted": "SELECT stadium.Name FROM stadium EXCEPT SELECT stadium.Name FROM concert JOIN stadium ON concert.Stadium_ID = stadium.Stadium_ID WHERE concert.Year = 2014", "gold": "SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of all stadiums that did not have a concert in 2014?", "predicted": "SELECT stadium.Name FROM stadium EXCEPT SELECT stadium.Name FROM concert JOIN stadium ON concert.Stadium_ID = stadium.Stadium_ID WHERE concert.Year = 2014", "gold": "SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the name and theme for all concerts and the number of singers in each concert.", "predicted": "SELECT concert.concert_Name, concert.Theme, Count(*) FROM concert JOIN singer_in_concert ON concert.concert_ID = singer_in_concert.concert_ID GROUP BY singer_in_concert.concert_ID", "gold": "SELECT T2.concert_name , T2.theme , count(*) FROM singer_in_concert AS T1 JOIN concert AS T2 ON T1.concert_id = T2.concert_id GROUP BY T2.concert_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names , themes , and number of singers for every concert ?", "predicted": "SELECT concert.concert_Name, concert.Theme, Count(*) FROM concert JOIN singer_in_concert ON concert.concert_ID = singer_in_concert.concert_ID GROUP BY singer_in_concert.concert_ID", "gold": "select t2.concert_name , t2.theme , count(*) from singer_in_concert as t1 join concert as t2 on t1.concert_id = t2.concert_id group by t2.concert_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List singer names and number of concerts for each singer.", "predicted": "SELECT singer.Name, Count(*) FROM singer JOIN singer_in_concert ON singer.Singer_ID = singer_in_concert.Singer_ID GROUP BY singer_in_concert.Singer_ID", "gold": "SELECT T2.name , count(*) FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id GROUP BY T2.singer_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the singers and number of concerts for each person?", "predicted": "SELECT singer.Name, Count(*) FROM singer JOIN singer_in_concert ON singer.Singer_ID = singer_in_concert.Singer_ID GROUP BY singer_in_concert.Singer_ID", "gold": "SELECT T2.name , count(*) FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id GROUP BY T2.singer_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List all singer names in concerts in year 2014.", "predicted": "SELECT singer.Name FROM singer JOIN concert JOIN singer_in_concert ON singer.Singer_ID = singer_in_concert.Singer_ID AND singer_in_concert.concert_ID = concert.concert_ID WHERE concert.Year = 2014", "gold": "SELECT T2.name FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id JOIN concert AS T3 ON T1.concert_id = T3.concert_id WHERE T3.year = 2014", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the singers who performed in a concert in 2014?", "predicted": "SELECT DISTINCT singer.Name FROM singer JOIN concert JOIN singer_in_concert ON singer.Singer_ID = singer_in_concert.Singer_ID AND singer_in_concert.concert_ID = concert.concert_ID WHERE concert.Year = 2014", "gold": "SELECT T2.name FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id JOIN concert AS T3 ON T1.concert_id = T3.concert_id WHERE T3.year = 2014", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "what is the name and nation of the singer who have a song having 'Hey' in its name?", "predicted": "SELECT singer.Name, singer.Country FROM singer WHERE singer.Song_Name LIKE \"%He%\"", "gold": "SELECT name , country FROM singer WHERE song_name LIKE '%Hey%'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the name and country of origin of every singer who has a song with the word 'Hey' in its title?", "predicted": "SELECT singer.Name, singer.Country FROM singer WHERE singer.Song_Name LIKE \"%He%\"", "gold": "SELECT name , country FROM singer WHERE song_name LIKE '%Hey%'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the name and location of the stadiums which some concerts happened in the years of both 2014 and 2015.", "predicted": "SELECT stadium.Name, stadium.Location FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID WHERE concert.Year = 2014 INTERSECT SELECT stadium.Name, stadium.Location FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID WHERE concert.Year = 4", "gold": "SELECT T2.name , T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2014 INTERSECT SELECT T2.name , T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2015", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names and locations of the stadiums that had concerts that occurred in both 2014 and 2015?", "predicted": "SELECT stadium.Name, stadium.Location FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID WHERE concert.Year = 2014 INTERSECT SELECT stadium.Name, stadium.Location FROM stadium JOIN concert ON concert.Stadium_ID = stadium.Stadium_ID WHERE concert.Year = 4", "gold": "SELECT T2.name , T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2014 INTERSECT SELECT T2.name , T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2015", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the number of concerts happened in the stadium with the highest capacity .", "predicted": "SELECT Count(*) FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID ORDER BY stadium.Capacity Desc LIMIT 1", "gold": "select count(*) from concert where stadium_id = (select stadium_id from stadium order by capacity desc limit 1)", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "What are the number of concerts that occurred in the stadium with the largest capacity ?", "predicted": "SELECT Count(*) FROM stadium JOIN concert ON stadium.Stadium_ID = concert.Stadium_ID ORDER BY stadium.Capacity Desc LIMIT 1", "gold": "select count(*) from concert where stadium_id = (select stadium_id from stadium order by capacity desc limit 1)", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "Find the number of pets whose weight is heavier than 10.", "predicted": "SELECT Count(*) FROM Pets WHERE Pets.weight > 10", "gold": "SELECT count(*) FROM pets WHERE weight > 10", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many pets have a greater weight than 10?", "predicted": "SELECT Count(*) FROM Pets WHERE Pets.weight > 10", "gold": "SELECT count(*) FROM pets WHERE weight > 10", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the weight of the youngest dog.", "predicted": "SELECT Pets.weight FROM Pets WHERE Pets.PetType = \"male\"", "gold": "SELECT weight FROM pets ORDER BY pet_age LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}}}, {"question": "How much does the youngest dog weigh?", "predicted": "SELECT Pets.weight FROM Pets WHERE Pets.PetType = (SELECT Min(Pets.PetType) FROM Pets)", "gold": "SELECT weight FROM pets ORDER BY pet_age LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}}}, {"question": "Find the maximum weight for each type of pet. List the maximum weight and pet type.", "predicted": "SELECT Max(Pets.weight), Pets.PetType FROM Pets GROUP BY Pets.PetType", "gold": "SELECT max(weight) , petType FROM pets GROUP BY petType", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the maximum weight and type for each type of pet.", "predicted": "SELECT Max(Pets.weight), Max(Pets.weight), Pets.PetType FROM Pets GROUP BY Pets.PetType", "gold": "SELECT max(weight) , petType FROM pets GROUP BY petType", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find number of pets owned by students who are older than 20.", "predicted": "SELECT Count(*) FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Student.Age > 20", "gold": "SELECT count(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many pets are owned by students that have an age greater than 20?", "predicted": "SELECT Count(*) FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Student.Age > 20", "gold": "SELECT count(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the number of dog pets that are raised by female students (with sex F).", "predicted": "SELECT Count(*) FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Student.Sex = \"F\" AND Pets.PetType = \"F\"", "gold": "SELECT count(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many dog pets are raised by female students?", "predicted": "SELECT Count(*) FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Student.Sex = \"F\" AND Pets.PetType = \"F\"", "gold": "SELECT count(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the number of distinct type of pets.", "predicted": "SELECT Count(DISTINCT Pets.PetType) FROM Pets", "gold": "SELECT count(DISTINCT pettype) FROM pets", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many different types of pet are there?", "predicted": "SELECT Count(DISTINCT Pets.PetType) FROM Pets", "gold": "SELECT count(DISTINCT pettype) FROM pets", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the first name of students who have cat or dog pet.", "predicted": "SELECT DISTINCT Student.Fname FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Milk\" OR Pets.PetType = \"Cat\"", "gold": "SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog'", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the first names of every student who has a cat or dog as a pet?", "predicted": "SELECT DISTINCT Student.Fname FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Milk\" OR Pets.PetType = \"Cat\"", "gold": "SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog'", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the first name of students who have both cat and dog pets .", "predicted": "SELECT Student.Fname FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Milk\" INTERSECT SELECT Student.Fname FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Cat\"", "gold": "select t1.fname from student as t1 join has_pet as t2 on t1.stuid = t2.stuid join pets as t3 on t3.petid = t2.petid where t3.pettype = 'cat' intersect select t1.fname from student as t1 join has_pet as t2 on t1.stuid = t2.stuid join pets as t3 on t3.petid = t2.petid where t3.pettype = 'dog'", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the students' first names who have both cats and dogs as pets?", "predicted": "SELECT Student.Fname FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Milk\" INTERSECT SELECT Student.Fname FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Cat\"", "gold": "SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' INTERSECT SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog'", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the major and age of students who do not have a cat pet.", "predicted": "SELECT Student.Major, Student.Age FROM Student WHERE Student.StuID NOT IN (SELECT Has_Pet.StuID FROM Has_Pet JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Cat\")", "gold": "SELECT major , age FROM student WHERE stuid NOT IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What major is every student who does not own a cat as a pet, and also how old are they?", "predicted": "SELECT Student.Major, Student.Age FROM Student WHERE Student.StuID NOT IN (SELECT Has_Pet.StuID FROM Has_Pet JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Milk\")", "gold": "SELECT major , age FROM student WHERE stuid NOT IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the id of students who do not have a cat pet.", "predicted": "SELECT Student.StuID FROM Student EXCEPT SELECT Has_Pet.StuID FROM Has_Pet JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Cat\"", "gold": "SELECT stuid FROM student EXCEPT SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat'", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the ids of the students who do not own cats as pets?", "predicted": "SELECT Student.StuID FROM Student EXCEPT SELECT Has_Pet.StuID FROM Has_Pet JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Cat\"", "gold": "SELECT stuid FROM student EXCEPT SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat'", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the first name and age of students who have a dog but do not have a cat as a pet.", "predicted": "SELECT Student.Fname, Student.Age FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Milk\" EXCEPT SELECT Student.Fname, Student.Age FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID WHERE Pets.PetType = \"Cat\"", "gold": "SELECT T1.fname , T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND T1.stuid NOT IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}}}, {"question": "What is the first name of every student who has a dog but does not have a cat?", "predicted": "SELECT Student.Fname FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"mid\" EXCEPT SELECT Student.Fname FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.PetType = \"Cat\"", "gold": "SELECT T1.fname , T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND T1.stuid NOT IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}}}, {"question": "Find the type and weight of the youngest pet.", "predicted": "SELECT Pets.PetType, Pets.weight FROM Pets ORDER BY Pets.pet_age Asc LIMIT 1", "gold": "SELECT pettype , weight FROM pets ORDER BY pet_age LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What type of pet is the youngest animal, and how much does it weigh?", "predicted": "SELECT Pets.PetType, Pets.weight FROM Pets ORDER BY Pets.pet_age Asc LIMIT 1", "gold": "SELECT pettype , weight FROM pets ORDER BY pet_age LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the id and weight of all pets whose age is older than 1.", "predicted": "SELECT Pets.PetID, Pets.weight FROM Pets WHERE Pets.pet_age > 1", "gold": "SELECT petid , weight FROM pets WHERE pet_age > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the id and weight of every pet who is older than 1?", "predicted": "SELECT Pets.PetID, Pets.weight FROM Pets WHERE Pets.pet_age > 1", "gold": "SELECT petid , weight FROM pets WHERE pet_age > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the average and maximum age for each type of pet.", "predicted": "SELECT Avg(Pets.PetType), Max(Pets.pet_age), Pets.PetType FROM Pets GROUP BY Pets.PetType", "gold": "SELECT avg(pet_age) , max(pet_age) , pettype FROM pets GROUP BY pettype", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average and maximum age for each pet type?", "predicted": "SELECT Avg(Pets.PetType), Max(Pets.pet_age), Pets.PetType FROM Pets GROUP BY Pets.PetType", "gold": "SELECT avg(pet_age) , max(pet_age) , pettype FROM pets GROUP BY pettype", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the average weight for each pet type.", "predicted": "SELECT Pets.PetType, Avg(Pets.weight) FROM Pets GROUP BY Pets.PetType", "gold": "SELECT avg(weight) , pettype FROM pets GROUP BY pettype", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average weight for each type of pet?", "predicted": "SELECT Pets.PetType, Avg(Pets.weight) FROM Pets GROUP BY Pets.PetType", "gold": "SELECT avg(weight) , pettype FROM pets GROUP BY pettype", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the first name and age of students who have a pet.", "predicted": "SELECT DISTINCT Student.Fname, Student.Age FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID", "gold": "SELECT DISTINCT T1.fname , T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the different first names and ages of the students who do have pets?", "predicted": "SELECT DISTINCT Student.Fname, Student.Age FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID", "gold": "SELECT DISTINCT T1.fname , T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the id of the pet owned by student whose last name is ‘Smith’.", "predicted": "SELECT Has_Pet.PetID FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID WHERE Student.LName = \"Smith\"", "gold": "SELECT T2.petid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.Lname = 'Smith'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the id of the pet owned by the student whose last name is 'Smith'?", "predicted": "SELECT Has_Pet.PetID FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Student.LName = \"Smith\"", "gold": "SELECT T2.petid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.Lname = 'Smith'", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the number of pets for each student who has any pet and student id.", "predicted": "SELECT Count(*), Has_Pet.StuID FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID GROUP BY Has_Pet.StuID", "gold": "SELECT count(*) , T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid GROUP BY T1.stuid", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For students who have pets , how many pets does each student have ? list their ids instead of names .", "predicted": "SELECT Student.StuID, Count(*) FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID GROUP BY Student.StuID", "gold": "select count(*) , t1.stuid from student as t1 join has_pet as t2 on t1.stuid = t2.stuid group by t1.stuid", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the first name and gender of student who have more than one pet.", "predicted": "SELECT Student.Fname, Student.Sex FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID GROUP BY Has_Pet.StuID HAVING Count(*) > 1", "gold": "SELECT T1.fname , T1.sex FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid GROUP BY T1.stuid HAVING count(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the first name and gender of the all the students who have more than one pet?", "predicted": "SELECT Student.Fname, Student.Sex FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID GROUP BY Has_Pet.StuID HAVING Count(*) > 1", "gold": "SELECT T1.fname , T1.sex FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid GROUP BY T1.stuid HAVING count(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the last name of the student who has a cat that is age 3.", "predicted": "SELECT Student.LName FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.pet_age = 3 AND Pets.PetType = \"P\"", "gold": "SELECT T1.lname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pet_age = 3 AND T3.pettype = 'cat'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the last name of the student who has a cat that is 3 years old?", "predicted": "SELECT Student.LName FROM Student JOIN Has_Pet ON Student.StuID = Has_Pet.StuID JOIN Pets ON Has_Pet.PetID = Pets.PetID WHERE Pets.pet_age = 3 AND Pets.PetType = \"P\"", "gold": "SELECT T1.lname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pet_age = 3 AND T3.pettype = 'cat'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the average age of students who do not have any pet .", "predicted": "SELECT Avg(Student.Age) FROM Student WHERE Student.StuID NOT IN (SELECT Has_Pet.StuID FROM Has_Pet)", "gold": "select avg(age) from student where stuid not in (select stuid from has_pet)", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the average age for all students who do not own any pets ?", "predicted": "SELECT Avg(Student.Age) FROM Student WHERE Student.StuID NOT IN (SELECT Has_Pet.StuID FROM Has_Pet)", "gold": "select avg(age) from student where stuid not in (select stuid from has_pet)", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many continents are there?", "predicted": "SELECT Count(*) FROM continents", "gold": "SELECT count(*) FROM CONTINENTS;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the number of continents?", "predicted": "SELECT Count(*) FROM continents", "gold": "SELECT count(*) FROM CONTINENTS;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many countries does each continent have? List the continent id, continent name and the number of countries.", "predicted": "SELECT continents.ContId, continents.Continent, Count(*) FROM continents JOIN countries ON continents.ContId = countries.Continent GROUP BY continents.ContId", "gold": "SELECT T1.ContId , T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.Continent GROUP BY T1.ContId;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For each continent, list its id, name, and how many countries it has?", "predicted": "SELECT continents.Continent, countries.CountryName, Count(*) FROM continents JOIN countries ON continents.ContId = countries.Continent GROUP BY continents.Continent", "gold": "SELECT T1.ContId , T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.Continent GROUP BY T1.ContId;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many countries are listed?", "predicted": "SELECT Count(*) FROM countries", "gold": "SELECT count(*) FROM COUNTRIES;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many countries exist?", "predicted": "SELECT Count(*) FROM countries", "gold": "SELECT count(*) FROM COUNTRIES;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many models does each car maker produce? List maker full name, id and the number.", "predicted": "SELECT car_makers.FullName, car_makers.Maker, Count(*) FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY car_makers.Id", "gold": "SELECT T1.FullName , T1.Id , count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the full name of each car maker, along with its id and how many models it produces?", "predicted": "SELECT car_makers.FullName, car_makers.Maker, Count(*) FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY car_makers.Id", "gold": "SELECT T1.FullName , T1.Id , count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which model of the car has the minimum horsepower?", "predicted": "SELECT car_names.Model FROM car_names JOIN cars_data ON car_names.MakeId = cars_data.Id ORDER BY cars_data.Horsepower Asc LIMIT 1", "gold": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.horsepower ASC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the model of the car with the smallest amount of horsepower?", "predicted": "SELECT model_list.Model FROM model_list JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id ORDER BY cars_data.Horsepower Asc LIMIT 1", "gold": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.horsepower ASC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the model of the car whose weight is below the average weight.", "predicted": "SELECT model_list.Model FROM model_list JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Weight < (SELECT Avg(cars_data.Weight) FROM cars_data)", "gold": "SELECT T1.model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Weight < (SELECT avg(Weight) FROM CARS_DATA)", "predicted_parse_error": false, "hardness": "extra", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the model for the car with a weight smaller than the average?", "predicted": "SELECT model_list.Model FROM model_list JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Weight < (SELECT Avg(cars_data.Weight) FROM cars_data)", "gold": "SELECT T1.model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Weight < (SELECT avg(Weight) FROM CARS_DATA)", "predicted_parse_error": false, "hardness": "extra", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the name of the makers that produced some cars in the year of 1970?", "predicted": "SELECT car_makers.Maker FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Year = 70", "gold": "SELECT DISTINCT T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model JOIN CARS_DATA AS T4 ON T3.MakeId = T4.id WHERE T4.year = '1970';", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the name of the different car makers who produced a car in 1970?", "predicted": "SELECT DISTINCT car_makers.Maker FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Year = 70", "gold": "SELECT DISTINCT T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model JOIN CARS_DATA AS T4 ON T3.MakeId = T4.id WHERE T4.year = '1970';", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the make and production time of the cars that were produced in the earliest year?", "predicted": "SELECT car_names.Make, cars_data.Year FROM car_names JOIN cars_data ON car_names.MakeId = cars_data.Id ORDER BY cars_data.Year Asc LIMIT 1", "gold": "SELECT T2.Make , T1.Year FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Year = (SELECT min(YEAR) FROM CARS_DATA);", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "What is the maker of the carr produced in the earliest year and what year was it?", "predicted": "SELECT car_makers.Maker, cars_data.Year FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id ORDER BY cars_data.Year Asc LIMIT 1", "gold": "SELECT T2.Make , T1.Year FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Year = (SELECT min(YEAR) FROM CARS_DATA);", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "Which distinct car models are the produced after 1980?", "predicted": "SELECT DISTINCT model_list.Model FROM model_list JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Year > 1990", "gold": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.model = T2.model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.id WHERE T3.year > 1980;", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the different models for the cards produced after 1980?", "predicted": "SELECT DISTINCT model_list.Model FROM model_list JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Year > 8", "gold": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.model = T2.model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.id WHERE T3.year > 1980;", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many car makers are there in each continents? List the continent name and the count.", "predicted": "SELECT continents.Continent, Count(*) FROM continents JOIN countries ON continents.ContId = countries.Continent GROUP BY continents.Continent", "gold": "SELECT T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent;", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the name of each continent and how many car makers are there in each one?", "predicted": "SELECT continents.Continent, Count(*) FROM continents JOIN countries ON continents.ContId = countries.Continent GROUP BY continents.Continent", "gold": "SELECT T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent;", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which of the countries has the most car makers? List the country name.", "predicted": "SELECT countries.CountryName FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country GROUP BY countries.CountryName ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.CountryName FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId GROUP BY T1.Country ORDER BY Count(*) DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the name of the country with the most car makers?", "predicted": "SELECT countries.CountryName FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country GROUP BY countries.CountryName ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.CountryName FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId GROUP BY T1.Country ORDER BY Count(*) DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "How many car models are produced by each maker ? Only list the count and the maker full name .", "predicted": "SELECT Count(*), car_makers.FullName FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY car_makers.Id", "gold": "select count(*) , t2.fullname from model_list as t1 join car_makers as t2 on t1.maker = t2.id group by t2.id;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the number of car models that are produced by each maker and what is the id and full name of each maker?", "predicted": "SELECT Count(*), car_makers.Maker, car_makers.FullName FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY car_makers.Id", "gold": "SELECT Count(*) , T2.FullName , T2.id FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id GROUP BY T2.id;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the accelerate of the car make amc hornet sportabout (sw)?", "predicted": "SELECT cars_data.Accelerate FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE car_names.Make = \"cumchornetsportsport\"", "gold": "SELECT T1.Accelerate FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Make = 'amc hornet sportabout (sw)';", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How much does the car accelerate that makes amc hornet sportabout (sw)?", "predicted": "SELECT cars_data.Accelerate FROM car_names JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE car_names.Make = \"cumchornetsport((\"", "gold": "SELECT T1.Accelerate FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Make = 'amc hornet sportabout (sw)';", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many car makers are there in france?", "predicted": "SELECT Count(*) FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country WHERE countries.CountryName = \"Texas\"", "gold": "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france';", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the number of makers of care in France?", "predicted": "SELECT Count(*) FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country WHERE countries.CountryName = \"I\"", "gold": "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france';", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many car models are produced in the usa?", "predicted": "SELECT Count(*) FROM continents JOIN countries ON continents.ContId = countries.Continent WHERE countries.CountryName = \"United\"", "gold": "SELECT count(*) FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id JOIN COUNTRIES AS T3 ON T2.Country = T3.CountryId WHERE T3.CountryName = 'usa';", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the count of the car models produced in the United States?", "predicted": "SELECT Count(*) FROM countries WHERE countries.CountryName = \"UnitedStates\"", "gold": "SELECT count(*) FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id JOIN COUNTRIES AS T3 ON T2.Country = T3.CountryId WHERE T3.CountryName = 'usa';", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average miles per gallon(mpg) of the cars with 4 cylinders?", "predicted": "SELECT Avg(cars_data.MPG) FROM cars_data WHERE cars_data.Cylinders = 4", "gold": "SELECT avg(mpg) FROM CARS_DATA WHERE Cylinders = 4;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average miles per gallon of all the cards with 4 cylinders?", "predicted": "SELECT Avg(cars_data.MPG) FROM cars_data WHERE cars_data.Cylinders = 4", "gold": "SELECT avg(mpg) FROM CARS_DATA WHERE Cylinders = 4;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the smallest weight of the car produced with 8 cylinders on 1974 ?", "predicted": "SELECT Min(cars_data.Weight) FROM cars_data WHERE cars_data.Cylinders = 8 AND cars_data.Year = \"A\"", "gold": "select min(weight) from cars_data where cylinders = 8 and year = 1974", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the minimum weight of the car with 8 cylinders produced in 1974 ?", "predicted": "SELECT Min(cars_data.Weight) FROM cars_data WHERE cars_data.Cylinders = 8 AND cars_data.Year = 8", "gold": "select min(weight) from cars_data where cylinders = 8 and year = 1974", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are all the makers and models?", "predicted": "SELECT car_makers.Maker, model_list.Model FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker", "gold": "SELECT Maker , Model FROM MODEL_LIST;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the makers and models?", "predicted": "SELECT car_makers.Maker, model_list.Model FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker", "gold": "SELECT Maker , Model FROM MODEL_LIST;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the countries having at least one car maker? List name and id.", "predicted": "SELECT countries.CountryName, countries.CountryId FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country", "gold": "SELECT T1.CountryName , T1.CountryId FROM COUNTRIES AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.CountryId HAVING count(*) >= 1;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}}}, {"question": "What are the names and ids of all countries with at least one car maker?", "predicted": "SELECT countries.CountryName, countries.CountryId FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country", "gold": "SELECT T1.CountryName , T1.CountryId FROM COUNTRIES AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.CountryId HAVING count(*) >= 1;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}}}, {"question": "What is the number of the cars with horsepower more than 150?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Horsepower > 150", "gold": "SELECT count(*) FROM CARS_DATA WHERE horsepower > 150;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the number of cars with a horsepower greater than 150?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Horsepower > 150", "gold": "SELECT count(*) FROM CARS_DATA WHERE horsepower > 150;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average weight of cars each year?", "predicted": "SELECT Avg(cars_data.Weight), cars_data.Year FROM cars_data GROUP BY cars_data.Year", "gold": "SELECT avg(Weight) , YEAR FROM CARS_DATA GROUP BY YEAR;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average weight and year for each year?", "predicted": "SELECT Avg(cars_data.Weight), cars_data.Year FROM cars_data GROUP BY cars_data.Year", "gold": "SELECT avg(Weight) , YEAR FROM CARS_DATA GROUP BY YEAR;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which countries in europe have at least 3 car manufacturers?", "predicted": "SELECT countries.CountryName FROM continents JOIN countries ON continents.ContId = countries.Continent JOIN car_makers ON countries.CountryId = car_makers.Country WHERE continents.Continent = \"USA\" GROUP BY countries.CountryId HAVING Count(*) >= 3", "gold": "SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING count(*) >= 3;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of all European countries with at least 3 manufacturers?", "predicted": "SELECT countries.CountryName FROM continents JOIN countries ON continents.ContId = countries.Continent JOIN car_makers ON countries.CountryId = car_makers.Country WHERE continents.Continent = \"Uniteds\" GROUP BY countries.CountryId HAVING Count(*) >= 3", "gold": "SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING count(*) >= 3;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the maximum horsepower and the make of the car models with 3 cylinders?", "predicted": "SELECT Max(cars_data.Horsepower), car_makers.Maker FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Cylinders = 3", "gold": "SELECT T2.horsepower , T1.Make FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.cylinders = 3 ORDER BY T2.horsepower DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 1}}}, {"question": "What is the largest amount of horsepower for the models with 3 cylinders and what make is it?", "predicted": "SELECT Max(cars_data.Horsepower), car_makers.Maker FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Cylinders = 3", "gold": "SELECT T2.horsepower , T1.Make FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.cylinders = 3 ORDER BY T2.horsepower DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 1}}}, {"question": "Which model saves the most gasoline? That is to say, have the maximum miles per gallon.", "predicted": "SELECT model_list.Model FROM model_list JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id GROUP BY cars_data.Id ORDER BY Sum(cars_data.MPG) Desc LIMIT 1", "gold": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.mpg DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 4}}}, {"question": "What is the car model with the highest mpg ?", "predicted": "SELECT car_names.Model FROM car_names JOIN cars_data ON car_names.MakeId = cars_data.Id ORDER BY cars_data.MPG Desc LIMIT 1", "gold": "select t1.model from car_names as t1 join cars_data as t2 on t1.makeid = t2.id order by t2.mpg desc limit 1;", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the average horsepower of the cars before 1980?", "predicted": "SELECT Avg(cars_data.Horsepower) FROM cars_data WHERE cars_data.Year < 1980", "gold": "SELECT avg(horsepower) FROM CARS_DATA WHERE YEAR < 1980;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average horsepower for all cars produced before 1980 ?", "predicted": "SELECT Avg(cars_data.Horsepower) FROM cars_data WHERE cars_data.Year < 1990", "gold": "select avg(horsepower) from cars_data where year < 1980;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average edispl of the cars of model volvo?", "predicted": "SELECT Avg(cars_data.Edispl) FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE car_names.Model = \"PVvo\"", "gold": "SELECT avg(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo';", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average edispl for all volvos?", "predicted": "SELECT Avg(cars_data.Edispl) FROM car_names JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE car_names.Make = \"Tvos\"", "gold": "SELECT avg(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo';", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the maximum accelerate for different number of cylinders?", "predicted": "SELECT Max(cars_data.Accelerate), cars_data.Cylinders FROM cars_data GROUP BY cars_data.Cylinders", "gold": "SELECT max(Accelerate) , Cylinders FROM CARS_DATA GROUP BY Cylinders;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the maximum accelerate for all the different cylinders?", "predicted": "SELECT Max(cars_data.Accelerate), cars_data.Cylinders FROM cars_data GROUP BY cars_data.Cylinders", "gold": "SELECT max(Accelerate) , Cylinders FROM CARS_DATA GROUP BY Cylinders;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which model has the most version(make) of cars?", "predicted": "SELECT car_names.Make FROM model_list JOIN car_names ON model_list.Model = car_names.Model GROUP BY car_names.Model ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY count(*) DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What model has the most different versions?", "predicted": "SELECT model_list.Model FROM model_list GROUP BY model_list.Model ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY count(*) DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "How many cars have more than 4 cylinders?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Cylinders > 4", "gold": "SELECT count(*) FROM CARS_DATA WHERE Cylinders > 4;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the number of cars with more than 4 cylinders?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Cylinders > 4", "gold": "SELECT count(*) FROM CARS_DATA WHERE Cylinders > 4;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "how many cars were produced in 1980?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Year = 80", "gold": "SELECT count(*) FROM CARS_DATA WHERE YEAR = 1980;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "In 1980, how many cars were made?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Year = 80", "gold": "SELECT count(*) FROM CARS_DATA WHERE YEAR = 1980;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many car models were produced by the maker with full name American Motor Company?", "predicted": "SELECT Count(*) FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker WHERE car_makers.FullName = \"AmericanMotorCompany\"", "gold": "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company';", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the number of car models created by the car maker American Motor Company?", "predicted": "SELECT Count(*) FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker WHERE car_makers.FullName = \"AmericanMotorCompany\"", "gold": "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company';", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which makers designed more than 3 car models? List full name and the id.", "predicted": "SELECT car_makers.FullName, car_makers.Id FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY car_makers.Id HAVING Count(*) >= 3", "gold": "SELECT T1.FullName , T1.Id FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) > 3;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names and ids of all makers with more than 3 models?", "predicted": "SELECT car_makers.Maker, car_makers.Id FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY car_makers.Id HAVING Count(*) >= 3", "gold": "SELECT T1.FullName , T1.Id FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) > 3;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which distinctive models are produced by maker with the full name General Motors or weighing more than 3500?", "predicted": "SELECT DISTINCT model_list.Model FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker WHERE car_makers.FullName > 3000 OR car_makers.FullName > 5000", "gold": "SELECT DISTINCT T2.Model FROM CAR_NAMES AS T1 JOIN MODEL_LIST AS T2 ON T1.Model = T2.Model JOIN CAR_MAKERS AS T3 ON T2.Maker = T3.Id JOIN CARS_DATA AS T4 ON T1.MakeId = T4.Id WHERE T3.FullName = 'General Motors' OR T4.weight > 3500;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the different models created by either the car maker General Motors or weighed more than 3500?", "predicted": "SELECT DISTINCT model_list.Model FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker WHERE car_makers.FullName > 3000 OR car_makers.FullName > 5000", "gold": "SELECT DISTINCT T2.Model FROM CAR_NAMES AS T1 JOIN MODEL_LIST AS T2 ON T1.Model = T2.Model JOIN CAR_MAKERS AS T3 ON T2.Maker = T3.Id JOIN CARS_DATA AS T4 ON T1.MakeId = T4.Id WHERE T3.FullName = 'General Motors' OR T4.weight > 3500;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "In which years cars were produced weighing no less than 3000 and no more than 4000 ?", "predicted": "SELECT cars_data.Year FROM cars_data WHERE cars_data.Weight BETWEEN 3000 AND 5000", "gold": "select distinct year from cars_data where weight between 3000 and 4000;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the different years in which there were cars produced that weighed less than 4000 and also cars that weighted more than 3000 ?", "predicted": "SELECT cars_data.Year FROM cars_data WHERE cars_data.Weight < 4000 INTERSECT SELECT cars_data.Year FROM cars_data WHERE cars_data.Weight > 3000", "gold": "select distinct year from cars_data where weight between 3000 and 4000;", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}}}, {"question": "What is the horsepower of the car with the largest accelerate?", "predicted": "SELECT cars_data.Horsepower FROM cars_data ORDER BY cars_data.Accelerate Desc LIMIT 1", "gold": "SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the horsepower of the car with the greatest accelerate?", "predicted": "SELECT cars_data.Horsepower FROM cars_data ORDER BY cars_data.Accelerate Desc LIMIT 1", "gold": "SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "For model volvo, how many cylinders does the car with the least accelerate have?", "predicted": "SELECT cars_data.Cylinders FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE car_makers.Maker = \"invo\" ORDER BY cars_data.Accelerate Asc LIMIT 1", "gold": "SELECT T1.cylinders FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Model = 'volvo' ORDER BY T1.accelerate ASC LIMIT 1;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "For a volvo model, how many cylinders does the version with least accelerate have?", "predicted": "SELECT cars_data.Cylinders FROM model_list JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE car_names.Make = \"invo\" ORDER BY cars_data.Accelerate Asc LIMIT 1", "gold": "SELECT T1.cylinders FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Model = 'volvo' ORDER BY T1.accelerate ASC LIMIT 1;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "How many cars have a larger accelerate than the car with the largest horsepower?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Accelerate > (SELECT Max(cars_data.Accelerate) FROM cars_data)", "gold": "SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > ( SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1 );", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the number of cars with a greater accelerate than the one with the most horsepower?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Accelerate > (SELECT Max(cars_data.Accelerate) FROM cars_data)", "gold": "SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > ( SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1 );", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many countries has more than 2 car makers ?", "predicted": "SELECT Count(*) FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country GROUP BY car_makers.Country HAVING Count(*) > 2", "gold": "select count(*) from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the number of countries with more than 2 car makers ?", "predicted": "SELECT Count(*) FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country GROUP BY car_makers.Country HAVING Count(*) > 2", "gold": "select count(*) from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many cars has over 6 cylinders?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Cylinders > 8", "gold": "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the number of carsw ith over 6 cylinders?", "predicted": "SELECT Count(*) FROM cars_data WHERE cars_data.Cylinders > 2006", "gold": "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6;", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For the cars with 4 cylinders, which model has the largest horsepower?", "predicted": "SELECT cars_data.Horsepower FROM cars_data WHERE cars_data.Cylinders = 4 ORDER BY cars_data.Horsepower Desc LIMIT 1", "gold": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Cylinders = 4 ORDER BY T2.horsepower DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "For all of the 4 cylinder cars, which model has the most horsepower?", "predicted": "SELECT cars_data.Cylinders FROM cars_data WHERE cars_data.Cylinders = 4 ORDER BY cars_data.Horsepower Desc LIMIT 1", "gold": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Cylinders = 4 ORDER BY T2.horsepower DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Among the cars with more than lowest horsepower, which ones do not have more than 3 cylinders? List the car makeid and make name.", "predicted": "SELECT car_names.MakeId, car_names.Make FROM car_names JOIN cars_data ON car_names.MakeId = cars_data.Id EXCEPT SELECT car_names.MakeId, car_names.Make FROM cars_data JOIN car_names ON cars_data.Id = car_names.MakeId WHERE cars_data.Horsepower > 3", "gold": "SELECT T2.MakeId , T2.Make FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Horsepower > (SELECT min(Horsepower) FROM CARS_DATA) AND T1.Cylinders <= 3;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}}}, {"question": "Among the cars that do not have the minimum horsepower , what are the make ids and names of all those with less than 4 cylinders ?", "predicted": "SELECT car_names.MakeId, car_makers.FullName FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker JOIN car_names ON model_list.Model = car_names.Model JOIN cars_data ON car_names.MakeId = cars_data.Id WHERE cars_data.Cylinders < 4", "gold": "select t2.makeid , t2.make from cars_data as t1 join car_names as t2 on t1.id = t2.makeid where t1.horsepower > (select min(horsepower) from cars_data) and t1.cylinders < 4;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the maximum miles per gallon of the car with 8 cylinders or produced before 1980 ?", "predicted": "SELECT Max(cars_data.MPG) FROM cars_data WHERE cars_data.Cylinders = \"in\" OR cars_data.Year < 800", "gold": "select max(mpg) from cars_data where cylinders = 8 or year < 1980", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the maximum mpg of the cars that had 8 cylinders or that were produced before 1980 ?", "predicted": "SELECT Max(cars_data.MPG) FROM cars_data WHERE cars_data.Cylinders = 8 OR cars_data.Year < 2008", "gold": "select max(mpg) from cars_data where cylinders = 8 or year < 1980", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which models are lighter than 3500 but not built by the 'Ford Motor Company'?", "predicted": "SELECT model_list.Model FROM model_list EXCEPT SELECT model_list.Model FROM model_list JOIN car_makers ON model_list.Maker = car_makers.Id WHERE car_makers.FullName > 3000 AND car_makers.Maker = \"SanMotorMotorMotor\"", "gold": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName != 'Ford Motor Company';", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}}}, {"question": "What are the different models wthat are lighter than 3500 but were not built by the Ford Motor Company?", "predicted": "SELECT model_list.Model FROM model_list EXCEPT SELECT model_list.Model FROM model_list JOIN car_makers ON model_list.Maker = car_makers.Id WHERE car_makers.FullName = \"SanMotorMotorMotor\" AND car_makers.Maker = \"restaurant\"", "gold": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName != 'Ford Motor Company';", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}}}, {"question": "What are the name of the countries where there is not a single car maker?", "predicted": "SELECT countries.CountryName FROM countries WHERE countries.CountryId NOT IN (SELECT car_makers.Country FROM car_makers)", "gold": "SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country;", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "What are the names of the countries with no car makers?", "predicted": "SELECT countries.CountryName FROM countries WHERE countries.CountryId NOT IN (SELECT car_makers.Country FROM car_makers)", "gold": "SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country;", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "Which are the car makers which produce at least 2 models and more than 3 car makers ? List the id and the maker .", "predicted": "SELECT car_makers.Id, car_makers.Maker FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY car_makers.Id HAVING Count(*) >= 2", "gold": "select t1.id , t1.maker from car_makers as t1 join model_list as t2 on t1.id = t2.maker group by t1.id having count(*) >= 2 intersect select t1.id , t1.maker from car_makers as t1 join model_list as t2 on t1.id = t2.maker join car_names as t3 on t2.model = t3.model group by t1.id having count(*) > 3;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}}}, {"question": "What are the ids and makers of all car makers that produce at least 2 models and make more than 3 cars?", "predicted": "SELECT car_makers.Id, car_makers.Maker FROM car_makers JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY car_makers.Id HAVING Count(*) >= 3", "gold": "SELECT T1.Id , T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) >= 2 INTERSECT SELECT T1.Id , T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model GROUP BY T1.Id HAVING count(*) > 3;", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}}}, {"question": "What are the id and names of the countries which have more than 3 car makers or produce the 'fiat' model?", "predicted": "SELECT countries.CountryId, countries.CountryName FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country JOIN model_list ON car_makers.Id = model_list.Maker WHERE model_list.Model = \"in\" UNION SELECT countries.CountryId, countries.CountryName FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY countries.CountryId HAVING Count(*) > 3", "gold": "SELECT T1.countryId , T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.countryId HAVING count(*) > 3 UNION SELECT T1.countryId , T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country JOIN MODEL_LIST AS T3 ON T2.Id = T3.Maker WHERE T3.Model = 'fiat';", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}}}, {"question": "What are the ids and names of all countries that either have more than 3 car makers or produce fiat model ?", "predicted": "SELECT countries.CountryId, countries.CountryName FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country GROUP BY countries.CountryId HAVING Count(*) > 3 UNION SELECT countries.CountryId, countries.CountryName FROM countries JOIN car_makers ON countries.CountryId = car_makers.Country JOIN model_list ON car_makers.Id = model_list.Maker GROUP BY countries.CountryId HAVING Count(*) > 2", "gold": "select t1.countryid , t1.countryname from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 3 union select t1.countryid , t1.countryname from countries as t1 join car_makers as t2 on t1.countryid = t2.country join model_list as t3 on t2.id = t3.maker where t3.model = 'fiat';", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Which country does Airline \"JetBlue Airways\" belong to?", "predicted": "SELECT airlines.Country FROM airlines WHERE airlines.Airline = \"Walter\"", "gold": "SELECT Country FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What country is Jetblue Airways affiliated with?", "predicted": "SELECT airlines.Country FROM airlines WHERE airlines.Airline = \"Iron\"", "gold": "SELECT Country FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the abbreviation of Airline \"JetBlue Airways\"?", "predicted": "SELECT airlines.Abbreviation FROM airlines WHERE airlines.Airline = \"wcBlueAirways\"", "gold": "SELECT Abbreviation FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which abbreviation corresponds to Jetblue Airways?", "predicted": "SELECT airlines.Abbreviation FROM airlines WHERE airlines.Airline = \"IronblueAirwaysAirways\"", "gold": "SELECT Abbreviation FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List all airline names and their abbreviations in \"USA\".", "predicted": "SELECT airlines.Airline, airlines.Abbreviation FROM airlines WHERE airlines.Country = \"United\"", "gold": "SELECT Airline , Abbreviation FROM AIRLINES WHERE Country = \"USA\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the airline names and abbreviations for airlines in the USA?", "predicted": "SELECT airlines.Airline, airlines.Abbreviation FROM airlines WHERE airlines.Country = \"United\"", "gold": "SELECT Airline , Abbreviation FROM AIRLINES WHERE Country = \"USA\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the airport code and name in the city of Anthony.", "predicted": "SELECT airports.AirportCode, airports.AirportName FROM airports WHERE airports.City = \"ArSmi\"", "gold": "SELECT AirportCode , AirportName FROM AIRPORTS WHERE city = \"Anthony\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the airport code and airport name corresonding to the city Anthony.", "predicted": "SELECT airports.AirportCode, airports.AirportName FROM airports WHERE airports.City = \"ArSmi\"", "gold": "SELECT AirportCode , AirportName FROM AIRPORTS WHERE city = \"Anthony\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many airlines do we have?", "predicted": "SELECT Count(*) FROM airlines", "gold": "SELECT count(*) FROM AIRLINES", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the total number of airlines?", "predicted": "SELECT Count(*) FROM airlines", "gold": "SELECT count(*) FROM AIRLINES", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many airports do we have?", "predicted": "SELECT Count(*) FROM airports", "gold": "SELECT count(*) FROM AIRPORTS", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Return the number of airports.", "predicted": "SELECT Count(*) FROM airports", "gold": "SELECT count(*) FROM AIRPORTS", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many flights do we have?", "predicted": "SELECT Count(*) FROM flights", "gold": "SELECT count(*) FROM FLIGHTS", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Return the number of flights.", "predicted": "SELECT Count(*) FROM flights", "gold": "SELECT count(*) FROM FLIGHTS", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Which airline has abbreviation 'UAL'?", "predicted": "SELECT airlines.Airline FROM airlines WHERE airlines.Abbreviation = \"UAL%\"", "gold": "SELECT Airline FROM AIRLINES WHERE Abbreviation = \"UAL\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the airline with abbreviation 'UAL'.", "predicted": "SELECT airlines.Airline FROM airlines WHERE airlines.Abbreviation = \"UAL%\"", "gold": "SELECT Airline FROM AIRLINES WHERE Abbreviation = \"UAL\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many airlines are from USA?", "predicted": "SELECT Count(*) FROM airlines WHERE airlines.Country = \"USA\"", "gold": "SELECT count(*) FROM AIRLINES WHERE Country = \"USA\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the number of airlines in the USA.", "predicted": "SELECT Count(*) FROM airlines WHERE airlines.Country = \"United\"", "gold": "SELECT count(*) FROM AIRLINES WHERE Country = \"USA\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which city and country is the Alton airport at?", "predicted": "SELECT airports.City, airports.Country FROM airports WHERE airports.AirportName = \"Cuton\"", "gold": "SELECT City , Country FROM AIRPORTS WHERE AirportName = \"Alton\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the city and country for the Alton airport.", "predicted": "SELECT airports.City, airports.Country FROM airports WHERE airports.AirportName = \"Cuton\"", "gold": "SELECT City , Country FROM AIRPORTS WHERE AirportName = \"Alton\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the airport name for airport 'AKO'?", "predicted": "SELECT airports.AirportName FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE flights.DestAirport = \"AKO\"", "gold": "SELECT AirportName FROM AIRPORTS WHERE AirportCode = \"AKO\"", "predicted_parse_error": false, "hardness": "easy", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the name of the airport with code 'AKO'.", "predicted": "SELECT airports.AirportName FROM airports WHERE airports.AirportCode = \"AKO\"", "gold": "SELECT AirportName FROM AIRPORTS WHERE AirportCode = \"AKO\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are airport names at City 'Aberdeen'?", "predicted": "SELECT airports.AirportName FROM airports WHERE airports.City = \"Awarddeen\"", "gold": "SELECT AirportName FROM AIRPORTS WHERE City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of airports in Aberdeen?", "predicted": "SELECT airports.AirportName FROM airports WHERE airports.City = \"Aberdeen\"", "gold": "SELECT AirportName FROM AIRPORTS WHERE City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many flights depart from 'APG'?", "predicted": "SELECT Count(*) FROM flights WHERE flights.SourceAirport = \"APG\"", "gold": "SELECT count(*) FROM FLIGHTS WHERE SourceAirport = \"APG\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of flights departing from 'APG'.", "predicted": "SELECT Count(*) FROM flights WHERE flights.SourceAirport = \"APG\"", "gold": "SELECT count(*) FROM FLIGHTS WHERE SourceAirport = \"APG\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many flights have destination ATO?", "predicted": "SELECT Count(*) FROM flights WHERE flights.DestAirport = \"ATO\"", "gold": "SELECT count(*) FROM FLIGHTS WHERE DestAirport = \"ATO\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of flights into ATO.", "predicted": "SELECT Count(*) FROM flights WHERE flights.DestAirport = \"ATO\"", "gold": "SELECT count(*) FROM FLIGHTS WHERE DestAirport = \"ATO\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many flights depart from City Aberdeen?", "predicted": "SELECT Count(flights.FlightNo) FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"Adeen\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the number of flights departing from Aberdeen.", "predicted": "SELECT Count(flights.FlightNo) FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"Adeen\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many flights arriving in Aberdeen city?", "predicted": "SELECT Count(*) FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"Alandeen\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the number of flights arriving in Aberdeen.", "predicted": "SELECT Count(flights.FlightNo) FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"Adeen\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many flights depart from City 'Aberdeen' and have destination City 'Ashley'?", "predicted": "SELECT Count(*) FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"Alicedeen\" AND airports.AirportName = \"Alice\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRPORTS AS T3 ON T1.SourceAirport = T3.AirportCode WHERE T2.City = \"Ashley\" AND T3.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many flights fly from Aberdeen to Ashley?", "predicted": "SELECT Count(flights.FlightNo) FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"Alicedeen\" AND flights.DestAirport = \"Chen\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRPORTS AS T3 ON T1.SourceAirport = T3.AirportCode WHERE T2.City = \"Ashley\" AND T3.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many flights does airline 'JetBlue Airways' have?", "predicted": "SELECT Count(*) FROM airlines JOIN flights WHERE airlines.Airline = \"Bootball\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T1.Airline = T2.uid WHERE T2.Airline = \"JetBlue Airways\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the number of Jetblue Airways flights.", "predicted": "SELECT Count(*) FROM airlines JOIN flights WHERE airlines.Airline = \"Bootball\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T1.Airline = T2.uid WHERE T2.Airline = \"JetBlue Airways\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many 'United Airlines' flights go to Airport 'ASY'?", "predicted": "SELECT Count(*) FROM airlines JOIN airports JOIN flights WHERE airports.AirportName = \"ASY\" AND airlines.Airline = \"UnitedAirlines\"", "gold": "SELECT count(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.DestAirport = \"ASY\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of United Airlines flights arriving in ASY Airport.", "predicted": "SELECT Count(*) FROM airlines JOIN flights WHERE flights.SourceAirport = \"ASY\" AND airlines.Airline = \"UnitedAirlines\"", "gold": "SELECT count(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.DestAirport = \"ASY\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many 'United Airlines' flights depart from Airport 'AHD'?", "predicted": "SELECT Count(*) FROM airlines JOIN flights WHERE flights.SourceAirport = \"AHD\" AND airlines.Airline = \"UnitedAirlines\"", "gold": "SELECT count(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.SourceAirport = \"AHD\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the number of United Airlines flights leaving from AHD Airport.", "predicted": "SELECT Count(*) FROM airlines JOIN flights WHERE flights.SourceAirport = \"AHD\" AND airlines.Airline = \"UnitedAirlinesAirlines\"", "gold": "SELECT count(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.SourceAirport = \"AHD\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many United Airlines flights go to City 'Aberdeen'?", "predicted": "SELECT Count(*) FROM airlines JOIN airports JOIN flights WHERE airports.City = \"Alandeen\" AND airlines.Airline = \"UnitedAirlinesAirlines\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRLINES AS T3 ON T3.uid = T1.Airline WHERE T2.City = \"Aberdeen\" AND T3.Airline = \"United Airlines\"", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of United Airlines flights that arrive in Aberdeen.", "predicted": "SELECT Count(*) FROM airlines JOIN airports JOIN flights WHERE airports.City = \"Adeen\" AND airlines.Airline = \"UnitedAirlinesAirlines\"", "gold": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRLINES AS T3 ON T3.uid = T1.Airline WHERE T2.City = \"Aberdeen\" AND T3.Airline = \"United Airlines\"", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which city has most number of arriving flights?", "predicted": "SELECT airports.City FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport GROUP BY airports.City ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport GROUP BY T1.City ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which city has the most frequent destination airport?", "predicted": "SELECT airports.City FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport GROUP BY flights.DestAirport ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport GROUP BY T1.City ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which city has most number of departing flights?", "predicted": "SELECT airports.City FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport GROUP BY airports.City ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which city is the most frequent source airport?", "predicted": "SELECT airports.City FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport GROUP BY flights.SourceAirport ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the code of airport that has the highest number of flights?", "predicted": "SELECT flights.SourceAirport FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport GROUP BY flights.SourceAirport ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the airport code of the airport with the most flights?", "predicted": "SELECT flights.SourceAirport FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport GROUP BY flights.SourceAirport ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the code of airport that has fewest number of flights?", "predicted": "SELECT flights.SourceAirport FROM flights GROUP BY flights.SourceAirport ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY count(*) LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Give the code of the airport with the least flights.", "predicted": "SELECT flights.SourceAirport FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport GROUP BY flights.SourceAirport ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY count(*) LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which airline has most number of flights?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights GROUP BY airlines.Airline ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What airline serves the most flights?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights GROUP BY airlines.Airline ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the abbreviation and country of the airline that has fewest number of flights?", "predicted": "SELECT airlines.Abbreviation, airlines.Country FROM airlines JOIN flights GROUP BY flights.Airline ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T1.Abbreviation , T1.Country FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY count(*) LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the abbreviation of the airilne has the fewest flights and what country is it in?", "predicted": "SELECT airlines.Abbreviation, airlines.Country FROM airlines JOIN flights GROUP BY flights.FlightNo ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T1.Abbreviation , T1.Country FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY count(*) LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What are airlines that have some flight departing from airport 'AHD'?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.SourceAirport = \"AHD\"", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"AHD\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which airlines have a flight with source airport AHD?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.SourceAirport = \"AHD\"", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"AHD\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are airlines that have flights arriving at airport 'AHD'?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.SourceAirport = \"AHD\"", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.DestAirport = \"AHD\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which airlines have a flight with destination airport AHD?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.DestAirport = \"AHD\"", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.DestAirport = \"AHD\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find all airlines that have flights from both airports 'APG' and 'CVO'.", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.SourceAirport = \"APG\" INTERSECT SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.SourceAirport = \"ArVO\"", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\" INTERSECT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\"", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which airlines have departing flights from both APG and CVO airports?", "predicted": "SELECT airlines.Airline FROM airlines JOIN airports JOIN flights WHERE flights.SourceAirport = \"APG\" INTERSECT SELECT airlines.Airline FROM airports JOIN flights ON airports.AirportCode = flights.Airline WHERE flights.SourceAirport = \"CVO\"", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\" INTERSECT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\"", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find all airlines that have flights from airport 'CVO' but not from 'APG'.", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.SourceAirport = \"LondonVO\" EXCEPT SELECT airlines.Airline FROM airports JOIN flights ON airports.AirportCode = flights.Airline WHERE flights.SourceAirport = \"APG\"", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\" EXCEPT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\"", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which airlines have departures from CVO but not from APG airports?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.SourceAirport = \"LondonVO\" EXCEPT SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.SourceAirport = \"APG\"", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\" EXCEPT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\"", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find all airlines that have at least 10 flights.", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights GROUP BY flights.Airline HAVING Count(*) >= 10", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING count(*) > 10", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which airlines have at least 10 flights?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights GROUP BY flights.Airline HAVING Count(*) >= 10", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING count(*) > 10", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find all airlines that have fewer than 200 flights.", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.FlightNo < 200", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING count(*) < 200", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}}}, {"question": "Which airlines have less than 200 flights?", "predicted": "SELECT airlines.Airline FROM airlines JOIN flights WHERE flights.FlightNo < 200", "gold": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING count(*) < 200", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}}}, {"question": "What are flight numbers of Airline \"United Airlines\"?", "predicted": "SELECT flights.FlightNo FROM airlines JOIN flights WHERE airlines.Airline = \"UnitedAirlines\"", "gold": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T2.uid = T1.Airline WHERE T2.Airline = \"United Airlines\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which flight numbers correspond to United Airlines flights?", "predicted": "SELECT flights.FlightNo FROM airlines JOIN flights WHERE airlines.Airline = \"UnitedAirlines\"", "gold": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T2.uid = T1.Airline WHERE T2.Airline = \"United Airlines\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are flight numbers of flights departing from Airport \"APG\"?", "predicted": "SELECT flights.FlightNo FROM flights WHERE flights.SourceAirport = \"APG\"", "gold": "SELECT FlightNo FROM FLIGHTS WHERE SourceAirport = \"APG\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the flight numbers of flights leaving from APG.", "predicted": "SELECT flights.FlightNo FROM flights WHERE flights.SourceAirport = \"APG\"", "gold": "SELECT FlightNo FROM FLIGHTS WHERE SourceAirport = \"APG\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are flight numbers of flights arriving at Airport \"APG\"?", "predicted": "SELECT flights.FlightNo FROM flights WHERE flights.SourceAirport = \"APG\"", "gold": "SELECT FlightNo FROM FLIGHTS WHERE DestAirport = \"APG\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the flight numbers of flights landing at APG.", "predicted": "SELECT flights.FlightNo FROM flights WHERE flights.SourceAirport = \"APG\"", "gold": "SELECT FlightNo FROM FLIGHTS WHERE DestAirport = \"APG\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are flight numbers of flights departing from City \"Aberdeen \"?", "predicted": "SELECT flights.FlightNo FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"AAdeen\"", "gold": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the flight numbers of flights leaving from Aberdeen.", "predicted": "SELECT flights.FlightNo FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"Alicedeen\"", "gold": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are flight numbers of flights arriving at City \"Aberdeen\"?", "predicted": "SELECT flights.FlightNo FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"AAdeen\"", "gold": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the flight numbers of flights arriving in Aberdeen.", "predicted": "SELECT flights.FlightNo FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"AAdeen\"", "gold": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the number of flights landing in the city of Aberdeen or Abilene.", "predicted": "SELECT Count(*) FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"A4deen\" OR airports.City = \"Boblene\"", "gold": "SELECT count(*) FROM Flights AS T1 JOIN Airports AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.city = \"Aberdeen\" OR T2.city = \"Abilene\"", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many flights land in Aberdeen or Abilene?", "predicted": "SELECT Count(*) FROM airports JOIN flights ON airports.AirportCode = flights.SourceAirport WHERE airports.City = \"Adeen\" OR airports.City = \"Boblene\"", "gold": "SELECT count(*) FROM Flights AS T1 JOIN Airports AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.city = \"Aberdeen\" OR T2.city = \"Abilene\"", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the name of airports which do not have any flight in and out.", "predicted": "SELECT airports.AirportName FROM airports WHERE airports.AirportCode NOT IN (SELECT flights.SourceAirport FROM flights WHERE flights.FlightNo = \"International\")", "gold": "SELECT AirportName FROM Airports WHERE AirportCode NOT IN (SELECT SourceAirport FROM Flights UNION SELECT DestAirport FROM Flights)", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Which airports do not have departing or arriving flights?", "predicted": "SELECT airports.AirportName FROM airports WHERE airports.AirportCode NOT IN (SELECT flights.SourceAirport FROM flights)", "gold": "SELECT AirportName FROM Airports WHERE AirportCode NOT IN (SELECT SourceAirport FROM Flights UNION SELECT DestAirport FROM Flights)", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many employees are there?", "predicted": "SELECT Count(*) FROM employee", "gold": "SELECT count(*) FROM employee", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of employees", "predicted": "SELECT Count(*) FROM employee", "gold": "SELECT count(*) FROM employee", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Sort employee names by their age in ascending order.", "predicted": "SELECT employee.Name FROM employee ORDER BY employee.Age Asc", "gold": "SELECT name FROM employee ORDER BY age", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the names of employees and sort in ascending order of age.", "predicted": "SELECT employee.Name FROM employee ORDER BY employee.Age Asc", "gold": "SELECT name FROM employee ORDER BY age", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the number of employees from each city?", "predicted": "SELECT employee.City, Count(*) FROM employee GROUP BY employee.City", "gold": "SELECT count(*) , city FROM employee GROUP BY city", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of employees for each city.", "predicted": "SELECT Count(*), employee.City FROM employee GROUP BY employee.City", "gold": "SELECT count(*) , city FROM employee GROUP BY city", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which cities do more than one employee under age 30 come from?", "predicted": "SELECT employee.City FROM employee WHERE employee.Age < 30 GROUP BY employee.City HAVING Count(*) > 30", "gold": "SELECT city FROM employee WHERE age < 30 GROUP BY city HAVING count(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the cities that have more than one employee under age 30.", "predicted": "SELECT employee.City FROM employee WHERE employee.Age < 30 GROUP BY employee.City HAVING Count(*) > 30", "gold": "SELECT city FROM employee WHERE age < 30 GROUP BY city HAVING count(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the number of shops in each location.", "predicted": "SELECT shop.Location, Count(*) FROM shop GROUP BY shop.Location", "gold": "SELECT count(*) , LOCATION FROM shop GROUP BY LOCATION", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many shops are there in each location?", "predicted": "SELECT shop.Location, Count(*) FROM shop GROUP BY shop.Location", "gold": "SELECT count(*) , LOCATION FROM shop GROUP BY LOCATION", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the manager name and district of the shop whose number of products is the largest.", "predicted": "SELECT shop.Manager_name, shop.District FROM shop GROUP BY shop.Number_products ORDER BY Sum(shop.Number_products) Desc LIMIT 1", "gold": "SELECT manager_name , district FROM shop ORDER BY number_products DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 4}}}, {"question": "What are the manager name and district of the shop that sells the largest number of products?", "predicted": "SELECT shop.Manager_name, shop.District FROM shop GROUP BY shop.Manager_name ORDER BY Sum(shop.Number_products) Desc LIMIT 1", "gold": "SELECT manager_name , district FROM shop ORDER BY number_products DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 4}}}, {"question": "find the minimum and maximum number of products of all stores.", "predicted": "SELECT Min(shop.Number_products), Max(shop.Number_products) FROM shop", "gold": "SELECT min(Number_products) , max(Number_products) FROM shop", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the minimum and maximum number of products across all the shops?", "predicted": "SELECT Min(shop.Number_products), Max(shop.Number_products) FROM shop", "gold": "SELECT min(Number_products) , max(Number_products) FROM shop", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Return the name, location and district of all shops in descending order of number of products.", "predicted": "SELECT shop.Name, shop.Location, shop.District FROM shop ORDER BY shop.Number_products Desc", "gold": "SELECT name , LOCATION , district FROM shop ORDER BY number_products DESC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Sort all the shops by number products in descending order, and return the name, location and district of each shop.", "predicted": "SELECT shop.Name, shop.Location, shop.District FROM shop ORDER BY shop.Number_products Desc", "gold": "SELECT name , LOCATION , district FROM shop ORDER BY number_products DESC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the names of stores whose number products is more than the average number of products.", "predicted": "SELECT shop.Name FROM shop WHERE shop.Number_products > (SELECT Avg(shop.Number_products) FROM shop)", "gold": "SELECT name FROM shop WHERE number_products > (SELECT avg(number_products) FROM shop)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which shops' number products is above the average? Give me the shop names.", "predicted": "SELECT shop.Name FROM shop WHERE shop.Number_products > (SELECT Avg(shop.Number_products) FROM shop)", "gold": "SELECT name FROM shop WHERE number_products > (SELECT avg(number_products) FROM shop)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "find the name of employee who was awarded the most times in the evaluation.", "predicted": "SELECT employee.Name FROM employee JOIN evaluation ON employee.Employee_ID = evaluation.Employee_ID GROUP BY evaluation.Employee_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID GROUP BY t2.Employee_ID ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which employee received the most awards in evaluations? Give me the employee name.", "predicted": "SELECT employee.Name FROM employee JOIN evaluation ON employee.Employee_ID = evaluation.Employee_ID GROUP BY employee.Name ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID GROUP BY t2.Employee_ID ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the name of the employee who got the highest one time bonus.", "predicted": "SELECT employee.Name FROM employee JOIN evaluation ON employee.Employee_ID = evaluation.Employee_ID ORDER BY evaluation.Bonus Desc LIMIT 1", "gold": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID ORDER BY t2.bonus DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Which employee received the biggest bonus? Give me the employee name.", "predicted": "SELECT employee.Name FROM employee JOIN evaluation ON employee.Employee_ID = evaluation.Employee_ID ORDER BY evaluation.Bonus Desc LIMIT 1", "gold": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID ORDER BY t2.bonus DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the names of employees who never won any award in the evaluation.", "predicted": "SELECT employee.Name FROM employee WHERE employee.Employee_ID NOT IN (SELECT evaluation.Employee_ID FROM evaluation)", "gold": "SELECT name FROM employee WHERE Employee_ID NOT IN (SELECT Employee_ID FROM evaluation)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of the employees who never received any evaluation?", "predicted": "SELECT employee.Name FROM employee WHERE employee.Employee_ID NOT IN (SELECT evaluation.Employee_ID FROM evaluation)", "gold": "SELECT name FROM employee WHERE Employee_ID NOT IN (SELECT Employee_ID FROM evaluation)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the name of the shop that is hiring the largest number of employees?", "predicted": "SELECT shop.Name FROM shop JOIN hiring ON shop.Shop_ID = hiring.Shop_ID GROUP BY shop.Name ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t1.shop_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which shop has the most employees? Give me the shop name.", "predicted": "SELECT shop.Name FROM shop JOIN hiring ON shop.Shop_ID = hiring.Shop_ID GROUP BY shop.Name ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t1.shop_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the name of the shops that do not hire any employee.", "predicted": "SELECT shop.Name FROM shop WHERE shop.Shop_ID NOT IN (SELECT hiring.Shop_ID FROM hiring)", "gold": "SELECT name FROM shop WHERE shop_id NOT IN (SELECT shop_id FROM hiring)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Which shops run with no employees? Find the shop names", "predicted": "SELECT shop.Name FROM shop WHERE shop.Shop_ID NOT IN (SELECT hiring.Shop_ID FROM hiring)", "gold": "SELECT name FROM shop WHERE shop_id NOT IN (SELECT shop_id FROM hiring)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the number of employees hired in each shop; show the shop name as well.", "predicted": "SELECT shop.Name, Count(*) FROM employee JOIN shop JOIN hiring ON employee.Employee_ID = hiring.Employee_ID AND hiring.Shop_ID = shop.Shop_ID GROUP BY shop.Name", "gold": "SELECT count(*) , t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t2.name", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For each shop, return the number of employees working there and the name of the shop.", "predicted": "SELECT shop.Name, Count(*) FROM employee JOIN shop JOIN hiring ON employee.Employee_ID = hiring.Employee_ID AND hiring.Shop_ID = shop.Shop_ID GROUP BY shop.Name", "gold": "SELECT count(*) , t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t2.name", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is total bonus given in all evaluations?", "predicted": "SELECT Sum(evaluation.Bonus) FROM evaluation", "gold": "SELECT sum(bonus) FROM evaluation", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the total amount of bonus given in all the evaluations.", "predicted": "SELECT Sum(evaluation.Bonus) FROM evaluation", "gold": "SELECT sum(bonus) FROM evaluation", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Give me all the information about hiring.", "predicted": "SELECT * FROM hiring", "gold": "SELECT * FROM hiring", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is all the information about hiring?", "predicted": "SELECT * FROM hiring", "gold": "SELECT * FROM hiring", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Which district has both stores with less than 3000 products and stores with more than 10000 products?", "predicted": "SELECT shop.District FROM shop WHERE shop.Number_products < 3000 INTERSECT SELECT shop.District FROM shop WHERE shop.Number_products > 10000", "gold": "SELECT district FROM shop WHERE Number_products < 3000 INTERSECT SELECT district FROM shop WHERE Number_products > 10000", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the districts in which there are both shops selling less than 3000 products and shops selling more than 10000 products.", "predicted": "SELECT shop.District FROM shop WHERE shop.Number_products < 3000 INTERSECT SELECT shop.District FROM shop WHERE shop.Number_products > 10000", "gold": "SELECT district FROM shop WHERE Number_products < 3000 INTERSECT SELECT district FROM shop WHERE Number_products > 10000", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many different store locations are there?", "predicted": "SELECT Count(DISTINCT shop.Location) FROM shop", "gold": "SELECT count(DISTINCT LOCATION) FROM shop", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of distinct store locations.", "predicted": "SELECT Count(DISTINCT shop.Location) FROM shop", "gold": "SELECT count(DISTINCT LOCATION) FROM shop", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many documents do we have?", "predicted": "SELECT Count(*) FROM Documents", "gold": "SELECT count(*) FROM Documents", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of documents.", "predicted": "SELECT Count(*) FROM Documents", "gold": "SELECT count(*) FROM Documents", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List document IDs, document names, and document descriptions for all documents.", "predicted": "SELECT Documents.Document_ID, Documents.Document_Name, Documents.Document_Description FROM Documents", "gold": "SELECT document_id , document_name , document_description FROM Documents", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the ids, names, and descriptions for all documents?", "predicted": "SELECT Documents.Document_ID, Documents.Document_Name, Documents.Document_Description FROM Documents", "gold": "SELECT document_id , document_name , document_description FROM Documents", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the document name and template id for document with description with the letter 'w' in it?", "predicted": "SELECT Documents.Document_Name, Documents.Template_ID FROM Documents WHERE Documents.Document_Description LIKE \"%a%\"", "gold": "SELECT document_name , template_id FROM Documents WHERE Document_Description LIKE \"%w%\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Return the names and template ids for documents that contain the letter w in their description.", "predicted": "SELECT Documents.Document_Name, Documents.Template_ID FROM Documents WHERE Documents.Document_Description LIKE \"%a%\"", "gold": "SELECT document_name , template_id FROM Documents WHERE Document_Description LIKE \"%w%\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the document id, template id and description for document named \"Robbin CV\"?", "predicted": "SELECT Documents.Document_ID, Documents.Template_ID, Documents.Document_Description FROM Documents WHERE Documents.Document_Name = \"NoinCVCVCV\"", "gold": "SELECT document_id , template_id , Document_Description FROM Documents WHERE document_name = \"Robbin CV\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the document id, template id, and description for the document with the name Robbin CV.", "predicted": "SELECT Documents.Document_ID, Documents.Template_ID, Documents.Document_Description FROM Documents WHERE Documents.Document_Name = \"NoberCVCVCV\"", "gold": "SELECT document_id , template_id , Document_Description FROM Documents WHERE document_name = \"Robbin CV\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many different templates do all document use?", "predicted": "SELECT Count(*) FROM Templates", "gold": "SELECT count(DISTINCT template_id) FROM Documents", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of different templates used for documents.", "predicted": "SELECT Count(*) FROM Templates", "gold": "SELECT count(DISTINCT template_id) FROM Documents", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many documents are using the template with type code 'PPT'?", "predicted": "SELECT Count(*) FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID WHERE Templates.Template_Type_Code = \"PPT\"", "gold": "SELECT count(*) FROM Documents AS T1 JOIN Templates AS T2 ON T1.Template_ID = T2.Template_ID WHERE T2.Template_Type_Code = 'PPT'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of documents that use the PPT template type.", "predicted": "SELECT Count(*) FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID WHERE Templates.Template_Type_Code = \"PPT\"", "gold": "SELECT count(*) FROM Documents AS T1 JOIN Templates AS T2 ON T1.Template_ID = T2.Template_ID WHERE T2.Template_Type_Code = 'PPT'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show all template ids and number of documents using each template.", "predicted": "SELECT Documents.Template_ID, Count(*) FROM Documents GROUP BY Documents.Template_ID", "gold": "SELECT template_id , count(*) FROM Documents GROUP BY template_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are all different template ids used for documents, and how many times were each of them used?", "predicted": "SELECT Documents.Template_ID, Count(*) FROM Documents GROUP BY Documents.Template_ID", "gold": "SELECT template_id , count(*) FROM Documents GROUP BY template_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the id and type code for the template used by the most documents?", "predicted": "SELECT Templates.Template_ID, Templates.Template_Type_Code FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID GROUP BY Documents.Template_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.template_id , T2.Template_Type_Code FROM Documents AS T1 JOIN Templates AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Return the id and type code of the template that is used for the greatest number of documents.", "predicted": "SELECT Templates.Template_ID, Templates.Template_Type_Code FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID GROUP BY Templates.Template_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.template_id , T2.Template_Type_Code FROM Documents AS T1 JOIN Templates AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show ids for all templates that are used by more than one document.", "predicted": "SELECT Documents.Template_ID FROM Documents GROUP BY Documents.Template_ID HAVING Count(*) > 1", "gold": "SELECT template_id FROM Documents GROUP BY template_id HAVING count(*) > 1", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the template ids of any templates used in more than a single document?", "predicted": "SELECT Documents.Template_ID FROM Documents GROUP BY Documents.Template_ID HAVING Count(*) > 1", "gold": "SELECT template_id FROM Documents GROUP BY template_id HAVING count(*) > 1", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show ids for all templates not used by any document.", "predicted": "SELECT Templates.Template_ID FROM Templates EXCEPT SELECT Documents.Template_ID FROM Documents", "gold": "SELECT template_id FROM Templates EXCEPT SELECT template_id FROM Documents", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the ids for templates that are not used in any documents?", "predicted": "SELECT Templates.Template_ID FROM Templates EXCEPT SELECT Documents.Template_ID FROM Documents", "gold": "SELECT template_id FROM Templates EXCEPT SELECT template_id FROM Documents", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many templates do we have?", "predicted": "SELECT Count(*) FROM Templates", "gold": "SELECT count(*) FROM Templates", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of templates.", "predicted": "SELECT Count(*) FROM Templates", "gold": "SELECT count(*) FROM Templates", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Show template ids, version numbers, and template type codes for all templates.", "predicted": "SELECT Templates.Template_ID, Templates.Version_Number, Templates.Template_Type_Code FROM Templates", "gold": "SELECT template_id , version_number , template_type_code FROM Templates", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the ids, version numbers, and type codes for each template?", "predicted": "SELECT Templates.Template_ID, Templates.Version_Number, Templates.Template_Type_Code FROM Templates", "gold": "SELECT template_id , version_number , template_type_code FROM Templates", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Show all distinct template type codes for all templates.", "predicted": "SELECT DISTINCT Templates.Template_Type_Code FROM Templates", "gold": "SELECT DISTINCT template_type_code FROM Templates", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the different template type codes?", "predicted": "SELECT DISTINCT Ref_Template_Types.Template_Type_Code FROM Ref_Template_Types", "gold": "SELECT DISTINCT template_type_code FROM Templates", "predicted_parse_error": false, "hardness": "easy", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the ids of templates with template type code PP or PPT?", "predicted": "SELECT Templates.Template_ID FROM Templates WHERE Templates.Template_Type_Code = \"F\" OR Templates.Template_Type_Code = \"PPT\"", "gold": "SELECT template_id FROM Templates WHERE template_type_code = \"PP\" OR template_type_code = \"PPT\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Return the ids of templates that have the code PP or PPT.", "predicted": "SELECT Templates.Template_ID FROM Templates WHERE Templates.Template_Type_Code = \"F\" OR Templates.Template_Type_Code = \"PPT\"", "gold": "SELECT template_id FROM Templates WHERE template_type_code = \"PP\" OR template_type_code = \"PPT\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many templates have template type code CV?", "predicted": "SELECT Count(*) FROM Templates WHERE Templates.Template_Type_Code = \"CV\"", "gold": "SELECT count(*) FROM Templates WHERE template_type_code = \"CV\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of templates of the type CV.", "predicted": "SELECT Count(*) FROM Templates WHERE Templates.Template_Type_Code = \"CV\"", "gold": "SELECT count(*) FROM Templates WHERE template_type_code = \"CV\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the version number and template type code for the template with version number later than 5?", "predicted": "SELECT Templates.Version_Number, Templates.Template_Type_Code FROM Templates WHERE Templates.Version_Number > 5", "gold": "SELECT version_number , template_type_code FROM Templates WHERE version_number > 5", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the version numbers and template type codes of templates with a version number greater than 5.", "predicted": "SELECT Templates.Template_Type_Code, Templates.Template_Type_Code FROM Templates WHERE Templates.Version_Number > 5", "gold": "SELECT version_number , template_type_code FROM Templates WHERE version_number > 5", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show all template type codes and number of templates for each.", "predicted": "SELECT Templates.Template_Type_Code, Count(*) FROM Templates GROUP BY Templates.Template_Type_Code", "gold": "SELECT template_type_code , count(*) FROM Templates GROUP BY template_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the different template type codes, and how many templates correspond to each?", "predicted": "SELECT Templates.Template_Type_Code, Count(*) FROM Templates GROUP BY Templates.Template_Type_Code", "gold": "SELECT template_type_code , count(*) FROM Templates GROUP BY template_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which template type code has most number of templates?", "predicted": "SELECT Templates.Template_Type_Code FROM Templates GROUP BY Templates.Template_Type_Code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT template_type_code FROM Templates GROUP BY template_type_code ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Return the type code of the template type that the most templates belong to.", "predicted": "SELECT Templates.Template_Type_Code FROM Templates GROUP BY Templates.Template_Type_Code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT template_type_code FROM Templates GROUP BY template_type_code ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show all template type codes with less than three templates.", "predicted": "SELECT Templates.Template_Type_Code FROM Templates GROUP BY Templates.Template_Type_Code HAVING Count(*) < 3", "gold": "SELECT template_type_code FROM Templates GROUP BY template_type_code HAVING count(*) < 3", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the codes of template types that have fewer than 3 templates?", "predicted": "SELECT Templates.Template_Type_Code FROM Templates GROUP BY Templates.Template_Type_Code HAVING Count(*) < 3", "gold": "SELECT template_type_code FROM Templates GROUP BY template_type_code HAVING count(*) < 3", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What the smallest version number and its template type code?", "predicted": "SELECT Templates.Version_Number, Templates.Template_Type_Code FROM Templates", "gold": "SELECT min(Version_Number) , template_type_code FROM Templates", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Return the lowest version number, along with its corresponding template type code.", "predicted": "SELECT Templates.Version_Number, Templates.Template_Type_Code FROM Templates ORDER BY Templates.Version_Number Asc LIMIT 1", "gold": "SELECT min(Version_Number) , template_type_code FROM Templates", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 3}}}, {"question": "What is the template type code of the template used by document with the name \"Data base\"?", "predicted": "SELECT Templates.Template_Type_Code FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID WHERE Documents.Document_Name = \"Gras\"", "gold": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T2.document_name = \"Data base\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the template type code of the template that is used by a document named Data base.", "predicted": "SELECT Templates.Template_Type_Code FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID WHERE Documents.Document_Name = \"Paperbase\"", "gold": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T2.document_name = \"Data base\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show all document names using templates with template type code BK.", "predicted": "SELECT Documents.Document_Name FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID WHERE Templates.Template_Type_Code = \"BK\"", "gold": "SELECT T2.document_name FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T1.template_type_code = \"BK\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of documents that use templates with the code BK?", "predicted": "SELECT Documents.Document_Name FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID WHERE Templates.Template_Type_Code = \"BK\"", "gold": "SELECT T2.document_name FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T1.template_type_code = \"BK\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show all template type codes and the number of documents using each type.", "predicted": "SELECT Templates.Template_Type_Code, Count(*) FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID GROUP BY Templates.Template_Type_Code", "gold": "SELECT T1.template_type_code , count(*) FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the different template type codes, and how many documents use each type?", "predicted": "SELECT Templates.Template_Type_Code, Count(*) FROM Templates GROUP BY Templates.Template_Type_Code", "gold": "SELECT T1.template_type_code , count(*) FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which template type code is used by most number of documents?", "predicted": "SELECT Templates.Template_Type_Code FROM Templates JOIN Documents ON Templates.Template_ID = Documents.Template_ID GROUP BY Templates.Template_Type_Code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Return the code of the template type that is most commonly used in documents.", "predicted": "SELECT Templates.Template_Type_Code FROM Templates GROUP BY Templates.Template_Type_Code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show all template type codes that are not used by any document.", "predicted": "SELECT Ref_Template_Types.Template_Type_Code FROM Ref_Template_Types EXCEPT SELECT Templates.Template_Type_Code FROM Templates", "gold": "SELECT template_type_code FROM Templates EXCEPT SELECT template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the codes of template types that are not used for any document?", "predicted": "SELECT Ref_Template_Types.Template_Type_Code FROM Ref_Template_Types EXCEPT SELECT Templates.Template_Type_Code FROM Templates", "gold": "SELECT template_type_code FROM Templates EXCEPT SELECT template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show all template type codes and descriptions.", "predicted": "SELECT Ref_Template_Types.Template_Type_Code, Ref_Template_Types.Template_Type_Description FROM Ref_Template_Types", "gold": "SELECT template_type_code , template_type_description FROM Ref_template_types", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the type codes and descriptions for all template types?", "predicted": "SELECT Ref_Template_Types.Template_Type_Code, Ref_Template_Types.Template_Type_Description FROM Ref_Template_Types", "gold": "SELECT template_type_code , template_type_description FROM Ref_template_types", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the template type descriptions for template type code \"AD\".", "predicted": "SELECT Ref_Template_Types.Template_Type_Description FROM Ref_Template_Types WHERE Ref_Template_Types.Template_Type_Code = \"CV\"", "gold": "SELECT template_type_description FROM Ref_template_types WHERE template_type_code = \"AD\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the template type description of the template type with the code AD.", "predicted": "SELECT Ref_Template_Types.Template_Type_Description FROM Ref_Template_Types WHERE Ref_Template_Types.Template_Type_Code = \"BK\"", "gold": "SELECT template_type_description FROM Ref_template_types WHERE template_type_code = \"AD\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the template type code for template type description \"Book\".", "predicted": "SELECT Ref_Template_Types.Template_Type_Code FROM Ref_Template_Types WHERE Ref_Template_Types.Template_Type_Description = \"Paper\"", "gold": "SELECT template_type_code FROM Ref_template_types WHERE template_type_description = \"Book\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the type code of the template type with the description \"Book\".", "predicted": "SELECT Ref_Template_Types.Template_Type_Code FROM Ref_Template_Types WHERE Ref_Template_Types.Template_Type_Description = \"Paper\"", "gold": "SELECT template_type_code FROM Ref_template_types WHERE template_type_description = \"Book\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the distinct template type descriptions for the templates ever used by any document?", "predicted": "SELECT DISTINCT Ref_Template_Types.Template_Type_Description FROM Ref_Template_Types JOIN Templates ON Ref_Template_Types.Template_Type_Code = Templates.Template_Type_Code", "gold": "SELECT DISTINCT T1.template_type_description FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code JOIN Documents AS T3 ON T2.Template_ID = T3.template_ID", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Return the different descriptions for templates that have been used in a document.", "predicted": "SELECT DISTINCT Ref_Template_Types.Template_Type_Description FROM Ref_Template_Types JOIN Templates ON Ref_Template_Types.Template_Type_Code = Templates.Template_Type_Code JOIN Documents ON Templates.Template_ID = Documents.Template_ID", "gold": "SELECT DISTINCT T1.template_type_description FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code JOIN Documents AS T3 ON T2.Template_ID = T3.template_ID", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the template ids with template type description \"Presentation\".", "predicted": "SELECT Templates.Template_ID FROM Ref_Template_Types JOIN Templates ON Ref_Template_Types.Template_Type_Code = Templates.Template_Type_Code WHERE Ref_Template_Types.Template_Type_Description = \"Graphition\"", "gold": "SELECT T2.template_id FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code WHERE T1.template_type_description = \"Presentation\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the ids corresponding to templates with the description 'Presentation'.", "predicted": "SELECT Templates.Template_ID FROM Ref_Template_Types JOIN Templates ON Ref_Template_Types.Template_Type_Code = Templates.Template_Type_Code WHERE Ref_Template_Types.Template_Type_Description = \"Honotion\"", "gold": "SELECT T2.template_id FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code WHERE T1.template_type_description = \"Presentation\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many paragraphs in total?", "predicted": "SELECT Count(*) FROM Paragraphs", "gold": "SELECT count(*) FROM Paragraphs", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of paragraphs.", "predicted": "SELECT Count(*) FROM Paragraphs", "gold": "SELECT count(*) FROM Paragraphs", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many paragraphs for the document with name 'Summer Show'?", "predicted": "SELECT Count(*) FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID WHERE Documents.Document_Name = \"NYShowShow\"", "gold": "SELECT count(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_ID = T2.document_ID WHERE T2.document_name = 'Summer Show'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of paragraphs in the document named 'Summer Show'.", "predicted": "SELECT Count(*) FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID WHERE Documents.Document_Name = \"NYShowShow\"", "gold": "SELECT count(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_ID = T2.document_ID WHERE T2.document_name = 'Summer Show'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show paragraph details for paragraph with text 'Korea ' .", "predicted": "SELECT Paragraphs.Other_Details FROM Paragraphs WHERE Paragraphs.Paragraph_Text = \"Go\"", "gold": "select other_details from paragraphs where paragraph_text like 'korea'", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}}}, {"question": "What are the details for the paragraph that includes the text 'Korea ' ?", "predicted": "SELECT Paragraphs.Other_Details FROM Paragraphs WHERE Paragraphs.Paragraph_Text LIKE \"%Ke%\"", "gold": "select other_details from paragraphs where paragraph_text like 'korea'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show all paragraph ids and texts for the document with name 'Welcome to NY'.", "predicted": "SELECT Paragraphs.Paragraph_ID, Paragraphs.Paragraph_Text FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID WHERE Documents.Document_Name = \"DemototoNYto\"", "gold": "SELECT T1.paragraph_id , T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.Document_Name = 'Welcome to NY'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the ids and texts of paragraphs in the document titled 'Welcome to NY'?", "predicted": "SELECT Paragraphs.Paragraph_ID, Paragraphs.Paragraph_Text FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID WHERE Documents.Document_Name = \"Boottoto\"", "gold": "SELECT T1.paragraph_id , T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.Document_Name = 'Welcome to NY'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show all paragraph texts for the document \"Customer reviews\".", "predicted": "SELECT Paragraphs.Paragraph_Text FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID WHERE Documents.Document_Name = \"Alareviewsreviewsreviews\"", "gold": "SELECT T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = \"Customer reviews\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the paragraph texts for the document with the name 'Customer reviews'?", "predicted": "SELECT Paragraphs.Paragraph_Text FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID WHERE Documents.Document_Name = \"Gotareviewsreviews\"", "gold": "SELECT T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = \"Customer reviews\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show all document ids and the number of paragraphs in each document. Order by document id.", "predicted": "SELECT Paragraphs.Document_ID, Count(*) FROM Paragraphs GROUP BY Paragraphs.Document_ID ORDER BY Count(*) Asc", "gold": "SELECT document_id , count(*) FROM Paragraphs GROUP BY document_id ORDER BY document_id", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Return the different document ids along with the number of paragraphs corresponding to each, ordered by id.", "predicted": "SELECT Paragraphs.Document_ID, Count(*) FROM Paragraphs GROUP BY Paragraphs.Document_ID ORDER BY Count(*) Asc", "gold": "SELECT document_id , count(*) FROM Paragraphs GROUP BY document_id ORDER BY document_id", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Show all document ids, names and the number of paragraphs in each document.", "predicted": "SELECT Documents.Document_ID, Documents.Document_Name, Count(*) FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID GROUP BY Documents.Document_ID", "gold": "SELECT T1.document_id , T2.document_name , count(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the ids and names of each document, as well as the number of paragraphs in each?", "predicted": "SELECT Documents.Document_ID, Documents.Document_Name, Count(*) FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID GROUP BY Documents.Document_ID", "gold": "SELECT T1.document_id , T2.document_name , count(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List all document ids with at least two paragraphs.", "predicted": "SELECT Paragraphs.Document_ID FROM Paragraphs GROUP BY Paragraphs.Document_ID HAVING Count(*) >= 2", "gold": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the ids of documents that have 2 or more paragraphs?", "predicted": "SELECT Paragraphs.Document_ID FROM Paragraphs GROUP BY Paragraphs.Document_ID HAVING Count(*) >= 2", "gold": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the document id and name with greatest number of paragraphs?", "predicted": "SELECT Documents.Document_ID, Documents.Document_Name FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID GROUP BY Documents.Document_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.document_id , T2.document_name FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Return the id and name of the document with the most paragraphs.", "predicted": "SELECT Documents.Document_ID, Documents.Document_Name FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID GROUP BY Documents.Document_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.document_id , T2.document_name FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the document id with least number of paragraphs?", "predicted": "SELECT Paragraphs.Document_ID FROM Paragraphs GROUP BY Paragraphs.Document_ID ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT document_id FROM Paragraphs GROUP BY document_id ORDER BY count(*) ASC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Return the id of the document with the fewest paragraphs.", "predicted": "SELECT Paragraphs.Document_ID FROM Paragraphs GROUP BY Paragraphs.Document_ID ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT document_id FROM Paragraphs GROUP BY document_id ORDER BY count(*) ASC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the document id with 1 to 2 paragraphs?", "predicted": "SELECT Paragraphs.Document_ID FROM Paragraphs GROUP BY Paragraphs.Document_ID HAVING Count(*) BETWEEN 1 AND 2", "gold": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING count(*) BETWEEN 1 AND 2", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Give the ids of documents that have between one and two paragraphs.", "predicted": "SELECT Paragraphs.Document_ID FROM Paragraphs GROUP BY Paragraphs.Document_ID HAVING Count(*) BETWEEN 1 AND 2", "gold": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING count(*) BETWEEN 1 AND 2", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the document id with paragraph text 'Brazil' and 'Ireland'.", "predicted": "SELECT Paragraphs.Document_ID FROM Paragraphs WHERE Paragraphs.Paragraph_Text = \"Italy\" INTERSECT SELECT Paragraphs.Document_ID FROM Paragraphs WHERE Paragraphs.Paragraph_Text = \"Ps\"", "gold": "SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Brazil' INTERSECT SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Ireland'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the ids of documents that contain the paragraph text 'Brazil' and 'Ireland'?", "predicted": "SELECT Documents.Document_ID FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID WHERE Paragraphs.Paragraph_Text = \"Italy\" INTERSECT SELECT Documents.Document_ID FROM Documents JOIN Paragraphs ON Documents.Document_ID = Paragraphs.Document_ID WHERE Paragraphs.Paragraph_Text = \"Night\"", "gold": "SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Brazil' INTERSECT SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Ireland'", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many teachers are there?", "predicted": "SELECT Count(*) FROM teacher", "gold": "SELECT count(*) FROM teacher", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the total count of teachers?", "predicted": "SELECT Count(*) FROM teacher", "gold": "SELECT count(*) FROM teacher", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the names of teachers in ascending order of age.", "predicted": "SELECT teacher.Name FROM teacher ORDER BY teacher.Age Asc", "gold": "SELECT Name FROM teacher ORDER BY Age ASC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of the teachers ordered by ascending age?", "predicted": "SELECT teacher.Name FROM teacher ORDER BY teacher.Age Asc", "gold": "SELECT Name FROM teacher ORDER BY Age ASC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the age and hometown of teachers?", "predicted": "SELECT teacher.Age, teacher.Hometown FROM teacher", "gold": "SELECT Age , Hometown FROM teacher", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the age and hometown of every teacher?", "predicted": "SELECT teacher.Age, teacher.Hometown FROM teacher", "gold": "SELECT Age , Hometown FROM teacher", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the name of teachers whose hometown is not `` Little Lever Urban District '' .", "predicted": "SELECT teacher.Name FROM teacher WHERE teacher.Hometown != \"TonyLeverLeverDistrictDistrict\"", "gold": "select name from teacher where hometown != \"little lever urban district\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the teachers whose hometown is not `` Little Lever Urban District '' ?", "predicted": "SELECT teacher.Name FROM teacher WHERE teacher.Hometown != \"AberLeverLeverUrbanDistrictDistrict\"", "gold": "select name from teacher where hometown != \"little lever urban district\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the name of teachers aged either 32 or 33?", "predicted": "SELECT teacher.Name FROM teacher WHERE teacher.Age = 32 OR teacher.Age = 32", "gold": "SELECT Name FROM teacher WHERE Age = 32 OR Age = 33", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of the teachers who are aged either 32 or 33?", "predicted": "SELECT teacher.Name FROM teacher WHERE teacher.Age = 32 OR teacher.Age = 32", "gold": "SELECT Name FROM teacher WHERE Age = 32 OR Age = 33", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the hometown of the youngest teacher?", "predicted": "SELECT teacher.Hometown FROM teacher ORDER BY teacher.Age Asc LIMIT 1", "gold": "SELECT Hometown FROM teacher ORDER BY Age ASC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Where is the youngest teacher from?", "predicted": "SELECT teacher.Hometown FROM teacher ORDER BY teacher.Age Asc LIMIT 1", "gold": "SELECT Hometown FROM teacher ORDER BY Age ASC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Show different hometown of teachers and the number of teachers from each hometown.", "predicted": "SELECT teacher.Hometown, Count(*) FROM teacher GROUP BY teacher.Hometown", "gold": "SELECT Hometown , COUNT(*) FROM teacher GROUP BY Hometown", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For each hometown, how many teachers are there?", "predicted": "SELECT teacher.Hometown, Count(*) FROM teacher GROUP BY teacher.Hometown", "gold": "SELECT Hometown , COUNT(*) FROM teacher GROUP BY Hometown", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the most common hometown of teachers.", "predicted": "SELECT teacher.Hometown FROM teacher GROUP BY teacher.Hometown ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Hometown FROM teacher GROUP BY Hometown ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the most commmon hometowns for teachers?", "predicted": "SELECT teacher.Hometown FROM teacher GROUP BY teacher.Hometown ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Hometown FROM teacher GROUP BY Hometown ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show the hometowns shared by at least two teachers.", "predicted": "SELECT teacher.Hometown FROM teacher GROUP BY teacher.Hometown HAVING Count(*) >= 2", "gold": "SELECT Hometown FROM teacher GROUP BY Hometown HAVING COUNT(*) >= 2", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the towns from which at least two teachers come from?", "predicted": "SELECT teacher.Hometown FROM teacher GROUP BY teacher.Hometown HAVING Count(*) >= 2", "gold": "SELECT Hometown FROM teacher GROUP BY Hometown HAVING COUNT(*) >= 2", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show names of teachers and the courses they are arranged to teach.", "predicted": "SELECT teacher.Name, course.Course FROM course JOIN teacher JOIN course_arrange ON course.Course_ID = course_arrange.Course_ID AND course_arrange.Teacher_ID = teacher.Teacher_ID", "gold": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the name of each teacher and what course they teach?", "predicted": "SELECT teacher.Name, course.Course FROM course JOIN teacher JOIN course_arrange ON course.Course_ID = course_arrange.Course_ID AND course_arrange.Teacher_ID = teacher.Teacher_ID", "gold": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Show names of teachers and the courses they are arranged to teach in ascending alphabetical order of the teacher's name.", "predicted": "SELECT teacher.Name, course.Course FROM course JOIN teacher JOIN course_arrange ON course.Course_ID = course_arrange.Course_ID AND course_arrange.Teacher_ID = teacher.Teacher_ID ORDER BY teacher.Name Asc", "gold": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of the teachers and the courses they teach in ascending alphabetical order by the name of the teacher?", "predicted": "SELECT teacher.Name, course.Course FROM course JOIN teacher JOIN course_arrange ON course.Course_ID = course_arrange.Course_ID AND course_arrange.Teacher_ID = teacher.Teacher_ID ORDER BY teacher.Name Asc", "gold": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the name of the teacher for the math course.", "predicted": "SELECT teacher.Name FROM course JOIN teacher JOIN course_arrange ON course.Course_ID = course_arrange.Course_ID AND course_arrange.Teacher_ID = teacher.Teacher_ID WHERE course.Course = \"\"", "gold": "SELECT T3.Name FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID WHERE T2.Course = \"Math\"", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the people who teach math courses?", "predicted": "SELECT teacher.Name FROM course JOIN teacher JOIN course_arrange ON course.Course_ID = course_arrange.Course_ID AND course_arrange.Teacher_ID = teacher.Teacher_ID WHERE course.Course = \"\"", "gold": "SELECT T3.Name FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID WHERE T2.Course = \"Math\"", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show names of teachers and the number of courses they teach.", "predicted": "SELECT teacher.Name, Count(*) FROM teacher JOIN course_arrange ON teacher.Teacher_ID = course_arrange.Teacher_ID GROUP BY teacher.Name", "gold": "SELECT T2.Name , COUNT(*) FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the teachers and how many courses do they teach?", "predicted": "SELECT teacher.Name, Count(*) FROM teacher JOIN course_arrange ON teacher.Teacher_ID = course_arrange.Teacher_ID GROUP BY teacher.Name", "gold": "SELECT T2.Name , COUNT(*) FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show names of teachers that teach at least two courses.", "predicted": "SELECT teacher.Name FROM teacher JOIN course_arrange ON teacher.Teacher_ID = course_arrange.Teacher_ID GROUP BY teacher.Teacher_ID HAVING Count(*) >= 2", "gold": "SELECT T2.Name FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name HAVING COUNT(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of the teachers who teach at least two courses?", "predicted": "SELECT teacher.Name FROM teacher JOIN course_arrange ON teacher.Teacher_ID = course_arrange.Teacher_ID GROUP BY teacher.Teacher_ID HAVING Count(*) >= 2", "gold": "SELECT T2.Name FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name HAVING COUNT(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the names of teachers who have not been arranged to teach courses.", "predicted": "SELECT teacher.Name FROM teacher WHERE teacher.Teacher_ID NOT IN (SELECT course_arrange.Teacher_ID FROM course_arrange)", "gold": "SELECT Name FROM teacher WHERE Teacher_id NOT IN (SELECT Teacher_id FROM course_arrange)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of the teachers whose courses have not been arranged?", "predicted": "SELECT teacher.Name FROM teacher WHERE teacher.Teacher_ID NOT IN (SELECT course_arrange.Teacher_ID FROM course_arrange)", "gold": "SELECT Name FROM teacher WHERE Teacher_id NOT IN (SELECT Teacher_id FROM course_arrange)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many visitors below age 30 are there?", "predicted": "SELECT Count(*) FROM visitor WHERE visitor.Age < 30", "gold": "SELECT count(*) FROM visitor WHERE age < 30", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the names of the visitors whose membership level is higher than 4, and order the results by the level from high to low.", "predicted": "SELECT visitor.Name FROM visitor WHERE visitor.Level_of_membership > 4 ORDER BY visitor.Name Asc", "gold": "SELECT name FROM visitor WHERE Level_of_membership > 4 ORDER BY Level_of_membership DESC", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}}}, {"question": "What is the average age of the visitors whose membership level is not higher than 4?", "predicted": "SELECT Avg(visitor.Age) FROM visitor WHERE visitor.Level_of_membership != 4", "gold": "SELECT avg(age) FROM visitor WHERE Level_of_membership <= 4", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the name and membership level of the visitors whose membership level is higher than 4, and sort by their age from old to young.", "predicted": "SELECT visitor.Name, visitor.Level_of_membership FROM visitor WHERE visitor.Level_of_membership > 4 ORDER BY visitor.Level_of_membership Asc", "gold": "SELECT name , Level_of_membership FROM visitor WHERE Level_of_membership > 4 ORDER BY age DESC", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}}}, {"question": "Find the id and name of the museum that has the most staff members?", "predicted": "SELECT museum.Museum_ID, museum.Name FROM museum ORDER BY museum.Num_of_Staff Desc LIMIT 1", "gold": "SELECT museum_id , name FROM museum ORDER BY num_of_staff DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the average number of staff working for the museums that were open before 2009.", "predicted": "SELECT Avg(museum.Num_of_Staff) FROM museum WHERE museum.Open_Year < 2009", "gold": "SELECT avg(num_of_staff) FROM museum WHERE open_year < 2009", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the opening year and staff number of the museum named Plaza Museum?", "predicted": "SELECT museum.Open_Year, museum.Num_of_Staff FROM museum WHERE museum.Name = \"DinMuseumMuseum\"", "gold": "SELECT Num_of_Staff , Open_Year FROM museum WHERE name = 'Plaza Museum'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "find the names of museums which have more staff than the minimum staff number of all museums opened after 2010.", "predicted": "SELECT museum.Name FROM museum WHERE museum.Num_of_Staff > (SELECT Max(museum.Num_of_Staff) FROM museum WHERE museum.Open_Year = 2010)", "gold": "SELECT name FROM museum WHERE num_of_staff > (SELECT min(num_of_staff) FROM museum WHERE open_year > 2010)", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "find the id, name and age for visitors who visited some museums more than once.", "predicted": "SELECT visitor.ID, visitor.Name, visitor.Age FROM visitor JOIN visit ON visitor.ID = visit.visitor_ID GROUP BY visitor.ID HAVING Count(*) > 1", "gold": "SELECT t1.id , t1.name , t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id GROUP BY t1.id HAVING count(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the id, name and membership level of visitors who have spent the largest amount of money in total in all museum tickets?", "predicted": "SELECT visitor.ID, visitor.Name, visitor.Level_of_membership FROM visitor JOIN visit ON visitor.ID = visit.visitor_ID GROUP BY visitor.ID ORDER BY Sum(visit.Total_spent) Desc LIMIT 1", "gold": "SELECT t2.visitor_id , t1.name , t1.Level_of_membership FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id GROUP BY t2.visitor_id ORDER BY sum(t2.Total_spent) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What are the id and name of the museum visited most times?", "predicted": "SELECT visit.Museum_ID, museum.Name FROM museum JOIN visit ON museum.Museum_ID = visit.Museum_ID GROUP BY visit.Museum_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT t2.Museum_ID , t1.name FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID GROUP BY t2.Museum_ID ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the name of the museum that had no visitor yet?", "predicted": "SELECT museum.Name FROM museum WHERE museum.Museum_ID NOT IN (SELECT visit.Museum_ID FROM visit)", "gold": "SELECT name FROM museum WHERE Museum_ID NOT IN (SELECT museum_id FROM visit)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the name and age of the visitor who bought the most tickets at once.", "predicted": "SELECT visitor.Name, visitor.Age FROM visitor JOIN visit ON visitor.ID = visit.visitor_ID GROUP BY visitor.ID ORDER BY Sum(visit.Num_of_Ticket) Desc LIMIT 1", "gold": "SELECT t1.name , t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id ORDER BY t2.num_of_ticket DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 4}}}, {"question": "What are the average and maximum number of tickets bought in all visits?", "predicted": "SELECT Avg(visit.Num_of_Ticket), Max(visit.Num_of_Ticket) FROM visit", "gold": "SELECT avg(num_of_ticket) , max(num_of_ticket) FROM visit", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the total ticket expense of the visitors whose membership level is 1?", "predicted": "SELECT Sum(visit.Total_spent) FROM visitor JOIN visit ON visitor.ID = visit.visitor_ID WHERE visitor.Level_of_membership = 1", "gold": "SELECT sum(t2.Total_spent) FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id WHERE t1.Level_of_membership = 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the name of the visitor who visited both a museum opened before 2009 and a museum opened after 2011?", "predicted": "SELECT visitor.Name FROM museum JOIN visitor JOIN visit ON museum.Museum_ID = visit.Museum_ID AND visit.visitor_ID = visitor.ID WHERE museum.Open_Year = 2009 INTERSECT SELECT visitor.Name FROM visitor JOIN visit ON visitor.ID = visit.visitor_ID JOIN museum ON visit.Museum_ID = museum.Museum_ID WHERE museum.Open_Year > 2011", "gold": "SELECT t1.name FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id JOIN museum AS t3 ON t3.Museum_ID = t2.Museum_ID WHERE t3.open_year < 2009 INTERSECT SELECT t1.name FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id JOIN museum AS t3 ON t3.Museum_ID = t2.Museum_ID WHERE t3.open_year > 2011", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the number of visitors who did not visit any museum opened after 2010.", "predicted": "SELECT Count(*) FROM visit WHERE visit.Museum_ID NOT IN (SELECT museum.Museum_ID FROM museum WHERE museum.Open_Year > 2010)", "gold": "SELECT count(*) FROM visitor WHERE id NOT IN (SELECT t2.visitor_id FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID WHERE t1.open_year > 2010)", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many museums were opened after 2013 or before 2008?", "predicted": "SELECT Count(*) FROM museum WHERE museum.Open_Year > 300 OR museum.Open_Year < 8", "gold": "SELECT count(*) FROM museum WHERE open_year > 2013 OR open_year < 2008", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the total number of players.", "predicted": "SELECT Count(*) FROM players", "gold": "SELECT count(*) FROM players", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many players are there?", "predicted": "SELECT Count(*) FROM players", "gold": "SELECT count(*) FROM players", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the total number of matches.", "predicted": "SELECT Count(*) FROM matches", "gold": "SELECT count(*) FROM matches", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of matches.", "predicted": "SELECT Count(*) FROM matches", "gold": "SELECT count(*) FROM matches", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the first name and birth date of all players from the country with code USA.", "predicted": "SELECT players.first_name, players.birth_date FROM players WHERE players.country_code = \"United\"", "gold": "SELECT first_name , birth_date FROM players WHERE country_code = 'USA'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the first names and birth dates of players from the USA?", "predicted": "SELECT players.first_name, players.birth_date FROM players WHERE players.country_code = \"United\"", "gold": "SELECT first_name , birth_date FROM players WHERE country_code = 'USA'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the average age of losers and winners of all matches.", "predicted": "SELECT Avg(matches.loser_age) FROM matches INTERSECT SELECT Avg(matches.winner_age) FROM matches", "gold": "SELECT avg(loser_age) , avg(winner_age) FROM matches", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}}}, {"question": "What are the average ages of losers and winners across matches?", "predicted": "SELECT Avg(matches.loser_age) FROM matches INTERSECT SELECT Avg(matches.winner_age) FROM matches", "gold": "SELECT avg(loser_age) , avg(winner_age) FROM matches", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}}}, {"question": "Find the average rank of winners in all matches.", "predicted": "SELECT Avg(matches.winner_rank) FROM matches", "gold": "SELECT avg(winner_rank) FROM matches", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the average rank for winners in all matches?", "predicted": "SELECT Avg(matches.winner_rank) FROM matches", "gold": "SELECT avg(winner_rank) FROM matches", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the highest rank of losers in all matches.", "predicted": "SELECT matches.loser_rank FROM matches", "gold": "SELECT min(loser_rank) FROM matches", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the best rank of losers across all matches?", "predicted": "SELECT matches.loser_rank FROM matches ORDER BY matches.loser_rank Desc LIMIT 1", "gold": "SELECT min(loser_rank) FROM matches", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 3}}}, {"question": "find the number of distinct country codes of all players.", "predicted": "SELECT Count(DISTINCT players.country_code) FROM players", "gold": "SELECT count(DISTINCT country_code) FROM players", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many distinct countries do players come from?", "predicted": "SELECT Count(DISTINCT players.country_code) FROM players", "gold": "SELECT count(DISTINCT country_code) FROM players", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the number of distinct name of losers.", "predicted": "SELECT Count(DISTINCT matches.loser_name) FROM matches", "gold": "SELECT count(DISTINCT loser_name) FROM matches", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many different loser names are there?", "predicted": "SELECT Count(DISTINCT matches.loser_name) FROM matches", "gold": "SELECT count(DISTINCT loser_name) FROM matches", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the name of tourney that has more than 10 matches.", "predicted": "SELECT matches.tourney_name FROM matches GROUP BY matches.tourney_name HAVING Count(matches.match_num) > 10", "gold": "SELECT tourney_name FROM matches GROUP BY tourney_name HAVING count(*) > 10", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of tournaments that have more than 10 matches?", "predicted": "SELECT matches.tourney_name FROM matches GROUP BY matches.tourney_name HAVING Count(matches.match_num) > 10", "gold": "SELECT tourney_name FROM matches GROUP BY tourney_name HAVING count(*) > 10", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the names of all winners who played in both 2013 and 2016.", "predicted": "SELECT players.first_name FROM players JOIN matches ON players.player_id = matches.loser_id WHERE matches.year = 2003 INTERSECT SELECT players.first_name FROM players JOIN matches ON players.player_id = matches.winner_id WHERE matches.year = 2016", "gold": "SELECT winner_name FROM matches WHERE YEAR = 2013 INTERSECT SELECT winner_name FROM matches WHERE YEAR = 2016", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of players who won in both 2013 and 2016?", "predicted": "SELECT players.first_name FROM players JOIN matches ON players.player_id = matches.loser_id WHERE matches.year = 1989 INTERSECT SELECT players.first_name FROM players JOIN matches ON players.player_id = matches.winner_id WHERE matches.year = 2016", "gold": "SELECT winner_name FROM matches WHERE YEAR = 2013 INTERSECT SELECT winner_name FROM matches WHERE YEAR = 2016", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the number of all matches who played in years of 2013 or 2016.", "predicted": "SELECT matches.match_num FROM matches WHERE matches.year = 3 OR matches.year = 2016", "gold": "SELECT count(*) FROM matches WHERE YEAR = 2013 OR YEAR = 2016", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many matches were played in 2013 or 2016?", "predicted": "SELECT Count(*) FROM matches WHERE matches.year = 3 OR matches.year = 2016", "gold": "SELECT count(*) FROM matches WHERE YEAR = 2013 OR YEAR = 2016", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the country code and first name of the players who won in both tourney WTA Championships and Australian Open?", "predicted": "SELECT players.country_code, players.first_name FROM players JOIN matches ON players.player_id = matches.loser_id WHERE matches.tourney_name = \"NewTAChampionship\" INTERSECT SELECT players.country_code, players.first_name FROM players JOIN matches ON players.player_id = matches.winner_id WHERE matches.tourney_name = \"ChiOpenOpenOpen\"", "gold": "SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'WTA Championships' INTERSECT SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'Australian Open'", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the first names and country codes for players who won both the WTA Championships and the Australian Open?", "predicted": "SELECT players.first_name, players.country_code FROM players JOIN matches ON players.player_id = matches.loser_id WHERE matches.tourney_name = \"NewTAChampionship\" INTERSECT SELECT players.first_name, players.country_code FROM players JOIN matches ON players.player_id = matches.winner_id WHERE matches.tourney_name = \"COpenOpenOpen\"", "gold": "SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'WTA Championships' INTERSECT SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'Australian Open'", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the first name and country code of the oldest player.", "predicted": "SELECT players.first_name, players.country_code FROM players ORDER BY players.birth_date Desc LIMIT 1", "gold": "SELECT first_name , country_code FROM players ORDER BY birth_date LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}}}, {"question": "What is the first name and country code of the oldest player?", "predicted": "SELECT players.first_name, players.country_code FROM players ORDER BY players.birth_date Desc LIMIT 1", "gold": "SELECT first_name , country_code FROM players ORDER BY birth_date LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}}}, {"question": "List the first and last name of all players in the order of birth date.", "predicted": "SELECT players.first_name, players.last_name FROM players ORDER BY players.birth_date Asc", "gold": "SELECT first_name , last_name FROM players ORDER BY birth_date", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the full names of all players, sorted by birth date?", "predicted": "SELECT players.first_name, players.last_name FROM players ORDER BY players.birth_date Asc", "gold": "SELECT first_name , last_name FROM players ORDER BY birth_date", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the first and last name of all players who are left / L hand in the order of birth date.", "predicted": "SELECT players.first_name, players.last_name FROM players WHERE players.hand = \"Defender\" ORDER BY players.birth_date Asc", "gold": "SELECT first_name , last_name FROM players WHERE hand = 'L' ORDER BY birth_date", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the full names of all left handed players, in order of birth date?", "predicted": "SELECT players.first_name, players.last_name FROM players WHERE players.hand = \"Defender\" ORDER BY players.birth_date Asc", "gold": "SELECT first_name , last_name FROM players WHERE hand = 'L' ORDER BY birth_date", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the first name and country code of the player who did the most number of tours.", "predicted": "SELECT players.first_name, players.country_code FROM players JOIN rankings ON players.player_id = rankings.player_id GROUP BY rankings.player_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id ORDER BY T2.tours DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 4}}}, {"question": "What is the first name and country code of the player with the most tours?", "predicted": "SELECT players.first_name, players.country_code FROM players JOIN rankings ON players.player_id = rankings.player_id GROUP BY rankings.player_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id ORDER BY T2.tours DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 4}}}, {"question": "Find the year that has the most number of matches.", "predicted": "SELECT matches.year FROM matches GROUP BY matches.year ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT YEAR FROM matches GROUP BY YEAR ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which year had the most matches?", "predicted": "SELECT matches.year FROM matches GROUP BY matches.year ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT YEAR FROM matches GROUP BY YEAR ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the name and rank points of the winner who won the most times.", "predicted": "SELECT matches.winner_name, matches.winner_rank_points FROM matches GROUP BY matches.winner_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT winner_name , winner_rank_points FROM matches GROUP BY winner_name ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the name of the winner who has won the most matches, and how many rank points does this player have?", "predicted": "SELECT matches.winner_name, matches.winner_rank_points FROM players JOIN matches ON players.player_id = matches.loser_id GROUP BY matches.winner_rank ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT winner_name , winner_rank_points FROM matches GROUP BY winner_name ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the name of the winner who has the highest rank points and participated in the Australian Open tourney.", "predicted": "SELECT matches.winner_name FROM players JOIN matches ON players.player_id = matches.loser_id WHERE matches.tourney_name = \"AustralianOpen\" ORDER BY matches.winner_rank_points Desc LIMIT 1", "gold": "SELECT winner_name FROM matches WHERE tourney_name = 'Australian Open' ORDER BY winner_rank_points DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the name of the winner with the most rank points who participated in the Australian Open tournament?", "predicted": "SELECT matches.winner_name FROM matches WHERE matches.tourney_name = \"AustralianOpen\" AND matches.winner_rank_points = \"Japan\" ORDER BY matches.winner_rank_points Desc LIMIT 1", "gold": "SELECT winner_name FROM matches WHERE tourney_name = 'Australian Open' ORDER BY winner_rank_points DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "find the names of loser and winner who played in the match with greatest number of minutes.", "predicted": "SELECT matches.loser_name, matches.winner_name FROM matches ORDER BY matches.minutes Desc LIMIT 1", "gold": "SELECT winner_name , loser_name FROM matches ORDER BY minutes DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of the winner and loser who played in the longest match?", "predicted": "SELECT matches.winner_name, matches.loser_name FROM matches ORDER BY matches.match_num Desc LIMIT 1", "gold": "SELECT winner_name , loser_name FROM matches ORDER BY minutes DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the average ranking for each player and their first name.", "predicted": "SELECT players.first_name, Avg(rankings.ranking_points) FROM players JOIN rankings ON players.player_id = rankings.player_id GROUP BY players.first_name", "gold": "SELECT avg(ranking) , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the first names of all players, and their average rankings?", "predicted": "SELECT players.first_name, Avg(rankings.ranking_points) FROM players JOIN rankings ON players.player_id = rankings.player_id GROUP BY rankings.player_id", "gold": "SELECT avg(ranking) , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the total ranking points for each player and their first name.", "predicted": "SELECT players.first_name, Sum(rankings.ranking_points) FROM players JOIN rankings ON players.player_id = rankings.player_id GROUP BY players.first_name", "gold": "SELECT sum(ranking_points) , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the first names of all players, and their total ranking points?", "predicted": "SELECT players.first_name, Sum(rankings.ranking_points) FROM players JOIN rankings ON players.player_id = rankings.player_id GROUP BY rankings.player_id", "gold": "SELECT sum(ranking_points) , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "find the number of players for each country.", "predicted": "SELECT players.country_code, Count(*) FROM players GROUP BY players.country_code", "gold": "SELECT count(*) , country_code FROM players GROUP BY country_code", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many players are from each country?", "predicted": "SELECT players.country_code, Count(*) FROM players GROUP BY players.country_code", "gold": "SELECT count(*) , country_code FROM players GROUP BY country_code", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "find the code of the country where has the greatest number of players.", "predicted": "SELECT players.country_code FROM players GROUP BY players.country_code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT country_code FROM players GROUP BY country_code ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the code of the country with the most players?", "predicted": "SELECT players.country_code FROM players GROUP BY players.country_code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT country_code FROM players GROUP BY country_code ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the codes of countries that have more than 50 players.", "predicted": "SELECT players.country_code FROM players GROUP BY players.country_code HAVING Count(*) > 50", "gold": "SELECT country_code FROM players GROUP BY country_code HAVING count(*) > 50", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the codes of countries with more than 50 players?", "predicted": "SELECT players.country_code FROM players GROUP BY players.country_code HAVING Count(*) > 50", "gold": "SELECT country_code FROM players GROUP BY country_code HAVING count(*) > 50", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the total number of tours for each ranking date.", "predicted": "SELECT rankings.ranking_date, Sum(rankings.tours) FROM rankings GROUP BY rankings.ranking_date", "gold": "SELECT sum(tours) , ranking_date FROM rankings GROUP BY ranking_date", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many total tours were there for each ranking date?", "predicted": "SELECT rankings.ranking_date, Sum(rankings.tours) FROM rankings GROUP BY rankings.ranking_date", "gold": "SELECT sum(tours) , ranking_date FROM rankings GROUP BY ranking_date", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the number of matches happened in each year.", "predicted": "SELECT Count(*), matches.year FROM matches GROUP BY matches.year", "gold": "SELECT count(*) , YEAR FROM matches GROUP BY YEAR", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many matches were played in each year?", "predicted": "SELECT Count(*), matches.year FROM matches GROUP BY matches.year", "gold": "SELECT count(*) , YEAR FROM matches GROUP BY YEAR", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the name and rank of the 3 youngest winners across all matches.", "predicted": "SELECT matches.winner_name, matches.winner_rank FROM matches ORDER BY matches.winner_age Asc LIMIT 3", "gold": "SELECT DISTINCT winner_name , winner_rank FROM matches ORDER BY winner_age LIMIT 3", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names and ranks of the three youngest winners across all matches?", "predicted": "SELECT matches.winner_name, matches.winner_rank FROM matches ORDER BY matches.winner_age Asc LIMIT 3", "gold": "SELECT DISTINCT winner_name , winner_rank FROM matches ORDER BY winner_age LIMIT 3", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many different winners both participated in the WTA Championships and were left handed?", "predicted": "SELECT Count(*) FROM matches WHERE matches.tourney_name = \"MTAChampionship\" AND matches.winner_hand = \"Nokia\"", "gold": "SELECT count(DISTINCT winner_name) FROM matches WHERE tourney_name = 'WTA Championships' AND winner_hand = 'L'", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the number of left handed winners who participated in the WTA Championships.", "predicted": "SELECT Count(*) FROM players JOIN matches ON players.player_id = matches.loser_id WHERE players.hand = \"F\" AND matches.tourney_name = \"NETAChampionship\"", "gold": "SELECT count(DISTINCT winner_name) FROM matches WHERE tourney_name = 'WTA Championships' AND winner_hand = 'L'", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the first name, country code and birth date of the winner who has the highest rank points in all matches.", "predicted": "SELECT players.first_name, players.country_code, players.birth_date FROM players JOIN matches ON players.player_id = matches.loser_id ORDER BY matches.winner_rank_points Desc LIMIT 1", "gold": "SELECT T1.first_name , T1.country_code , T1.birth_date FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id ORDER BY T2.winner_rank_points DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the first name, country code, and birth date of the player with the most winner rank points across all matches?", "predicted": "SELECT players.first_name, players.country_code, players.birth_date FROM players JOIN matches ON players.player_id = matches.loser_id GROUP BY matches.winner_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.first_name , T1.country_code , T1.birth_date FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id ORDER BY T2.winner_rank_points DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 4}}}, {"question": "Find the number of players for each hand type.", "predicted": "SELECT players.hand, Count(*) FROM players GROUP BY players.hand", "gold": "SELECT count(*) , hand FROM players GROUP BY hand", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many players are there for each hand type?", "predicted": "SELECT players.hand, Count(*) FROM players GROUP BY players.hand", "gold": "SELECT count(*) , hand FROM players GROUP BY hand", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many ships ended up being 'Captured'?", "predicted": "SELECT Count(*) FROM ship WHERE ship.disposition_of_ship = \"Detured\"", "gold": "SELECT count(*) FROM ship WHERE disposition_of_ship = 'Captured'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the name and tonnage ordered by in descending alphaetical order for the names.", "predicted": "SELECT ship.name, ship.tonnage FROM ship ORDER BY ship.name Desc", "gold": "SELECT name , tonnage FROM ship ORDER BY name DESC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the name, date and result of each battle.", "predicted": "SELECT battle.name, battle.date, battle.result FROM battle", "gold": "SELECT name , date FROM battle", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is maximum and minimum death toll caused each time?", "predicted": "SELECT Max(death.killed), Min(death.killed), death.killed FROM death", "gold": "SELECT max(killed) , min(killed) FROM death", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the average number of injuries caused each time?", "predicted": "SELECT Avg(death.injured), battle.name FROM battle JOIN ship ON battle.id = ship.lost_in_battle JOIN death ON ship.id = death.caused_by_ship_id GROUP BY battle.name", "gold": "SELECT avg(injured) FROM death", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}}}, {"question": "What are the death and injury situations caused by the ship with tonnage 't'?", "predicted": "SELECT death.killed, death.injured FROM ship JOIN death ON ship.id = death.caused_by_ship_id WHERE ship.tonnage = \"London\"", "gold": "SELECT T1.killed , T1.injured FROM death AS T1 JOIN ship AS t2 ON T1.caused_by_ship_id = T2.id WHERE T2.tonnage = 't'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the name and results of the battles when the bulgarian commander is not 'Boril'", "predicted": "SELECT battle.name, battle.result FROM battle WHERE battle.bulgarian_commander != \"Gron\"", "gold": "SELECT name , RESULT FROM battle WHERE bulgarian_commander != 'Boril'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the different ids and names of the battles that lost any 'Brig' type shipes?", "predicted": "SELECT DISTINCT battle.id, battle.name FROM battle JOIN ship ON battle.id = ship.lost_in_battle WHERE ship.ship_type = \"Ps\"", "gold": "SELECT DISTINCT T1.id , T1.name FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.ship_type = 'Brig'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the ids and names of the battles that led to more than 10 people killed in total.", "predicted": "SELECT battle.id, battle.name FROM battle JOIN ship ON battle.id = ship.lost_in_battle JOIN death ON ship.id = death.caused_by_ship_id GROUP BY battle.id HAVING Sum(death.killed) > 10", "gold": "SELECT T1.id , T1.name FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle JOIN death AS T3 ON T2.id = T3.caused_by_ship_id GROUP BY T1.id HAVING sum(T3.killed) > 10", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the ship id and name that caused most total injuries?", "predicted": "SELECT ship.id, ship.name FROM ship JOIN death ON ship.id = death.caused_by_ship_id GROUP BY ship.id ORDER BY Sum(death.injured) Desc LIMIT 1", "gold": "SELECT T2.id , T2.name FROM death AS T1 JOIN ship AS t2 ON T1.caused_by_ship_id = T2.id GROUP BY T2.id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What are the distinct battle names which are between bulgarian commander 'Kaloyan' and latin commander 'Baldwin I'?", "predicted": "SELECT DISTINCT battle.name FROM battle WHERE battle.bulgarian_commander = \"Keid\" AND battle.latin_commander = \"Orton\"", "gold": "SELECT name FROM battle WHERE bulgarian_commander = 'Kaloyan' AND latin_commander = 'Baldwin I'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many different results are there for the battles?", "predicted": "SELECT Count(DISTINCT battle.result) FROM battle", "gold": "SELECT count(DISTINCT RESULT) FROM battle", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many battles did not lose any ship with tonnage '225'?", "predicted": "SELECT Count(*) FROM battle WHERE battle.id NOT IN (SELECT ship.lost_in_battle FROM ship WHERE ship.tonnage = 200)", "gold": "SELECT count(*) FROM battle WHERE id NOT IN ( SELECT lost_in_battle FROM ship WHERE tonnage = '225' );", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "List the name and date the battle that has lost the ship named 'Lettice' and the ship named 'HMS Atalanta'", "predicted": "SELECT battle.name, battle.date FROM battle JOIN ship ON battle.id = ship.lost_in_battle WHERE ship.name = \"Gtice\" INTERSECT SELECT battle.name, battle.date FROM battle JOIN ship ON battle.id = ship.lost_in_battle WHERE ship.name = \"ArMSAta\"", "gold": "SELECT T1.name , T1.date FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.name = 'Lettice' INTERSECT SELECT T1.name , T1.date FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.name = 'HMS Atalanta'", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show names, results and bulgarian commanders of the battles with no ships lost in the 'English Channel'.", "predicted": "SELECT battle.name, battle.result, battle.bulgarian_commander FROM battle WHERE battle.id NOT IN (SELECT ship.lost_in_battle FROM ship WHERE ship.location = \"UnitedChannel\")", "gold": "SELECT name , RESULT , bulgarian_commander FROM battle EXCEPT SELECT T1.name , T1.result , T1.bulgarian_commander FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.location = 'English Channel'", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "What are the notes of the death events which has substring 'East'?", "predicted": "SELECT death.note FROM death WHERE death.killed LIKE \"%London%\"", "gold": "SELECT note FROM death WHERE note LIKE '%East%'", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "what are all the addresses including line 1 and line 2?", "predicted": "SELECT Addresses.line_1 FROM Addresses WHERE Addresses.line_1 = 1 INTERSECT SELECT Addresses.line_1 FROM Addresses WHERE Addresses.line_1 = 2", "gold": "SELECT line_1 , line_2 FROM addresses", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 2}}}, {"question": "What is the first and second line for all addresses?", "predicted": "SELECT Addresses.line_1, Addresses.line_2 FROM Addresses", "gold": "SELECT line_1 , line_2 FROM addresses", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many courses in total are listed?", "predicted": "SELECT Count(*) FROM Courses", "gold": "SELECT count(*) FROM Courses", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many courses are there?", "predicted": "SELECT Count(*) FROM Courses", "gold": "SELECT count(*) FROM Courses", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How is the math course described?", "predicted": "SELECT Courses.course_description FROM Courses WHERE Courses.course_name = \"\"", "gold": "SELECT course_description FROM Courses WHERE course_name = 'math'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the descriptions for all the math courses?", "predicted": "SELECT Courses.course_description FROM Courses WHERE Courses.course_name = \"\"", "gold": "SELECT course_description FROM Courses WHERE course_name = 'math'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the zip code of the address in the city Port Chelsea?", "predicted": "SELECT Addresses.zip_postcode FROM Addresses WHERE Addresses.city = \"FastChelseaChelsea\"", "gold": "SELECT zip_postcode FROM Addresses WHERE city = 'Port Chelsea'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the zip code for Port Chelsea?", "predicted": "SELECT Addresses.zip_postcode FROM Addresses WHERE Addresses.city = \"London\"", "gold": "SELECT zip_postcode FROM Addresses WHERE city = 'Port Chelsea'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which department offers the most number of degrees? List department name and id.", "predicted": "SELECT Departments.department_name, Departments.department_id FROM Departments JOIN Degree_Programs ON Departments.department_id = Degree_Programs.department_id GROUP BY Degree_Programs.department_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.department_name , T1.department_id FROM Degree_Programs AS T1 JOIN Departments AS T2 ON T1.department_id = T2.department_id GROUP BY T1.department_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the name and id of the department with the most number of degrees ?", "predicted": "SELECT Departments.department_name, Degree_Programs.department_id FROM Departments JOIN Degree_Programs ON Departments.department_id = Degree_Programs.department_id GROUP BY Degree_Programs.department_id ORDER BY Count(*) Desc LIMIT 1", "gold": "select t2.department_name , t1.department_id from degree_programs as t1 join departments as t2 on t1.department_id = t2.department_id group by t1.department_id order by count(*) desc limit 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "How many departments offer any degree?", "predicted": "SELECT Count(DISTINCT Degree_Programs.department_id) FROM Degree_Programs", "gold": "SELECT count(DISTINCT department_id) FROM Degree_Programs", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many different departments offer degrees?", "predicted": "SELECT Count(DISTINCT Degree_Programs.department_id) FROM Degree_Programs", "gold": "SELECT count(DISTINCT department_id) FROM Degree_Programs", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many different degree names are offered?", "predicted": "SELECT Count(DISTINCT Degree_Programs.degree_summary_name) FROM Degree_Programs", "gold": "SELECT count(DISTINCT degree_summary_name) FROM Degree_Programs", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many different degrees are offered?", "predicted": "SELECT Count(DISTINCT Degree_Programs.degree_program_id) FROM Degree_Programs", "gold": "SELECT count(DISTINCT degree_summary_name) FROM Degree_Programs", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many degrees does the engineering department offer?", "predicted": "SELECT Count(*) FROM Departments JOIN Degree_Programs ON Departments.department_id = Degree_Programs.department_id WHERE Departments.department_name = \"Computer\"", "gold": "SELECT count(*) FROM Departments AS T1 JOIN Degree_Programs AS T2 ON T1.department_id = T2.department_id WHERE T1.department_name = 'engineer'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many degrees does the engineering department have?", "predicted": "SELECT Count(*) FROM Departments JOIN Degree_Programs ON Departments.department_id = Degree_Programs.department_id WHERE Departments.department_name = \"Computer\"", "gold": "SELECT count(*) FROM Departments AS T1 JOIN Degree_Programs AS T2 ON T1.department_id = T2.department_id WHERE T1.department_name = 'engineer'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names and descriptions of all the sections?", "predicted": "SELECT Sections.section_name, Sections.section_description FROM Sections", "gold": "SELECT section_name , section_description FROM Sections", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the names and descriptions for all the sections?", "predicted": "SELECT Sections.section_name, Sections.section_description FROM Sections", "gold": "SELECT section_name , section_description FROM Sections", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the names and id of courses having at most 2 sections?", "predicted": "SELECT Courses.course_name, Courses.course_id FROM Courses JOIN Sections ON Courses.course_id = Sections.course_id GROUP BY Courses.course_id HAVING Count(*) <= 2", "gold": "SELECT T1.course_name , T1.course_id FROM Courses AS T1 JOIN Sections AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_id HAVING count(*) <= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names and ids of every course with less than 2 sections?", "predicted": "SELECT Courses.course_name, Courses.course_id FROM Courses JOIN Sections ON Courses.course_id = Sections.course_id GROUP BY Sections.course_id HAVING Count(*) < 2", "gold": "SELECT T1.course_name , T1.course_id FROM Courses AS T1 JOIN Sections AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_id HAVING count(*) <= 2", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the section_name in reversed lexicographical order.", "predicted": "SELECT Sections.section_name FROM Sections ORDER BY Sections.section_name Desc", "gold": "SELECT section_name FROM Sections ORDER BY section_name DESC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of the sections in reverse alphabetical order?", "predicted": "SELECT Sections.section_name FROM Sections ORDER BY Sections.section_name Desc", "gold": "SELECT section_name FROM Sections ORDER BY section_name DESC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the semester which most student registered in? Show both the name and the id.", "predicted": "SELECT Semesters.semester_name, Semesters.semester_id FROM Semesters JOIN Student_Enrolment ON Semesters.semester_id = Student_Enrolment.semester_id GROUP BY Semesters.semester_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.semester_name , T1.semester_id FROM Semesters AS T1 JOIN Student_Enrolment AS T2 ON T1.semester_id = T2.semester_id GROUP BY T1.semester_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "For each semester, what is the name and id of the one with the most students registered?", "predicted": "SELECT Semesters.semester_name, Student_Enrolment.semester_id FROM Semesters JOIN Student_Enrolment ON Semesters.semester_id = Student_Enrolment.semester_id GROUP BY Student_Enrolment.semester_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.semester_name , T1.semester_id FROM Semesters AS T1 JOIN Student_Enrolment AS T2 ON T1.semester_id = T2.semester_id GROUP BY T1.semester_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the description of the department whose name has the substring the computer?", "predicted": "SELECT Departments.department_description FROM Departments WHERE Departments.department_name LIKE \"%s%\"", "gold": "SELECT department_description FROM Departments WHERE department_name LIKE '%computer%'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the department description for the one whose name has the word computer?", "predicted": "SELECT Departments.department_description FROM Departments WHERE Departments.department_name LIKE \"%Statistics%\"", "gold": "SELECT department_description FROM Departments WHERE department_name LIKE '%computer%'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Who are enrolled in 2 degree programs in one semester? List the first name, middle name and last name and the id.", "predicted": "SELECT Students.first_name, Students.middle_name, Students.student_id FROM Students JOIN Student_Enrolment ON Students.student_id = Student_Enrolment.student_id GROUP BY Students.student_id HAVING Count(*) >= 2", "gold": "SELECT T1.first_name , T1.middle_name , T1.last_name , T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING count(*) = 2", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the first, middle, and last names, along with the ids, of all students who enrolled in 2 degree programs in one semester?", "predicted": "SELECT Students.first_name, Students.middle_name, Students.last_name FROM Students JOIN Student_Enrolment ON Students.student_id = Student_Enrolment.student_id GROUP BY Students.student_id HAVING Count(*) >= 2", "gold": "SELECT T1.first_name , T1.middle_name , T1.last_name , T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING count(*) = 2", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Who is enrolled in a Bachelor degree program? List the first name, middle name, last name.", "predicted": "SELECT Students.first_name, Students.middle_name, Students.last_name FROM Degree_Programs JOIN Students JOIN Student_Enrolment ON Degree_Programs.degree_program_id = Student_Enrolment.degree_program_id AND Student_Enrolment.student_id = Students.student_id WHERE Degree_Programs.degree_summary_name = \"Ph\"", "gold": "SELECT DISTINCT T1.first_name , T1.middle_name , T1.last_name FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id JOIN Degree_Programs AS T3 ON T2.degree_program_id = T3.degree_program_id WHERE T3.degree_summary_name = 'Bachelor'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the first, middle, and last names for everybody enrolled in a Bachelors program?", "predicted": "SELECT Students.first_name, Students.middle_name, Students.last_name FROM Degree_Programs JOIN Students JOIN Student_Enrolment ON Degree_Programs.degree_program_id = Student_Enrolment.degree_program_id AND Student_Enrolment.student_id = Students.student_id WHERE Degree_Programs.degree_summary_name = \"Ph\"", "gold": "SELECT DISTINCT T1.first_name , T1.middle_name , T1.last_name FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id JOIN Degree_Programs AS T3 ON T2.degree_program_id = T3.degree_program_id WHERE T3.degree_summary_name = 'Bachelor'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the kind of program which most number of students are enrolled in?", "predicted": "SELECT Courses.course_name FROM Courses JOIN Student_Enrolment_Courses ON Courses.course_id = Student_Enrolment_Courses.course_id GROUP BY Courses.course_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_summary_name ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the degree summary name that has the most number of students enrolled?", "predicted": "SELECT Degree_Programs.degree_summary_name FROM Degree_Programs JOIN Student_Enrolment ON Degree_Programs.degree_program_id = Student_Enrolment.degree_program_id GROUP BY Degree_Programs.degree_summary_name ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_summary_name ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the program which most number of students are enrolled in. List both the id and the summary.", "predicted": "SELECT Student_Enrolment_Courses.course_id, Degree_Programs.degree_summary_name FROM Degree_Programs JOIN Student_Enrolment ON Degree_Programs.degree_program_id = Student_Enrolment.degree_program_id JOIN Student_Enrolment_Courses ON Student_Enrolment.student_enrolment_id = Student_Enrolment_Courses.student_enrolment_id GROUP BY Degree_Programs.degree_program_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.degree_program_id , T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_program_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the program id and the summary of the degree that has the most students enrolled?", "predicted": "SELECT Student_Enrolment.degree_program_id, Degree_Programs.degree_summary_name FROM Degree_Programs JOIN Student_Enrolment ON Degree_Programs.degree_program_id = Student_Enrolment.degree_program_id GROUP BY Student_Enrolment.degree_program_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.degree_program_id , T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_program_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which student has enrolled for the most times in any program? List the id, first name, middle name, last name, the number of enrollments and student id.", "predicted": "SELECT Students.student_id, Students.first_name, Count(*) FROM Students JOIN Student_Enrolment ON Students.student_id = Student_Enrolment.student_id GROUP BY Students.student_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.student_id , T1.first_name , T1.middle_name , T1.last_name , count(*) , T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 6, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 6, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the first, middle, and last name, along with the id and number of enrollments, for the student who enrolled the most in any program?", "predicted": "SELECT Students.first_name, Students.middle_name, Count(*) FROM Students JOIN Student_Enrolment ON Students.student_id = Student_Enrolment.student_id GROUP BY Students.student_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.student_id , T1.first_name , T1.middle_name , T1.last_name , count(*) , T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 6, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 6, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which semesters do not have any student enrolled? List the semester name.", "predicted": "SELECT Semesters.semester_name FROM Semesters WHERE Semesters.semester_id NOT IN (SELECT Student_Enrolment.semester_id FROM Student_Enrolment)", "gold": "SELECT semester_name FROM Semesters WHERE semester_id NOT IN( SELECT semester_id FROM Student_Enrolment )", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the name of the semester with no students enrolled?", "predicted": "SELECT Semesters.semester_name FROM Semesters WHERE Semesters.semester_id NOT IN (SELECT Student_Enrolment.semester_id FROM Student_Enrolment)", "gold": "SELECT semester_name FROM Semesters WHERE semester_id NOT IN( SELECT semester_id FROM Student_Enrolment )", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are all the course names of the courses which ever have students enrolled in?", "predicted": "SELECT DISTINCT Courses.course_name FROM Courses JOIN Student_Enrolment_Courses ON Courses.course_id = Student_Enrolment_Courses.course_id", "gold": "SELECT DISTINCT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the names of all courses that have some students enrolled?", "predicted": "SELECT DISTINCT Courses.course_name FROM Courses JOIN Student_Enrolment_Courses ON Courses.course_id = Student_Enrolment_Courses.course_id", "gold": "SELECT DISTINCT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What's the name of the course with most number of enrollments?", "predicted": "SELECT Courses.course_name FROM Courses JOIN Student_Enrolment_Courses ON Courses.course_id = Student_Enrolment_Courses.course_id GROUP BY Courses.course_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the name of the course with the most students enrolled?", "predicted": "SELECT Courses.course_name FROM Courses JOIN Student_Enrolment_Courses ON Courses.course_id = Student_Enrolment_Courses.course_id GROUP BY Courses.course_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the last name of the students who currently live in the state of North Carolina but have not registered in any degree program.", "predicted": "SELECT Students.last_name FROM Addresses JOIN Students ON Addresses.address_id = Students.current_address_id JOIN Student_Enrolment ON Students.student_id = Student_Enrolment.student_id WHERE Addresses.state_province_county = \"CaliCarolina\" EXCEPT SELECT Students.last_name FROM Students JOIN Student_Enrolment ON Students.student_id = Student_Enrolment.student_id JOIN Student_Enrolment_Courses ON Student_Enrolment.student_enrolment_id = Student_Enrolment_Courses.student_enrolment_id WHERE Addresses.state_province_county = \"CaliCarolina\"", "gold": "SELECT T1.last_name FROM Students AS T1 JOIN Addresses AS T2 ON T1.current_address_id = T2.address_id WHERE T2.state_province_county = 'NorthCarolina' EXCEPT SELECT DISTINCT T3.last_name FROM Students AS T3 JOIN Student_Enrolment AS T4 ON T3.student_id = T4.student_id", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the last name of the students who live in North Carolina but have not registered in any degree programs?", "predicted": "SELECT Students.last_name FROM Addresses JOIN Students ON Addresses.address_id = Students.current_address_id JOIN Student_Enrolment ON Students.student_id = Student_Enrolment.student_id WHERE Addresses.state_province_county = \"CaliCarolina\" EXCEPT SELECT Students.last_name FROM Students JOIN Student_Enrolment ON Students.student_id = Student_Enrolment.student_id JOIN Addresses", "gold": "SELECT T1.last_name FROM Students AS T1 JOIN Addresses AS T2 ON T1.current_address_id = T2.address_id WHERE T2.state_province_county = 'NorthCarolina' EXCEPT SELECT DISTINCT T3.last_name FROM Students AS T3 JOIN Student_Enrolment AS T4 ON T3.student_id = T4.student_id", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the date and id of the transcript with at least 2 course results.", "predicted": "SELECT Transcripts.transcript_date, Transcripts.transcript_id FROM Transcripts JOIN Transcript_Contents ON Transcripts.transcript_id = Transcript_Contents.transcript_id GROUP BY Transcripts.transcript_id HAVING Count(*) >= 2", "gold": "SELECT T2.transcript_date , T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the date and id of the transcript with at least 2 courses listed?", "predicted": "SELECT Transcripts.transcript_date, Transcripts.transcript_id FROM Transcripts JOIN Transcript_Contents ON Transcripts.transcript_id = Transcript_Contents.transcript_id GROUP BY Transcripts.transcript_id HAVING Count(*) >= 2", "gold": "SELECT T2.transcript_date , T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the phone number of the man with the first name Timmothy and the last name Ward?", "predicted": "SELECT Students.cell_mobile_number FROM Students WHERE Students.first_name = \"Mmothy\" AND Students.last_name = \"Td\"", "gold": "SELECT cell_mobile_number FROM Students WHERE first_name = 'Timmothy' AND last_name = 'Ward'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the mobile phone number of the student named Timmothy Ward ?", "predicted": "SELECT Students.cell_mobile_number FROM Students WHERE Students.first_name = \"Mmothy\" AND Students.last_name = \"Td\"", "gold": "select cell_mobile_number from students where first_name = 'timmothy' and last_name = 'ward'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Who is the first student to register? List the first name, middle name and last name.", "predicted": "SELECT Students.first_name, Students.middle_name, Students.last_name FROM Students ORDER BY Students.date_first_registered Asc LIMIT 1", "gold": "SELECT first_name , middle_name , last_name FROM Students ORDER BY date_first_registered ASC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the first, middle, and last name of the first student to register?", "predicted": "SELECT Students.first_name, Students.middle_name, Students.last_name FROM Students ORDER BY Students.date_first_registered Asc LIMIT 1", "gold": "SELECT first_name , middle_name , last_name FROM Students ORDER BY date_first_registered ASC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Who is the earliest graduate of the school? List the first name, middle name and last name.", "predicted": "SELECT Students.first_name, Students.middle_name, Students.last_name FROM Students ORDER BY Students.date_left Asc LIMIT 1", "gold": "SELECT first_name , middle_name , last_name FROM Students ORDER BY date_left ASC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the first, middle, and last name of the earliest school graduate?", "predicted": "SELECT Students.first_name, Students.middle_name, Students.last_name FROM Students ORDER BY Students.date_left Asc LIMIT 1", "gold": "SELECT first_name , middle_name , last_name FROM Students ORDER BY date_left ASC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Whose permanent address is different from his or her current address? List his or her first name.", "predicted": "SELECT DISTINCT Students.first_name FROM Students WHERE Students.permanent_address_id > (SELECT Min(Students.permanent_address_id) FROM Students)", "gold": "SELECT first_name FROM Students WHERE current_address_id != permanent_address_id", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the first name of the student whose permanent address is different from his or her current one?", "predicted": "SELECT DISTINCT Students.first_name FROM Students WHERE Students.permanent_address_id > (SELECT Min(Students.permanent_address_id) FROM Students)", "gold": "SELECT first_name FROM Students WHERE current_address_id != permanent_address_id", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which address holds the most number of students currently? List the address id and all lines.", "predicted": "SELECT Students.current_address_id, Addresses.line_1 FROM Addresses JOIN Students ON Addresses.address_id = Students.current_address_id GROUP BY Students.current_address_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.address_id , T1.line_1 , T1.line_2 FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.current_address_id GROUP BY T1.address_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the id, line 1, and line 2 of the address with the most students?", "predicted": "SELECT Students.current_address_id, Addresses.line_1, Addresses.line_2 FROM Addresses JOIN Students ON Addresses.address_id = Students.current_address_id GROUP BY Students.current_address_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.address_id , T1.line_1 , T1.line_2 FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.current_address_id GROUP BY T1.address_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "On average, when were the transcripts printed?", "predicted": "SELECT Avg(Transcripts.transcript_date) FROM Transcripts", "gold": "SELECT avg(transcript_date) FROM Transcripts", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the average transcript date?", "predicted": "SELECT Avg(Transcripts.transcript_date) FROM Transcripts", "gold": "SELECT avg(transcript_date) FROM Transcripts", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "When is the first transcript released? List the date and details.", "predicted": "SELECT Transcripts.transcript_date, Transcripts.other_details FROM Transcripts ORDER BY Transcripts.transcript_date Asc", "gold": "SELECT transcript_date , other_details FROM Transcripts ORDER BY transcript_date ASC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}}}, {"question": "What is the earliest date of a transcript release, and what details can you tell me?", "predicted": "SELECT Transcripts.transcript_date, Transcripts.other_details FROM Transcripts ORDER BY Transcripts.transcript_date Asc LIMIT 1", "gold": "SELECT transcript_date , other_details FROM Transcripts ORDER BY transcript_date ASC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many transcripts are released?", "predicted": "SELECT Count(*) FROM Transcripts", "gold": "SELECT count(*) FROM Transcripts", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many transcripts are listed?", "predicted": "SELECT Count(*) FROM Transcripts", "gold": "SELECT count(*) FROM Transcripts", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the last transcript release date?", "predicted": "SELECT Max(Transcripts.transcript_date) FROM Transcripts", "gold": "SELECT transcript_date FROM Transcripts ORDER BY transcript_date DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 0}}}, {"question": "When was the last transcript released?", "predicted": "SELECT Max(Transcripts.transcript_date) FROM Transcripts", "gold": "SELECT transcript_date FROM Transcripts ORDER BY transcript_date DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 0}}}, {"question": "How many times at most can a course enrollment result show in different transcripts? Also show the course enrollment id.", "predicted": "SELECT Transcript_Contents.transcript_id, Count(*) FROM Transcript_Contents GROUP BY Transcript_Contents.transcript_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT count(*) , student_course_id FROM Transcript_Contents GROUP BY student_course_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the maximum number of times that a course shows up in different transcripts and what is that course's enrollment id?", "predicted": "SELECT Transcript_Contents.transcript_id, Count(*) FROM Transcript_Contents GROUP BY Transcript_Contents.transcript_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT count(*) , student_course_id FROM Transcript_Contents GROUP BY student_course_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show the date of the transcript which shows the least number of results, also list the id.", "predicted": "SELECT Transcripts.transcript_date, Transcripts.transcript_id FROM Transcripts JOIN Transcript_Contents ON Transcripts.transcript_id = Transcript_Contents.transcript_id GROUP BY Transcripts.transcript_id ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T2.transcript_date , T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id ORDER BY count(*) ASC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the date and id of the transcript with the least number of results?", "predicted": "SELECT Transcripts.transcript_date, Transcripts.transcript_id FROM Transcripts JOIN Transcript_Contents ON Transcripts.transcript_id = Transcript_Contents.transcript_id GROUP BY Transcripts.transcript_id ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T2.transcript_date , T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id ORDER BY count(*) ASC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the semester when both Master students and Bachelor students got enrolled in.", "predicted": "SELECT Student_Enrolment.semester_id FROM Student_Enrolment WHERE Student_Enrolment.degree_program_id = \"Comp\" INTERSECT SELECT Student_Enrolment.semester_id FROM Student_Enrolment WHERE Student_Enrolment.degree_program_id = \"P\"", "gold": "SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Master' INTERSECT SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Bachelor'", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the id of the semester that had both Masters and Bachelors students enrolled?", "predicted": "SELECT Student_Enrolment.semester_id FROM Student_Enrolment WHERE Student_Enrolment.degree_program_id = \"Fall\" INTERSECT SELECT Student_Enrolment.semester_id FROM Student_Enrolment WHERE Student_Enrolment.degree_program_id = \"P\"", "gold": "SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Master' INTERSECT SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Bachelor'", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many different addresses do the students currently live?", "predicted": "SELECT Count(DISTINCT Students.current_address_id) FROM Students", "gold": "SELECT count(DISTINCT current_address_id) FROM Students", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the different addresses that have students living there?", "predicted": "SELECT DISTINCT Addresses.other_address_details FROM Addresses JOIN Students ON Addresses.address_id = Students.current_address_id", "gold": "SELECT count(DISTINCT current_address_id) FROM Students", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List all the student details in reversed lexicographical order.", "predicted": "SELECT * FROM Students ORDER BY Students.other_student_details Desc", "gold": "SELECT other_student_details FROM Students ORDER BY other_student_details DESC", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What other details can you tell me about students in reverse alphabetical order?", "predicted": "SELECT * FROM Students ORDER BY Students.other_student_details Desc", "gold": "SELECT other_student_details FROM Students ORDER BY other_student_details DESC", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Describe the section h.", "predicted": "SELECT Sections.section_description FROM Sections WHERE Sections.section_name = \"x\"", "gold": "SELECT section_description FROM Sections WHERE section_name = 'h'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the description for the section named h?", "predicted": "SELECT Sections.section_description FROM Sections WHERE Sections.section_name = \"x\"", "gold": "SELECT section_description FROM Sections WHERE section_name = 'h'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the first name of the students who permanently live in the country Haiti or have the cell phone number 09700166582 .", "predicted": "SELECT Students.first_name FROM Addresses JOIN Students ON Addresses.address_id = Students.current_address_id WHERE Addresses.country = \"Close\" OR Students.cell_mobile_number = \"C700166582\"", "gold": "select t1.first_name from students as t1 join addresses as t2 on t1.permanent_address_id = t2.address_id where t2.country = 'haiti' or t1.cell_mobile_number = '09700166582'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the first names of the students who live in Haiti permanently or have the cell phone number 09700166582 ?", "predicted": "SELECT Students.first_name FROM Addresses JOIN Students ON Addresses.address_id = Students.current_address_id WHERE Addresses.country = \"Close\" OR Students.cell_mobile_number = \"C700166582\"", "gold": "select t1.first_name from students as t1 join addresses as t2 on t1.permanent_address_id = t2.address_id where t2.country = 'haiti' or t1.cell_mobile_number = '09700166582'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the title of all cartoons in alphabetical order.", "predicted": "SELECT Cartoon.Title FROM Cartoon ORDER BY Cartoon.Title Asc", "gold": "SELECT Title FROM Cartoon ORDER BY title", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the titles of the cartoons sorted alphabetically?", "predicted": "SELECT Cartoon.Title FROM Cartoon ORDER BY Cartoon.Title Asc", "gold": "SELECT Title FROM Cartoon ORDER BY title", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List all cartoon directed by \"Ben Jones\".", "predicted": "SELECT Cartoon.Title FROM Cartoon WHERE Cartoon.Directed_by = \"MarkJones\"", "gold": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of all cartoons directed by Ben Jones?", "predicted": "SELECT Cartoon.Title FROM Cartoon WHERE Cartoon.Directed_by = \"MarkJones\"", "gold": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many cartoons were written by \"Joseph Kuhr\"?", "predicted": "SELECT Count(*) FROM Cartoon WHERE Cartoon.Written_by = \"StevenKuKuhr\"", "gold": "SELECT count(*) FROM Cartoon WHERE Written_by = \"Joseph Kuhr\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the number of cartoones written by Joseph Kuhr?", "predicted": "SELECT Count(*) FROM Cartoon WHERE Cartoon.Written_by = \"OyKuKuhr\"", "gold": "SELECT count(*) FROM Cartoon WHERE Written_by = \"Joseph Kuhr\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "list all cartoon titles and their directors ordered by their air date", "predicted": "SELECT Cartoon.Title, Cartoon.Directed_by FROM Cartoon ORDER BY Cartoon.Original_air_date Asc", "gold": "SELECT title , Directed_by FROM Cartoon ORDER BY Original_air_date", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the name and directors of all the cartoons that are ordered by air date?", "predicted": "SELECT Cartoon.Title, Cartoon.Directed_by FROM Cartoon ORDER BY Cartoon.Original_air_date Asc", "gold": "SELECT title , Directed_by FROM Cartoon ORDER BY Original_air_date", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the title of all cartoon directed by \"Ben Jones\" or \"Brandon Vietti\".", "predicted": "SELECT Cartoon.Title FROM Cartoon WHERE Cartoon.Directed_by = \"PeterJonesJones\" OR Cartoon.Written_by = \"BlanVietViet\"", "gold": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\" OR Directed_by = \"Brandon Vietti\";", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the titles of all cartoons directed by Ben Jones or Brandon Vietti?", "predicted": "SELECT Cartoon.Title FROM Cartoon WHERE Cartoon.Directed_by = \"MarkJonesJones\" OR Cartoon.Written_by = \"BlanVietViet\"", "gold": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\" OR Directed_by = \"Brandon Vietti\";", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which country has the most of TV Channels? List the country and number of TV Channels it has.", "predicted": "SELECT TV_Channel.Country, Count(*) FROM TV_Channel GROUP BY TV_Channel.Country ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Country , count(*) FROM TV_Channel GROUP BY Country ORDER BY count(*) DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the country with the most number of TV Channels and how many does it have?", "predicted": "SELECT TV_Channel.Country, Count(*) FROM TV_Channel GROUP BY TV_Channel.Country ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Country , count(*) FROM TV_Channel GROUP BY Country ORDER BY count(*) DESC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "List the number of different series names and contents in the TV Channel table.", "predicted": "SELECT Count(DISTINCT TV_Channel.series_name), Count(DISTINCT TV_Channel.Content) FROM TV_Channel", "gold": "SELECT count(DISTINCT series_name) , count(DISTINCT content) FROM TV_Channel;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many different series and contents are listed in the TV Channel table?", "predicted": "SELECT Count(DISTINCT TV_Channel.Content), Count(DISTINCT TV_Channel.Content) FROM TV_Channel", "gold": "SELECT count(DISTINCT series_name) , count(DISTINCT content) FROM TV_Channel;", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the content of TV Channel with serial name \"Sky Radio\"?", "predicted": "SELECT TV_Channel.Content FROM TV_Channel WHERE TV_Channel.series_name = \"JaRadioRadio\"", "gold": "SELECT Content FROM TV_Channel WHERE series_name = \"Sky Radio\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the content of the series Sky Radio?", "predicted": "SELECT TV_Channel.Content FROM TV_Channel WHERE TV_Channel.series_name = \"TVRadio\"", "gold": "SELECT Content FROM TV_Channel WHERE series_name = \"Sky Radio\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the Package Option of TV Channel with serial name \"Sky Radio\"?", "predicted": "SELECT TV_Channel.Package_Option FROM TV_Channel WHERE TV_Channel.series_name = \"URadioRadio\"", "gold": "SELECT Package_Option FROM TV_Channel WHERE series_name = \"Sky Radio\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the Package Options of the TV Channels whose series names are Sky Radio?", "predicted": "SELECT TV_Channel.Package_Option FROM TV_Channel WHERE TV_Channel.series_name = \"TeRadioRadio\"", "gold": "SELECT Package_Option FROM TV_Channel WHERE series_name = \"Sky Radio\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many TV Channel using language English?", "predicted": "SELECT Count(*) FROM TV_Channel WHERE TV_Channel.Language = \"english\"", "gold": "SELECT count(*) FROM TV_Channel WHERE LANGUAGE = \"English\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many TV Channels use the English language?", "predicted": "SELECT Count(*) FROM TV_Channel WHERE TV_Channel.Language = \"english\"", "gold": "SELECT count(*) FROM TV_Channel WHERE LANGUAGE = \"English\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the language used least number of TV Channel. List language and number of TV Channel.", "predicted": "SELECT TV_Channel.Language, Count(*) FROM TV_Channel GROUP BY TV_Channel.Language ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT LANGUAGE , count(*) FROM TV_Channel GROUP BY LANGUAGE ORDER BY count(*) ASC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What are the languages used by the least number of TV Channels and how many channels use it?", "predicted": "SELECT TV_Channel.Language, Count(*) FROM TV_Channel GROUP BY TV_Channel.Language ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT LANGUAGE , count(*) FROM TV_Channel GROUP BY LANGUAGE ORDER BY count(*) ASC LIMIT 1;", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "List each language and the number of TV Channels using it.", "predicted": "SELECT TV_Channel.Language, Count(*) FROM TV_Channel GROUP BY TV_Channel.Language", "gold": "SELECT LANGUAGE , count(*) FROM TV_Channel GROUP BY LANGUAGE", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For each language, list the number of TV Channels that use it.", "predicted": "SELECT TV_Channel.Language, Count(*) FROM TV_Channel GROUP BY TV_Channel.Language", "gold": "SELECT LANGUAGE , count(*) FROM TV_Channel GROUP BY LANGUAGE", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the TV Channel that shows the cartoon \"The Rise of the Blue Beetle!\"? List the TV Channel's series name.", "predicted": "SELECT TV_Channel.series_name FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Title = \"TheRiseofofBeBe\"", "gold": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T2.Title = \"The Rise of the Blue Beetle!\";", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the series name of the TV Channel that shows the cartoon \"The Rise of the Blue Beetle\"?", "predicted": "SELECT TV_Channel.series_name FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Title = \"TheRiseofofBeBe\"", "gold": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T2.Title = \"The Rise of the Blue Beetle!\";", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the title of all Cartoons showed on TV Channel with series name \"Sky Radio\".", "predicted": "SELECT Cartoon.Title FROM TV_Channel JOIN TV_series ON TV_Channel.id = TV_series.Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE TV_Channel.series_name = \"sRadioRadio\"", "gold": "SELECT T2.Title FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\";", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the title of all the cartools that are on the TV Channel with the series name \"Sky Radio\"?", "predicted": "SELECT Cartoon.Title FROM TV_Channel JOIN TV_series ON TV_Channel.id = TV_series.Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE TV_Channel.series_name = \"sRadioRadio\"", "gold": "SELECT T2.Title FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\";", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the Episode of all TV series sorted by rating.", "predicted": "SELECT TV_series.Episode FROM TV_series ORDER BY TV_series.Rating Asc", "gold": "SELECT Episode FROM TV_series ORDER BY rating", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are all of the episodes ordered by ratings?", "predicted": "SELECT TV_series.Episode FROM TV_series ORDER BY TV_series.Rating Asc", "gold": "SELECT Episode FROM TV_series ORDER BY rating", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List top 3 highest Rating TV series. List the TV series's Episode and Rating.", "predicted": "SELECT TV_series.Episode, TV_series.Rating FROM TV_series ORDER BY TV_series.Rating Desc LIMIT 3", "gold": "SELECT Episode , Rating FROM TV_series ORDER BY Rating DESC LIMIT 3;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are 3 most highly rated episodes in the TV series table and what were those ratings?", "predicted": "SELECT TV_series.Episode, TV_series.Rating FROM TV_series ORDER BY TV_series.Rating Desc LIMIT 3", "gold": "SELECT Episode , Rating FROM TV_series ORDER BY Rating DESC LIMIT 3;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is minimum and maximum share of TV series?", "predicted": "SELECT Min(TV_series.Share), Max(TV_series.Share) FROM TV_series", "gold": "SELECT max(SHARE) , min(SHARE) FROM TV_series;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the maximum and minimum share for the TV series?", "predicted": "SELECT Max(TV_series.Share), Min(TV_series.Share) FROM TV_series", "gold": "SELECT max(SHARE) , min(SHARE) FROM TV_series;", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the air date of TV series with Episode \"A Love of a Lifetime\"?", "predicted": "SELECT TV_series.Air_Date FROM TV_series WHERE TV_series.Episode = \"ALoveofaLifeLifeLife\"", "gold": "SELECT Air_Date FROM TV_series WHERE Episode = \"A Love of a Lifetime\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "When did the episode \"A Love of a Lifetime\" air?", "predicted": "SELECT TV_series.Air_Date FROM TV_series WHERE TV_series.Episode = \"ALoveofaLifeLifetime\"", "gold": "SELECT Air_Date FROM TV_series WHERE Episode = \"A Love of a Lifetime\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is Weekly Rank of TV series with Episode \"A Love of a Lifetime\"?", "predicted": "SELECT TV_series.Weekly_Rank FROM TV_series WHERE TV_series.Episode = \"ALoveofaLifeLifeLife\"", "gold": "SELECT Weekly_Rank FROM TV_series WHERE Episode = \"A Love of a Lifetime\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the weekly rank for the episode \"A Love of a Lifetime\"?", "predicted": "SELECT TV_series.Weekly_Rank FROM TV_series WHERE TV_series.Episode = \"ALoveofaLifeLifetime\"", "gold": "SELECT Weekly_Rank FROM TV_series WHERE Episode = \"A Love of a Lifetime\";", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the TV Channel of TV series with Episode \"A Love of a Lifetime\"? List the TV Channel's series name.", "predicted": "SELECT TV_Channel.series_name FROM TV_Channel JOIN TV_series ON TV_Channel.id = TV_series.Channel WHERE TV_series.Episode = \"ALoveofaLifeLifeLife\"", "gold": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T2.Episode = \"A Love of a Lifetime\";", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the name of the series that has the episode \"A Love of a Lifetime\"?", "predicted": "SELECT TV_Channel.series_name FROM TV_Channel JOIN TV_series ON TV_Channel.id = TV_series.Channel WHERE TV_series.Episode = \"ALoveofaLifeLifeLife\"", "gold": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T2.Episode = \"A Love of a Lifetime\";", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the Episode of all TV series showed on TV Channel with series name \"Sky Radio\".", "predicted": "SELECT TV_series.Episode FROM TV_Channel JOIN TV_series ON TV_Channel.id = TV_series.Channel WHERE TV_Channel.series_name = \"sRadioRadio\"", "gold": "SELECT T2.Episode FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\";", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the episode for the TV series named \"Sky Radio\"?", "predicted": "SELECT TV_series.Episode FROM TV_Channel JOIN TV_series ON TV_Channel.id = TV_series.Channel WHERE TV_Channel.series_name = \"TVRadio\"", "gold": "SELECT T2.Episode FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\";", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the number of cartoons directed by each of the listed directors.", "predicted": "SELECT Cartoon.Directed_by, Count(*) FROM Cartoon GROUP BY Cartoon.Directed_by", "gold": "SELECT count(*) , Directed_by FROM cartoon GROUP BY Directed_by", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many cartoons did each director create?", "predicted": "SELECT Cartoon.Directed_by, Count(*) FROM Cartoon GROUP BY Cartoon.Directed_by", "gold": "SELECT count(*) , Directed_by FROM cartoon GROUP BY Directed_by", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the production code and channel of the most recently aired cartoon .", "predicted": "SELECT Cartoon.Production_code, Cartoon.Channel FROM Cartoon ORDER BY Cartoon.Production_code Desc LIMIT 1", "gold": "select production_code , channel from cartoon order by original_air_date desc limit 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the produdction code and channel of the most recent cartoon ?", "predicted": "SELECT Cartoon.Production_code, Cartoon.Channel FROM Cartoon ORDER BY Cartoon.Production_code Desc LIMIT 1", "gold": "select production_code , channel from cartoon order by original_air_date desc limit 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the package choice and series name of the TV channel that has high definition TV.", "predicted": "SELECT TV_Channel.Package_Option, TV_Channel.series_name FROM TV_Channel WHERE TV_Channel.Hight_definition_TV = \"Universal\"", "gold": "SELECT package_option , series_name FROM TV_Channel WHERE hight_definition_TV = \"yes\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the package options and the name of the series for the TV Channel that supports high definition TV?", "predicted": "SELECT TV_Channel.Package_Option, TV_Channel.series_name FROM TV_Channel WHERE TV_Channel.Hight_definition_TV = \"Y\"", "gold": "SELECT package_option , series_name FROM TV_Channel WHERE hight_definition_TV = \"yes\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "which countries' tv channels are playing some cartoon written by Todd Casey?", "predicted": "SELECT TV_Channel.Country, TV_Channel.Country FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Written_by = \"NiddCasey\"", "gold": "SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the countries that have cartoons on TV that were written by Todd Casey?", "predicted": "SELECT TV_Channel.Country FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Written_by = \"TddCasey\"", "gold": "SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "which countries' tv channels are not playing any cartoon written by Todd Casey?", "predicted": "SELECT TV_Channel.Country, TV_Channel.Country FROM TV_Channel EXCEPT SELECT TV_Channel.Country, TV_Channel.Country FROM Cartoon JOIN TV_Channel ON Cartoon.Channel = TV_Channel.id WHERE Cartoon.Written_by = \"TddCaseCasey\"", "gold": "SELECT country FROM TV_Channel EXCEPT SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the countries that are not playing cartoons written by Todd Casey?", "predicted": "SELECT TV_Channel.Country FROM TV_Channel EXCEPT SELECT TV_Channel.Country FROM Cartoon JOIN TV_Channel ON Cartoon.Channel = TV_Channel.id WHERE Cartoon.Written_by = \"TddCaseCasey\"", "gold": "SELECT country FROM TV_Channel EXCEPT SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the series name and country of the tv channel that is playing some cartoons directed by Ben Jones and Michael Chang?", "predicted": "SELECT TV_Channel.series_name, TV_Channel.Country FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Directed_by = \"WalterChang\" AND Cartoon.Written_by = \"WalterChang\" INTERSECT SELECT TV_Channel.series_name, TV_Channel.Country FROM Cartoon JOIN TV_Channel ON Cartoon.Channel = TV_Channel.id WHERE Cartoon.Written_by = \"WalterChang\"", "gold": "SELECT T1.series_name , T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Michael Chang' INTERSECT SELECT T1.series_name , T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Ben Jones'", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the series name and country of all TV channels that are playing cartoons directed by Ben Jones and cartoons directed by Michael Chang?", "predicted": "SELECT TV_Channel.series_name, TV_Channel.Country FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Directed_by = \"WalJones\" INTERSECT SELECT TV_Channel.series_name, TV_Channel.Country FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Directed_by = \"WalterChang\"", "gold": "SELECT T1.series_name , T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Michael Chang' INTERSECT SELECT T1.series_name , T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Ben Jones'", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "find the pixel aspect ratio and nation of the tv channels that do not use English.", "predicted": "SELECT TV_Channel.Pixel_aspect_ratio_PAR, TV_Channel.Country FROM TV_Channel WHERE TV_Channel.Language != \"USA\"", "gold": "SELECT Pixel_aspect_ratio_PAR , country FROM tv_channel WHERE LANGUAGE != 'English'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the pixel aspect ratio and country of origin for all TV channels that do not use English?", "predicted": "SELECT TV_Channel.Pixel_aspect_ratio_PAR, TV_Channel.Country FROM TV_Channel WHERE TV_Channel.Language != \"USA\"", "gold": "SELECT Pixel_aspect_ratio_PAR , country FROM tv_channel WHERE LANGUAGE != 'English'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "find id of the tv channels that from the countries where have more than two tv channels.", "predicted": "SELECT TV_Channel.Country FROM TV_Channel GROUP BY TV_Channel.Country HAVING Count(*) > 2", "gold": "SELECT id FROM tv_channel GROUP BY country HAVING count(*) > 2", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the ids of all tv channels that have more than 2 TV channels?", "predicted": "SELECT TV_Channel.id FROM TV_Channel GROUP BY TV_Channel.id HAVING Count(*) > 2", "gold": "SELECT id FROM tv_channel GROUP BY country HAVING count(*) > 2", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "find the id of tv channels that do not play any cartoon directed by Ben Jones.", "predicted": "SELECT Cartoon.id FROM Cartoon EXCEPT SELECT Cartoon.Channel FROM Cartoon WHERE Cartoon.Directed_by = \"WalJonesJones\"", "gold": "SELECT id FROM TV_Channel EXCEPT SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones'", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the ids of the TV channels that do not have any cartoons directed by Ben Jones?", "predicted": "SELECT TV_Channel.id FROM TV_Channel EXCEPT SELECT Cartoon.Channel FROM Cartoon WHERE Cartoon.Directed_by = \"WalJonesJones\"", "gold": "SELECT id FROM TV_Channel EXCEPT SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones'", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "find the package option of the tv channel that do not have any cartoon directed by Ben Jones.", "predicted": "SELECT TV_Channel.Package_Option FROM TV_Channel EXCEPT SELECT TV_Channel.Package_Option FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Directed_by = \"WalJonesJones\"", "gold": "SELECT package_option FROM TV_Channel WHERE id NOT IN (SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones')", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}}}, {"question": "What are the package options of all tv channels that are not playing any cartoons directed by Ben Jones?", "predicted": "SELECT TV_Channel.Package_Option FROM TV_Channel EXCEPT SELECT TV_Channel.Package_Option FROM TV_Channel JOIN Cartoon ON TV_Channel.id = Cartoon.Channel WHERE Cartoon.Directed_by = \"WalJonesJones\"", "gold": "SELECT package_option FROM TV_Channel WHERE id NOT IN (SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones')", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}}}, {"question": "How many poker players are there?", "predicted": "SELECT Count(*) FROM poker_player", "gold": "SELECT count(*) FROM poker_player", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of poker players.", "predicted": "SELECT Count(*) FROM poker_player", "gold": "SELECT count(*) FROM poker_player", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the earnings of poker players in descending order.", "predicted": "SELECT poker_player.Earnings FROM poker_player ORDER BY poker_player.Earnings Desc", "gold": "SELECT Earnings FROM poker_player ORDER BY Earnings DESC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the earnings of poker players, ordered descending by value?", "predicted": "SELECT poker_player.Earnings FROM poker_player ORDER BY poker_player.Earnings Desc", "gold": "SELECT Earnings FROM poker_player ORDER BY Earnings DESC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the final tables made and the best finishes of poker players.", "predicted": "SELECT poker_player.Final_Table_Made, poker_player.Best_Finish FROM poker_player", "gold": "SELECT Final_Table_Made , Best_Finish FROM poker_player", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the final tables made and best finishes for all poker players?", "predicted": "SELECT poker_player.Final_Table_Made, poker_player.Best_Finish FROM poker_player", "gold": "SELECT Final_Table_Made , Best_Finish FROM poker_player", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the average earnings of poker players?", "predicted": "SELECT Avg(poker_player.Earnings) FROM poker_player", "gold": "SELECT avg(Earnings) FROM poker_player", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Return the average earnings across all poker players.", "predicted": "SELECT Avg(poker_player.Earnings) FROM poker_player", "gold": "SELECT avg(Earnings) FROM poker_player", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the money rank of the poker player with the highest earnings?", "predicted": "SELECT poker_player.Money_Rank FROM poker_player ORDER BY poker_player.Earnings Desc LIMIT 1", "gold": "SELECT Money_Rank FROM poker_player ORDER BY Earnings DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Return the money rank of the player with the greatest earnings.", "predicted": "SELECT poker_player.Money_Rank FROM poker_player ORDER BY poker_player.Earnings Desc LIMIT 1", "gold": "SELECT Money_Rank FROM poker_player ORDER BY Earnings DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the maximum number of final tables made among poker players with earnings less than 200000?", "predicted": "SELECT Max(poker_player.Final_Table_Made) FROM poker_player WHERE poker_player.Earnings < 200000", "gold": "SELECT max(Final_Table_Made) FROM poker_player WHERE Earnings < 200000", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the maximum final tables made across all poker players who have earnings below 200000.", "predicted": "SELECT Max(poker_player.Final_Table_Made) FROM poker_player WHERE poker_player.Earnings < 200000", "gold": "SELECT max(Final_Table_Made) FROM poker_player WHERE Earnings < 200000", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of poker players?", "predicted": "SELECT people.Name FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID", "gold": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Return the names of all the poker players.", "predicted": "SELECT people.Name FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID", "gold": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the names of poker players whose earnings is higher than 300000?", "predicted": "SELECT people.Name FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID WHERE poker_player.Earnings > 300000", "gold": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Earnings > 300000", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the names of poker players who have earnings above 300000.", "predicted": "SELECT people.Name FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID WHERE poker_player.Earnings > 300000", "gold": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Earnings > 300000", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the names of poker players ordered by the final tables made in ascending order.", "predicted": "SELECT people.Name FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID ORDER BY poker_player.Final_Table_Made Asc", "gold": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Final_Table_Made", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of poker players, ordered ascending by the number of final tables they have made?", "predicted": "SELECT people.Name FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID ORDER BY poker_player.Final_Table_Made Asc", "gold": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Final_Table_Made", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the birth date of the poker player with the lowest earnings?", "predicted": "SELECT people.Birth_Date FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID ORDER BY poker_player.Earnings Asc LIMIT 1", "gold": "SELECT T1.Birth_Date FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings ASC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Return the birth date of the poker player with the lowest earnings.", "predicted": "SELECT people.Birth_Date FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID ORDER BY poker_player.Earnings Asc LIMIT 1", "gold": "SELECT T1.Birth_Date FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings ASC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the money rank of the tallest poker player?", "predicted": "SELECT poker_player.Money_Rank FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID ORDER BY people.Height Desc LIMIT 1", "gold": "SELECT T2.Money_Rank FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Height DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Return the money rank of the poker player with the greatest height.", "predicted": "SELECT poker_player.Money_Rank FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID ORDER BY people.Height Desc LIMIT 1", "gold": "SELECT T2.Money_Rank FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Height DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the average earnings of poker players with height higher than 200?", "predicted": "SELECT Avg(poker_player.Earnings) FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID WHERE people.Height > 200", "gold": "SELECT avg(T2.Earnings) FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Height > 200", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give average earnings of poker players who are taller than 200.", "predicted": "SELECT Avg(poker_player.Earnings) FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID WHERE people.Height > 200", "gold": "SELECT avg(T2.Earnings) FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Height > 200", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of poker players in descending order of earnings?", "predicted": "SELECT people.Name FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID ORDER BY poker_player.Earnings Desc", "gold": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings DESC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Return the names of poker players sorted by their earnings descending.", "predicted": "SELECT people.Name FROM poker_player JOIN people ON poker_player.People_ID = people.People_ID ORDER BY poker_player.Earnings Desc", "gold": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings DESC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are different nationalities of people and the corresponding number of people from each nation?", "predicted": "SELECT people.Nationality, Count(*) FROM people GROUP BY people.Nationality", "gold": "SELECT Nationality , COUNT(*) FROM people GROUP BY Nationality", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many people are there of each nationality?", "predicted": "SELECT people.Nationality, Count(*) FROM people GROUP BY people.Nationality", "gold": "SELECT Nationality , COUNT(*) FROM people GROUP BY Nationality", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the most common nationality of people?", "predicted": "SELECT people.Nationality FROM people GROUP BY people.Nationality ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Nationality FROM people GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Give the nationality that is most common across all people.", "predicted": "SELECT people.Nationality FROM people GROUP BY people.Nationality ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Nationality FROM people GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What are the nationalities that are shared by at least two people?", "predicted": "SELECT people.Nationality FROM people GROUP BY people.Nationality HAVING Count(*) >= 2", "gold": "SELECT Nationality FROM people GROUP BY Nationality HAVING COUNT(*) >= 2", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Return the nationalities for which there are two or more people.", "predicted": "SELECT people.Nationality FROM people GROUP BY people.Nationality HAVING Count(*) >= 2", "gold": "SELECT Nationality FROM people GROUP BY Nationality HAVING COUNT(*) >= 2", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the names and birth dates of people in ascending alphabetical order of name.", "predicted": "SELECT people.Name, people.Birth_Date FROM people ORDER BY people.Name Asc", "gold": "SELECT Name , Birth_Date FROM people ORDER BY Name ASC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names and birth dates of people, ordered by their names in alphabetical order?", "predicted": "SELECT people.Name, people.Birth_Date FROM people ORDER BY people.Name Asc", "gold": "SELECT Name , Birth_Date FROM people ORDER BY Name ASC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show names of people whose nationality is not \"Russia\".", "predicted": "SELECT people.Name FROM people WHERE people.Nationality != \"Ice\"", "gold": "SELECT Name FROM people WHERE Nationality != \"Russia\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of people who are not from Russia?", "predicted": "SELECT people.Name FROM people WHERE people.Nationality != \"Ice\"", "gold": "SELECT Name FROM people WHERE Nationality != \"Russia\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the names of people that are not poker players.", "predicted": "SELECT people.Name FROM people WHERE people.People_ID NOT IN (SELECT poker_player.People_ID FROM poker_player)", "gold": "SELECT Name FROM people WHERE People_ID NOT IN (SELECT People_ID FROM poker_player)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of people who do not play poker?", "predicted": "SELECT people.Name FROM people WHERE people.People_ID NOT IN (SELECT poker_player.People_ID FROM poker_player)", "gold": "SELECT Name FROM people WHERE People_ID NOT IN (SELECT People_ID FROM poker_player)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many distinct nationalities are there?", "predicted": "SELECT Count(DISTINCT people.Nationality) FROM people", "gold": "SELECT count(DISTINCT Nationality) FROM people", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of different nationalities.", "predicted": "SELECT Count(DISTINCT people.Nationality) FROM people", "gold": "SELECT count(DISTINCT Nationality) FROM people", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many states are there?", "predicted": "SELECT Count(AREA_CODE_STATE.state) FROM AREA_CODE_STATE", "gold": "SELECT count(*) FROM area_code_state", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the contestant numbers and names, ordered by contestant name descending.", "predicted": "SELECT CONTESTANTS.contestant_number, CONTESTANTS.contestant_name FROM CONTESTANTS ORDER BY CONTESTANTS.contestant_name Desc", "gold": "SELECT contestant_number , contestant_name FROM contestants ORDER BY contestant_name DESC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the vote ids, phone numbers and states of all votes.", "predicted": "SELECT VOTES.vote_id, VOTES.phone_number, VOTES.state FROM VOTES", "gold": "SELECT vote_id , phone_number , state FROM votes", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the maximum and minimum values of area codes?", "predicted": "SELECT Max(AREA_CODE_STATE.area_code), Min(AREA_CODE_STATE.area_code) FROM AREA_CODE_STATE", "gold": "SELECT max(area_code) , min(area_code) FROM area_code_state", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is last date created of votes from the state 'CA'?", "predicted": "SELECT VOTES.created FROM AREA_CODE_STATE JOIN VOTES ON AREA_CODE_STATE.state = VOTES.state WHERE AREA_CODE_STATE.state = \"CA\"", "gold": "SELECT max(created) FROM votes WHERE state = 'CA'", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the contestants whose names are not 'Jessie Alloway'", "predicted": "SELECT CONTESTANTS.contestant_name FROM CONTESTANTS WHERE CONTESTANTS.contestant_name != \"Goods\"", "gold": "SELECT contestant_name FROM contestants WHERE contestant_name != 'Jessie Alloway'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the distinct states and create time of all votes?", "predicted": "SELECT DISTINCT VOTES.state, VOTES.created FROM VOTES", "gold": "SELECT DISTINCT state , created FROM votes", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the contestant numbers and names of the contestants who had at least two votes?", "predicted": "SELECT CONTESTANTS.contestant_number, CONTESTANTS.contestant_name FROM CONTESTANTS JOIN VOTES ON CONTESTANTS.contestant_number = VOTES.contestant_number GROUP BY CONTESTANTS.contestant_number HAVING Count(*) >= 2", "gold": "SELECT T1.contestant_number , T1.contestant_name FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number GROUP BY T1.contestant_number HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Of all the contestants who got voted, what is the contestant number and name of the contestant who got least votes?", "predicted": "SELECT CONTESTANTS.contestant_number, CONTESTANTS.contestant_name FROM CONTESTANTS JOIN VOTES ON CONTESTANTS.contestant_number = VOTES.contestant_number GROUP BY VOTES.contestant_number ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T1.contestant_number , T1.contestant_name FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number GROUP BY T1.contestant_number ORDER BY count(*) ASC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What are the number of votes from state 'NY' or 'CA'?", "predicted": "SELECT Count(*) FROM AREA_CODE_STATE JOIN VOTES ON AREA_CODE_STATE.state = VOTES.state WHERE AREA_CODE_STATE.state = \"NY\" OR AREA_CODE_STATE.state = \"BAL\"", "gold": "SELECT count(*) FROM votes WHERE state = 'NY' OR state = 'CA'", "predicted_parse_error": false, "hardness": "medium", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many contestants did not get voted?", "predicted": "SELECT Count(*) FROM CONTESTANTS WHERE CONTESTANTS.contestant_number NOT IN (SELECT VOTES.contestant_number FROM VOTES)", "gold": "SELECT count(*) FROM contestants WHERE contestant_number NOT IN ( SELECT contestant_number FROM votes )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the area code in which the most voters voted?", "predicted": "SELECT AREA_CODE_STATE.area_code FROM AREA_CODE_STATE JOIN VOTES ON AREA_CODE_STATE.state = VOTES.state GROUP BY AREA_CODE_STATE.area_code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.area_code FROM area_code_state AS T1 JOIN votes AS T2 ON T1.state = T2.state GROUP BY T1.area_code ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What are the create dates, states, and phone numbers of the votes that were for the contestant named 'Tabatha Gehling'?", "predicted": "SELECT VOTES.created, VOTES.state, VOTES.phone_number FROM CONTESTANTS JOIN VOTES ON CONTESTANTS.contestant_number = VOTES.contestant_number WHERE CONTESTANTS.contestant_name = \"DukeGehGeh\"", "gold": "SELECT T2.created , T2.state , T2.phone_number FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number WHERE T1.contestant_name = 'Tabatha Gehling'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the area codes in which voters voted both for the contestant 'Tabatha Gehling' and the contestant 'Kelly Clauss'.", "predicted": "SELECT AREA_CODE_STATE.area_code FROM AREA_CODE_STATE JOIN CONTESTANTS JOIN VOTES ON AREA_CODE_STATE.state = VOTES.state AND VOTES.contestant_number = CONTESTANTS.contestant_number WHERE CONTESTANTS.contestant_name = \"ApthaGehling\" INTERSECT SELECT AREA_CODE_STATE.area_code FROM VOTES JOIN CONTESTANTS ON VOTES.contestant_number = CONTESTANTS.contestant_number WHERE CONTESTANTS.contestant_name = \"Gity\"", "gold": "SELECT T3.area_code FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number JOIN area_code_state AS T3 ON T2.state = T3.state WHERE T1.contestant_name = 'Tabatha Gehling' INTERSECT SELECT T3.area_code FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number JOIN area_code_state AS T3 ON T2.state = T3.state WHERE T1.contestant_name = 'Kelly Clauss'", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Return the names of the contestants whose names contain the substring 'Al' .", "predicted": "SELECT CONTESTANTS.contestant_name FROM CONTESTANTS WHERE CONTESTANTS.contestant_name LIKE \"%a%\"", "gold": "select contestant_name from contestants where contestant_name like \"%al%\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of all the countries that became independent after 1950?", "predicted": "SELECT country.Name FROM country WHERE country.IndepYear > 1850", "gold": "SELECT Name FROM country WHERE IndepYear > 1950", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the names of the nations that were founded after 1950.", "predicted": "SELECT country.Name FROM country WHERE country.IndepYear > 1850", "gold": "SELECT Name FROM country WHERE IndepYear > 1950", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many countries have a republic as their form of government?", "predicted": "SELECT Count(DISTINCT country.Name) FROM country", "gold": "SELECT count(*) FROM country WHERE GovernmentForm = \"Republic\"", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}}}, {"question": "How many countries have governments that are republics?", "predicted": "SELECT Count(DISTINCT country.Name) FROM country", "gold": "SELECT count(*) FROM country WHERE GovernmentForm = \"Republic\"", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}}}, {"question": "What is the total surface area of the countries in the Caribbean region?", "predicted": "SELECT Sum(country.SurfaceArea) FROM country WHERE country.Region = \"Research\"", "gold": "SELECT sum(SurfaceArea) FROM country WHERE Region = \"Caribbean\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How much surface area do the countires in the Carribean cover together?", "predicted": "SELECT Sum(country.SurfaceArea) FROM country WHERE country.Continent = \"Tokyo\"", "gold": "SELECT sum(SurfaceArea) FROM country WHERE Region = \"Caribbean\"", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which continent is Anguilla in?", "predicted": "SELECT country.Continent FROM country WHERE country.Name = \"iailla\"", "gold": "SELECT Continent FROM country WHERE Name = \"Anguilla\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the continent name which Anguilla belongs to?", "predicted": "SELECT country.Continent FROM country WHERE country.LocalName = \"Soingilla\"", "gold": "SELECT Continent FROM country WHERE Name = \"Anguilla\"", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which region is the city Kabul located in?", "predicted": "SELECT city.District FROM city WHERE city.Name = \"Ho\"", "gold": "SELECT Region FROM country AS T1 JOIN city AS T2 ON T1.Code = T2.CountryCode WHERE T2.Name = \"Kabul\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What region is Kabul in?", "predicted": "SELECT city.District FROM city WHERE city.Name = \"Suc\"", "gold": "SELECT Region FROM country AS T1 JOIN city AS T2 ON T1.Code = T2.CountryCode WHERE T2.Name = \"Kabul\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which language is the most popular in Aruba?", "predicted": "SELECT countrylanguage.Language FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Name = \"aruba\" GROUP BY countrylanguage.Language ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\" ORDER BY Percentage DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 5}}}, {"question": "What language is predominantly spoken in Aruba?", "predicted": "SELECT countrylanguage.Language FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Name = \"Aruba\" GROUP BY countrylanguage.Language ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\" ORDER BY Percentage DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 5}}}, {"question": "What are the population and life expectancies in Brazil?", "predicted": "SELECT country.Population, country.LifeExpectancy FROM country WHERE country.Name = \"B\"", "gold": "SELECT Population , LifeExpectancy FROM country WHERE Name = \"Brazil\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give me Brazil’s population and life expectancies.", "predicted": "SELECT country.Population, country.LifeExpectancy FROM country WHERE country.Name = \"East\"", "gold": "SELECT Population , LifeExpectancy FROM country WHERE Name = \"Brazil\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the region and population of Angola?", "predicted": "SELECT country.SurfaceArea, country.Population FROM country WHERE country.Name = \"East\"", "gold": "SELECT Population , Region FROM country WHERE Name = \"Angola\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What region does Angola belong to and what is its population?", "predicted": "SELECT country.Region, country.Population FROM country WHERE country.Name = \"East\"", "gold": "SELECT Population , Region FROM country WHERE Name = \"Angola\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average expected life expectancy for countries in the region of Central Africa?", "predicted": "SELECT Avg(country.LifeExpectancy) FROM country WHERE country.Region = \"Canada\"", "gold": "SELECT avg(LifeExpectancy) FROM country WHERE Region = \"Central Africa\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How long is the people’s average life expectancy in Central Africa?", "predicted": "SELECT Avg(country.LifeExpectancy) FROM country WHERE country.Region = \"CoAfricaAfrica\"", "gold": "SELECT avg(LifeExpectancy) FROM country WHERE Region = \"Central Africa\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the name of country that has the shortest life expectancy in Asia?", "predicted": "SELECT country.Name FROM country WHERE country.Region = \"Alice\" ORDER BY country.LifeExpectancy Asc LIMIT 1", "gold": "SELECT Name FROM country WHERE Continent = \"Asia\" ORDER BY LifeExpectancy LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Give the name of the country in Asia with the lowest life expectancy.", "predicted": "SELECT country.Name FROM country WHERE country.Continent = \"East\" ORDER BY country.LifeExpectancy Asc LIMIT 1", "gold": "SELECT Name FROM country WHERE Continent = \"Asia\" ORDER BY LifeExpectancy LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the total population and maximum GNP in Asia?", "predicted": "SELECT Sum(country.Population), Max(country.GNP) FROM country WHERE country.Continent = \"Uniteda\"", "gold": "SELECT sum(Population) , max(GNP) FROM country WHERE Continent = \"Asia\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many people live in Asia, and what is the largest GNP among them?", "predicted": "SELECT Max(country.Population), Max(country.GNP) FROM country WHERE country.Continent = \"UnitedI\"", "gold": "SELECT sum(Population) , max(GNP) FROM country WHERE Continent = \"Asia\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average life expectancy in African countries that are republics?", "predicted": "SELECT Avg(country.LifeExpectancy) FROM country WHERE country.Continent = \"Australia\" AND country.GovernmentForm = \"Tourna\"", "gold": "SELECT avg(LifeExpectancy) FROM country WHERE Continent = \"Africa\" AND GovernmentForm = \"Republic\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the average life expectancy for countries in Africa which are republics?", "predicted": "SELECT Avg(country.LifeExpectancy) FROM country WHERE country.Continent = \"East\" AND country.GovernmentForm = \"Tourna\"", "gold": "SELECT avg(LifeExpectancy) FROM country WHERE Continent = \"Africa\" AND GovernmentForm = \"Republic\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the total surface area of the continents Asia and Europe?", "predicted": "SELECT Sum(country.SurfaceArea) FROM country WHERE country.Continent = \"UK\" OR country.Continent = \"Uniteden\"", "gold": "SELECT sum(SurfaceArea) FROM country WHERE Continent = \"Asia\" OR Continent = \"Europe\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Give the total surface area covered by countries in Asia or Europe.", "predicted": "SELECT Sum(country.SurfaceArea) FROM country WHERE country.Continent = \"Tokyo\" OR country.Continent = \"Tai\"", "gold": "SELECT sum(SurfaceArea) FROM country WHERE Continent = \"Asia\" OR Continent = \"Europe\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many people live in Gelderland district?", "predicted": "SELECT city.Population FROM city WHERE city.District = \"Gierland\"", "gold": "SELECT sum(Population) FROM city WHERE District = \"Gelderland\"", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the total population of Gelderland district?", "predicted": "SELECT Sum(city.Population) FROM city WHERE city.District = \"Gierland\"", "gold": "SELECT sum(Population) FROM city WHERE District = \"Gelderland\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average GNP and total population in all nations whose government is US territory?", "predicted": "SELECT Avg(country.GNP), Sum(country.Population) FROM country WHERE country.Continent = \"United\"", "gold": "SELECT avg(GNP) , sum(population) FROM country WHERE GovernmentForm = \"US Territory\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the mean GNP and total population of nations which are considered US territory.", "predicted": "SELECT Avg(country.GNP), Sum(country.Population) FROM country WHERE country.Continent = \"United\"", "gold": "SELECT avg(GNP) , sum(population) FROM country WHERE GovernmentForm = \"US Territory\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many unique languages are spoken in the world?", "predicted": "SELECT Count(DISTINCT countrylanguage.Language) FROM countrylanguage", "gold": "SELECT count(DISTINCT LANGUAGE) FROM countrylanguage", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the number of distinct languages used around the world?", "predicted": "SELECT Count(DISTINCT countrylanguage.Language) FROM countrylanguage", "gold": "SELECT count(DISTINCT LANGUAGE) FROM countrylanguage", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many type of governments are in Africa?", "predicted": "SELECT Count(DISTINCT country.GovernmentForm) FROM country WHERE country.Continent = \"East\"", "gold": "SELECT count(DISTINCT GovernmentForm) FROM country WHERE Continent = \"Africa\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many different forms of governments are there in Africa?", "predicted": "SELECT Count(DISTINCT country.GovernmentForm) FROM country WHERE country.Continent = \"East\"", "gold": "SELECT count(DISTINCT GovernmentForm) FROM country WHERE Continent = \"Africa\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the total number of languages used in Aruba?", "predicted": "SELECT Count(*) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.LocalName = \"Aruba\"", "gold": "SELECT COUNT(T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many languages are spoken in Aruba?", "predicted": "SELECT Count(countrylanguage.Language) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.LocalName = \"aruba\"", "gold": "SELECT COUNT(T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many official languages does Afghanistan have?", "predicted": "SELECT Count(*) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Name = \"Afghanistan\"", "gold": "SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Afghanistan\" AND IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many official languages are spoken in Afghanistan?", "predicted": "SELECT Count(DISTINCT countrylanguage.Language) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Name = \"Afghanistan\"", "gold": "SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Afghanistan\" AND IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is name of the country that speaks the largest number of languages?", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode GROUP BY countrylanguage.CountryCode ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Give the name of the nation that uses the greatest amount of languages.", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode GROUP BY countrylanguage.CountryCode ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which continent has the most diverse languages?", "predicted": "SELECT country.Continent FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode GROUP BY country.Continent ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.Continent FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Continent ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which continent speaks the most languages?", "predicted": "SELECT country.Continent FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode GROUP BY country.Continent ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.Continent FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Continent ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "How many countries speak both English and Dutch?", "predicted": "SELECT Count(*) FROM country WHERE country.Code = \"UK\" INTERSECT SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"english\"", "gold": "SELECT COUNT(*) FROM (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Dutch\")", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 2}}}, {"question": "What is the number of nations that use English and Dutch?", "predicted": "SELECT Count(*) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"UK\" INTERSECT SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"english\"", "gold": "SELECT COUNT(*) FROM (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Dutch\")", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 2}}}, {"question": "What are the names of nations speak both English and French?", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"F\" INTERSECT SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"english\"", "gold": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\"", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Give the names of nations that speak both English and French.", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"F\" INTERSECT SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"english\"", "gold": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\"", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of nations where both English and French are official languages?", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"F\" INTERSECT SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"english\"", "gold": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\" AND T2.IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Give the names of countries with English and French as official languages.", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"F\" INTERSECT SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"english\"", "gold": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\" AND T2.IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the number of distinct continents where Chinese is spoken?", "predicted": "SELECT Count(DISTINCT country.Continent) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"China\"", "gold": "SELECT COUNT( DISTINCT Continent) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Chinese\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many continents speak Chinese?", "predicted": "SELECT Count(DISTINCT country.Continent) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"China\"", "gold": "SELECT COUNT( DISTINCT Continent) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Chinese\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the regions that use English or Dutch?", "predicted": "SELECT country.Region FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"UK\" OR countrylanguage.Language = \"Man\"", "gold": "SELECT DISTINCT T1.Region FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" OR T2.Language = \"Dutch\"", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which regions speak Dutch or English?", "predicted": "SELECT country.Region FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"UK\" OR countrylanguage.Language = \"Man\"", "gold": "SELECT DISTINCT T1.Region FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" OR T2.Language = \"Dutch\"", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the countries where either English or Dutch is the official language ?", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"UK\" OR countrylanguage.Language = \"Man\"", "gold": "select t1.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode where t2.language = \"english\" and isofficial = \"t\" union select t1.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode where t2.language = \"dutch\" and isofficial = \"t\"", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}}}, {"question": "Which countries have either English or Dutch as an official language?", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"UK\" OR countrylanguage.Language = \"Man\"", "gold": "SELECT * FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND IsOfficial = \"T\" UNION SELECT * FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Dutch\" AND IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}}}, {"question": "Which language is the most popular on the Asian continent?", "predicted": "SELECT countrylanguage.Language FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Continent = \"China\" GROUP BY countrylanguage.Language ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Continent = \"Asia\" GROUP BY T2.Language ORDER BY COUNT (*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 5, "pred_total": 5}}}, {"question": "What is the language that is used by the largest number of Asian nations?", "predicted": "SELECT countrylanguage.Language FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Continent = \"American\" GROUP BY countrylanguage.Language ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Continent = \"Asia\" GROUP BY T2.Language ORDER BY COUNT (*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 5, "pred_total": 5}}}, {"question": "Which languages are spoken by only one country in republic governments?", "predicted": "SELECT countrylanguage.Language FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode GROUP BY countrylanguage.Language HAVING Count(*) = 1", "gold": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.GovernmentForm = \"Republic\" GROUP BY T2.Language HAVING COUNT(*) = 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}}}, {"question": "What languages are only used by a single country with a republic government?", "predicted": "SELECT countrylanguage.Language FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.GovernmentForm = \"1\" GROUP BY countrylanguage.Language HAVING Count(*) = 1", "gold": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.GovernmentForm = \"Republic\" GROUP BY T2.Language HAVING COUNT(*) = 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the city with the largest population that uses English.", "predicted": "SELECT city.Name FROM city WHERE city.Population = (SELECT Max(city.Population) FROM countrylanguage WHERE countrylanguage.Language = \"english\") AND city.Name = \"english\"", "gold": "SELECT T1.Name , T1.Population FROM city AS T1 JOIN countrylanguage AS T2 ON T1.CountryCode = T2.CountryCode WHERE T2.Language = \"English\" ORDER BY T1.Population DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 1}}}, {"question": "What is the most populace city that speaks English?", "predicted": "SELECT city.Name FROM city WHERE city.Population = (SELECT Max(city.Population) FROM countrylanguage WHERE countrylanguage.Language = \"english\") AND city.CountryCode = \"english\"", "gold": "SELECT T1.Name , T1.Population FROM city AS T1 JOIN countrylanguage AS T2 ON T1.CountryCode = T2.CountryCode WHERE T2.Language = \"English\" ORDER BY T1.Population DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 1}}}, {"question": "Find the name, population and expected life length of asian country with the largest area?", "predicted": "SELECT country.Name, country.Population, country.LifeExpectancy FROM country WHERE country.SurfaceArea = \"bay\" AND country.Continent = (SELECT Max(country.SurfaceArea) FROM country WHERE country.Continent = \"Uniteda\")", "gold": "SELECT Name , Population , LifeExpectancy FROM country WHERE Continent = \"Asia\" ORDER BY SurfaceArea DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 1}}}, {"question": "What are the name, population, and life expectancy of the largest Asian country by land?", "predicted": "SELECT country.Name, country.Population, country.LifeExpectancy FROM country WHERE country.Continent = \"yes\"", "gold": "SELECT Name , Population , LifeExpectancy FROM country WHERE Continent = \"Asia\" ORDER BY SurfaceArea DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 1}}}, {"question": "What is average life expectancy in the countries where English is not the official language?", "predicted": "SELECT Avg(country.LifeExpectancy) FROM country WHERE country.Code NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"So\")", "gold": "SELECT avg(LifeExpectancy) FROM country WHERE Name NOT IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\")", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Give the mean life expectancy of countries in which English is not the official language.", "predicted": "SELECT Avg(country.LifeExpectancy) FROM country WHERE country.Code NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"english\")", "gold": "SELECT avg(LifeExpectancy) FROM country WHERE Name NOT IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\")", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the total number of people living in the nations that do not use English?", "predicted": "SELECT Sum(country.Population) FROM country WHERE country.Code NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"USA\")", "gold": "SELECT sum(Population) FROM country WHERE Name NOT IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\")", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many people live in countries that do not speak English?", "predicted": "SELECT Sum(country.Population) FROM country WHERE country.Code NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"USA\")", "gold": "SELECT sum(Population) FROM country WHERE Name NOT IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\")", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the official language spoken in the country whose head of state is Beatrix?", "predicted": "SELECT countrylanguage.Language FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.HeadOfState = \"Robinrix\"", "gold": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = \"Beatrix\" AND T2.IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the official language used in the country the name of whose head of state is Beatrix.", "predicted": "SELECT countrylanguage.Language FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.HeadOfState = \"Robinrix\"", "gold": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = \"Beatrix\" AND T2.IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the total number of unique official languages spoken in the countries that are founded before 1930?", "predicted": "SELECT Count(DISTINCT countrylanguage.Language) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.IndepYear < 1850", "gold": "SELECT count(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For the countries founded before 1930, what is the total number of distinct official languages?", "predicted": "SELECT Count(DISTINCT countrylanguage.Language) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.IndepYear < 1850", "gold": "SELECT count(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = \"T\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the countries that have greater surface area than any country in Europe?", "predicted": "SELECT country.Name FROM country WHERE country.SurfaceArea > (SELECT Max(country.SurfaceArea) FROM country WHERE country.Region = \"Unitedy\")", "gold": "SELECT Name FROM country WHERE SurfaceArea > (SELECT min(SurfaceArea) FROM country WHERE Continent = \"Europe\")", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which countries have greater area than that of any country in Europe?", "predicted": "SELECT country.Name FROM country WHERE country.SurfaceArea > (SELECT Max(country.SurfaceArea) FROM country WHERE country.Continent = \"United0\")", "gold": "SELECT Name FROM country WHERE SurfaceArea > (SELECT min(SurfaceArea) FROM country WHERE Continent = \"Europe\")", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the African countries that have a population less than any country in Asia?", "predicted": "SELECT country.Name FROM country WHERE country.Population < (SELECT Min(country.Population) FROM country WHERE country.Continent = \"Australia\")", "gold": "SELECT Name FROM country WHERE Continent = \"Africa\" AND population < (SELECT max(population) FROM country WHERE Continent = \"Asia\")", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which African countries have a smaller population than that of any country in Asia?", "predicted": "SELECT country.Name FROM country WHERE country.Population < (SELECT Min(country.Population) FROM country WHERE country.Continent = \"Canada\")", "gold": "SELECT Name FROM country WHERE Continent = \"Africa\" AND population < (SELECT min(population) FROM country WHERE Continent = \"Asia\")", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which Asian countries have a population that is larger than any country in Africa?", "predicted": "SELECT country.Name FROM country WHERE country.Population > (SELECT Max(country.Population) FROM country WHERE country.Continent = \"Australia\")", "gold": "SELECT Name FROM country WHERE Continent = \"Asia\" AND population > (SELECT max(population) FROM country WHERE Continent = \"Africa\")", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the Asian countries which have a population larger than that of any country in Africa?", "predicted": "SELECT country.Name FROM country WHERE country.Population > (SELECT country.Population FROM country WHERE country.Continent = \"Australia\")", "gold": "SELECT Name FROM country WHERE Continent = \"Asia\" AND population > (SELECT min(population) FROM country WHERE Continent = \"Africa\")", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the country codes for countries that do not speak English?", "predicted": "SELECT country.Code FROM country WHERE country.Code NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"english\")", "gold": "SELECT CountryCode FROM countrylanguage EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "Return the country codes for countries that do not speak English.", "predicted": "SELECT country.Code FROM country WHERE country.Code NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"english\")", "gold": "SELECT CountryCode FROM countrylanguage EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "What are the country codes of countries where people use languages other than English?", "predicted": "SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language != \"english\"", "gold": "SELECT DISTINCT CountryCode FROM countrylanguage WHERE LANGUAGE != \"English\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the country codes for countries in which people speak langauges that are not English.", "predicted": "SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language != \"english\"", "gold": "SELECT DISTINCT CountryCode FROM countrylanguage WHERE LANGUAGE != \"English\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the codes of the countries that do not speak English and whose government forms are not Republic?", "predicted": "SELECT country.Code FROM country WHERE country.Code NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"USA\")", "gold": "SELECT Code FROM country WHERE GovernmentForm != \"Republic\" EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 3}}}, {"question": "Return the codes of countries that do not speak English and do not have Republics for governments.", "predicted": "SELECT country.Code FROM country WHERE country.Code NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"english\")", "gold": "SELECT Code FROM country WHERE GovernmentForm != \"Republic\" EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 3}}}, {"question": "Which cities are in European countries where English is not the official language?", "predicted": "SELECT city.Name FROM city WHERE city.CountryCode NOT IN (SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"United\")", "gold": "SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND T1.Name NOT IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English')", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of cities in Europe for which English is not the official language?", "predicted": "SELECT city.Name FROM city WHERE city.CountryCode NOT IN (SELECT country.Code FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Continent != \"Unitedta\")", "gold": "SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND T1.Name NOT IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English')", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Which unique cities are in Asian countries where Chinese is the official language ?", "predicted": "SELECT DISTINCT city.Name FROM city JOIN country ON city.CountryCode = country.Code JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Region = \"China\" AND countrylanguage.Language = \"China\"", "gold": "select distinct t3.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode join city as t3 on t1.code = t3.countrycode where t2.isofficial = 't' and t2.language = 'chinese' and t1.continent = \"asia\"", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the different names of cities that are in Asia and for which Chinese is the official language.", "predicted": "SELECT DISTINCT city.Name FROM city JOIN country ON city.CountryCode = country.Code JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE country.Continent = \"China\" AND countrylanguage.Language = \"China\"", "gold": "SELECT DISTINCT T3.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode JOIN city AS T3 ON T1.Code = T3.CountryCode WHERE T2.IsOfficial = 'T' AND T2.Language = 'Chinese' AND T1.Continent = \"Asia\"", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the name, independence year, and surface area of the country with the smallest population?", "predicted": "SELECT country.Name, country.IndepYear, country.SurfaceArea FROM country ORDER BY country.Population Asc LIMIT 1", "gold": "SELECT Name , SurfaceArea , IndepYear FROM country ORDER BY Population LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Give the name, year of independence, and surface area of the country that has the lowest population.", "predicted": "SELECT country.Name, country.IndepYear, country.SurfaceArea FROM country ORDER BY country.Population Asc LIMIT 1", "gold": "SELECT Name , SurfaceArea , IndepYear FROM country ORDER BY Population LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the population, name and leader of the country with the largest area?", "predicted": "SELECT country.Population, country.Name, country.HeadOfState FROM country WHERE country.SurfaceArea = (SELECT Max(country.SurfaceArea) FROM country)", "gold": "SELECT Name , population , HeadOfState FROM country ORDER BY SurfaceArea DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}}}, {"question": "Give the name, population, and head of state for the country that has the largest area.", "predicted": "SELECT country.Name, country.Population, country.HeadOfState FROM country WHERE country.SurfaceArea = (SELECT Max(country.SurfaceArea) FROM country)", "gold": "SELECT Name , population , HeadOfState FROM country ORDER BY SurfaceArea DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}}}, {"question": "Return the country name and the numbers of languages spoken for each country that speaks at least 3 languages.", "predicted": "SELECT country.Name, Count(*) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode GROUP BY country.Code HAVING Count(*) >= 3", "gold": "SELECT COUNT(T2.Language) , T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name HAVING COUNT(*) > 2", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of countries that speak more than 2 languages, as well as how many languages they speak?", "predicted": "SELECT country.Name, Count(*) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode GROUP BY country.Name HAVING Count(*) > 2", "gold": "SELECT COUNT(T2.Language) , T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name HAVING COUNT(*) > 2", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the number of cities in each district whose population is greater than the average population of cities?", "predicted": "SELECT Count(*), city.District FROM city WHERE city.Population > (SELECT Avg(city.Population) FROM city) GROUP BY city.District", "gold": "SELECT count(*) , District FROM city WHERE Population > (SELECT avg(Population) FROM city) GROUP BY District", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many cities in each district have a population that is above the average population across all cities?", "predicted": "SELECT Count(*), city.District FROM city WHERE city.Population > (SELECT Avg(city.Population) FROM city) GROUP BY city.District", "gold": "SELECT count(*) , District FROM city WHERE Population > (SELECT avg(Population) FROM city) GROUP BY District", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the government form name and total population for each government form whose average life expectancy is longer than 72.", "predicted": "SELECT country.GovernmentForm, Sum(country.Population) FROM country GROUP BY country.GovernmentForm HAVING Avg(country.LifeExpectancy) >= 180", "gold": "SELECT sum(Population) , GovernmentForm FROM country GROUP BY GovernmentForm HAVING avg(LifeExpectancy) > 72", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the different government forms and what is the total population of each for government forms that have an average life expectancy greater than 72?", "predicted": "SELECT country.GovernmentForm, Sum(country.Population) FROM country GROUP BY country.GovernmentForm HAVING Avg(country.LifeExpectancy) >= 180", "gold": "SELECT sum(Population) , GovernmentForm FROM country GROUP BY GovernmentForm HAVING avg(LifeExpectancy) > 72", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the average life expectancy and total population for each continent where the average life expectancy is shorter than 72?", "predicted": "SELECT Avg(country.Continent), Avg(country.Population) FROM country WHERE country.LifeExpectancy < 70 GROUP BY country.Continent", "gold": "SELECT sum(Population) , avg(LifeExpectancy) , Continent FROM country GROUP BY Continent HAVING avg(LifeExpectancy) < 72", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}}}, {"question": "What are the different continents and the total popuation and average life expectancy corresponding to each, for continents that have an average life expectancy less than 72?", "predicted": "SELECT country.Continent, Sum(country.Population), country.LifeExpectancy FROM country WHERE country.Continent < 70 GROUP BY country.Continent", "gold": "SELECT sum(Population) , avg(LifeExpectancy) , Continent FROM country GROUP BY Continent HAVING avg(LifeExpectancy) < 72", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names and areas of countries with the top 5 largest area?", "predicted": "SELECT country.Name, country.SurfaceArea FROM country ORDER BY country.SurfaceArea Desc LIMIT 5", "gold": "SELECT Name , SurfaceArea FROM country ORDER BY SurfaceArea DESC LIMIT 5", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Return the names and surface areas of the 5 largest countries.", "predicted": "SELECT country.Name, country.SurfaceArea FROM country ORDER BY country.SurfaceArea Desc LIMIT 5", "gold": "SELECT Name , SurfaceArea FROM country ORDER BY SurfaceArea DESC LIMIT 5", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are names of countries with the top 3 largest population?", "predicted": "SELECT country.Name FROM country ORDER BY country.Population Desc LIMIT 3", "gold": "SELECT Name FROM country ORDER BY Population DESC LIMIT 3", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Return the names of the 3 most populated countries.", "predicted": "SELECT country.Name FROM country ORDER BY country.Population Desc LIMIT 3", "gold": "SELECT Name FROM country ORDER BY Population DESC LIMIT 3", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of the nations with the 3 lowest populations?", "predicted": "SELECT country.Name FROM country ORDER BY country.Population Asc LIMIT 3", "gold": "SELECT Name FROM country ORDER BY Population ASC LIMIT 3", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Return the names of the 3 countries with the fewest people.", "predicted": "SELECT country.Name FROM country ORDER BY country.Population Asc LIMIT 3", "gold": "SELECT Name FROM country ORDER BY Population ASC LIMIT 3", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "how many countries are in Asia?", "predicted": "SELECT Count(*) FROM country WHERE country.Continent = \"East\"", "gold": "SELECT count(*) FROM country WHERE continent = \"Asia\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of countries in Asia.", "predicted": "SELECT Count(*) FROM country WHERE country.Continent = \"East\"", "gold": "SELECT count(*) FROM country WHERE continent = \"Asia\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the countries that are in the continent of Europe and have a population of 80000?", "predicted": "SELECT country.Name FROM country WHERE country.Continent > 8000 AND country.Population = \"UnitedI\"", "gold": "SELECT Name FROM country WHERE continent = \"Europe\" AND Population = \"80000\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the names of countries that are in Europe and have a population equal to 80000.", "predicted": "SELECT country.Name FROM country WHERE country.Continent > 8000 AND country.Population = \"Unitedsa\"", "gold": "SELECT Name FROM country WHERE continent = \"Europe\" AND Population = \"80000\"", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the total population and average area of countries in the continent of North America whose area is bigger than 3000 ?", "predicted": "SELECT Sum(country.Population), Avg(country.SurfaceArea) FROM country WHERE country.Continent > 3000 AND country.SurfaceArea = \"NorthAmericaAmerica\"", "gold": "select sum(population) , avg(surfacearea) from country where continent = \"north america\" and surfacearea > 3000", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give the total population and average surface area corresponding to countries in North America that have a surface area greater than 3000 .", "predicted": "SELECT Sum(country.Population), Avg(country.SurfaceArea) FROM country WHERE country.Region > 3000 AND country.SurfaceArea = \"NorthAmerica\"", "gold": "select sum(population) , avg(surfacearea) from country where continent = \"north america\" and surfacearea > 3000", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the cities whose population is between 160000 and 900000?", "predicted": "SELECT city.Name FROM city WHERE city.Population BETWEEN 200000 AND 70000", "gold": "SELECT name FROM city WHERE Population BETWEEN 160000 AND 900000", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the names of cities that have a population between 160000 and 900000 .", "predicted": "SELECT city.Name FROM city WHERE city.Population BETWEEN 200000 AND 70000", "gold": "select name from city where population between 160000 and 900000", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which language is spoken by the largest number of countries?", "predicted": "SELECT countrylanguage.Language FROM countrylanguage GROUP BY countrylanguage.Language ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT LANGUAGE FROM countrylanguage GROUP BY LANGUAGE ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Give the language that is spoken in the most countries.", "predicted": "SELECT countrylanguage.Language FROM countrylanguage GROUP BY countrylanguage.Language ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT LANGUAGE FROM countrylanguage GROUP BY LANGUAGE ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the language spoken by the largest percentage of people in each country?", "predicted": "SELECT country.Name FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode GROUP BY countrylanguage.Language ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT LANGUAGE , CountryCode , max(Percentage) FROM countrylanguage GROUP BY CountryCode", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 4}}}, {"question": "What are the country codes of the different countries, and what are the languages spoken by the greatest percentage of people for each?", "predicted": "SELECT countrylanguage.CountryCode, countrylanguage.Language FROM countrylanguage GROUP BY countrylanguage.CountryCode ORDER BY Sum(countrylanguage.Percentage) Desc LIMIT 1", "gold": "SELECT LANGUAGE , CountryCode , max(Percentage) FROM countrylanguage GROUP BY CountryCode", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 4}}}, {"question": "What is the total number of countries where Spanish is spoken by the largest percentage of people?", "predicted": "SELECT Count(*) FROM countrylanguage WHERE countrylanguage.Language = \"bangla\" AND countrylanguage.Percentage = \"Spring\"", "gold": "SELECT count(*) , max(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}}}, {"question": "Count the number of countries for which Spanish is the predominantly spoken language.", "predicted": "SELECT Count(*) FROM country JOIN countrylanguage ON country.Code = countrylanguage.CountryCode WHERE countrylanguage.Language = \"english\"", "gold": "SELECT count(*) , max(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}}}, {"question": "What are the codes of countries where Spanish is spoken by the largest percentage of people?", "predicted": "SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"bangla\" ORDER BY countrylanguage.Percentage Desc LIMIT 1", "gold": "SELECT CountryCode , max(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 4}}}, {"question": "Return the codes of countries for which Spanish is the predominantly spoken language.", "predicted": "SELECT countrylanguage.CountryCode FROM countrylanguage WHERE countrylanguage.Language = \"bangla\"", "gold": "SELECT CountryCode , max(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 1}}}, {"question": "How many conductors are there?", "predicted": "SELECT Count(*) FROM conductor", "gold": "SELECT count(*) FROM conductor", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of conductors.", "predicted": "SELECT Count(*) FROM conductor", "gold": "SELECT count(*) FROM conductor", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the names of conductors in ascending order of age.", "predicted": "SELECT conductor.Name FROM conductor ORDER BY conductor.Age Asc", "gold": "SELECT Name FROM conductor ORDER BY Age ASC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of conductors, ordered by age?", "predicted": "SELECT conductor.Name FROM conductor ORDER BY conductor.Age Asc", "gold": "SELECT Name FROM conductor ORDER BY Age ASC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of conductors whose nationalities are not \"USA\"?", "predicted": "SELECT conductor.Name FROM conductor WHERE conductor.Nationality != \"United\"", "gold": "SELECT Name FROM conductor WHERE Nationality != 'USA'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the names of conductors that do not have the nationality \"USA\".", "predicted": "SELECT conductor.Name FROM conductor WHERE conductor.Nationality != \"United\"", "gold": "SELECT Name FROM conductor WHERE Nationality != 'USA'", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the record companies of orchestras in descending order of years in which they were founded?", "predicted": "SELECT orchestra.Record_Company FROM orchestra ORDER BY orchestra.Year_of_Founded Desc", "gold": "SELECT Record_Company FROM orchestra ORDER BY Year_of_Founded DESC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Return the record companies of orchestras, sorted descending by the years in which they were founded.", "predicted": "SELECT orchestra.Record_Company FROM orchestra ORDER BY orchestra.Year_of_Founded Desc", "gold": "SELECT Record_Company FROM orchestra ORDER BY Year_of_Founded DESC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the average attendance of shows?", "predicted": "SELECT Avg(show.Attendance) FROM show", "gold": "SELECT avg(Attendance) FROM SHOW", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Return the average attendance across all shows.", "predicted": "SELECT Avg(show.Attendance) FROM show", "gold": "SELECT avg(Attendance) FROM SHOW", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the maximum and minimum share of performances whose type is not \"Live final\".", "predicted": "SELECT Max(performance.Share), Min(performance.Share) FROM performance WHERE performance.Type != \"nfinalfinal\"", "gold": "SELECT max(SHARE) , min(SHARE) FROM performance WHERE TYPE != \"Live final\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the maximum and minimum shares for performances that do not have the type \"Live final\".", "predicted": "SELECT Max(performance.Share), Min(performance.Share) FROM performance WHERE performance.Type != \"Aerfinal\"", "gold": "SELECT max(SHARE) , min(SHARE) FROM performance WHERE TYPE != \"Live final\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many different nationalities do conductors have?", "predicted": "SELECT Count(DISTINCT conductor.Nationality) FROM conductor", "gold": "SELECT count(DISTINCT Nationality) FROM conductor", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of different nationalities of conductors.", "predicted": "SELECT Count(DISTINCT conductor.Nationality) FROM conductor", "gold": "SELECT count(DISTINCT Nationality) FROM conductor", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List names of conductors in descending order of years of work.", "predicted": "SELECT conductor.Name FROM conductor ORDER BY conductor.Year_of_Work Desc", "gold": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of conductors, sorted descending by the number of years they have worked?", "predicted": "SELECT conductor.Name FROM conductor ORDER BY conductor.Year_of_Work Desc", "gold": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "List the name of the conductor with the most years of work.", "predicted": "SELECT conductor.Name FROM conductor ORDER BY conductor.Year_of_Work Desc LIMIT 1", "gold": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the name of the conductor who has worked the greatest number of years?", "predicted": "SELECT conductor.Name FROM conductor ORDER BY conductor.Year_of_Work Desc LIMIT 1", "gold": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Show the names of conductors and the orchestras they have conducted.", "predicted": "SELECT conductor.Name, orchestra.Orchestra FROM conductor JOIN orchestra ON conductor.Conductor_ID = orchestra.Conductor_ID", "gold": "SELECT T1.Name , T2.Orchestra FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the names of conductors as well as the corresonding orchestras that they have conducted?", "predicted": "SELECT conductor.Name, orchestra.Orchestra FROM conductor JOIN orchestra ON conductor.Conductor_ID = orchestra.Conductor_ID", "gold": "SELECT T1.Name , T2.Orchestra FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Show the names of conductors that have conducted more than one orchestras.", "predicted": "SELECT conductor.Name FROM conductor JOIN orchestra ON conductor.Conductor_ID = orchestra.Conductor_ID GROUP BY orchestra.Conductor_ID HAVING Count(*) > 1", "gold": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID HAVING COUNT(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of conductors who have conducted at more than one orchestra?", "predicted": "SELECT conductor.Name FROM conductor JOIN orchestra ON conductor.Conductor_ID = orchestra.Conductor_ID GROUP BY orchestra.Conductor_ID HAVING Count(*) > 1", "gold": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID HAVING COUNT(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the name of the conductor that has conducted the most number of orchestras.", "predicted": "SELECT conductor.Name FROM conductor JOIN orchestra ON conductor.Conductor_ID = orchestra.Conductor_ID GROUP BY orchestra.Conductor_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the name of the conductor who has conducted the most orchestras?", "predicted": "SELECT conductor.Name FROM conductor JOIN orchestra ON conductor.Conductor_ID = orchestra.Conductor_ID GROUP BY orchestra.Conductor_ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Please show the name of the conductor that has conducted orchestras founded after 2008.", "predicted": "SELECT conductor.Name FROM conductor JOIN orchestra ON conductor.Conductor_ID = orchestra.Conductor_ID WHERE orchestra.Year_of_Founded > 2008", "gold": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID WHERE Year_of_Founded > 2008", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of conductors who have conducted orchestras founded after the year 2008?", "predicted": "SELECT conductor.Name FROM conductor JOIN orchestra ON conductor.Conductor_ID = orchestra.Conductor_ID WHERE orchestra.Year_of_Founded > 2008", "gold": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID WHERE Year_of_Founded > 2008", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Please show the different record companies and the corresponding number of orchestras.", "predicted": "SELECT orchestra.Record_Company, Count(*) FROM orchestra GROUP BY orchestra.Record_Company", "gold": "SELECT Record_Company , COUNT(*) FROM orchestra GROUP BY Record_Company", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many orchestras does each record company manage?", "predicted": "SELECT orchestra.Record_Company, Count(*) FROM orchestra GROUP BY orchestra.Record_Company", "gold": "SELECT Record_Company , COUNT(*) FROM orchestra GROUP BY Record_Company", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Please show the record formats of orchestras in ascending order of count.", "predicted": "SELECT orchestra.Major_Record_Format FROM orchestra GROUP BY orchestra.Major_Record_Format ORDER BY Count(*) Asc", "gold": "SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*) ASC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the major record formats of orchestras, sorted by their frequency?", "predicted": "SELECT orchestra.Major_Record_Format FROM orchestra GROUP BY orchestra.Major_Record_Format ORDER BY Count(*) Asc", "gold": "SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*) ASC", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "List the record company shared by the most number of orchestras.", "predicted": "SELECT orchestra.Record_Company FROM orchestra GROUP BY orchestra.Record_Company ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Record_Company FROM orchestra GROUP BY Record_Company ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the record company used by the greatest number of orchestras?", "predicted": "SELECT orchestra.Record_Company FROM orchestra GROUP BY orchestra.Record_Company ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Record_Company FROM orchestra GROUP BY Record_Company ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "List the names of orchestras that have no performance.", "predicted": "SELECT orchestra.Orchestra FROM orchestra WHERE orchestra.Orchestra_ID NOT IN (SELECT performance.Orchestra_ID FROM performance)", "gold": "SELECT Orchestra FROM orchestra WHERE Orchestra_ID NOT IN (SELECT Orchestra_ID FROM performance)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the orchestras that do not have any performances?", "predicted": "SELECT orchestra.Orchestra FROM orchestra WHERE orchestra.Orchestra_ID NOT IN (SELECT performance.Orchestra_ID FROM performance)", "gold": "SELECT Orchestra FROM orchestra WHERE Orchestra_ID NOT IN (SELECT Orchestra_ID FROM performance)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Show the record companies shared by orchestras founded before 2003 and after 2003.", "predicted": "SELECT orchestra.Record_Company FROM orchestra WHERE orchestra.Year_of_Founded < 2003 INTERSECT SELECT orchestra.Record_Company FROM orchestra WHERE orchestra.Year_of_Founded > 2003", "gold": "SELECT Record_Company FROM orchestra WHERE Year_of_Founded < 2003 INTERSECT SELECT Record_Company FROM orchestra WHERE Year_of_Founded > 2003", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the record companies that are used by both orchestras founded before 2003 and those founded after 2003?", "predicted": "SELECT orchestra.Record_Company FROM orchestra WHERE orchestra.Year_of_Founded < 2003 INTERSECT SELECT orchestra.Record_Company FROM orchestra WHERE orchestra.Year_of_Founded > 1990", "gold": "SELECT Record_Company FROM orchestra WHERE Year_of_Founded < 2003 INTERSECT SELECT Record_Company FROM orchestra WHERE Year_of_Founded > 2003", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the number of orchestras whose record format is \"CD\" or \"DVD\".", "predicted": "SELECT Count(*) FROM orchestra WHERE orchestra.Major_Record_Format = \"CV\" OR orchestra.Major_Record_Format = \"Jaing\"", "gold": "SELECT COUNT(*) FROM orchestra WHERE Major_Record_Format = \"CD\" OR Major_Record_Format = \"DVD\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Count the number of orchestras that have CD or DVD as their record format.", "predicted": "SELECT Count(*) FROM orchestra WHERE orchestra.Major_Record_Format = \"CV\" OR orchestra.Major_Record_Format = \"Jaing\"", "gold": "SELECT COUNT(*) FROM orchestra WHERE Major_Record_Format = \"CD\" OR Major_Record_Format = \"DVD\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the years in which orchestras that have given more than one performance are founded.", "predicted": "SELECT orchestra.Year_of_Founded FROM orchestra JOIN performance ON orchestra.Orchestra_ID = performance.Orchestra_ID GROUP BY performance.Orchestra_ID HAVING Count(*) > 1", "gold": "SELECT Year_of_Founded FROM orchestra AS T1 JOIN performance AS T2 ON T1.Orchestra_ID = T2.Orchestra_ID GROUP BY T2.Orchestra_ID HAVING COUNT(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are years of founding for orchestras that have had more than a single performance?", "predicted": "SELECT orchestra.Year_of_Founded FROM orchestra JOIN performance ON orchestra.Orchestra_ID = performance.Orchestra_ID GROUP BY performance.Orchestra_ID HAVING Count(*) > 1", "gold": "SELECT Year_of_Founded FROM orchestra AS T1 JOIN performance AS T2 ON T1.Orchestra_ID = T2.Orchestra_ID GROUP BY T2.Orchestra_ID HAVING COUNT(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many high schoolers are there?", "predicted": "SELECT Count(*) FROM Highschooler", "gold": "SELECT count(*) FROM Highschooler", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of high schoolers.", "predicted": "SELECT Count(*) FROM Highschooler", "gold": "SELECT count(*) FROM Highschooler", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Show the names and grades of each high schooler.", "predicted": "SELECT Highschooler.name, Highschooler.grade FROM Highschooler", "gold": "SELECT name , grade FROM Highschooler", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the names and grades for each high schooler?", "predicted": "SELECT Highschooler.name, Highschooler.grade FROM Highschooler", "gold": "SELECT name , grade FROM Highschooler", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Show all the grades of the high schoolers.", "predicted": "SELECT DISTINCT Highschooler.grade FROM Highschooler", "gold": "SELECT grade FROM Highschooler", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the grade of each high schooler?", "predicted": "SELECT DISTINCT Highschooler.grade FROM Highschooler", "gold": "SELECT grade FROM Highschooler", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What grade is Kyle in?", "predicted": "SELECT Highschooler.grade FROM Highschooler WHERE Highschooler.name = \"Kne\"", "gold": "SELECT grade FROM Highschooler WHERE name = \"Kyle\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the grade for the high schooler named Kyle.", "predicted": "SELECT Highschooler.grade FROM Highschooler WHERE Highschooler.name = \"Kne\"", "gold": "SELECT grade FROM Highschooler WHERE name = \"Kyle\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the names of all high schoolers in grade 10.", "predicted": "SELECT Highschooler.name FROM Highschooler WHERE Highschooler.grade = 10", "gold": "SELECT name FROM Highschooler WHERE grade = 10", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of all high schoolers in grade 10?", "predicted": "SELECT Highschooler.name FROM Highschooler WHERE Highschooler.grade = 10", "gold": "SELECT name FROM Highschooler WHERE grade = 10", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the ID of the high schooler named Kyle.", "predicted": "SELECT Highschooler.ID FROM Highschooler WHERE Highschooler.name = \"Kne\"", "gold": "SELECT ID FROM Highschooler WHERE name = \"Kyle\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is Kyle's id?", "predicted": "SELECT Highschooler.ID FROM Highschooler WHERE Highschooler.name = \"King\"", "gold": "SELECT ID FROM Highschooler WHERE name = \"Kyle\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many high schoolers are there in grade 9 or 10?", "predicted": "SELECT Count(*) FROM Highschooler WHERE Highschooler.grade = 2009 OR Highschooler.grade = 10", "gold": "SELECT count(*) FROM Highschooler WHERE grade = 9 OR grade = 10", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Count the number of high schoolers in grades 9 or 10.", "predicted": "SELECT Count(*) FROM Highschooler WHERE Highschooler.grade = 2009 OR Highschooler.grade = 10", "gold": "SELECT count(*) FROM Highschooler WHERE grade = 9 OR grade = 10", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the number of high schoolers for each grade.", "predicted": "SELECT Highschooler.grade, Count(*) FROM Highschooler GROUP BY Highschooler.grade", "gold": "SELECT grade , count(*) FROM Highschooler GROUP BY grade", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many high schoolers are in each grade?", "predicted": "SELECT Count(*), Highschooler.grade FROM Highschooler GROUP BY Highschooler.grade", "gold": "SELECT grade , count(*) FROM Highschooler GROUP BY grade", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which grade has the most high schoolers?", "predicted": "SELECT Highschooler.grade FROM Highschooler GROUP BY Highschooler.grade ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT grade FROM Highschooler GROUP BY grade ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Return the grade that has the greatest number of high schoolers.", "predicted": "SELECT Highschooler.grade FROM Highschooler GROUP BY Highschooler.grade ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT grade FROM Highschooler GROUP BY grade ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show me all grades that have at least 4 students.", "predicted": "SELECT Highschooler.grade FROM Highschooler GROUP BY Highschooler.grade HAVING Count(*) >= 4", "gold": "SELECT grade FROM Highschooler GROUP BY grade HAVING count(*) >= 4", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which grades have 4 or more high schoolers?", "predicted": "SELECT Highschooler.grade FROM Highschooler GROUP BY Highschooler.grade HAVING Count(*) >= 4", "gold": "SELECT grade FROM Highschooler GROUP BY grade HAVING count(*) >= 4", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the student IDs and numbers of friends corresponding to each.", "predicted": "SELECT Friend.student_id, Count(*) FROM Friend GROUP BY Friend.student_id", "gold": "SELECT student_id , count(*) FROM Friend GROUP BY student_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many friends does each student have?", "predicted": "SELECT Count(*), Friend.student_id FROM Friend GROUP BY Friend.student_id", "gold": "SELECT student_id , count(*) FROM Friend GROUP BY student_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the names of high school students and their corresponding number of friends.", "predicted": "SELECT Highschooler.name, Count(*) FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id GROUP BY Highschooler.name", "gold": "SELECT T2.name , count(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the high schoolers and how many friends does each have?", "predicted": "SELECT Highschooler.name, Count(*) FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id GROUP BY Highschooler.name", "gold": "SELECT T2.name , count(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the name of the high schooler who has the greatest number of friends?", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id GROUP BY Highschooler.ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Return the name of the high school student with the most friends.", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id GROUP BY Highschooler.ID ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show the names of high schoolers who have at least 3 friends.", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id GROUP BY Highschooler.ID HAVING Count(*) >= 3", "gold": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING count(*) >= 3", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of high schoolers who have 3 or more friends?", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id GROUP BY Highschooler.ID HAVING Count(*) >= 3", "gold": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING count(*) >= 3", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the names of all of the high schooler Kyle's friends.", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id WHERE Highschooler.name = \"Kim\"", "gold": "SELECT T3.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id JOIN Highschooler AS T3 ON T1.friend_id = T3.id WHERE T2.name = \"Kyle\"", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the names of friends of the high school student Kyle.", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id WHERE Highschooler.name = \"Carole\"", "gold": "SELECT T3.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id JOIN Highschooler AS T3 ON T1.friend_id = T3.id WHERE T2.name = \"Kyle\"", "predicted_parse_error": false, "hardness": "hard", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many friends does the high school student Kyle have?", "predicted": "SELECT Count(*) FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id WHERE Highschooler.name = \"Carole\"", "gold": "SELECT count(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of friends Kyle has.", "predicted": "SELECT Count(*) FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id WHERE Highschooler.name = \"Kne\"", "gold": "SELECT count(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show ids of all students who do not have any friends.", "predicted": "SELECT Highschooler.ID FROM Highschooler EXCEPT SELECT Friend.student_id FROM Friend", "gold": "SELECT id FROM Highschooler EXCEPT SELECT student_id FROM Friend", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the ids of high school students who do not have friends?", "predicted": "SELECT Highschooler.ID FROM Highschooler EXCEPT SELECT Friend.student_id FROM Friend", "gold": "SELECT id FROM Highschooler EXCEPT SELECT student_id FROM Friend", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show names of all high school students who do not have any friends.", "predicted": "SELECT Highschooler.name FROM Highschooler WHERE Highschooler.ID NOT IN (SELECT Friend.student_id FROM Friend)", "gold": "SELECT name FROM Highschooler EXCEPT SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "What are the names of students who have no friends?", "predicted": "SELECT Highschooler.name FROM Highschooler WHERE Highschooler.ID NOT IN (SELECT Friend.student_id FROM Friend)", "gold": "SELECT name FROM Highschooler EXCEPT SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "Show the ids of high schoolers who have friends and are also liked by someone else.", "predicted": "SELECT Friend.student_id FROM Friend INTERSECT SELECT Likes.student_id FROM Likes", "gold": "SELECT student_id FROM Friend INTERSECT SELECT liked_id FROM Likes", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the ids of students who both have friends and are liked?", "predicted": "SELECT Friend.student_id FROM Friend INTERSECT SELECT Likes.student_id FROM Likes", "gold": "SELECT student_id FROM Friend INTERSECT SELECT liked_id FROM Likes", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show name of all students who have some friends and also are liked by someone else.", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id INTERSECT SELECT Highschooler.name FROM Highschooler JOIN Likes", "gold": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id INTERSECT SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.liked_id = T2.id", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of high schoolers who both have friends and are liked?", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id INTERSECT SELECT Highschooler.name FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.student_id", "gold": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id INTERSECT SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.liked_id = T2.id", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of likes for each student id.", "predicted": "SELECT Count(*), Likes.student_id FROM Likes GROUP BY Likes.student_id", "gold": "SELECT student_id , count(*) FROM Likes GROUP BY student_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How many likes correspond to each student id?", "predicted": "SELECT Count(*), Likes.student_id FROM Likes GROUP BY Likes.student_id", "gold": "SELECT student_id , count(*) FROM Likes GROUP BY student_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the names of high schoolers who have likes, and numbers of likes for each.", "predicted": "SELECT Highschooler.name, Count(*) FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.liked_id GROUP BY Highschooler.name", "gold": "SELECT T2.name , count(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of high schoolers who have likes, and how many likes does each have?", "predicted": "SELECT Highschooler.name, Count(*) FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.liked_id GROUP BY Highschooler.name", "gold": "SELECT T2.name , count(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the name of the high schooler who has the greatest number of likes?", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.liked_id GROUP BY Likes.student_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Give the name of the student with the most likes.", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.liked_id GROUP BY Likes.student_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show the names of students who have at least 2 likes.", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.liked_id GROUP BY Likes.student_id HAVING Count(*) >= 2", "gold": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of students who have 2 or more likes?", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.liked_id GROUP BY Likes.student_id HAVING Count(*) >= 2", "gold": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the names of students who have a grade higher than 5 and have at least 2 friends.", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id WHERE Highschooler.grade > 5 GROUP BY Highschooler.name HAVING Count(*) >= 2", "gold": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.grade > 5 GROUP BY T1.student_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What are the names of high schoolers who have a grade of over 5 and have 2 or more friends?", "predicted": "SELECT Highschooler.name FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id WHERE Highschooler.grade > 5 GROUP BY Highschooler.name HAVING Count(*) >= 2", "gold": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.grade > 5 GROUP BY T1.student_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many likes does Kyle have?", "predicted": "SELECT Count(*) FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.liked_id WHERE Highschooler.name = \"Kne\"", "gold": "SELECT count(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Return the number of likes that the high schooler named Kyle has.", "predicted": "SELECT Count(*) FROM Highschooler JOIN Likes ON Highschooler.ID = Likes.liked_id WHERE Highschooler.name = \"Kne\"", "gold": "SELECT count(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the average grade of all students who have some friends.", "predicted": "SELECT Avg(Highschooler.grade) FROM Highschooler WHERE Highschooler.ID IN (SELECT Friend.friend_id FROM Friend)", "gold": "SELECT avg(grade) FROM Highschooler WHERE id IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the average grade of students who have friends?", "predicted": "SELECT Avg(Highschooler.grade) FROM Highschooler JOIN Friend ON Highschooler.ID = Friend.student_id WHERE Friend.friend_id IN (SELECT Friend.friend_id FROM Friend)", "gold": "SELECT avg(grade) FROM Highschooler WHERE id IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the minimum grade of students who have no friends.", "predicted": "SELECT Highschooler.grade FROM Highschooler WHERE Highschooler.ID NOT IN (SELECT Friend.student_id FROM Friend)", "gold": "SELECT min(grade) FROM Highschooler WHERE id NOT IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the lowest grade of students who do not have any friends?", "predicted": "SELECT Highschooler.grade FROM Highschooler WHERE Highschooler.ID NOT IN (SELECT Friend.student_id FROM Friend)", "gold": "SELECT min(grade) FROM Highschooler WHERE id NOT IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Which states have both owners and professionals living there?", "predicted": "SELECT Owners.state FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id JOIN Professionals JOIN Treatments ON Dogs.dog_id = Treatments.dog_id AND Treatments.professional_id = Professionals.professional_id WHERE Professionals.role_code = 0 INTERSECT SELECT Professionals.state FROM Professionals", "gold": "SELECT state FROM Owners INTERSECT SELECT state FROM Professionals", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}}}, {"question": "Find the states where both owners and professionals live.", "predicted": "SELECT Owners.state FROM Owners INTERSECT SELECT Professionals.state FROM Professionals", "gold": "SELECT state FROM Owners INTERSECT SELECT state FROM Professionals", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average age of the dogs who have gone through any treatments?", "predicted": "SELECT Avg(Dogs.age) FROM Dogs", "gold": "SELECT avg(age) FROM Dogs WHERE dog_id IN ( SELECT dog_id FROM Treatments )", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}}}, {"question": "Find the average age of the dogs who went through treatments.", "predicted": "SELECT Avg(Dogs.age) FROM Dogs", "gold": "SELECT avg(age) FROM Dogs WHERE dog_id IN ( SELECT dog_id FROM Treatments )", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 0}}}, {"question": "Which professionals live in the state of Indiana or have done treatment on more than 2 treatments? List his or her id, last name and cell phone.", "predicted": "SELECT Professionals.professional_id, Professionals.last_name, Professionals.cell_number FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id WHERE Professionals.state = \"James\" UNION SELECT Professionals.professional_id, Professionals.last_name, Professionals.cell_number FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id GROUP BY Professionals.professional_id HAVING Count(*) > 2", "gold": "SELECT professional_id , last_name , cell_number FROM Professionals WHERE state = 'Indiana' UNION SELECT T1.professional_id , T1.last_name , T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) > 2", "predicted_parse_error": false, "hardness": "extra", "exact": false, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the id, last name and cell phone of the professionals who live in the state of Indiana or have performed more than two treatments.", "predicted": "SELECT Professionals.professional_id, Professionals.last_name, Professionals.cell_number FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id WHERE Professionals.state = \"James\" UNION SELECT Professionals.professional_id, Professionals.cell_number, Professionals.cell_number FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id GROUP BY Professionals.professional_id HAVING Count(*) > 2", "gold": "SELECT professional_id , last_name , cell_number FROM Professionals WHERE state = 'Indiana' UNION SELECT T1.professional_id , T1.last_name , T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) > 2", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which dogs have not cost their owner more than 1000 for treatment ? List the dog names .", "predicted": "SELECT Dogs.name FROM Dogs EXCEPT SELECT Dogs.name FROM Dogs JOIN Treatments ON Dogs.dog_id = Treatments.dog_id WHERE Treatments.cost_of_treatment > 1000", "gold": "select name from dogs where dog_id not in ( select dog_id from treatments group by dog_id having sum(cost_of_treatment) > 1000 )", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}}}, {"question": "What are the names of the dogs for which the owner has not spend more than 1000 for treatment ?", "predicted": "SELECT Dogs.name FROM Dogs EXCEPT SELECT Dogs.name FROM Dogs JOIN Treatments ON Dogs.dog_id = Treatments.dog_id WHERE Treatments.cost_of_treatment > 1000", "gold": "select name from dogs where dog_id not in ( select dog_id from treatments group by dog_id having sum(cost_of_treatment) > 1000 )", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 3, "pred_total": 1}}}, {"question": "Which first names are used for professionals or owners but are not used as dog names?", "predicted": "SELECT Professionals.first_name FROM Dogs JOIN Professionals JOIN Treatments ON Dogs.dog_id = Treatments.dog_id AND Treatments.professional_id = Professionals.professional_id EXCEPT SELECT Owners.first_name FROM Professionals JOIN Dogs", "gold": "SELECT first_name FROM Professionals UNION SELECT first_name FROM Owners EXCEPT SELECT name FROM Dogs", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}}}, {"question": "Find the first names that are used for professionals or owners but are not used as dog names.", "predicted": "SELECT Professionals.first_name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id JOIN Professionals JOIN Treatments ON Dogs.dog_id = Treatments.dog_id AND Treatments.professional_id = Professionals.professional_id EXCEPT SELECT Owners.first_name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id", "gold": "SELECT first_name FROM Professionals UNION SELECT first_name FROM Owners EXCEPT SELECT name FROM Dogs", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}}}, {"question": "Which professional did not operate any treatment on dogs? List the professional's id, role and email.", "predicted": "SELECT Professionals.professional_id, Professionals.role_code, Professionals.email_address FROM Professionals EXCEPT SELECT Professionals.professional_id, Professionals.role_code, Professionals.email_address FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id", "gold": "SELECT professional_id , role_code , email_address FROM Professionals EXCEPT SELECT T1.professional_id , T1.role_code , T1.email_address FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Give me the id, role and email of the professionals who did not perform any treatment on dogs.", "predicted": "SELECT Professionals.professional_id, Professionals.role_code, Professionals.email_address FROM Professionals EXCEPT SELECT Professionals.professional_id, Professionals.role_code, Professionals.email_address FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id", "gold": "SELECT professional_id , role_code , email_address FROM Professionals EXCEPT SELECT T1.professional_id , T1.role_code , T1.email_address FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which owner owns the most dogs? List the owner id, first name and last name.", "predicted": "SELECT Owners.owner_id, Owners.first_name, Owners.last_name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id GROUP BY Owners.owner_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.owner_id , T2.first_name , T2.last_name FROM Dogs AS T1 JOIN Owners AS T2 ON T1.owner_id = T2.owner_id GROUP BY T1.owner_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Return the owner id, first name and last name of the owner who has the most dogs.", "predicted": "SELECT Owners.owner_id, Owners.first_name, Owners.last_name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id GROUP BY Owners.owner_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.owner_id , T2.first_name , T2.last_name FROM Dogs AS T1 JOIN Owners AS T2 ON T1.owner_id = T2.owner_id GROUP BY T1.owner_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which professionals have done at least two treatments? List the professional's id, role, and first name.", "predicted": "SELECT Professionals.professional_id, Professionals.role_code, Professionals.first_name FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id GROUP BY Professionals.professional_id HAVING Count(*) >= 2", "gold": "SELECT T1.professional_id , T1.role_code , T1.first_name FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the id, role, and first name of the professionals who have performed two or more treatments?", "predicted": "SELECT Professionals.professional_id, Professionals.role_code, Professionals.first_name FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id GROUP BY Professionals.professional_id HAVING Count(*) >= 2", "gold": "SELECT T1.professional_id , T1.role_code , T1.first_name FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the name of the breed with the most dogs?", "predicted": "SELECT Breeds.breed_name FROM Breeds JOIN Dogs ON Breeds.breed_code = Dogs.breed_code GROUP BY Breeds.breed_code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.breed_name FROM Breeds AS T1 JOIN Dogs AS T2 ON T1.breed_code = T2.breed_code GROUP BY T1.breed_name ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which breed do the most dogs have? Give me the breed name.", "predicted": "SELECT Breeds.breed_name FROM Breeds JOIN Dogs ON Breeds.breed_code = Dogs.breed_code GROUP BY Breeds.breed_code ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.breed_name FROM Breeds AS T1 JOIN Dogs AS T2 ON T1.breed_code = T2.breed_code GROUP BY T1.breed_name ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which owner has paid for the most treatments on his or her dogs? List the owner id and last name.", "predicted": "SELECT Owners.owner_id, Owners.last_name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id JOIN Treatments ON Dogs.dog_id = Treatments.dog_id GROUP BY Owners.owner_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.owner_id , T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Tell me the owner id and last name of the owner who spent the most on treatments of his or her dogs.", "predicted": "SELECT Owners.owner_id, Owners.last_name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id JOIN Treatments ON Dogs.dog_id = Treatments.dog_id GROUP BY Owners.owner_id ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT T1.owner_id , T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY count(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the description of the treatment type that costs the least money in total?", "predicted": "SELECT Treatment_Types.treatment_type_description FROM Treatment_Types JOIN Treatments ON Treatment_Types.treatment_type_code = Treatments.treatment_type_code GROUP BY Treatments.treatment_type_code ORDER BY Sum(Treatments.cost_of_treatment) Asc LIMIT 1", "gold": "SELECT T1.treatment_type_description FROM Treatment_types AS T1 JOIN Treatments AS T2 ON T1.treatment_type_code = T2.treatment_type_code GROUP BY T1.treatment_type_code ORDER BY sum(cost_of_treatment) ASC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Give me the description of the treatment type whose total cost is the lowest.", "predicted": "SELECT Treatment_Types.treatment_type_description FROM Treatment_Types JOIN Treatments ON Treatment_Types.treatment_type_code = Treatments.treatment_type_code GROUP BY Treatments.treatment_type_code ORDER BY Sum(Treatments.cost_of_treatment) Asc LIMIT 1", "gold": "SELECT T1.treatment_type_description FROM Treatment_types AS T1 JOIN Treatments AS T2 ON T1.treatment_type_code = T2.treatment_type_code GROUP BY T1.treatment_type_code ORDER BY sum(cost_of_treatment) ASC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which owner has paid the largest amount of money in total for their dogs? Show the owner id and zip code.", "predicted": "SELECT Owners.owner_id, Owners.zip_code FROM Charges JOIN Owners JOIN Dogs GROUP BY Owners.owner_id ORDER BY Sum(Charges.charge_amount) Desc LIMIT 1", "gold": "SELECT T1.owner_id , T1.zip_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY sum(T3.cost_of_treatment) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Find the owner id and zip code of the owner who spent the most money in total for his or her dogs.", "predicted": "SELECT Owners.owner_id, Owners.zip_code FROM Charges JOIN Owners JOIN Dogs GROUP BY Owners.owner_id ORDER BY Sum(Charges.charge_amount) Desc LIMIT 1", "gold": "SELECT T1.owner_id , T1.zip_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY sum(T3.cost_of_treatment) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Which professionals have done at least two types of treatments? List the professional id and cell phone.", "predicted": "SELECT Professionals.professional_id, Professionals.cell_number FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id GROUP BY Professionals.professional_id HAVING Count(*) >= 2", "gold": "SELECT T1.professional_id , T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the id and cell phone of the professionals who operate two or more types of treatments.", "predicted": "SELECT Professionals.professional_id, Professionals.cell_number FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id GROUP BY Professionals.professional_id HAVING Count(*) >= 2", "gold": "SELECT T1.professional_id , T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) >= 2", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the first name and last name of the professionals who have done treatment with cost below average?", "predicted": "SELECT Professionals.first_name, Professionals.last_name FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id WHERE Treatments.cost_of_treatment < (SELECT Avg(Treatments.cost_of_treatment) FROM Treatments)", "gold": "SELECT DISTINCT T1.first_name , T1.last_name FROM Professionals AS T1 JOIN Treatments AS T2 WHERE cost_of_treatment < ( SELECT avg(cost_of_treatment) FROM Treatments )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Which professionals have operated a treatment that costs less than the average? Give me theor first names and last names.", "predicted": "SELECT Professionals.first_name, Professionals.last_name FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id WHERE Treatments.cost_of_treatment < (SELECT Avg(Treatments.cost_of_treatment) FROM Treatments)", "gold": "SELECT DISTINCT T1.first_name , T1.last_name FROM Professionals AS T1 JOIN Treatments AS T2 WHERE cost_of_treatment < ( SELECT avg(cost_of_treatment) FROM Treatments )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the date of each treatment, together with the first name of the professional who operated it.", "predicted": "SELECT Treatments.date_of_treatment, Professionals.first_name FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id", "gold": "SELECT T1.date_of_treatment , T2.first_name FROM Treatments AS T1 JOIN Professionals AS T2 ON T1.professional_id = T2.professional_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the date and the operating professional's first name of each treatment?", "predicted": "SELECT Treatments.date_of_treatment, Professionals.first_name FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id", "gold": "SELECT T1.date_of_treatment , T2.first_name FROM Treatments AS T1 JOIN Professionals AS T2 ON T1.professional_id = T2.professional_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the cost of each treatment and the corresponding treatment type description.", "predicted": "SELECT Treatments.cost_of_treatment, Treatment_Types.treatment_type_description FROM Treatment_Types JOIN Treatments ON Treatment_Types.treatment_type_code = Treatments.treatment_type_code", "gold": "SELECT T1.cost_of_treatment , T2.treatment_type_description FROM Treatments AS T1 JOIN treatment_types AS T2 ON T1.treatment_type_code = T2.treatment_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the cost and treatment type description of each treatment?", "predicted": "SELECT Treatments.cost_of_treatment, Treatment_Types.treatment_type_description FROM Treatment_Types JOIN Treatments ON Treatment_Types.treatment_type_code = Treatments.treatment_type_code", "gold": "SELECT T1.cost_of_treatment , T2.treatment_type_description FROM Treatments AS T1 JOIN treatment_types AS T2 ON T1.treatment_type_code = T2.treatment_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List each owner's first name, last name, and the size of his for her dog.", "predicted": "SELECT Owners.first_name, Owners.last_name, Dogs.size_code FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id", "gold": "SELECT T1.first_name , T1.last_name , T2.size_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are each owner's first name, last name, and the size of their dog?", "predicted": "SELECT Owners.first_name, Owners.last_name, Dogs.size_code FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id", "gold": "SELECT T1.first_name , T1.last_name , T2.size_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List pairs of the owner's first name and the dogs's name.", "predicted": "SELECT Owners.first_name, Dogs.name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id", "gold": "SELECT T1.first_name , T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are each owner's first name and their dogs's name?", "predicted": "SELECT Owners.first_name, Dogs.name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id", "gold": "SELECT T1.first_name , T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the names of the dogs of the rarest breed and the treatment dates of them.", "predicted": "SELECT Dogs.name, Treatments.date_of_treatment FROM Dogs JOIN Treatments ON Dogs.dog_id = Treatments.dog_id GROUP BY Dogs.breed_code ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T1.name , T2.date_of_treatment FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id WHERE T1.breed_code = ( SELECT breed_code FROM Dogs GROUP BY breed_code ORDER BY count(*) ASC LIMIT 1 )", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 4}}}, {"question": "Which dogs are of the rarest breed? Show their names and treatment dates.", "predicted": "SELECT Dogs.name, Treatments.date_of_treatment FROM Dogs JOIN Treatments ON Dogs.dog_id = Treatments.dog_id GROUP BY Dogs.breed_code ORDER BY Count(*) Asc LIMIT 1", "gold": "SELECT T1.name , T2.date_of_treatment FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id WHERE T1.breed_code = ( SELECT breed_code FROM Dogs GROUP BY breed_code ORDER BY count(*) ASC LIMIT 1 )", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 4}}}, {"question": "Which dogs are owned by someone who lives in Virginia? List the owner's first name and the dog's name.", "predicted": "SELECT Owners.first_name, Dogs.name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id WHERE Owners.state = \"s\"", "gold": "SELECT T1.first_name , T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T1.state = 'Virginia'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Find the first names of owners living in Virginia and the names of dogs they own.", "predicted": "SELECT Owners.first_name, Dogs.name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id WHERE Owners.state = \"a\"", "gold": "SELECT T1.first_name , T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T1.state = 'Virginia'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the arriving date and the departing date of the dogs who have gone through a treatment?", "predicted": "SELECT Dogs.date_arrived, Dogs.date_departed FROM Dogs JOIN Treatments ON Dogs.dog_id = Treatments.dog_id", "gold": "SELECT DISTINCT T1.date_arrived , T1.date_departed FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the arriving date and the departing date of the dogs that received a treatment.", "predicted": "SELECT Dogs.date_arrived, Dogs.date_departed FROM Dogs JOIN Treatments ON Dogs.dog_id = Treatments.dog_id", "gold": "SELECT DISTINCT T1.date_arrived , T1.date_departed FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the last name of the owner owning the youngest dog.", "predicted": "SELECT Owners.last_name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id ORDER BY Dogs.age Asc LIMIT 1", "gold": "SELECT T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T2.age = ( SELECT max(age) FROM Dogs )", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "Who owns the youngest dog? Give me his or her last name.", "predicted": "SELECT Owners.last_name FROM Owners JOIN Dogs ON Owners.owner_id = Dogs.owner_id ORDER BY Dogs.age Asc LIMIT 1", "gold": "SELECT T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T2.age = ( SELECT max(age) FROM Dogs )", "predicted_parse_error": false, "hardness": "extra", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 3}}}, {"question": "List the emails of the professionals who live in the state of Hawaii or the state of Wisconsin.", "predicted": "SELECT Professionals.email_address FROM Professionals WHERE Professionals.state = \"Jas\" OR Professionals.state = \"L\"", "gold": "SELECT email_address FROM Professionals WHERE state = 'Hawaii' OR state = 'Wisconsin'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the emails of the professionals living in either the state of Hawaii or the state of Wisconsin?", "predicted": "SELECT Professionals.email_address FROM Professionals WHERE Professionals.state = \"Jas\" OR Professionals.state = \"Texas\"", "gold": "SELECT email_address FROM Professionals WHERE state = 'Hawaii' OR state = 'Wisconsin'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the arriving date and the departing date of all the dogs?", "predicted": "SELECT Dogs.date_arrived, Dogs.date_departed FROM Dogs", "gold": "SELECT date_arrived , date_departed FROM Dogs", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the arrival date and the departure date for all the dogs.", "predicted": "SELECT Dogs.date_arrived, Dogs.date_departed FROM Dogs", "gold": "SELECT date_arrived , date_departed FROM Dogs", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many dogs went through any treatments?", "predicted": "SELECT Count(DISTINCT Treatments.dog_id) FROM Treatments", "gold": "SELECT count(DISTINCT dog_id) FROM Treatments", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Count the number of dogs that went through a treatment.", "predicted": "SELECT Count(DISTINCT Treatments.dog_id) FROM Treatments", "gold": "SELECT count(DISTINCT dog_id) FROM Treatments", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many professionals have performed any treatment to dogs?", "predicted": "SELECT Count(DISTINCT Treatments.professional_id) FROM Treatments", "gold": "SELECT count(DISTINCT professional_id) FROM Treatments", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the number of professionals who have ever treated dogs.", "predicted": "SELECT Count(*) FROM Treatments", "gold": "SELECT count(DISTINCT professional_id) FROM Treatments", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Which professionals live in a city containing the substring 'West'? List his or her role, street, city and state.", "predicted": "SELECT Professionals.role_code, Professionals.street, Professionals.state FROM Professionals WHERE Professionals.city LIKE \"%M%\"", "gold": "SELECT role_code , street , city , state FROM professionals WHERE city LIKE '%West%'", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 3}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Find the role, street, city and state of the professionals living in a city that contains the substring 'West'.", "predicted": "SELECT Professionals.role_code, Professionals.street, Professionals.state, Professionals.state FROM Professionals WHERE Professionals.city LIKE \"%London%\"", "gold": "SELECT role_code , street , city , state FROM professionals WHERE city LIKE '%West%'", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 4}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 4, "pred_total": 4}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Which owners live in the state whose name contains the substring 'North'? List his first name, last name and email.", "predicted": "SELECT Owners.first_name, Owners.last_name, Owners.email_address FROM Owners WHERE Owners.state LIKE \"%Diana%\"", "gold": "SELECT first_name , last_name , email_address FROM Owners WHERE state LIKE '%North%'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Return the first name, last name and email of the owners living in a state whose name contains the substring 'North'.", "predicted": "SELECT Owners.first_name, Owners.last_name, Owners.email_address FROM Owners WHERE Owners.state LIKE \"%Diana%\"", "gold": "SELECT first_name , last_name , email_address FROM Owners WHERE state LIKE '%North%'", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many dogs have an age below the average?", "predicted": "SELECT Count(*) FROM Dogs WHERE Dogs.age < (SELECT Avg(Dogs.age) FROM Dogs)", "gold": "SELECT count(*) FROM Dogs WHERE age < ( SELECT avg(age) FROM Dogs )", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Count the number of dogs of an age below the average.", "predicted": "SELECT Count(*) FROM Dogs WHERE Dogs.age < (SELECT Avg(Dogs.age) FROM Dogs)", "gold": "SELECT count(*) FROM Dogs WHERE age < ( SELECT avg(age) FROM Dogs )", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "How much does the most recent treatment cost?", "predicted": "SELECT Treatments.cost_of_treatment FROM Treatments ORDER BY Treatments.cost_of_treatment Desc LIMIT 1", "gold": "SELECT cost_of_treatment FROM Treatments ORDER BY date_of_treatment DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Show me the cost of the most recently performed treatment.", "predicted": "SELECT Treatments.cost_of_treatment FROM Treatments ORDER BY Treatments.date_of_treatment Desc LIMIT 1", "gold": "SELECT cost_of_treatment FROM Treatments ORDER BY date_of_treatment DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many dogs have not gone through any treatment?", "predicted": "SELECT Count(*) FROM Dogs WHERE Dogs.dog_id NOT IN (SELECT Treatments.dog_id FROM Treatments)", "gold": "SELECT count(*) FROM Dogs WHERE dog_id NOT IN ( SELECT dog_id FROM Treatments )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Tell me the number of dogs that have not received any treatment .", "predicted": "SELECT Count(*) FROM Dogs WHERE Dogs.dog_id NOT IN (SELECT Treatments.dog_id FROM Treatments)", "gold": "select count(*) from dogs where dog_id not in ( select dog_id from treatments )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many owners temporarily do not have any dogs?", "predicted": "SELECT Count(*) FROM Owners WHERE Owners.owner_id NOT IN (SELECT Dogs.owner_id FROM Dogs)", "gold": "SELECT count(*) FROM Owners WHERE owner_id NOT IN ( SELECT owner_id FROM Dogs )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the number of owners who do not own any dogs at this moment.", "predicted": "SELECT Count(*) FROM Owners WHERE Owners.owner_id NOT IN (SELECT Dogs.owner_id FROM Dogs)", "gold": "SELECT count(*) FROM Owners WHERE owner_id NOT IN ( SELECT owner_id FROM Dogs )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "How many professionals did not operate any treatment on dogs?", "predicted": "SELECT Count(*) FROM Professionals WHERE Professionals.professional_id NOT IN (SELECT Treatments.professional_id FROM Treatments)", "gold": "SELECT count(*) FROM Professionals WHERE professional_id NOT IN ( SELECT professional_id FROM Treatments )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Find the number of professionals who have not treated any dogs.", "predicted": "SELECT Count(*) FROM Professionals WHERE Professionals.professional_id NOT IN (SELECT Treatments.professional_id FROM Treatments)", "gold": "SELECT count(*) FROM Professionals WHERE professional_id NOT IN ( SELECT professional_id FROM Treatments )", "predicted_parse_error": false, "hardness": "extra", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "List the dog name, age and weight of the dogs who have been abandoned? 1 stands for yes, and 0 stands for no.", "predicted": "SELECT Dogs.name, Dogs.age, Dogs.weight FROM Dogs WHERE Dogs.abandoned_yn = 1", "gold": "SELECT name , age , weight FROM Dogs WHERE abandoned_yn = 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the dog name, age and weight of the dogs that were abandoned? Note that 1 stands for yes, and 0 stands for no in the tables.", "predicted": "SELECT Dogs.name, Dogs.age, Dogs.weight FROM Dogs WHERE Dogs.abandoned_yn = 1", "gold": "SELECT name , age , weight FROM Dogs WHERE abandoned_yn = 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What is the average age of all the dogs?", "predicted": "SELECT Avg(Dogs.age) FROM Dogs", "gold": "SELECT avg(age) FROM Dogs", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Compute the average age of all the dogs.", "predicted": "SELECT Avg(Dogs.age) FROM Dogs", "gold": "SELECT avg(age) FROM Dogs", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the age of the oldest dog?", "predicted": "SELECT Dogs.age FROM Dogs ORDER BY Dogs.date_of_birth Desc LIMIT 1", "gold": "SELECT max(age) FROM Dogs", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 3}}}, {"question": "Tell me the age of the oldest dog.", "predicted": "SELECT Dogs.age FROM Dogs ORDER BY Dogs.date_of_birth Desc LIMIT 1", "gold": "SELECT max(age) FROM Dogs", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 3}}}, {"question": "How much does each charge type costs? List both charge type and amount.", "predicted": "SELECT Charges.charge_type, Sum(Charges.charge_amount) FROM Charges GROUP BY Charges.charge_type", "gold": "SELECT charge_type , charge_amount FROM Charges", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}}}, {"question": "List each charge type and its amount.", "predicted": "SELECT Charges.charge_type, Sum(Charges.charge_amount) FROM Charges GROUP BY Charges.charge_type", "gold": "SELECT charge_type , charge_amount FROM Charges", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}}}, {"question": "How much does the most expensive charge type costs?", "predicted": "SELECT Charges.charge_amount FROM Charges ORDER BY Charges.charge_type Desc LIMIT 1", "gold": "SELECT max(charge_amount) FROM Charges", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 3}}}, {"question": "What is the charge amount of the most expensive charge type?", "predicted": "SELECT Charges.charge_amount FROM Charges ORDER BY Charges.charge_type Desc LIMIT 1", "gold": "SELECT max(charge_amount) FROM Charges", "predicted_parse_error": false, "hardness": "easy", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 0, "pred_total": 3}}}, {"question": "List the email, cell phone and home phone of all the professionals.", "predicted": "SELECT Professionals.email_address, Professionals.cell_number, Professionals.home_phone FROM Professionals", "gold": "SELECT email_address , cell_number , home_phone FROM professionals", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the email, cell phone and home phone of each professional?", "predicted": "SELECT Professionals.email_address, Professionals.cell_number, Professionals.home_phone FROM Professionals", "gold": "SELECT email_address , cell_number , home_phone FROM professionals", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are all the possible breed type and size type combinations?", "predicted": "SELECT DISTINCT Dogs.breed_code, Dogs.size_code FROM Dogs", "gold": "SELECT DISTINCT breed_code , size_code FROM dogs", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Find the distinct breed type and size type combinations for dogs.", "predicted": "SELECT DISTINCT Dogs.breed_code, Dogs.size_code FROM Dogs", "gold": "SELECT DISTINCT breed_code , size_code FROM dogs", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the first name of all the professionals along with the description of the treatment they have done.", "predicted": "SELECT Professionals.first_name, Professionals.last_name FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id", "gold": "SELECT DISTINCT T1.first_name , T3.treatment_type_description FROM professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id JOIN Treatment_types AS T3 ON T2.treatment_type_code = T3.treatment_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are each professional's first name and description of the treatment they have performed?", "predicted": "SELECT Professionals.first_name, Professionals.last_name FROM Professionals JOIN Treatments ON Professionals.professional_id = Treatments.professional_id", "gold": "SELECT DISTINCT T1.first_name , T3.treatment_type_description FROM professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id JOIN Treatment_types AS T3 ON T2.treatment_type_code = T3.treatment_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "How many singers are there?", "predicted": "SELECT Count(*) FROM singer", "gold": "SELECT count(*) FROM singer", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the count of singers?", "predicted": "SELECT Count(*) FROM singer", "gold": "SELECT count(*) FROM singer", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the name of singers in ascending order of net worth.", "predicted": "SELECT singer.Name FROM singer ORDER BY singer.Net_Worth_Millions Asc", "gold": "SELECT Name FROM singer ORDER BY Net_Worth_Millions ASC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of singers ordered by ascending net worth?", "predicted": "SELECT singer.Name FROM singer ORDER BY singer.Net_Worth_Millions Asc", "gold": "SELECT Name FROM singer ORDER BY Net_Worth_Millions ASC", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the birth year and citizenship of singers?", "predicted": "SELECT singer.Birth_Year, singer.Citizenship FROM singer", "gold": "SELECT Birth_Year , Citizenship FROM singer", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the birth years and citizenships of the singers?", "predicted": "SELECT singer.Birth_Year, singer.Citizenship FROM singer", "gold": "SELECT Birth_Year , Citizenship FROM singer", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "List the name of singers whose citizenship is not \"France\".", "predicted": "SELECT singer.Name FROM singer WHERE singer.Citizenship != \"F\"", "gold": "SELECT Name FROM singer WHERE Citizenship != \"France\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "What are the names of the singers who are not French citizens?", "predicted": "SELECT singer.Name FROM singer WHERE singer.Citizenship != \"F\"", "gold": "SELECT Name FROM singer WHERE Citizenship != \"France\"", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the name of singers whose birth year is either 1948 or 1949?", "predicted": "SELECT singer.Name FROM singer WHERE singer.Birth_Year = 180 OR singer.Birth_Year = 200", "gold": "SELECT Name FROM singer WHERE Birth_Year = 1948 OR Birth_Year = 1949", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of the singers whose birth years are either 1948 or 1949?", "predicted": "SELECT singer.Name FROM singer WHERE singer.Birth_Year = 180 OR singer.Birth_Year = 200", "gold": "SELECT Name FROM singer WHERE Birth_Year = 1948 OR Birth_Year = 1949", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What is the name of the singer with the largest net worth?", "predicted": "SELECT singer.Name FROM singer ORDER BY singer.Net_Worth_Millions Desc LIMIT 1", "gold": "SELECT Name FROM singer ORDER BY Net_Worth_Millions DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the name of the singer who is worth the most?", "predicted": "SELECT singer.Name FROM singer ORDER BY singer.Net_Worth_Millions Desc LIMIT 1", "gold": "SELECT Name FROM singer ORDER BY Net_Worth_Millions DESC LIMIT 1", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Show different citizenship of singers and the number of singers of each citizenship.", "predicted": "SELECT singer.Citizenship, Count(*) FROM singer GROUP BY singer.Citizenship", "gold": "SELECT Citizenship , COUNT(*) FROM singer GROUP BY Citizenship", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For each citizenship, how many singers are from that country?", "predicted": "SELECT singer.Citizenship, Count(*) FROM singer GROUP BY singer.Citizenship", "gold": "SELECT Citizenship , COUNT(*) FROM singer GROUP BY Citizenship", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Please show the most common citizenship of singers.", "predicted": "SELECT singer.Citizenship FROM singer GROUP BY singer.Citizenship ORDER BY Count(*) Desc LIMIT 1", "gold": "SELECT Citizenship FROM singer GROUP BY Citizenship ORDER BY COUNT(*) DESC LIMIT 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "What is the most common singer citizenship ?", "predicted": "SELECT singer.Citizenship FROM singer GROUP BY singer.Citizenship ORDER BY Count(*) Desc LIMIT 1", "gold": "select citizenship from singer group by citizenship order by count(*) desc limit 1", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 4, "pred_total": 4}}}, {"question": "Show different citizenships and the maximum net worth of singers of each citizenship.", "predicted": "SELECT singer.Citizenship, Max(singer.Net_Worth_Millions) FROM singer GROUP BY singer.Citizenship", "gold": "SELECT Citizenship , max(Net_Worth_Millions) FROM singer GROUP BY Citizenship", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For each citizenship, what is the maximum net worth?", "predicted": "SELECT singer.Citizenship, Max(singer.Net_Worth_Millions) FROM singer GROUP BY singer.Citizenship", "gold": "SELECT Citizenship , max(Net_Worth_Millions) FROM singer GROUP BY Citizenship", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show titles of songs and names of singers.", "predicted": "SELECT song.Title, singer.Name FROM singer JOIN song ON singer.Singer_ID = song.Singer_ID", "gold": "SELECT T2.Title , T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What are the song titles and singer names?", "predicted": "SELECT song.Title, singer.Name FROM singer JOIN song ON singer.Singer_ID = song.Singer_ID", "gold": "SELECT T2.Title , T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "Show distinct names of singers that have songs with sales more than 300000.", "predicted": "SELECT DISTINCT singer.Name FROM singer JOIN song ON singer.Singer_ID = song.Singer_ID WHERE song.Sales > 300000", "gold": "SELECT DISTINCT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID WHERE T2.Sales > 300000", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "what are the different names of the singers that have sales more than 300000?", "predicted": "SELECT DISTINCT singer.Name FROM singer JOIN song ON singer.Singer_ID = song.Singer_ID WHERE song.Sales > 300000", "gold": "SELECT DISTINCT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID WHERE T2.Sales > 300000", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the names of singers that have more than one song.", "predicted": "SELECT singer.Name FROM singer JOIN song ON singer.Singer_ID = song.Singer_ID GROUP BY song.Singer_ID HAVING Count(*) > 1", "gold": "SELECT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name HAVING COUNT(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the names of the singers that have more than one songs?", "predicted": "SELECT singer.Name FROM singer JOIN song ON singer.Singer_ID = song.Singer_ID GROUP BY song.Singer_ID HAVING Count(*) > 1", "gold": "SELECT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name HAVING COUNT(*) > 1", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "Show the names of singers and the total sales of their songs.", "predicted": "SELECT singer.Name, Sum(song.Sales) FROM singer JOIN song ON singer.Singer_ID = song.Singer_ID GROUP BY singer.Name", "gold": "SELECT T1.Name , sum(T2.Sales) FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "For each singer name, what is the total sales for their songs?", "predicted": "SELECT Sum(song.Sales), singer.Name FROM singer JOIN song ON singer.Singer_ID = song.Singer_ID GROUP BY singer.Name", "gold": "SELECT T1.Name , sum(T2.Sales) FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "List the name of singers that do not have any song.", "predicted": "SELECT singer.Name FROM singer WHERE singer.Singer_ID NOT IN (SELECT song.Singer_ID FROM song)", "gold": "SELECT Name FROM singer WHERE Singer_ID NOT IN (SELECT Singer_ID FROM song)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "What is the sname of every sing that does not have any song?", "predicted": "SELECT singer.Name FROM singer WHERE singer.Singer_ID NOT IN (SELECT song.Singer_ID FROM song)", "gold": "SELECT Name FROM singer WHERE Singer_ID NOT IN (SELECT Singer_ID FROM song)", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 3, "pred_total": 3}}}, {"question": "Show the citizenship shared by singers with birth year before 1945 and after 1955.", "predicted": "SELECT singer.Citizenship FROM singer WHERE singer.Birth_Year < 85 INTERSECT SELECT singer.Citizenship FROM singer WHERE singer.Birth_Year > 5", "gold": "SELECT Citizenship FROM singer WHERE Birth_Year < 1945 INTERSECT SELECT Citizenship FROM singer WHERE Birth_Year > 1955", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "What are the citizenships that are shared by singers with a birth year before 1945 and after 1955?", "predicted": "SELECT singer.Citizenship FROM singer WHERE singer.Birth_Year < 32 INTERSECT SELECT singer.Citizenship FROM singer WHERE singer.Birth_Year > 5", "gold": "SELECT Citizenship FROM singer WHERE Birth_Year < 1945 INTERSECT SELECT Citizenship FROM singer WHERE Birth_Year > 1955", "predicted_parse_error": false, "hardness": "hard", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 2, "pred_total": 2}}}, {"question": "How many available features are there in total?", "predicted": "SELECT Count(*) FROM Other_Available_Features", "gold": "SELECT count(*) FROM Other_Available_Features", "predicted_parse_error": false, "hardness": "easy", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}}}, {"question": "What is the feature type name of feature AirCon?", "predicted": "SELECT Ref_Feature_Types.feature_type_name FROM Ref_Feature_Types JOIN Other_Available_Features ON Ref_Feature_Types.feature_type_code = Other_Available_Features.feature_type_code WHERE Other_Available_Features.feature_name = \"Papering\"", "gold": "SELECT T2.feature_type_name FROM Other_Available_Features AS T1 JOIN Ref_Feature_Types AS T2 ON T1.feature_type_code = T2.feature_type_code WHERE T1.feature_name = \"AirCon\"", "predicted_parse_error": false, "hardness": "medium", "exact": true, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}}}, {"question": "Show the property type descriptions of properties belonging to that code.", "predicted": "SELECT Ref_Property_Types.property_type_description FROM Ref_Property_Types", "gold": "SELECT T2.property_type_description FROM Properties AS T1 JOIN Ref_Property_Types AS T2 ON T1.property_type_code = T2.property_type_code GROUP BY T1.property_type_code", "predicted_parse_error": false, "hardness": "medium", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "where(no OP)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group(no Having)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "group": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "IUEN": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}}}, {"question": "What are the names of properties that are either houses or apartments with more than 1 room?", "predicted": "SELECT Properties.property_name FROM Properties WHERE Properties.room_count = \"Con\" OR Properties.property_type_code > 1", "gold": "SELECT property_name FROM Properties WHERE property_type_code = \"House\" UNION SELECT property_name FROM Properties WHERE property_type_code = \"Apartment\" AND room_count > 1", "predicted_parse_error": false, "hardness": "hard", "exact": 0, "partial": {"select": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "select(no AGG)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 1, "pred_total": 1}, "where": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "where(no OP)": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 2}, "group(no Having)": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "group": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "order": {"acc": 1, "rec": 1, "f1": 1, "label_total": 0, "pred_total": 0}, "and/or": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "IUEN": {"acc": 0, "rec": 0, "f1": 0, "label_total": 1, "pred_total": 0}, "keywords": {"acc": 0, "rec": 0, "f1": 0, "label_total": 2, "pred_total": 2}}}], "total_scores": {"easy": {"count": 248, "partial": {"select": {"acc": 0.9193548387096774, "rec": 0.9193548387096774, "f1": 0.9193548387096774, "acc_count": 248, "rec_count": 248}, "select(no AGG)": {"acc": 0.9516129032258065, "rec": 0.9516129032258065, "f1": 0.9516129032258065, "acc_count": 248, "rec_count": 248}, "where": {"acc": 0.9259259259259259, "rec": 0.9259259259259259, "f1": 0.9259259259259259, "acc_count": 108, "rec_count": 108}, "where(no OP)": {"acc": 0.9629629629629629, "rec": 0.9629629629629629, "f1": 0.9629629629629629, "acc_count": 108, "rec_count": 108}, "group(no Having)": {"acc": 0.9047619047619048, "rec": 0.95, "f1": 0.9268292682926829, "acc_count": 21, "rec_count": 20}, "group": {"acc": 0.8095238095238095, "rec": 0.85, "f1": 0.8292682926829269, "acc_count": 21, "rec_count": 20}, "order": {"acc": 0.8148148148148148, "rec": 1.0, "f1": 0.8979591836734693, "acc_count": 27, "rec_count": 22}, "and/or": {"acc": 1.0, "rec": 1.0, "f1": 1.0, "acc_count": 248, "rec_count": 248}, "IUEN": {"acc": 0.0, "rec": 0, "f1": 1, "acc_count": 3, "rec_count": 0}, "keywords": {"acc": 0.9423076923076923, "rec": 0.98, "f1": 0.9607843137254902, "acc_count": 156, "rec_count": 150}}, "exact": 0.8669354838709677, "exec": 0}, "medium": {"count": 446, "partial": {"select": {"acc": 0.8766816143497758, "rec": 0.8766816143497758, "f1": 0.8766816143497757, "acc_count": 446, "rec_count": 446}, "select(no AGG)": {"acc": 0.8968609865470852, "rec": 0.8968609865470852, "f1": 0.8968609865470852, "acc_count": 446, "rec_count": 446}, "where": {"acc": 0.8534031413612565, "rec": 0.8956043956043956, "f1": 0.8739946380697051, "acc_count": 191, "rec_count": 182}, "where(no OP)": {"acc": 0.8691099476439791, "rec": 0.9120879120879121, "f1": 0.8900804289544236, "acc_count": 191, "rec_count": 182}, "group(no Having)": {"acc": 0.8692307692307693, "rec": 0.849624060150376, "f1": 0.8593155893536121, "acc_count": 130, "rec_count": 133}, "group": {"acc": 0.7846153846153846, "rec": 0.7669172932330827, "f1": 0.7756653992395437, "acc_count": 130, "rec_count": 133}, "order": {"acc": 0.7671232876712328, "rec": 0.7466666666666667, "f1": 0.7567567567567568, "acc_count": 73, "rec_count": 75}, "and/or": {"acc": 0.9865470852017937, "rec": 1.0, "f1": 0.9932279909706546, "acc_count": 446, "rec_count": 440}, "IUEN": {"acc": 0.0, "rec": 0, "f1": 1, "acc_count": 3, "rec_count": 0}, "keywords": {"acc": 0.9313984168865436, "rec": 0.9338624338624338, "f1": 0.9326287978863936, "acc_count": 379, "rec_count": 378}}, "exact": 0.7309417040358744, "exec": 0}, "hard": {"count": 174, "partial": {"select": {"acc": 0.9540229885057471, "rec": 0.9540229885057471, "f1": 0.9540229885057472, "acc_count": 174, "rec_count": 174}, "select(no AGG)": {"acc": 0.9540229885057471, "rec": 0.9540229885057471, "f1": 0.9540229885057472, "acc_count": 174, "rec_count": 174}, "where": {"acc": 0.6956521739130435, "rec": 0.6808510638297872, "f1": 0.6881720430107526, "acc_count": 92, "rec_count": 94}, "where(no OP)": {"acc": 0.8043478260869565, "rec": 0.7872340425531915, "f1": 0.795698924731183, "acc_count": 92, "rec_count": 94}, "group(no Having)": {"acc": 0.75, "rec": 0.8461538461538461, "f1": 0.7951807228915662, "acc_count": 44, "rec_count": 39}, "group": {"acc": 0.75, "rec": 0.8461538461538461, "f1": 0.7951807228915662, "acc_count": 44, "rec_count": 39}, "order": {"acc": 0.8727272727272727, "rec": 0.8727272727272727, "f1": 0.8727272727272727, "acc_count": 55, "rec_count": 55}, "and/or": {"acc": 1.0, "rec": 0.9827586206896551, "f1": 0.9913043478260869, "acc_count": 171, "rec_count": 174}, "IUEN": {"acc": 0.5405405405405406, "rec": 0.47619047619047616, "f1": 0.5063291139240507, "acc_count": 37, "rec_count": 42}, "keywords": {"acc": 0.8488372093023255, "rec": 0.8390804597701149, "f1": 0.8439306358381502, "acc_count": 172, "rec_count": 174}}, "exact": 0.5862068965517241, "exec": 0}, "extra": {"count": 166, "partial": {"select": {"acc": 0.8855421686746988, "rec": 0.8855421686746988, "f1": 0.8855421686746989, "acc_count": 166, "rec_count": 166}, "select(no AGG)": {"acc": 0.8975903614457831, "rec": 0.8975903614457831, "f1": 0.8975903614457831, "acc_count": 166, "rec_count": 166}, "where": {"acc": 0.5977011494252874, "rec": 0.5531914893617021, "f1": 0.5745856353591161, "acc_count": 87, "rec_count": 94}, "where(no OP)": {"acc": 0.6551724137931034, "rec": 0.6063829787234043, "f1": 0.6298342541436465, "acc_count": 87, "rec_count": 94}, "group(no Having)": {"acc": 0.7375, "rec": 0.7468354430379747, "f1": 0.7421383647798743, "acc_count": 80, "rec_count": 79}, "group": {"acc": 0.725, "rec": 0.7341772151898734, "f1": 0.7295597484276729, "acc_count": 80, "rec_count": 79}, "order": {"acc": 0.8641975308641975, "rec": 0.8860759493670886, "f1": 0.8749999999999999, "acc_count": 81, "rec_count": 79}, "and/or": {"acc": 0.9012345679012346, "rec": 0.9605263157894737, "f1": 0.9299363057324841, "acc_count": 162, "rec_count": 152}, "IUEN": {"acc": 0.47058823529411764, "rec": 0.47058823529411764, "f1": 0.47058823529411764, "acc_count": 34, "rec_count": 34}, "keywords": {"acc": 0.8493975903614458, "rec": 0.8493975903614458, "f1": 0.8493975903614458, "acc_count": 166, "rec_count": 166}}, "exact": 0.4578313253012048, "exec": 0}, "all": {"count": 1034, "partial": {"select": {"acc": 0.9013539651837524, "rec": 0.9013539651837524, "f1": 0.9013539651837524, "acc_count": 1034, "rec_count": 1034}, "select(no AGG)": {"acc": 0.9197292069632496, "rec": 0.9197292069632496, "f1": 0.9197292069632496, "acc_count": 1034, "rec_count": 1034}, "where": {"acc": 0.7928870292887029, "rec": 0.7928870292887029, "f1": 0.7928870292887028, "acc_count": 478, "rec_count": 478}, "where(no OP)": {"acc": 0.8389121338912134, "rec": 0.8389121338912134, "f1": 0.8389121338912134, "acc_count": 478, "rec_count": 478}, "group(no Having)": {"acc": 0.8145454545454546, "rec": 0.8265682656826568, "f1": 0.8205128205128205, "acc_count": 275, "rec_count": 271}, "group": {"acc": 0.7636363636363637, "rec": 0.7749077490774908, "f1": 0.7692307692307692, "acc_count": 275, "rec_count": 271}, "order": {"acc": 0.8305084745762712, "rec": 0.8484848484848485, "f1": 0.8394004282655245, "acc_count": 236, "rec_count": 231}, "and/or": {"acc": 0.9785783836416748, "rec": 0.9911242603550295, "f1": 0.9848113669769721, "acc_count": 1027, "rec_count": 1014}, "IUEN": {"acc": 0.4675324675324675, "rec": 0.47368421052631576, "f1": 0.4705882352941176, "acc_count": 77, "rec_count": 76}, "keywords": {"acc": 0.9014891179839634, "rec": 0.9066820276497696, "f1": 0.9040781160252729, "acc_count": 873, "rec_count": 868}}, "exact": 0.695357833655706, "exec": 0}}}