question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Where is the location of the friendly match larger than 1 where the Super Reds were the opponent?
CREATE TABLE table_name_87 (location VARCHAR, opponent_team VARCHAR, match VARCHAR, tournament VARCHAR)
SELECT location FROM table_name_87 WHERE match > 1 AND tournament = "friendly" AND opponent_team = "super reds"
### Context: CREATE TABLE table_name_87 (location VARCHAR, opponent_team VARCHAR, match VARCHAR, tournament VARCHAR) ### Question: Where is the location of the friendly match larger than 1 where the Super Reds were the opponent? ### Answer: SELECT location FROM table_name_87 WHERE match > 1 AND tournament = "friendly" AND opponent_team = "super reds"
When the team is @ Milwaukee, what is the name of the location where the game is played?
CREATE TABLE table_name_78 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_name_78 WHERE team = "@ milwaukee"
### Context: CREATE TABLE table_name_78 (location_attendance VARCHAR, team VARCHAR) ### Question: When the team is @ Milwaukee, what is the name of the location where the game is played? ### Answer: SELECT location_attendance FROM table_name_78 WHERE team = "@ milwaukee"
For the game with team of @ Chicago, what was the final score?
CREATE TABLE table_name_19 (score VARCHAR, team VARCHAR)
SELECT score FROM table_name_19 WHERE team = "@ chicago"
### Context: CREATE TABLE table_name_19 (score VARCHAR, team VARCHAR) ### Question: For the game with team of @ Chicago, what was the final score? ### Answer: SELECT score FROM table_name_19 WHERE team = "@ chicago"
What rank did Best Friends receive?
CREATE TABLE table_name_90 (rank VARCHAR, title VARCHAR)
SELECT rank FROM table_name_90 WHERE title = "best friends"
### Context: CREATE TABLE table_name_90 (rank VARCHAR, title VARCHAR) ### Question: What rank did Best Friends receive? ### Answer: SELECT rank FROM table_name_90 WHERE title = "best friends"
How many points are for the Fall Bay RFC club?
CREATE TABLE table_name_91 (points_for VARCHAR, club VARCHAR)
SELECT points_for FROM table_name_91 WHERE club = "fall bay rfc"
### Context: CREATE TABLE table_name_91 (points_for VARCHAR, club VARCHAR) ### Question: How many points are for the Fall Bay RFC club? ### Answer: SELECT points_for FROM table_name_91 WHERE club = "fall bay rfc"
What was drawn for 6 bonus points and is against 410 points?
CREATE TABLE table_name_87 (drawn VARCHAR, bonus_points VARCHAR, points_against VARCHAR)
SELECT drawn FROM table_name_87 WHERE bonus_points = "6" AND points_against = "410"
### Context: CREATE TABLE table_name_87 (drawn VARCHAR, bonus_points VARCHAR, points_against VARCHAR) ### Question: What was drawn for 6 bonus points and is against 410 points? ### Answer: SELECT drawn FROM table_name_87 WHERE bonus_points = "6" AND points_against = "410"
What is the club had 431 points against them?
CREATE TABLE table_name_63 (club VARCHAR, points_against VARCHAR)
SELECT club FROM table_name_63 WHERE points_against = "431"
### Context: CREATE TABLE table_name_63 (club VARCHAR, points_against VARCHAR) ### Question: What is the club had 431 points against them? ### Answer: SELECT club FROM table_name_63 WHERE points_against = "431"
What are the points against with a points difference?
CREATE TABLE table_name_34 (points_against VARCHAR, points_difference VARCHAR)
SELECT points_against FROM table_name_34 WHERE points_difference = "points difference"
### Context: CREATE TABLE table_name_34 (points_against VARCHAR, points_difference VARCHAR) ### Question: What are the points against with a points difference? ### Answer: SELECT points_against FROM table_name_34 WHERE points_difference = "points difference"
What are the played points difference?
CREATE TABLE table_name_82 (played VARCHAR, points_difference VARCHAR)
SELECT played FROM table_name_82 WHERE points_difference = "points difference"
### Context: CREATE TABLE table_name_82 (played VARCHAR, points_difference VARCHAR) ### Question: What are the played points difference? ### Answer: SELECT played FROM table_name_82 WHERE points_difference = "points difference"
When the Home Team was Sydney, what did the Away team score?
CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_41 WHERE home_team = "sydney"
### Context: CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR) ### Question: When the Home Team was Sydney, what did the Away team score? ### Answer: SELECT away_team AS score FROM table_name_41 WHERE home_team = "sydney"
What was the Home team Carlton's Ground?
CREATE TABLE table_name_55 (ground VARCHAR, home_team VARCHAR)
SELECT ground FROM table_name_55 WHERE home_team = "carlton"
### Context: CREATE TABLE table_name_55 (ground VARCHAR, home_team VARCHAR) ### Question: What was the Home team Carlton's Ground? ### Answer: SELECT ground FROM table_name_55 WHERE home_team = "carlton"
Which player scored 71?
CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_4 WHERE score = 71
### Context: CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR) ### Question: Which player scored 71? ### Answer: SELECT player FROM table_name_4 WHERE score = 71
What is the circuit on 19 Apr with Craig Lowndes as the winner?
CREATE TABLE table_name_84 (circuit VARCHAR, winner VARCHAR, date VARCHAR)
SELECT circuit FROM table_name_84 WHERE winner = "craig lowndes" AND date = "19 apr"
### Context: CREATE TABLE table_name_84 (circuit VARCHAR, winner VARCHAR, date VARCHAR) ### Question: What is the circuit on 19 Apr with Craig Lowndes as the winner? ### Answer: SELECT circuit FROM table_name_84 WHERE winner = "craig lowndes" AND date = "19 apr"
What circuit has volvo cars australia as the team?
CREATE TABLE table_name_15 (circuit VARCHAR, team VARCHAR)
SELECT circuit FROM table_name_15 WHERE team = "volvo cars australia"
### Context: CREATE TABLE table_name_15 (circuit VARCHAR, team VARCHAR) ### Question: What circuit has volvo cars australia as the team? ### Answer: SELECT circuit FROM table_name_15 WHERE team = "volvo cars australia"
What series was Dick Johnson Racing the team?
CREATE TABLE table_name_8 (series VARCHAR, team VARCHAR)
SELECT series FROM table_name_8 WHERE team = "dick johnson racing"
### Context: CREATE TABLE table_name_8 (series VARCHAR, team VARCHAR) ### Question: What series was Dick Johnson Racing the team? ### Answer: SELECT series FROM table_name_8 WHERE team = "dick johnson racing"
What is the city/state of the circuit where Russell Ingall Larry Perkins was the winner?
CREATE TABLE table_name_87 (city___state VARCHAR, winner VARCHAR)
SELECT city___state FROM table_name_87 WHERE winner = "russell ingall larry perkins"
### Context: CREATE TABLE table_name_87 (city___state VARCHAR, winner VARCHAR) ### Question: What is the city/state of the circuit where Russell Ingall Larry Perkins was the winner? ### Answer: SELECT city___state FROM table_name_87 WHERE winner = "russell ingall larry perkins"
What date was the away team, team Gillingham?
CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_64 WHERE away_team = "gillingham"
### Context: CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR) ### Question: What date was the away team, team Gillingham? ### Answer: SELECT date FROM table_name_64 WHERE away_team = "gillingham"
What was the score for a no. 21 tie?
CREATE TABLE table_name_6 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_6 WHERE tie_no = "21"
### Context: CREATE TABLE table_name_6 (score VARCHAR, tie_no VARCHAR) ### Question: What was the score for a no. 21 tie? ### Answer: SELECT score FROM table_name_6 WHERE tie_no = "21"
What was the date for the away team, team Southport?
CREATE TABLE table_name_80 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_80 WHERE away_team = "southport"
### Context: CREATE TABLE table_name_80 (date VARCHAR, away_team VARCHAR) ### Question: What was the date for the away team, team Southport? ### Answer: SELECT date FROM table_name_80 WHERE away_team = "southport"
What was the score for the away team, southport?
CREATE TABLE table_name_19 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_19 WHERE away_team = "southport"
### Context: CREATE TABLE table_name_19 (score VARCHAR, away_team VARCHAR) ### Question: What was the score for the away team, southport? ### Answer: SELECT score FROM table_name_19 WHERE away_team = "southport"
What was the result when the attendance was 47,971?
CREATE TABLE table_name_65 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_65 WHERE attendance = "47,971"
### Context: CREATE TABLE table_name_65 (result VARCHAR, attendance VARCHAR) ### Question: What was the result when the attendance was 47,971? ### Answer: SELECT result FROM table_name_65 WHERE attendance = "47,971"
What was the result when the attendance was 46,456?
CREATE TABLE table_name_2 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_2 WHERE attendance = "46,456"
### Context: CREATE TABLE table_name_2 (result VARCHAR, attendance VARCHAR) ### Question: What was the result when the attendance was 46,456? ### Answer: SELECT result FROM table_name_2 WHERE attendance = "46,456"
Who was the opponent on september 27, 1998?
CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_16 WHERE date = "september 27, 1998"
### Context: CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on september 27, 1998? ### Answer: SELECT opponent FROM table_name_16 WHERE date = "september 27, 1998"
Which Venue has a Score of 0:0, a Season larger than 2010, and a Team 1 of t&t hanoi?
CREATE TABLE table_name_39 (venue VARCHAR, team_1 VARCHAR, score VARCHAR, season VARCHAR)
SELECT venue FROM table_name_39 WHERE score = "0:0" AND season > 2010 AND team_1 = "t&t hanoi"
### Context: CREATE TABLE table_name_39 (venue VARCHAR, team_1 VARCHAR, score VARCHAR, season VARCHAR) ### Question: Which Venue has a Score of 0:0, a Season larger than 2010, and a Team 1 of t&t hanoi? ### Answer: SELECT venue FROM table_name_39 WHERE score = "0:0" AND season > 2010 AND team_1 = "t&t hanoi"
What's the highest league of the Nova Scotia Clippers with a total season of less than 4?
CREATE TABLE table_name_2 (highest_league VARCHAR, total_seasons VARCHAR, team VARCHAR)
SELECT highest_league FROM table_name_2 WHERE total_seasons < 4 AND team = "nova scotia clippers"
### Context: CREATE TABLE table_name_2 (highest_league VARCHAR, total_seasons VARCHAR, team VARCHAR) ### Question: What's the highest league of the Nova Scotia Clippers with a total season of less than 4? ### Answer: SELECT highest_league FROM table_name_2 WHERE total_seasons < 4 AND team = "nova scotia clippers"
What is the season that has fewer than 5 total seasons and is in Ottawa, Ontario?
CREATE TABLE table_name_49 (seasons VARCHAR, total_seasons VARCHAR, city VARCHAR)
SELECT seasons FROM table_name_49 WHERE total_seasons < 5 AND city = "ottawa, ontario"
### Context: CREATE TABLE table_name_49 (seasons VARCHAR, total_seasons VARCHAR, city VARCHAR) ### Question: What is the season that has fewer than 5 total seasons and is in Ottawa, Ontario? ### Answer: SELECT seasons FROM table_name_49 WHERE total_seasons < 5 AND city = "ottawa, ontario"
What is the least total seasons of the Vancouver 86ers?
CREATE TABLE table_name_58 (total_seasons INTEGER, team VARCHAR)
SELECT MIN(total_seasons) FROM table_name_58 WHERE team = "vancouver 86ers"
### Context: CREATE TABLE table_name_58 (total_seasons INTEGER, team VARCHAR) ### Question: What is the least total seasons of the Vancouver 86ers? ### Answer: SELECT MIN(total_seasons) FROM table_name_58 WHERE team = "vancouver 86ers"
Who was the opponent in week 14?
CREATE TABLE table_name_28 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_28 WHERE week = 14
### Context: CREATE TABLE table_name_28 (opponent VARCHAR, week VARCHAR) ### Question: Who was the opponent in week 14? ### Answer: SELECT opponent FROM table_name_28 WHERE week = 14
What is Date, when City is "Punta Del Este"?
CREATE TABLE table_name_87 (date VARCHAR, city VARCHAR)
SELECT date FROM table_name_87 WHERE city = "punta del este"
### Context: CREATE TABLE table_name_87 (date VARCHAR, city VARCHAR) ### Question: What is Date, when City is "Punta Del Este"? ### Answer: SELECT date FROM table_name_87 WHERE city = "punta del este"
What is City, when Prize is "$146,000"?
CREATE TABLE table_name_18 (city VARCHAR, prize VARCHAR)
SELECT city FROM table_name_18 WHERE prize = "$146,000"
### Context: CREATE TABLE table_name_18 (city VARCHAR, prize VARCHAR) ### Question: What is City, when Prize is "$146,000"? ### Answer: SELECT city FROM table_name_18 WHERE prize = "$146,000"
What is Date, when Winner is "Murilo Figueiredo"?
CREATE TABLE table_name_66 (date VARCHAR, winner VARCHAR)
SELECT date FROM table_name_66 WHERE winner = "murilo figueiredo"
### Context: CREATE TABLE table_name_66 (date VARCHAR, winner VARCHAR) ### Question: What is Date, when Winner is "Murilo Figueiredo"? ### Answer: SELECT date FROM table_name_66 WHERE winner = "murilo figueiredo"
What Aspect has a Programming of Saigon Network Television?
CREATE TABLE table_name_12 (aspect VARCHAR, programming VARCHAR)
SELECT aspect FROM table_name_12 WHERE programming = "saigon network television"
### Context: CREATE TABLE table_name_12 (aspect VARCHAR, programming VARCHAR) ### Question: What Aspect has a Programming of Saigon Network Television? ### Answer: SELECT aspect FROM table_name_12 WHERE programming = "saigon network television"
Which Aspect has a Programming of latv?
CREATE TABLE table_name_18 (aspect VARCHAR, programming VARCHAR)
SELECT aspect FROM table_name_18 WHERE programming = "latv"
### Context: CREATE TABLE table_name_18 (aspect VARCHAR, programming VARCHAR) ### Question: Which Aspect has a Programming of latv? ### Answer: SELECT aspect FROM table_name_18 WHERE programming = "latv"
Which Programming has a Channel greater than 51.2 and a PSIP Short Name of kyaz-5?
CREATE TABLE table_name_53 (programming VARCHAR, channel VARCHAR, psip_short_name VARCHAR)
SELECT programming FROM table_name_53 WHERE channel > 51.2 AND psip_short_name = "kyaz-5"
### Context: CREATE TABLE table_name_53 (programming VARCHAR, channel VARCHAR, psip_short_name VARCHAR) ### Question: Which Programming has a Channel greater than 51.2 and a PSIP Short Name of kyaz-5? ### Answer: SELECT programming FROM table_name_53 WHERE channel > 51.2 AND psip_short_name = "kyaz-5"
What is the PSIP Short name for the Channel that is less than 51.6?
CREATE TABLE table_name_70 (psip_short_name VARCHAR, channel INTEGER)
SELECT psip_short_name FROM table_name_70 WHERE channel < 51.6
### Context: CREATE TABLE table_name_70 (psip_short_name VARCHAR, channel INTEGER) ### Question: What is the PSIP Short name for the Channel that is less than 51.6? ### Answer: SELECT psip_short_name FROM table_name_70 WHERE channel < 51.6
What year did maggs magnificent mild bear win overall at the camra reading branch beer festival?
CREATE TABLE table_name_62 (year INTEGER, category VARCHAR, beer_name VARCHAR, competition VARCHAR)
SELECT MAX(year) FROM table_name_62 WHERE beer_name = "maggs magnificent mild" AND competition = "camra reading branch beer festival" AND category = "overall"
### Context: CREATE TABLE table_name_62 (year INTEGER, category VARCHAR, beer_name VARCHAR, competition VARCHAR) ### Question: What year did maggs magnificent mild bear win overall at the camra reading branch beer festival? ### Answer: SELECT MAX(year) FROM table_name_62 WHERE beer_name = "maggs magnificent mild" AND competition = "camra reading branch beer festival" AND category = "overall"
What prize did good old boy win in 2002 at the camra london and south east regional competition?
CREATE TABLE table_name_31 (prize VARCHAR, beer_name VARCHAR, year VARCHAR, competition VARCHAR)
SELECT prize FROM table_name_31 WHERE year > 2002 AND competition = "camra london and south east regional competition" AND beer_name = "good old boy"
### Context: CREATE TABLE table_name_31 (prize VARCHAR, beer_name VARCHAR, year VARCHAR, competition VARCHAR) ### Question: What prize did good old boy win in 2002 at the camra london and south east regional competition? ### Answer: SELECT prize FROM table_name_31 WHERE year > 2002 AND competition = "camra london and south east regional competition" AND beer_name = "good old boy"
What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition?
CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, category VARCHAR, beer_name VARCHAR, prize VARCHAR)
SELECT AVG(year) FROM table_name_93 WHERE beer_name = "maggs magnificent mild" AND prize = "gold medal" AND category = "mild and porter" AND competition = "siba south east region beer competition"
### Context: CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, category VARCHAR, beer_name VARCHAR, prize VARCHAR) ### Question: What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition? ### Answer: SELECT AVG(year) FROM table_name_93 WHERE beer_name = "maggs magnificent mild" AND prize = "gold medal" AND category = "mild and porter" AND competition = "siba south east region beer competition"
What beer won a silver medal at the camra reading branch beer festival in 2008?
CREATE TABLE table_name_33 (beer_name VARCHAR, year VARCHAR, prize VARCHAR, competition VARCHAR)
SELECT beer_name FROM table_name_33 WHERE prize = "silver medal" AND competition = "camra reading branch beer festival" AND year = 2008
### Context: CREATE TABLE table_name_33 (beer_name VARCHAR, year VARCHAR, prize VARCHAR, competition VARCHAR) ### Question: What beer won a silver medal at the camra reading branch beer festival in 2008? ### Answer: SELECT beer_name FROM table_name_33 WHERE prize = "silver medal" AND competition = "camra reading branch beer festival" AND year = 2008
What is Model Number, when Part Number(s) is AY80609003987AB?
CREATE TABLE table_name_70 (model_number VARCHAR, part_number_s_ VARCHAR)
SELECT model_number FROM table_name_70 WHERE part_number_s_ = "ay80609003987ab"
### Context: CREATE TABLE table_name_70 (model_number VARCHAR, part_number_s_ VARCHAR) ### Question: What is Model Number, when Part Number(s) is AY80609003987AB? ### Answer: SELECT model_number FROM table_name_70 WHERE part_number_s_ = "ay80609003987ab"
What is Frequency, when Part Number(s) is AY80609004002AC?
CREATE TABLE table_name_85 (frequency VARCHAR, part_number_s_ VARCHAR)
SELECT frequency FROM table_name_85 WHERE part_number_s_ = "ay80609004002ac"
### Context: CREATE TABLE table_name_85 (frequency VARCHAR, part_number_s_ VARCHAR) ### Question: What is Frequency, when Part Number(s) is AY80609004002AC? ### Answer: SELECT frequency FROM table_name_85 WHERE part_number_s_ = "ay80609004002ac"
What is sSpec Number, when Frequency is 1 GHZ?
CREATE TABLE table_name_98 (sspec_number VARCHAR, frequency VARCHAR)
SELECT sspec_number FROM table_name_98 WHERE frequency = "1 ghz"
### Context: CREATE TABLE table_name_98 (sspec_number VARCHAR, frequency VARCHAR) ### Question: What is sSpec Number, when Frequency is 1 GHZ? ### Answer: SELECT sspec_number FROM table_name_98 WHERE frequency = "1 ghz"
What is Release Date, when sSpec Number is SLBZE(C0)SLBR8?
CREATE TABLE table_name_22 (release_date VARCHAR, sspec_number VARCHAR)
SELECT release_date FROM table_name_22 WHERE sspec_number = "slbze(c0)slbr8"
### Context: CREATE TABLE table_name_22 (release_date VARCHAR, sspec_number VARCHAR) ### Question: What is Release Date, when sSpec Number is SLBZE(C0)SLBR8? ### Answer: SELECT release_date FROM table_name_22 WHERE sspec_number = "slbze(c0)slbr8"
What is L2 Cache, when Model Number is Atom Z625?
CREATE TABLE table_name_60 (l2_cache VARCHAR, model_number VARCHAR)
SELECT l2_cache FROM table_name_60 WHERE model_number = "atom z625"
### Context: CREATE TABLE table_name_60 (l2_cache VARCHAR, model_number VARCHAR) ### Question: What is L2 Cache, when Model Number is Atom Z625? ### Answer: SELECT l2_cache FROM table_name_60 WHERE model_number = "atom z625"
Which Pick has a Player of renaldo wynn, and a Round smaller than 1?
CREATE TABLE table_name_17 (pick VARCHAR, player VARCHAR, round VARCHAR)
SELECT COUNT(pick) FROM table_name_17 WHERE player = "renaldo wynn" AND round < 1
### Context: CREATE TABLE table_name_17 (pick VARCHAR, player VARCHAR, round VARCHAR) ### Question: Which Pick has a Player of renaldo wynn, and a Round smaller than 1? ### Answer: SELECT COUNT(pick) FROM table_name_17 WHERE player = "renaldo wynn" AND round < 1
Which Round has a Player of damon jones?
CREATE TABLE table_name_49 (round INTEGER, player VARCHAR)
SELECT SUM(round) FROM table_name_49 WHERE player = "damon jones"
### Context: CREATE TABLE table_name_49 (round INTEGER, player VARCHAR) ### Question: Which Round has a Player of damon jones? ### Answer: SELECT SUM(round) FROM table_name_49 WHERE player = "damon jones"
Which College has a Round smaller than 2?
CREATE TABLE table_name_50 (college VARCHAR, round INTEGER)
SELECT college FROM table_name_50 WHERE round < 2
### Context: CREATE TABLE table_name_50 (college VARCHAR, round INTEGER) ### Question: Which College has a Round smaller than 2? ### Answer: SELECT college FROM table_name_50 WHERE round < 2
Which event is located in Northfield, Mn?
CREATE TABLE table_name_94 (event VARCHAR, location VARCHAR)
SELECT event FROM table_name_94 WHERE location = "northfield, mn"
### Context: CREATE TABLE table_name_94 (event VARCHAR, location VARCHAR) ### Question: Which event is located in Northfield, Mn? ### Answer: SELECT event FROM table_name_94 WHERE location = "northfield, mn"
Which event has a distance of ft10in (m)?
CREATE TABLE table_name_88 (event VARCHAR, distance VARCHAR)
SELECT event FROM table_name_88 WHERE distance = "ft10in (m)"
### Context: CREATE TABLE table_name_88 (event VARCHAR, distance VARCHAR) ### Question: Which event has a distance of ft10in (m)? ### Answer: SELECT event FROM table_name_88 WHERE distance = "ft10in (m)"
What distance does the Bass Pro Shops event have?
CREATE TABLE table_name_97 (distance VARCHAR, event VARCHAR)
SELECT distance FROM table_name_97 WHERE event = "bass pro shops"
### Context: CREATE TABLE table_name_97 (distance VARCHAR, event VARCHAR) ### Question: What distance does the Bass Pro Shops event have? ### Answer: SELECT distance FROM table_name_97 WHERE event = "bass pro shops"
On what date was Mike Jackson a handler at the Indianapolis Boat, Sport & Travel Show?
CREATE TABLE table_name_56 (date VARCHAR, handler VARCHAR, event VARCHAR)
SELECT date FROM table_name_56 WHERE handler = "mike jackson" AND event = "indianapolis boat, sport & travel show"
### Context: CREATE TABLE table_name_56 (date VARCHAR, handler VARCHAR, event VARCHAR) ### Question: On what date was Mike Jackson a handler at the Indianapolis Boat, Sport & Travel Show? ### Answer: SELECT date FROM table_name_56 WHERE handler = "mike jackson" AND event = "indianapolis boat, sport & travel show"
Who did they play when there were only 751 in attendance?
CREATE TABLE table_name_78 (opponent VARCHAR, attendance INTEGER)
SELECT opponent FROM table_name_78 WHERE attendance < 751
### Context: CREATE TABLE table_name_78 (opponent VARCHAR, attendance INTEGER) ### Question: Who did they play when there were only 751 in attendance? ### Answer: SELECT opponent FROM table_name_78 WHERE attendance < 751
When did they play the swindon wildcats away?
CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_14 WHERE venue = "away" AND opponent = "swindon wildcats"
### Context: CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR, opponent VARCHAR) ### Question: When did they play the swindon wildcats away? ### Answer: SELECT date FROM table_name_14 WHERE venue = "away" AND opponent = "swindon wildcats"
Who was the Man of the Match when they played the Romford Raiders at home?
CREATE TABLE table_name_28 (man_of_the_match VARCHAR, venue VARCHAR, opponent VARCHAR)
SELECT man_of_the_match FROM table_name_28 WHERE venue = "home" AND opponent = "romford raiders"
### Context: CREATE TABLE table_name_28 (man_of_the_match VARCHAR, venue VARCHAR, opponent VARCHAR) ### Question: Who was the Man of the Match when they played the Romford Raiders at home? ### Answer: SELECT man_of_the_match FROM table_name_28 WHERE venue = "home" AND opponent = "romford raiders"
What is the Nationality of the player named Yahaya, who has as App(L/C/E) of 0 (0/0/0)?
CREATE TABLE table_name_76 (nat VARCHAR, app_l_c_e_ VARCHAR, name VARCHAR)
SELECT nat FROM table_name_76 WHERE app_l_c_e_ = "0 (0/0/0)" AND name = "yahaya"
### Context: CREATE TABLE table_name_76 (nat VARCHAR, app_l_c_e_ VARCHAR, name VARCHAR) ### Question: What is the Nationality of the player named Yahaya, who has as App(L/C/E) of 0 (0/0/0)? ### Answer: SELECT nat FROM table_name_76 WHERE app_l_c_e_ = "0 (0/0/0)" AND name = "yahaya"
What was the transfer fee for the player who had an App(L/C/E) of 0 (0/0/0) and notes of to anagennisi karditsa?
CREATE TABLE table_name_61 (transfer_fee VARCHAR, app_l_c_e_ VARCHAR, notes VARCHAR)
SELECT transfer_fee FROM table_name_61 WHERE app_l_c_e_ = "0 (0/0/0)" AND notes = "to anagennisi karditsa"
### Context: CREATE TABLE table_name_61 (transfer_fee VARCHAR, app_l_c_e_ VARCHAR, notes VARCHAR) ### Question: What was the transfer fee for the player who had an App(L/C/E) of 0 (0/0/0) and notes of to anagennisi karditsa? ### Answer: SELECT transfer_fee FROM table_name_61 WHERE app_l_c_e_ = "0 (0/0/0)" AND notes = "to anagennisi karditsa"
what is the british name when the american name is sixteenth note?
CREATE TABLE table_name_50 (british_name VARCHAR, american_name VARCHAR)
SELECT british_name FROM table_name_50 WHERE american_name = "sixteenth note"
### Context: CREATE TABLE table_name_50 (british_name VARCHAR, american_name VARCHAR) ### Question: what is the british name when the american name is sixteenth note? ### Answer: SELECT british_name FROM table_name_50 WHERE american_name = "sixteenth note"
what is the value when the british name is quaver?
CREATE TABLE table_name_23 (value VARCHAR, british_name VARCHAR)
SELECT value FROM table_name_23 WHERE british_name = "quaver"
### Context: CREATE TABLE table_name_23 (value VARCHAR, british_name VARCHAR) ### Question: what is the value when the british name is quaver? ### Answer: SELECT value FROM table_name_23 WHERE british_name = "quaver"
what is the value when the british name is maxima?
CREATE TABLE table_name_40 (value VARCHAR, british_name VARCHAR)
SELECT value FROM table_name_40 WHERE british_name = "maxima"
### Context: CREATE TABLE table_name_40 (value VARCHAR, british_name VARCHAR) ### Question: what is the value when the british name is maxima? ### Answer: SELECT value FROM table_name_40 WHERE british_name = "maxima"
What is Home Team, when Date is "28 January 1984", and when Tie No is "4"?
CREATE TABLE table_name_65 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_65 WHERE date = "28 january 1984" AND tie_no = "4"
### Context: CREATE TABLE table_name_65 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR) ### Question: What is Home Team, when Date is "28 January 1984", and when Tie No is "4"? ### Answer: SELECT home_team FROM table_name_65 WHERE date = "28 january 1984" AND tie_no = "4"
What is Date, when Away Team is "Gillingham"?
CREATE TABLE table_name_2 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_2 WHERE away_team = "gillingham"
### Context: CREATE TABLE table_name_2 (date VARCHAR, away_team VARCHAR) ### Question: What is Date, when Away Team is "Gillingham"? ### Answer: SELECT date FROM table_name_2 WHERE away_team = "gillingham"
What is Home Team, when Date is "1 February 1984", and when Tie No is "5"?
CREATE TABLE table_name_30 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_30 WHERE date = "1 february 1984" AND tie_no = "5"
### Context: CREATE TABLE table_name_30 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR) ### Question: What is Home Team, when Date is "1 February 1984", and when Tie No is "5"? ### Answer: SELECT home_team FROM table_name_30 WHERE date = "1 february 1984" AND tie_no = "5"
What is Away Team, when Home Team is "Sheffield Wednesday"?
CREATE TABLE table_name_65 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_65 WHERE home_team = "sheffield wednesday"
### Context: CREATE TABLE table_name_65 (away_team VARCHAR, home_team VARCHAR) ### Question: What is Away Team, when Home Team is "Sheffield Wednesday"? ### Answer: SELECT away_team FROM table_name_65 WHERE home_team = "sheffield wednesday"
What is Date, when Tie No is "Replay", and when Away Team is "Crystal Palace"?
CREATE TABLE table_name_85 (date VARCHAR, tie_no VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_85 WHERE tie_no = "replay" AND away_team = "crystal palace"
### Context: CREATE TABLE table_name_85 (date VARCHAR, tie_no VARCHAR, away_team VARCHAR) ### Question: What is Date, when Tie No is "Replay", and when Away Team is "Crystal Palace"? ### Answer: SELECT date FROM table_name_85 WHERE tie_no = "replay" AND away_team = "crystal palace"
What to par has tom kite as the player?
CREATE TABLE table_name_92 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_92 WHERE player = "tom kite"
### Context: CREATE TABLE table_name_92 (to_par VARCHAR, player VARCHAR) ### Question: What to par has tom kite as the player? ### Answer: SELECT to_par FROM table_name_92 WHERE player = "tom kite"
What player has a t57 as the finish?
CREATE TABLE table_name_65 (player VARCHAR, finish VARCHAR)
SELECT player FROM table_name_65 WHERE finish = "t57"
### Context: CREATE TABLE table_name_65 (player VARCHAR, finish VARCHAR) ### Question: What player has a t57 as the finish? ### Answer: SELECT player FROM table_name_65 WHERE finish = "t57"
What is the lowest total that has 1992 as the year (s) won?
CREATE TABLE table_name_81 (total INTEGER, year_s__won VARCHAR)
SELECT MIN(total) FROM table_name_81 WHERE year_s__won = "1992"
### Context: CREATE TABLE table_name_81 (total INTEGER, year_s__won VARCHAR) ### Question: What is the lowest total that has 1992 as the year (s) won? ### Answer: SELECT MIN(total) FROM table_name_81 WHERE year_s__won = "1992"
What player has +21 as the to par?
CREATE TABLE table_name_36 (player VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_36 WHERE to_par = "+21"
### Context: CREATE TABLE table_name_36 (player VARCHAR, to_par VARCHAR) ### Question: What player has +21 as the to par? ### Answer: SELECT player FROM table_name_36 WHERE to_par = "+21"
Which to par has a total less than 296?
CREATE TABLE table_name_5 (to_par VARCHAR, total INTEGER)
SELECT to_par FROM table_name_5 WHERE total < 296
### Context: CREATE TABLE table_name_5 (to_par VARCHAR, total INTEGER) ### Question: Which to par has a total less than 296? ### Answer: SELECT to_par FROM table_name_5 WHERE total < 296
What finish has +21 as the to par?
CREATE TABLE table_name_35 (finish VARCHAR, to_par VARCHAR)
SELECT finish FROM table_name_35 WHERE to_par = "+21"
### Context: CREATE TABLE table_name_35 (finish VARCHAR, to_par VARCHAR) ### Question: What finish has +21 as the to par? ### Answer: SELECT finish FROM table_name_35 WHERE to_par = "+21"
What is the total number of events that had 34 cuts and 3 in the top 10?
CREATE TABLE table_name_58 (events VARCHAR, cuts_made VARCHAR, top_10 VARCHAR)
SELECT COUNT(events) FROM table_name_58 WHERE cuts_made < 34 AND top_10 > 3
### Context: CREATE TABLE table_name_58 (events VARCHAR, cuts_made VARCHAR, top_10 VARCHAR) ### Question: What is the total number of events that had 34 cuts and 3 in the top 10? ### Answer: SELECT COUNT(events) FROM table_name_58 WHERE cuts_made < 34 AND top_10 > 3
Who had the most rebounds on January 3?
CREATE TABLE table_name_7 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_7 WHERE date = "january 3"
### Context: CREATE TABLE table_name_7 (high_rebounds VARCHAR, date VARCHAR) ### Question: Who had the most rebounds on January 3? ### Answer: SELECT high_rebounds FROM table_name_7 WHERE date = "january 3"
Which surface had a date after 1982 and partner of Guy Forget?
CREATE TABLE table_name_28 (surface VARCHAR, date VARCHAR, partner VARCHAR)
SELECT surface FROM table_name_28 WHERE date > 1982 AND partner = "guy forget"
### Context: CREATE TABLE table_name_28 (surface VARCHAR, date VARCHAR, partner VARCHAR) ### Question: Which surface had a date after 1982 and partner of Guy Forget? ### Answer: SELECT surface FROM table_name_28 WHERE date > 1982 AND partner = "guy forget"
What was the result of the week 9 game?
CREATE TABLE table_name_48 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_48 WHERE week = 9
### Context: CREATE TABLE table_name_48 (result VARCHAR, week VARCHAR) ### Question: What was the result of the week 9 game? ### Answer: SELECT result FROM table_name_48 WHERE week = 9
What was the attendance during the november 16, 1975 game?
CREATE TABLE table_name_18 (attendance INTEGER, date VARCHAR)
SELECT MAX(attendance) FROM table_name_18 WHERE date = "november 16, 1975"
### Context: CREATE TABLE table_name_18 (attendance INTEGER, date VARCHAR) ### Question: What was the attendance during the november 16, 1975 game? ### Answer: SELECT MAX(attendance) FROM table_name_18 WHERE date = "november 16, 1975"
What is the total number in class for the Whitehaven Coal?
CREATE TABLE table_name_13 (number_in_class INTEGER, owner VARCHAR)
SELECT SUM(number_in_class) FROM table_name_13 WHERE owner = "whitehaven coal"
### Context: CREATE TABLE table_name_13 (number_in_class INTEGER, owner VARCHAR) ### Question: What is the total number in class for the Whitehaven Coal? ### Answer: SELECT SUM(number_in_class) FROM table_name_13 WHERE owner = "whitehaven coal"
What was built in a class with less than 10, and the Downer Rail owner?
CREATE TABLE table_name_58 (built VARCHAR, number_in_class VARCHAR, owner VARCHAR)
SELECT built FROM table_name_58 WHERE number_in_class < 10 AND owner = "downer rail"
### Context: CREATE TABLE table_name_58 (built VARCHAR, number_in_class VARCHAR, owner VARCHAR) ### Question: What was built in a class with less than 10, and the Downer Rail owner? ### Answer: SELECT built FROM table_name_58 WHERE number_in_class < 10 AND owner = "downer rail"
Which class has more than 15 people in the class?
CREATE TABLE table_name_83 (class VARCHAR, number_in_class INTEGER)
SELECT class FROM table_name_83 WHERE number_in_class > 15
### Context: CREATE TABLE table_name_83 (class VARCHAR, number_in_class INTEGER) ### Question: Which class has more than 15 people in the class? ### Answer: SELECT class FROM table_name_83 WHERE number_in_class > 15
Who is the owner that built in 2009-2011?
CREATE TABLE table_name_98 (owner VARCHAR, built VARCHAR)
SELECT owner FROM table_name_98 WHERE built = "2009-2011"
### Context: CREATE TABLE table_name_98 (owner VARCHAR, built VARCHAR) ### Question: Who is the owner that built in 2009-2011? ### Answer: SELECT owner FROM table_name_98 WHERE built = "2009-2011"
Count the Grid which has a Manufacturer of aprilia, and a Rider of bradley smith?
CREATE TABLE table_name_33 (grid INTEGER, manufacturer VARCHAR, rider VARCHAR)
SELECT AVG(grid) FROM table_name_33 WHERE manufacturer = "aprilia" AND rider = "bradley smith"
### Context: CREATE TABLE table_name_33 (grid INTEGER, manufacturer VARCHAR, rider VARCHAR) ### Question: Count the Grid which has a Manufacturer of aprilia, and a Rider of bradley smith? ### Answer: SELECT AVG(grid) FROM table_name_33 WHERE manufacturer = "aprilia" AND rider = "bradley smith"
Name the Time which has Laps of 19, and a Grid larger than 19, and a Manufacturer of ktm, and a Rider of randy krummenacher?
CREATE TABLE table_name_83 (time VARCHAR, rider VARCHAR, manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT time FROM table_name_83 WHERE laps = 19 AND grid > 19 AND manufacturer = "ktm" AND rider = "randy krummenacher"
### Context: CREATE TABLE table_name_83 (time VARCHAR, rider VARCHAR, manufacturer VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Name the Time which has Laps of 19, and a Grid larger than 19, and a Manufacturer of ktm, and a Rider of randy krummenacher? ### Answer: SELECT time FROM table_name_83 WHERE laps = 19 AND grid > 19 AND manufacturer = "ktm" AND rider = "randy krummenacher"
Name the Time which has a Manufacturer of aprilia, and a Grid smaller than 16, and a Rider of sandro cortese?
CREATE TABLE table_name_13 (time VARCHAR, rider VARCHAR, manufacturer VARCHAR, grid VARCHAR)
SELECT time FROM table_name_13 WHERE manufacturer = "aprilia" AND grid < 16 AND rider = "sandro cortese"
### Context: CREATE TABLE table_name_13 (time VARCHAR, rider VARCHAR, manufacturer VARCHAR, grid VARCHAR) ### Question: Name the Time which has a Manufacturer of aprilia, and a Grid smaller than 16, and a Rider of sandro cortese? ### Answer: SELECT time FROM table_name_13 WHERE manufacturer = "aprilia" AND grid < 16 AND rider = "sandro cortese"
Name the Silver which has a Bronze of 19, and a Total larger than 58?
CREATE TABLE table_name_1 (silver INTEGER, bronze VARCHAR, total VARCHAR)
SELECT MIN(silver) FROM table_name_1 WHERE bronze = 19 AND total > 58
### Context: CREATE TABLE table_name_1 (silver INTEGER, bronze VARCHAR, total VARCHAR) ### Question: Name the Silver which has a Bronze of 19, and a Total larger than 58? ### Answer: SELECT MIN(silver) FROM table_name_1 WHERE bronze = 19 AND total > 58
What kind of Silver has a Rank of 3, and a Gold smaller than 2?
CREATE TABLE table_name_9 (silver VARCHAR, rank VARCHAR, gold VARCHAR)
SELECT COUNT(silver) FROM table_name_9 WHERE rank = "3" AND gold < 2
### Context: CREATE TABLE table_name_9 (silver VARCHAR, rank VARCHAR, gold VARCHAR) ### Question: What kind of Silver has a Rank of 3, and a Gold smaller than 2? ### Answer: SELECT COUNT(silver) FROM table_name_9 WHERE rank = "3" AND gold < 2
COunt the silver that has a Bronze smaller than 1?
CREATE TABLE table_name_19 (silver INTEGER, bronze INTEGER)
SELECT SUM(silver) FROM table_name_19 WHERE bronze < 1
### Context: CREATE TABLE table_name_19 (silver INTEGER, bronze INTEGER) ### Question: COunt the silver that has a Bronze smaller than 1? ### Answer: SELECT SUM(silver) FROM table_name_19 WHERE bronze < 1
Name the Total which has a Silver larger than 19?
CREATE TABLE table_name_70 (total INTEGER, silver INTEGER)
SELECT MAX(total) FROM table_name_70 WHERE silver > 19
### Context: CREATE TABLE table_name_70 (total INTEGER, silver INTEGER) ### Question: Name the Total which has a Silver larger than 19? ### Answer: SELECT MAX(total) FROM table_name_70 WHERE silver > 19
Name the Silver that has a Total smaller than 2, and a Nation of south korea?
CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, nation VARCHAR)
SELECT AVG(silver) FROM table_name_49 WHERE total < 2 AND nation = "south korea"
### Context: CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, nation VARCHAR) ### Question: Name the Silver that has a Total smaller than 2, and a Nation of south korea? ### Answer: SELECT AVG(silver) FROM table_name_49 WHERE total < 2 AND nation = "south korea"
What is the location of the match with chad armstrong as the opponent?
CREATE TABLE table_name_47 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_47 WHERE opponent = "chad armstrong"
### Context: CREATE TABLE table_name_47 (location VARCHAR, opponent VARCHAR) ### Question: What is the location of the match with chad armstrong as the opponent? ### Answer: SELECT location FROM table_name_47 WHERE opponent = "chad armstrong"
What is Scott Verplank's score?
CREATE TABLE table_name_65 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_65 WHERE player = "scott verplank"
### Context: CREATE TABLE table_name_65 (score VARCHAR, player VARCHAR) ### Question: What is Scott Verplank's score? ### Answer: SELECT score FROM table_name_65 WHERE player = "scott verplank"
What place is United States player Corey Pavin in?
CREATE TABLE table_name_25 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_25 WHERE country = "united states" AND player = "corey pavin"
### Context: CREATE TABLE table_name_25 (place VARCHAR, country VARCHAR, player VARCHAR) ### Question: What place is United States player Corey Pavin in? ### Answer: SELECT place FROM table_name_25 WHERE country = "united states" AND player = "corey pavin"
Which country has a score of 70-71-72=213?
CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_76 WHERE score = 70 - 71 - 72 = 213
### Context: CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR) ### Question: Which country has a score of 70-71-72=213? ### Answer: SELECT country FROM table_name_76 WHERE score = 70 - 71 - 72 = 213
Where does Bob Tway Place?
CREATE TABLE table_name_95 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_95 WHERE player = "bob tway"
### Context: CREATE TABLE table_name_95 (place VARCHAR, player VARCHAR) ### Question: Where does Bob Tway Place? ### Answer: SELECT place FROM table_name_95 WHERE player = "bob tway"
What is the place with a to par of E and a score of 69-69-72=210?
CREATE TABLE table_name_59 (place VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT place FROM table_name_59 WHERE to_par = "e" AND score = 69 - 69 - 72 = 210
### Context: CREATE TABLE table_name_59 (place VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: What is the place with a to par of E and a score of 69-69-72=210? ### Answer: SELECT place FROM table_name_59 WHERE to_par = "e" AND score = 69 - 69 - 72 = 210
WHAT IS THE COUNTRY WITH DAVE BARR?
CREATE TABLE table_name_26 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_26 WHERE player = "dave barr"
### Context: CREATE TABLE table_name_26 (country VARCHAR, player VARCHAR) ### Question: WHAT IS THE COUNTRY WITH DAVE BARR? ### Answer: SELECT country FROM table_name_26 WHERE player = "dave barr"
WHAT IS THE TO PAR WITH A T7 PLACE, SCORE OF 72-67=139, AND PLAYER RAYMOND FLOYD?
CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_77 WHERE place = "t7" AND score = 72 - 67 = 139 AND player = "raymond floyd"
### Context: CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR) ### Question: WHAT IS THE TO PAR WITH A T7 PLACE, SCORE OF 72-67=139, AND PLAYER RAYMOND FLOYD? ### Answer: SELECT to_par FROM table_name_77 WHERE place = "t7" AND score = 72 - 67 = 139 AND player = "raymond floyd"
WHAT IS THE PLACE WITH PLAYER mark o'meara?
CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_78 WHERE player = "mark o'meara"
### Context: CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR) ### Question: WHAT IS THE PLACE WITH PLAYER mark o'meara? ### Answer: SELECT place FROM table_name_78 WHERE player = "mark o'meara"
Which Drawn is the highest one that has a Position smaller than 4, and a Lost smaller than 2?
CREATE TABLE table_name_64 (drawn INTEGER, position VARCHAR, lost VARCHAR)
SELECT MAX(drawn) FROM table_name_64 WHERE position < 4 AND lost < 2
### Context: CREATE TABLE table_name_64 (drawn INTEGER, position VARCHAR, lost VARCHAR) ### Question: Which Drawn is the highest one that has a Position smaller than 4, and a Lost smaller than 2? ### Answer: SELECT MAX(drawn) FROM table_name_64 WHERE position < 4 AND lost < 2
How many Points have a Position larger than 3, and a Played smaller than 14?
CREATE TABLE table_name_42 (points VARCHAR, position VARCHAR, played VARCHAR)
SELECT COUNT(points) FROM table_name_42 WHERE position > 3 AND played < 14
### Context: CREATE TABLE table_name_42 (points VARCHAR, position VARCHAR, played VARCHAR) ### Question: How many Points have a Position larger than 3, and a Played smaller than 14? ### Answer: SELECT COUNT(points) FROM table_name_42 WHERE position > 3 AND played < 14
Which Lost has a Position of 4, and a Drawn smaller than 3?
CREATE TABLE table_name_4 (lost INTEGER, position VARCHAR, drawn VARCHAR)
SELECT AVG(lost) FROM table_name_4 WHERE position = 4 AND drawn < 3
### Context: CREATE TABLE table_name_4 (lost INTEGER, position VARCHAR, drawn VARCHAR) ### Question: Which Lost has a Position of 4, and a Drawn smaller than 3? ### Answer: SELECT AVG(lost) FROM table_name_4 WHERE position = 4 AND drawn < 3
Which Position has a Lost larger than 4, and a Played larger than 14?
CREATE TABLE table_name_60 (position INTEGER, lost VARCHAR, played VARCHAR)
SELECT AVG(position) FROM table_name_60 WHERE lost > 4 AND played > 14
### Context: CREATE TABLE table_name_60 (position INTEGER, lost VARCHAR, played VARCHAR) ### Question: Which Position has a Lost larger than 4, and a Played larger than 14? ### Answer: SELECT AVG(position) FROM table_name_60 WHERE lost > 4 AND played > 14