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