combined_text
stringlengths
106
1.05k
###question:Mike Miller played for what school/club team?###answer:SELECT school_club_team FROM table_name_87 WHERE player = "mike miller"###context:CREATE TABLE table_name_87 (school_club_team VARCHAR, player VARCHAR)
###question:Who is the player that played for the school/club team Maryland?###answer:SELECT player FROM table_name_13 WHERE school_club_team = "maryland"###context:CREATE TABLE table_name_13 (player VARCHAR, school_club_team VARCHAR)
###question:Cuttino Mobley is what nationality?###answer:SELECT nationality FROM table_name_5 WHERE player = "cuttino mobley"###context:CREATE TABLE table_name_5 (nationality VARCHAR, player VARCHAR)
###question:Corey Maggette from the United States plays what position?###answer:SELECT position FROM table_name_70 WHERE nationality = "united states" AND player = "corey maggette"###context:CREATE TABLE table_name_70 (position VARCHAR, nationality VARCHAR, player VARCHAR)
###question:Amal McCaskill who plays forward-center played for what school/club team?###answer:SELECT school_club_team FROM table_name_55 WHERE position = "forward-center" AND player = "amal mccaskill"###context:CREATE TABLE table_name_55 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)
###question:Which Servedby has a Local authority [a ] of thurrock, and a Station of ockendon?###answer:SELECT servedby FROM table_name_1 WHERE local_authority_[a_] = "thurrock" AND station = "ockendon"###context:CREATE TABLE table_name_1 (servedby VARCHAR, station VARCHAR, local_authority_ VARCHAR, a_ VARCHAR)
###question:What is the Opponents from the final with a Tournament that is puebla?###answer:SELECT opponents_in_the_final FROM table_name_44 WHERE tournament = "puebla"###context:CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, tournament VARCHAR)
###question:What was the date of the game held at the Al-Rashid Stadium, Dubai?###answer:SELECT date FROM table_name_13 WHERE venue = "al-rashid stadium, dubai"###context:CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR)
###question:What is the Round of 16 value for the nation with a value of 5 for Ranking Round Rank?###answer:SELECT round_of_16 FROM table_name_83 WHERE ranking_round_rank = 5###context:CREATE TABLE table_name_83 (round_of_16 VARCHAR, ranking_round_rank VARCHAR)
###question:What Team had the first round of 1:00?###answer:SELECT team FROM table_name_53 WHERE first_round = "1:00"###context:CREATE TABLE table_name_53 (team VARCHAR, first_round VARCHAR)
###question:What City/State did the Atlanta Hawks (retired) team play for?###answer:SELECT city_state FROM table_name_24 WHERE team = "atlanta hawks (retired)"###context:CREATE TABLE table_name_24 (city_state VARCHAR, team VARCHAR)
###question:What was the final round value for member Chris Webber?###answer:SELECT final_round FROM table_name_59 WHERE members = "chris webber"###context:CREATE TABLE table_name_59 (final_round VARCHAR, members VARCHAR)
###question:What was the first round time for member Kenny Smith?###answer:SELECT first_round FROM table_name_14 WHERE members = "kenny smith"###context:CREATE TABLE table_name_14 (first_round VARCHAR, members VARCHAR)
###question:Which team was the opponent on December 30?###answer:SELECT team FROM table_name_17 WHERE date = "december 30"###context:CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR)
###question:What content is provided by the television service ewtn?###answer:SELECT content FROM table_name_1 WHERE television_service = "ewtn"###context:CREATE TABLE table_name_1 (content VARCHAR, television_service VARCHAR)
###question:What is the content of the television service ewtn in the United Kingdom?###answer:SELECT content FROM table_name_94 WHERE country = "united kingdom" AND television_service = "ewtn"###context:CREATE TABLE table_name_94 (content VARCHAR, country VARCHAR, television_service VARCHAR)
###question:What is the package/option for Italy when the language is italian?###answer:SELECT package_option FROM table_name_24 WHERE country = "italy" AND language = "italian"###context:CREATE TABLE table_name_24 (package_option VARCHAR, country VARCHAR, language VARCHAR)
###question:What is the package/option in Italy when the content is religione?###answer:SELECT package_option FROM table_name_68 WHERE content = "religione" AND country = "italy"###context:CREATE TABLE table_name_68 (package_option VARCHAR, content VARCHAR, country VARCHAR)
###question:Which television service has italian for its language?###answer:SELECT television_service FROM table_name_46 WHERE language = "italian"###context:CREATE TABLE table_name_46 (television_service VARCHAR, language VARCHAR)
###question:Does daystar television network provide HDTV?###answer:SELECT hdtv FROM table_name_50 WHERE television_service = "daystar television network"###context:CREATE TABLE table_name_50 (hdtv VARCHAR, television_service VARCHAR)
###question:What was the Attendance when Oxford United was the Home team?###answer:SELECT SUM(attendance) FROM table_name_58 WHERE home_team = "oxford united"###context:CREATE TABLE table_name_58 (attendance INTEGER, home_team VARCHAR)
###question:What was the Home team when Farnborough Town was the Away team?###answer:SELECT home_team FROM table_name_90 WHERE away_team = "farnborough town"###context:CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)
###question:What was the Away Team of Blackpool's Home game?###answer:SELECT away_team FROM table_name_9 WHERE home_team = "blackpool"###context:CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR)
###question:Which Bronze has a Rank of 9?###answer:SELECT COUNT(bronze) FROM table_name_76 WHERE rank = "9"###context:CREATE TABLE table_name_76 (bronze VARCHAR, rank VARCHAR)
###question:Which Bronze has a Gold smaller than 1, and a Rank of 17, and a Nation of china?###answer:SELECT MAX(bronze) FROM table_name_78 WHERE gold < 1 AND rank = "17" AND nation = "china"###context:CREATE TABLE table_name_78 (bronze INTEGER, nation VARCHAR, gold VARCHAR, rank VARCHAR)
###question:Which Nation has a Bronze smaller than 1, and a Total larger than 1, and a Silver of 1?###answer:SELECT nation FROM table_name_82 WHERE bronze < 1 AND total > 1 AND silver = 1###context:CREATE TABLE table_name_82 (nation VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR)
###question:Which Total has a Rank of 17, and a Gold larger than 0?###answer:SELECT AVG(total) FROM table_name_59 WHERE rank = "17" AND gold > 0###context:CREATE TABLE table_name_59 (total INTEGER, rank VARCHAR, gold VARCHAR)
###question:Which Gold has a Rank of 15, and a Total smaller than 2?###answer:SELECT AVG(gold) FROM table_name_99 WHERE rank = "15" AND total < 2###context:CREATE TABLE table_name_99 (gold INTEGER, rank VARCHAR, total VARCHAR)
###question:What is the number of games for the season with 10 ties?###answer:SELECT games FROM table_name_86 WHERE tied = 10###context:CREATE TABLE table_name_86 (games VARCHAR, tied VARCHAR)
###question:What was the surface where the opponent was Nathalie Dechy Meilen Tu?###answer:SELECT surface FROM table_name_63 WHERE opponent_in_the_final = "nathalie dechy meilen tu"###context:CREATE TABLE table_name_63 (surface VARCHAR, opponent_in_the_final VARCHAR)
###question:What is the Series leader with a Date that is may 31?###answer:SELECT series_leader FROM table_name_64 WHERE date = "may 31"###context:CREATE TABLE table_name_64 (series_leader VARCHAR, date VARCHAR)
###question:What is the Series leader with a Date that is october 9?###answer:SELECT series_leader FROM table_name_93 WHERE date = "october 9"###context:CREATE TABLE table_name_93 (series_leader VARCHAR, date VARCHAR)
###question:Which Tournament has a Date of january 10, 1994?###answer:SELECT tournament FROM table_name_10 WHERE date = "january 10, 1994"###context:CREATE TABLE table_name_10 (tournament VARCHAR, date VARCHAR)
###question:Which Opponents in the final have a Date of june 10, 1996?###answer:SELECT opponents_in_the_final FROM table_name_51 WHERE date = "june 10, 1996"###context:CREATE TABLE table_name_51 (opponents_in_the_final VARCHAR, date VARCHAR)
###question:Who's the Opponents in the final with a Date of june 10, 1996?###answer:SELECT opponents_in_the_final FROM table_name_40 WHERE date = "june 10, 1996"###context:CREATE TABLE table_name_40 (opponents_in_the_final VARCHAR, date VARCHAR)
###question:Which Tournament has Opponents in the final of maria lindström maria strandlund?###answer:SELECT tournament FROM table_name_17 WHERE opponents_in_the_final = "maria lindström maria strandlund"###context:CREATE TABLE table_name_17 (tournament VARCHAR, opponents_in_the_final VARCHAR)
###question:What country came in third when there were 13 teams in 1996?###answer:SELECT third FROM table_name_25 WHERE teams = 13 AND season = 1996###context:CREATE TABLE table_name_25 (third VARCHAR, teams VARCHAR, season VARCHAR)
###question:What is the sum of season when the venue was donington park, and Brazil came in second?###answer:SELECT SUM(season) FROM table_name_21 WHERE venue = "donington park" AND second = "brazil"###context:CREATE TABLE table_name_21 (season INTEGER, venue VARCHAR, second VARCHAR)
###question:What is the average Season when the venue was circuit de nevers magny-cours, and Drivers was more than 30?###answer:SELECT AVG(season) FROM table_name_64 WHERE venue = "circuit de nevers magny-cours" AND drivers > 30###context:CREATE TABLE table_name_64 (season INTEGER, venue VARCHAR, drivers VARCHAR)
###question:What is the total number of Losses when the percentage is 54.83, with more than 8 points?###answer:SELECT COUNT(losses) FROM table_name_91 WHERE percentage = 54.83 AND points > 8###context:CREATE TABLE table_name_91 (losses VARCHAR, percentage VARCHAR, points VARCHAR)
###question:What is the average Points For when there are Points Against more than 780, and Points smaller than 0?###answer:SELECT AVG(points_for) FROM table_name_72 WHERE points_against > 780 AND points < 0###context:CREATE TABLE table_name_72 (points_for INTEGER, points_against VARCHAR, points VARCHAR)
###question:What is the average Points when the Points Against is 594, and Losses is more than 3?###answer:SELECT AVG(points) FROM table_name_85 WHERE points_against = 594 AND losses > 3###context:CREATE TABLE table_name_85 (points INTEGER, points_against VARCHAR, losses VARCHAR)
###question:What is the average Percentage when there are more than 0 wins, Points Against is more than 481, Losses of 8, and a Points For larger than 826?###answer:SELECT AVG(percentage) FROM table_name_80 WHERE wins > 0 AND points_against > 481 AND losses = 8 AND points_for > 826###context:CREATE TABLE table_name_80 ...
###question:What is the lowest Wins when the Club is broadview hawks, and Points Against is more than 594?###answer:SELECT MIN(wins) FROM table_name_46 WHERE club = "broadview hawks" AND points_against > 594###context:CREATE TABLE table_name_46 (wins INTEGER, club VARCHAR, points_against VARCHAR)
###question:What Goalkeeper has MINS less than 2160###answer:SELECT goalkeeper FROM table_name_32 WHERE mins < 2160###context:CREATE TABLE table_name_32 (goalkeeper VARCHAR, mins INTEGER)
###question:What is the highest SHTS of Kasey Keller###answer:SELECT MAX(shts) FROM table_name_56 WHERE goalkeeper = "kasey keller"###context:CREATE TABLE table_name_56 (shts INTEGER, goalkeeper VARCHAR)
###question:What is the most number of Bronze medals won among the countries that have won more than 1 medal, more than 1 gold medal, and have a rank bigger than 1?###answer:SELECT MAX(bronze) FROM table_name_49 WHERE total > 1 AND rank > 1 AND gold > 1###context:CREATE TABLE table_name_49 (bronze INTEGER, gold VARCHAR...
###question:What is the total number of Losses that Melton had when they had fewer Draws than 0?###answer:SELECT SUM(losses) FROM table_name_35 WHERE ballarat_fl = "melton" AND draws < 0###context:CREATE TABLE table_name_35 (losses INTEGER, ballarat_fl VARCHAR, draws VARCHAR)
###question:What is the lowest number of Against that Lake Wendouree had when they had more than 7 Losses?###answer:SELECT MIN(against) FROM table_name_74 WHERE ballarat_fl = "lake wendouree" AND losses > 7###context:CREATE TABLE table_name_74 (against INTEGER, ballarat_fl VARCHAR, losses VARCHAR)
###question:What was the total number of Byes for the team that had 1136 Against and fewer than 0 Draws?###answer:SELECT COUNT(byes) FROM table_name_84 WHERE against = 1136 AND draws < 0###context:CREATE TABLE table_name_84 (byes VARCHAR, against VARCHAR, draws VARCHAR)
###question:What was the greatest number of Losses for the team that had 1427 Against and more than 5 Wins?###answer:SELECT MAX(losses) FROM table_name_52 WHERE against > 1427 AND wins > 5###context:CREATE TABLE table_name_52 (losses INTEGER, against VARCHAR, wins VARCHAR)
###question:What is the average number of Byes for the team that had 15 Losses, and less than 1 Win?###answer:SELECT AVG(byes) FROM table_name_13 WHERE losses = 15 AND wins < 1###context:CREATE TABLE table_name_13 (byes INTEGER, losses VARCHAR, wins VARCHAR)
###question:Which nation's total is less than 19 when there's less than 1 bronze?###answer:SELECT nation FROM table_name_54 WHERE total < 19 AND bronze < 1###context:CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR)
###question:How many totals does Chile have when the number of silvers is more than 0?###answer:SELECT COUNT(total) FROM table_name_73 WHERE nation = "chile" AND silver > 0###context:CREATE TABLE table_name_73 (total VARCHAR, nation VARCHAR, silver VARCHAR)
###question:What was the record when TKO (punches and elbows) was the method?###answer:SELECT record FROM table_name_22 WHERE method = "tko (punches and elbows)"###context:CREATE TABLE table_name_22 (record VARCHAR, method VARCHAR)
###question:What venue has don bradman (nsw) as the player?###answer:SELECT venue FROM table_name_7 WHERE player = "don bradman (nsw)"###context:CREATE TABLE table_name_7 (venue VARCHAR, player VARCHAR)
###question:What rank has Bill Ponsford (vic) as the player?###answer:SELECT rank FROM table_name_82 WHERE player = "bill ponsford (vic)"###context:CREATE TABLE table_name_82 (rank VARCHAR, player VARCHAR)
###question:What match has Clem Hill (sa) as the player?###answer:SELECT match FROM table_name_9 WHERE player = "clem hill (sa)"###context:CREATE TABLE table_name_9 (match VARCHAR, player VARCHAR)
###question:Who played on December 25, 1925?###answer:SELECT competition FROM table_name_56 WHERE date = "december 25, 1925"###context:CREATE TABLE table_name_56 (competition VARCHAR, date VARCHAR)
###question:What was the score for the South American Championship dated December 13, 1925?###answer:SELECT result FROM table_name_40 WHERE competition = "south american championship" AND date = "december 13, 1925"###context:CREATE TABLE table_name_40 (result VARCHAR, competition VARCHAR, date VARCHAR)
###question:What is the average number of House of Representatives seats had an abbreviation of d66?###answer:SELECT AVG(house_of_rep_seats) FROM table_name_52 WHERE abbr = "d66"###context:CREATE TABLE table_name_52 (house_of_rep_seats INTEGER, abbr VARCHAR)
###question:For the tournament played on Oct 17, 1982, what was the winning score?###answer:SELECT winning_score FROM table_name_69 WHERE date = "oct 17, 1982"###context:CREATE TABLE table_name_69 (winning_score VARCHAR, date VARCHAR)
###question:For the tournament played Nov 13, 1988, ending with a margin of victory of 5 strokes, who was the runner-up?###answer:SELECT runner_s__up FROM table_name_67 WHERE margin_of_victory = "5 strokes" AND date = "nov 13, 1988"###context:CREATE TABLE table_name_67 (runner_s__up VARCHAR, margin_of_victory VARCHAR, ...
###question:What is 2008, when 2006 is "Grand Slam Tournaments"?###answer:SELECT 2008 FROM table_name_18 WHERE 2006 = "grand slam tournaments"###context:CREATE TABLE table_name_18 (Id VARCHAR)
###question:What is 2007, when 2003 is 1R?###answer:SELECT 2007 FROM table_name_54 WHERE 2003 = "1r"###context:CREATE TABLE table_name_54 (Id VARCHAR)
###question:What is the Tournament, when 2012 is 3R?###answer:SELECT tournament FROM table_name_66 WHERE 2012 = "3r"###context:CREATE TABLE table_name_66 (tournament VARCHAR)
###question:What is Tournament, when 2009 is "Grand Slam Tournaments"?###answer:SELECT tournament FROM table_name_41 WHERE 2009 = "grand slam tournaments"###context:CREATE TABLE table_name_41 (tournament VARCHAR)
###question:Which Free polite has a Genitive 3 of *ni-da?###answer:SELECT free AS polite FROM table_name_70 WHERE genitive_3 = "*ni-da"###context:CREATE TABLE table_name_70 (free VARCHAR, genitive_3 VARCHAR)
###question:Which Free polite has a Genitive 1 of *=ku?###answer:SELECT free AS polite FROM table_name_13 WHERE genitive_1 = * = ku###context:CREATE TABLE table_name_13 (free VARCHAR, ku VARCHAR, genitive_1 VARCHAR)
###question:Which Free polite has a Genitive 3 of *n(i)-ami?###answer:SELECT free AS polite FROM table_name_40 WHERE genitive_3 = "*n(i)-ami"###context:CREATE TABLE table_name_40 (free VARCHAR, genitive_3 VARCHAR)
###question:Which Genitive 1 has a Genitive 3 of *n(i)-ia?###answer:SELECT genitive_1 FROM table_name_57 WHERE genitive_3 = "*n(i)-ia"###context:CREATE TABLE table_name_57 (genitive_1 VARCHAR, genitive_3 VARCHAR)
###question:What is the Proto-Oceanic verb for the verb to sew?###answer:SELECT proto_oceanic FROM table_name_43 WHERE verb = "to sew"###context:CREATE TABLE table_name_43 (proto_oceanic VARCHAR, verb VARCHAR)
###question:What is the verb for the Proto-Austronesian word *diri?###answer:SELECT verb FROM table_name_86 WHERE proto_austronesian = "*diri"###context:CREATE TABLE table_name_86 (verb VARCHAR, proto_austronesian VARCHAR)
###question:What is the Proto-Oceanic verb for to die, be dead?###answer:SELECT proto_oceanic FROM table_name_44 WHERE verb = "to die, be dead"###context:CREATE TABLE table_name_44 (proto_oceanic VARCHAR, verb VARCHAR)
###question:What is the verb for the Proto-Polynesian word *mohe?###answer:SELECT verb FROM table_name_43 WHERE proto_polynesian = "*mohe"###context:CREATE TABLE table_name_43 (verb VARCHAR, proto_polynesian VARCHAR)
###question:What is the Proto-Austronesian word for the Proto-Polynesian word *tui?###answer:SELECT proto_austronesian FROM table_name_53 WHERE proto_polynesian = "*tui"###context:CREATE TABLE table_name_53 (proto_austronesian VARCHAR, proto_polynesian VARCHAR)
###question:What is the Proto-Malayo-Polynesian word for the Proto-Oceanic word of *saqit, *turi?###answer:SELECT proto_malayo_polynesian FROM table_name_71 WHERE proto_oceanic = "*saqit, *turi"###context:CREATE TABLE table_name_71 (proto_malayo_polynesian VARCHAR, proto_oceanic VARCHAR)
###question:What station has a genre of talk music and is in Malay English language?###answer:SELECT station FROM table_name_81 WHERE genre = "talk music" AND language = "malay english"###context:CREATE TABLE table_name_81 (station VARCHAR, genre VARCHAR, language VARCHAR)
###question:Which genre is the fly fm station?###answer:SELECT genre FROM table_name_93 WHERE station = "fly fm"###context:CREATE TABLE table_name_93 (genre VARCHAR, station VARCHAR)
###question:What frequency is the xfm station, which is part of the talk music genre?###answer:SELECT frequency FROM table_name_71 WHERE genre = "talk music" AND station = "xfm"###context:CREATE TABLE table_name_71 (frequency VARCHAR, genre VARCHAR, station VARCHAR)
###question:What is the coverage area of muzik fm station, which has a music genre?###answer:SELECT coverage_area FROM table_name_65 WHERE genre = "music" AND station = "muzik fm"###context:CREATE TABLE table_name_65 (coverage_area VARCHAR, genre VARCHAR, station VARCHAR)
###question:What is Co-Drivers, when Laps is greater than 196, and when Year is before 2010?###answer:SELECT co_drivers FROM table_name_78 WHERE laps > 196 AND year < 2010###context:CREATE TABLE table_name_78 (co_drivers VARCHAR, laps VARCHAR, year VARCHAR)
###question:What is the Date when the week is more than 3 and the attendance shows bye?###answer:SELECT date FROM table_name_39 WHERE week > 3 AND attendance = "bye"###context:CREATE TABLE table_name_39 (date VARCHAR, week VARCHAR, attendance VARCHAR)
###question:What is the Result when the week is later than 9, and there are 65,858 people in attendance?###answer:SELECT result FROM table_name_33 WHERE week > 9 AND attendance = "65,858"###context:CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR, attendance VARCHAR)
###question:What is the 1938 that has N/A for 1948?###answer:SELECT 1938 FROM table_name_49 WHERE 1948 = "n/a"###context:CREATE TABLE table_name_49 (Id VARCHAR)
###question:What 1953 has 2 for 1947, and dne as 1938?###answer:SELECT 1953 FROM table_name_52 WHERE 1947 = "2" AND 1938 = "dne"###context:CREATE TABLE table_name_52 (Id VARCHAR)
###question:What 1935 has 4 as a 1953?###answer:SELECT 1935 FROM table_name_6 WHERE 1953 = "4"###context:CREATE TABLE table_name_6 (Id VARCHAR)
###question:What 1953 has 2 as a 1949, and 3 as 1952?###answer:SELECT 1953 FROM table_name_48 WHERE 1949 = "2" AND 1952 = "3"###context:CREATE TABLE table_name_48 (Id VARCHAR)
###question:What 1941 has N/A as 1945, N/A for 1948, and 9 for 1953?###answer:SELECT 1941 FROM table_name_7 WHERE 1945 = "n/a" AND 1948 = "n/a" AND 1953 = "9"###context:CREATE TABLE table_name_7 (Id VARCHAR)
###question:What 1951 has dne for 1948?###answer:SELECT 1951 FROM table_name_26 WHERE 1948 = "dne"###context:CREATE TABLE table_name_26 (Id VARCHAR)
###question:Which Cup Apps (sub) had 2 goals?###answer:SELECT cup_apps__sub_ FROM table_name_59 WHERE cup_goals = "2"###context:CREATE TABLE table_name_59 (cup_apps__sub_ VARCHAR, cup_goals VARCHAR)
###question:Which Total Apps (sub) has 6 goals total?###answer:SELECT total_apps__sub_ FROM table_name_39 WHERE total_goals = "6"###context:CREATE TABLE table_name_39 (total_apps__sub_ VARCHAR, total_goals VARCHAR)
###question:What airline has a IATA of BX?###answer:SELECT airline FROM table_name_87 WHERE iata = "bx"###context:CREATE TABLE table_name_87 (airline VARCHAR, iata VARCHAR)
###question:What is the ICAO for Asiana Airlines?###answer:SELECT icao FROM table_name_8 WHERE airline = "asiana airlines"###context:CREATE TABLE table_name_8 (icao VARCHAR, airline VARCHAR)
###question:What is the commenced operation where the ICAO is KAL?###answer:SELECT commenced_operations FROM table_name_61 WHERE icao = "kal"###context:CREATE TABLE table_name_61 (commenced_operations VARCHAR, icao VARCHAR)
###question:What is the ICAO for Air Busan?###answer:SELECT icao FROM table_name_63 WHERE callsign = "air busan"###context:CREATE TABLE table_name_63 (icao VARCHAR, callsign VARCHAR)
###question:What is the callsign where the ICAO is AAR?###answer:SELECT callsign FROM table_name_80 WHERE icao = "aar"###context:CREATE TABLE table_name_80 (callsign VARCHAR, icao VARCHAR)
###question:What is the average Tries with less than 0 goals?###answer:SELECT AVG(tries) FROM table_name_7 WHERE goals < 0###context:CREATE TABLE table_name_7 (tries INTEGER, goals INTEGER)
###question:What is the total number of Points with less than 1 tries, and more than 0 goals?###answer:SELECT COUNT(points) FROM table_name_60 WHERE tries < 1 AND goals > 0###context:CREATE TABLE table_name_60 (points VARCHAR, tries VARCHAR, goals VARCHAR)
###question:Which club/province has more than 9 caps and Ben Franks as a player?###answer:SELECT club_province FROM table_name_44 WHERE caps > 9 AND player = "ben franks"###context:CREATE TABLE table_name_44 (club_province VARCHAR, caps VARCHAR, player VARCHAR)