answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT player FROM table_name_41 WHERE country = "united states" AND place = "6"
CREATE TABLE table_name_41 (player VARCHAR, country VARCHAR, place VARCHAR)
What is Player, when Country is "United States", and when Place is "6"?
SELECT AVG(money___) AS $__ FROM table_name_74 WHERE score = 69 - 69 - 76 - 69 = 283
CREATE TABLE table_name_74 (money___ INTEGER, score VARCHAR)
What is the average Money ( $ ), when Score is "69-69-76-69=283"?
SELECT country FROM table_name_98 WHERE to_par = "+1" AND score = 72 - 71 - 70 - 72 = 285
CREATE TABLE table_name_98 (country VARCHAR, to_par VARCHAR, score VARCHAR)
What is Country, when To par is "+1", and when Score is "72-71-70-72=285"?
SELECT place FROM table_name_41 WHERE score = 70 - 70 - 68 - 70 = 278
CREATE TABLE table_name_41 (place VARCHAR, score VARCHAR)
What is Place, when Score is "70-70-68-70=278"?
SELECT network FROM table_name_83 WHERE year > 1990 AND colour_commentator_s_ = "chris walby"
CREATE TABLE table_name_83 (network VARCHAR, year VARCHAR, colour_commentator_s_ VARCHAR)
For which network was Chris Walby the color commentator after 1990?
SELECT pregame_host FROM table_name_51 WHERE year < 1992 AND play_by_play = "bob irving"
CREATE TABLE table_name_51 (pregame_host VARCHAR, year VARCHAR, play_by_play VARCHAR)
Who was the pregame host before 1992 when there was a play by play of Bob Irving?
SELECT COUNT(total) FROM table_name_74 WHERE year_won < 1991 AND to_par < 14
CREATE TABLE table_name_74 (total VARCHAR, year_won VARCHAR, to_par VARCHAR)
What is the total of the player who won before 1991 and has a to par less than 14?
SELECT COUNT(to_par) FROM table_name_48 WHERE year_won < 1993 AND player = "jeff sluman" AND total > 154
CREATE TABLE table_name_48 (to_par VARCHAR, total VARCHAR, year_won VARCHAR, player VARCHAR)
What is the total to par of player jeff sluman, who won before 1993 and has a total greater than 154?
SELECT SUM(total) FROM table_name_20 WHERE player = "rich beem" AND to_par > 17
CREATE TABLE table_name_20 (total INTEGER, player VARCHAR, to_par VARCHAR)
What is the sum of the total of player rich beem, who has a to par greater than 17?
SELECT away FROM table_name_34 WHERE round = "semifinals"
CREATE TABLE table_name_34 (away VARCHAR, round VARCHAR)
Who was the away team in the semifinals?
SELECT home FROM table_name_34 WHERE club = "auxerre"
CREATE TABLE table_name_34 (home VARCHAR, club VARCHAR)
What is the home record for the Auxerre club?
SELECT home FROM table_name_85 WHERE club = "maccabi tel-aviv"
CREATE TABLE table_name_85 (home VARCHAR, club VARCHAR)
What is the home record for the Maccabi Tel-Aviv club?
SELECT COUNT(against) FROM table_name_88 WHERE date = "16/03/1996"
CREATE TABLE table_name_88 (against VARCHAR, date VARCHAR)
What is the total number of Against, when Date is "16/03/1996"?
SELECT venue FROM table_name_58 WHERE against > 9 AND date = "03/02/1996"
CREATE TABLE table_name_58 (venue VARCHAR, against VARCHAR, date VARCHAR)
What is Venue, when Against is greater than 9, and when Date is "03/02/1996"?
SELECT status FROM table_name_16 WHERE opposing_teams = "scotland"
CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)
What is Status, when Opposing Teams is "Scotland"?
SELECT venue FROM table_name_44 WHERE date = "14/12/1996"
CREATE TABLE table_name_44 (venue VARCHAR, date VARCHAR)
What is Venue, when Date is "14/12/1996"?
SELECT AVG(against) FROM table_name_28 WHERE status = "five nations" AND date = "16/03/1996"
CREATE TABLE table_name_28 (against INTEGER, status VARCHAR, date VARCHAR)
What is the average Against, when Status is "Five Nations", and when Date is "16/03/1996"?
SELECT COUNT(year) FROM table_name_35 WHERE team = "aston martin racing" AND pos = "6th"
CREATE TABLE table_name_35 (year VARCHAR, team VARCHAR, pos VARCHAR)
In what year did the team of aston martin racing have a position of 6th?
SELECT highest_rank FROM table_name_44 WHERE name = "yoshiazuma"
CREATE TABLE table_name_44 (highest_rank VARCHAR, name VARCHAR)
Which Rank is Highest for Yoshiazuma?
SELECT top_division_debut FROM table_name_12 WHERE tournaments < 88 AND name = "kitazakura"
CREATE TABLE table_name_12 (top_division_debut VARCHAR, tournaments VARCHAR, name VARCHAR)
Which Top Division debut for Kitazakura has Tournaments less than 88?
SELECT MIN(tournaments) FROM table_name_46 WHERE highest_rank = "maegashira 13"
CREATE TABLE table_name_46 (tournaments INTEGER, highest_rank VARCHAR)
What is the lowest Tournaments with Highest Rank of Maegashira 13?
SELECT city FROM table_name_74 WHERE winner = "hallescher fc" AND year = 2008
CREATE TABLE table_name_74 (city VARCHAR, winner VARCHAR, year VARCHAR)
What was the city where Hallescher FC won in 2008?
SELECT winner FROM table_name_58 WHERE finalist = "fc grün-weiß wolfen"
CREATE TABLE table_name_58 (winner VARCHAR, finalist VARCHAR)
Who was the winner of fc grün-weiß wolfen?
SELECT stadium FROM table_name_31 WHERE year > 2012
CREATE TABLE table_name_31 (stadium VARCHAR, year INTEGER)
What was the stadium past 2012?
SELECT AVG(year) FROM table_name_28 WHERE country = "u.s." AND location = "edmond , ok"
CREATE TABLE table_name_28 (year INTEGER, country VARCHAR, location VARCHAR)
What is the average Year, when Country is "U.S.", and when Location is "Edmond , OK"?
SELECT MIN(killed) FROM table_name_93 WHERE perpetrator = "sherrill, patrick henry , 44"
CREATE TABLE table_name_93 (killed INTEGER, perpetrator VARCHAR)
What is the lowest Killed, when Perpetrator is "Sherrill, Patrick Henry , 44"?
SELECT MAX(goals_for) FROM table_name_8 WHERE losses < 16 AND wins < 11 AND goal_difference > -9
CREATE TABLE table_name_8 (goals_for INTEGER, goal_difference VARCHAR, losses VARCHAR, wins VARCHAR)
What was the highest goals with fewer than 16 losses, fewer than 11 wins, and a goal difference greater than -9?
SELECT MAX(wins) FROM table_name_74 WHERE goals_against < 51 AND points > 39 AND goal_difference < 13
CREATE TABLE table_name_74 (wins INTEGER, goal_difference VARCHAR, goals_against VARCHAR, points VARCHAR)
What is the highest wins entry with fewer than 51 goals, more than 39 points, and a goal difference smaller than 13?
SELECT MIN(wins) FROM table_name_46 WHERE goal_difference < 33 AND position < 13 AND goals_for = 42
CREATE TABLE table_name_46 (wins INTEGER, goals_for VARCHAR, goal_difference VARCHAR, position VARCHAR)
What is the lowest wins entry that has a goal difference less than 33, position higher than 13, and 42 goals?
SELECT COUNT(goals_for) FROM table_name_62 WHERE draws > 7 AND wins > 8 AND losses > 5
CREATE TABLE table_name_62 (goals_for VARCHAR, losses VARCHAR, draws VARCHAR, wins VARCHAR)
What is the total number of goals for entries that have more than 7 draws, 8 wins, and more than 5 losses?
SELECT city FROM table_name_86 WHERE stadium = "estádio dr. magalhães pessoa"
CREATE TABLE table_name_86 (city VARCHAR, stadium VARCHAR)
What city is the Stadium estádio dr. magalhães pessoa in?
SELECT city FROM table_name_93 WHERE stadium = "estádio cidade de barcelos"
CREATE TABLE table_name_93 (city VARCHAR, stadium VARCHAR)
What city is the Stadium estádio cidade de barcelos in?
SELECT club FROM table_name_36 WHERE head_coach = "casemiro mior"
CREATE TABLE table_name_36 (club VARCHAR, head_coach VARCHAR)
Head Coach casemiro mior is at which Club?
SELECT city FROM table_name_79 WHERE club = "braga"
CREATE TABLE table_name_79 (city VARCHAR, club VARCHAR)
What City is the Club braga in?
SELECT 2002 AS _2003_season FROM table_name_20 WHERE city = "aveiro"
CREATE TABLE table_name_20 (city VARCHAR)
What place is listed in the 2002-2003 season for the City of Aveiro?
SELECT 1 AS st_round FROM table_name_25 WHERE team_1 = "fc nantes (d1)"
CREATE TABLE table_name_25 (team_1 VARCHAR)
What is the 1st round with fc nantes (d1) as team 1?
SELECT team_1 FROM table_name_66 WHERE team_2 = "nîmes olympique (d2)"
CREATE TABLE table_name_66 (team_1 VARCHAR, team_2 VARCHAR)
What is the team 1 with nîmes olympique (d2) as team 2?
SELECT lyrics FROM table_name_48 WHERE date = "august 10, 2005" AND catalog_number = "tocp-66427"
CREATE TABLE table_name_48 (lyrics VARCHAR, date VARCHAR, catalog_number VARCHAR)
In what language is the Lyrics of the release on August 10, 2005 with Catalog number of TOCP-66427?
SELECT label FROM table_name_8 WHERE date = "june 6, 2005" AND region = "germany" AND format = "cd"
CREATE TABLE table_name_8 (label VARCHAR, format VARCHAR, date VARCHAR, region VARCHAR)
What is the Label of the CD released in Germany on June 6, 2005?
SELECT region FROM table_name_46 WHERE label = "emi" AND format = "4 x vinyl" AND catalog_number = "560 6111"
CREATE TABLE table_name_46 (region VARCHAR, catalog_number VARCHAR, label VARCHAR, format VARCHAR)
What is the Region of the EMI 4 x vinyl release bearing Catalog number 560 6111?
SELECT lyrics FROM table_name_59 WHERE catalog_number = "560 6111"
CREATE TABLE table_name_59 (lyrics VARCHAR, catalog_number VARCHAR)
What language is the Lyrics of the release with Catalog number 560 6111?
SELECT region FROM table_name_77 WHERE catalog_number = "3 12046 2"
CREATE TABLE table_name_77 (region VARCHAR, catalog_number VARCHAR)
What is the Region of the release with Catalog number 3 12046 2?
SELECT label FROM table_name_25 WHERE date = "september 19, 2008" AND region = "germany"
CREATE TABLE table_name_25 (label VARCHAR, date VARCHAR, region VARCHAR)
What is the Label of the September 19, 2008 release in Germany?
SELECT edition_s_ FROM table_name_82 WHERE region = "germany"
CREATE TABLE table_name_82 (edition_s_ VARCHAR, region VARCHAR)
What is the Edition of the release in Germany?
SELECT format_s_ FROM table_name_40 WHERE date = "september 23, 2008"
CREATE TABLE table_name_40 (format_s_ VARCHAR, date VARCHAR)
What is the Format(s) of the release on September 23, 2008?
SELECT label FROM table_name_2 WHERE region = "germany" AND date = "april 24, 2009"
CREATE TABLE table_name_2 (label VARCHAR, region VARCHAR, date VARCHAR)
What is the Label of the release on April 24, 2009 in Germany?
SELECT l2_cache FROM table_name_10 WHERE idle_power = "100mw" AND model_number = "nano u3400"
CREATE TABLE table_name_10 (l2_cache VARCHAR, idle_power VARCHAR, model_number VARCHAR)
What is the L2 Cache for Model Number nano u3400 with an Idle Power of 100mw?
SELECT COUNT(cores) FROM table_name_33 WHERE clock_speed = "1.3ghz"
CREATE TABLE table_name_33 (cores VARCHAR, clock_speed VARCHAR)
What is the total Cores with a Clock Speed of 1.3ghz?
SELECT to_par FROM table_name_5 WHERE score = 68 - 74 - 71 - 77 = 290
CREATE TABLE table_name_5 (to_par VARCHAR, score VARCHAR)
What's the to par for the score of 68-74-71-77=290?
SELECT money___$__ FROM table_name_87 WHERE place = "t3" AND score = 74 - 74 - 71 - 69 = 288
CREATE TABLE table_name_87 (money___$__ VARCHAR, place VARCHAR, score VARCHAR)
What's the money ($) for the t3 place and the score of 74-74-71-69=288?
SELECT score FROM table_name_62 WHERE money___$__ = "22,500"
CREATE TABLE table_name_62 (score VARCHAR, money___$__ VARCHAR)
What's the score for $22,500?
SELECT to_par FROM table_name_58 WHERE place = "t1" AND score = 70 - 72 - 73 - 72 = 287
CREATE TABLE table_name_58 (to_par VARCHAR, place VARCHAR, score VARCHAR)
What's the to par for the t1 place with a score of 70-72-73-72=287?
SELECT AVG(annual_interchanges__millions__2011_12) FROM table_name_28 WHERE rank > 26 AND location = "liverpool" AND annual_entry_exit__millions__2011_12 < 14.209 AND number_of_platforms > 10
CREATE TABLE table_name_28 (annual_interchanges__millions__2011_12 INTEGER, number_of_platforms VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR, rank VARCHAR, location VARCHAR)
What's the average annual interchange for a rank over 26 in liverpool with an annual entry/exit less than 14.209 and more than 10 platforms?
SELECT MAX(annual_interchanges__millions__2011_12) FROM table_name_82 WHERE railway_station = "wimbledon"
CREATE TABLE table_name_82 (annual_interchanges__millions__2011_12 INTEGER, railway_station VARCHAR)
What's the highest annual interchange for wimbledon railway station?
SELECT MIN(total_passengers__millions__2011_12) FROM table_name_32 WHERE annual_entry_exit__millions__2011_12 = 36.609
CREATE TABLE table_name_32 (total_passengers__millions__2011_12 INTEGER, annual_entry_exit__millions__2011_12 VARCHAR)
What's the lowest number of total passengers (millions) for an annual entry/exit of 36.609?
SELECT rank FROM table_name_83 WHERE annual_interchanges__millions__2011_12 < 1.99 AND annual_entry_exit__millions__2011_12 < 13.835 AND total_passengers__millions__2011_12 > 13.772
CREATE TABLE table_name_83 (rank VARCHAR, total_passengers__millions__2011_12 VARCHAR, annual_interchanges__millions__2011_12 VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR)
What rank has an annual interchange less than 1.99 million, an annual entry/exit less than 13.835 million, and more than 13.772 million total passengers?
SELECT COUNT(rank) FROM table_name_91 WHERE location = "liverpool" AND number_of_platforms > 3 AND annual_interchanges__millions__2011_12 < 0.778
CREATE TABLE table_name_91 (rank VARCHAR, annual_interchanges__millions__2011_12 VARCHAR, location VARCHAR, number_of_platforms VARCHAR)
How many ranks are in liverpool with more than 3 platforms and an annual interchange less than 0.778 million?
SELECT AVG(number_of_households) FROM table_name_61 WHERE per_capita_income = "$21,571" AND population < 9 OFFSET 783
CREATE TABLE table_name_61 (number_of_households INTEGER, per_capita_income VARCHAR, population VARCHAR)
Which Number of households has Per capita income of $21,571, and a Population smaller than 9,783?
SELECT AVG(number_of_households) FROM table_name_98 WHERE county = "cook" AND population < 5 OFFSET 176
CREATE TABLE table_name_98 (number_of_households INTEGER, county VARCHAR, population VARCHAR)
Which Number of households has a County of cook, and Population smaller than 5,176?
SELECT per_capita_income FROM table_name_38 WHERE median_family_income = "$50,755"
CREATE TABLE table_name_38 (per_capita_income VARCHAR, median_family_income VARCHAR)
What Per capita income has a Median family income of $50,755?
SELECT number_of_households FROM table_name_73 WHERE median_family_income = "$58,491"
CREATE TABLE table_name_73 (number_of_households VARCHAR, median_family_income VARCHAR)
What Number of households have a Median family income of $58,491?
SELECT to_par FROM table_name_91 WHERE score = 68 - 70 = 138
CREATE TABLE table_name_91 (to_par VARCHAR, score VARCHAR)
What was the to par score of the golfer that had a score of 68-70=138?
SELECT player FROM table_name_63 WHERE score = 69 - 71 = 140
CREATE TABLE table_name_63 (player VARCHAR, score VARCHAR)
Which golfer had a score of 69-71=140?
SELECT country FROM table_name_37 WHERE place = "t3" AND player = "billy mayfair"
CREATE TABLE table_name_37 (country VARCHAR, place VARCHAR, player VARCHAR)
Which country is t3 finisher billy mayfair from?
SELECT country FROM table_name_62 WHERE player = "jodie mudd"
CREATE TABLE table_name_62 (country VARCHAR, player VARCHAR)
Which Country has a Player of jodie mudd?
SELECT COUNT(money___) AS £__ FROM table_name_72 WHERE player = "jodie mudd"
CREATE TABLE table_name_72 (money___ VARCHAR, player VARCHAR)
Which Money (£) has a Player of jodie mudd?
SELECT SUM(money___) AS £__ FROM table_name_56 WHERE player = "nick faldo"
CREATE TABLE table_name_56 (money___ INTEGER, player VARCHAR)
What is the total Money (£) of Player of nick faldo?
SELECT COUNT(money___) AS £__ FROM table_name_61 WHERE place = "t6" AND player = "ian baker-finch"
CREATE TABLE table_name_61 (money___ VARCHAR, place VARCHAR, player VARCHAR)
What is the total Money (£) with a Place of t6, and a Player of ian baker-finch?
SELECT AVG(position) FROM table_name_20 WHERE goals_against < 63 AND lost < 6
CREATE TABLE table_name_20 (position INTEGER, goals_against VARCHAR, lost VARCHAR)
What position was the team who had less then 63 goals against and less than 6 losses?
SELECT MIN(lost) FROM table_name_30 WHERE points_1 = "37" AND goals_against < 60
CREATE TABLE table_name_30 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR)
How many times did the team lose who had 1 of 37 points and less than 60 goals against?
SELECT MIN(lost) FROM table_name_97 WHERE goal_difference = "+2" AND goals_for = 52 AND drawn < 9
CREATE TABLE table_name_97 (lost INTEGER, drawn VARCHAR, goal_difference VARCHAR, goals_for VARCHAR)
How many times did the team lose who had a goal difference of +2, 52 goals for, and less than 9 draws?
SELECT SUM(drawn) FROM table_name_76 WHERE position < 12 AND team = "clitheroe" AND lost > 4
CREATE TABLE table_name_76 (drawn INTEGER, lost VARCHAR, position VARCHAR, team VARCHAR)
How many draws did clitheroe have when their position was less than 12 and they lost less than 4 times?
SELECT reserved_for___sc___st__none_ FROM table_name_40 WHERE name = "uklana"
CREATE TABLE table_name_40 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
What is the reserved for (ST/ST/None) when it was Uklana?
SELECT constituency_number FROM table_name_37 WHERE district = "bhiwani"
CREATE TABLE table_name_37 (constituency_number VARCHAR, district VARCHAR)
Bhiwani district have what constituency number?
SELECT constituency_number FROM table_name_40 WHERE number_of_electorates__2009_ > 152 OFFSET 958
CREATE TABLE table_name_40 (constituency_number VARCHAR, number_of_electorates__2009_ INTEGER)
What is the constituency number with electorates (2009) number larger than 152,958?
SELECT date_performed FROM table_name_89 WHERE main_contestant = "jatin shah" AND co_contestant__yaar_vs_pyaar_ = "shalini chandran"
CREATE TABLE table_name_89 (date_performed VARCHAR, main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
What is the date of the performance by Jatin Shah and co-contestant is Shalini Chandran?
SELECT scores_by_each_individual_judge FROM table_name_10 WHERE total_score_week = "41/60" AND co_contestant__yaar_vs_pyaar_ = "shalini chandran"
CREATE TABLE table_name_10 (scores_by_each_individual_judge VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
What are the scores when total score/week is 41/60 and co-contestant is Shalini Chandran?
SELECT position FROM table_name_21 WHERE main_contestant = "vishal singh" AND scores_by_each_individual_judge = 1 + 7 + 5 = 13
CREATE TABLE table_name_21 (position VARCHAR, main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR)
What position is there when the main contestant is Vishal Singh and the scores are 1 + 7 + 5 = 13?
SELECT main_contestant FROM table_name_33 WHERE co_contestant__yaar_vs_pyaar_ = "shalini chandran"
CREATE TABLE table_name_33 (main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
Who is the main contestant when the co-contestant (yaar vs. pyaar) is Shalini Chandran?
SELECT main_contestant FROM table_name_11 WHERE status = "eliminated" AND scores_by_each_individual_judge = 1 + 7 + 5 = 13
CREATE TABLE table_name_11 (main_contestant VARCHAR, status VARCHAR, scores_by_each_individual_judge VARCHAR)
Who is the main contestant eliminated with a score of 1 + 7 + 5 = 13?
SELECT series_4 FROM table_name_27 WHERE seat = 1
CREATE TABLE table_name_27 (series_4 VARCHAR, seat VARCHAR)
What shows for series 4 when the seat shows 1?
SELECT AVG(seat) FROM table_name_81 WHERE series_3 = "dana bérová"
CREATE TABLE table_name_81 (seat INTEGER, series_3 VARCHAR)
What is the seat number when Series 3 shows Dana Bérová?
SELECT partner FROM table_name_2 WHERE tournament = "algiers 2, algeria"
CREATE TABLE table_name_2 (partner VARCHAR, tournament VARCHAR)
Who was the Partner in the Algiers 2, Algeria Tournament?
SELECT opponents FROM table_name_80 WHERE partner = "rushmi chakravarthi"
CREATE TABLE table_name_80 (opponents VARCHAR, partner VARCHAR)
Who were the Opponents in the Match with Partner Rushmi Chakravarthi?
SELECT date FROM table_name_27 WHERE score = "6–4, 7–5"
CREATE TABLE table_name_27 (date VARCHAR, score VARCHAR)
What is the Date of the Match with a Score of 6–4, 7–5?
SELECT MIN(loses) FROM table_name_83 WHERE position < 8 AND games_played < 30
CREATE TABLE table_name_83 (loses INTEGER, position VARCHAR, games_played VARCHAR)
What is the fewest loses for the club that is below 8 in position, and had played less than 30 games?
SELECT SUM(loses) FROM table_name_54 WHERE draws < 4 AND goals_conceded < 105 AND position > 2 AND goals_scored < 38
CREATE TABLE table_name_54 (loses INTEGER, goals_scored VARCHAR, position VARCHAR, draws VARCHAR, goals_conceded VARCHAR)
What is the loses total when there is less than 4 draws, less than 105 conceded goals, less than 38 goals scored, and the club is positioned greater than 2?
SELECT SUM(goals_conceded) FROM table_name_16 WHERE points > 58 AND wins < 27 AND draws < 1
CREATE TABLE table_name_16 (goals_conceded INTEGER, draws VARCHAR, points VARCHAR, wins VARCHAR)
How many total goals conceded are there when the points are greater than 58, less than 27 wins, and less than 1 draws?
SELECT COUNT(goals_scored) FROM table_name_71 WHERE games_played < 30
CREATE TABLE table_name_71 (goals_scored VARCHAR, games_played INTEGER)
How many total goals scored when less than 30 games have been played?
SELECT AVG(goals_scored) FROM table_name_18 WHERE games_played < 30
CREATE TABLE table_name_18 (goals_scored INTEGER, games_played INTEGER)
When less than 30 games have been played what is the average goals scored?
SELECT league_cup_apps FROM table_name_76 WHERE league_cup_goals > 0
CREATE TABLE table_name_76 (league_cup_apps VARCHAR, league_cup_goals INTEGER)
What is the league cup app with league cup goals more than 0?
SELECT fa_cup_apps FROM table_name_60 WHERE league_cup_goals = 0 AND total_apps = "43"
CREATE TABLE table_name_60 (fa_cup_apps VARCHAR, league_cup_goals VARCHAR, total_apps VARCHAR)
What is the fa cup apps with 0 league cup goals, and a total of 43 apps?
SELECT MAX(flt_goals) FROM table_name_3 WHERE league_cup_goals = 0 AND position = "gk" AND league_cup_apps = "2"
CREATE TABLE table_name_3 (flt_goals INTEGER, league_cup_apps VARCHAR, league_cup_goals VARCHAR, position VARCHAR)
What is the highest FLT goals with 0 league cup goals, a GK position, and 2 league cup apps?
SELECT date FROM table_name_87 WHERE venue = "sam nujoma stadium, windhoek, namibia"
CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR)
On what date is the venue Sam Nujoma Stadium, Windhoek, Namibia?
SELECT third_place FROM table_name_48 WHERE number_of_clubs = 14 AND winners = "dalian shide" AND fourth_placed = "chongqing longxin"
CREATE TABLE table_name_48 (third_place VARCHAR, fourth_placed VARCHAR, number_of_clubs VARCHAR, winners VARCHAR)
Who was in third place when the Winner was Dalian Shide, Chongqing Longxin was 4th and 14 clubs?
SELECT SUM(season) FROM table_name_1 WHERE winners = "dalian wanda" AND fourth_placed = "yanbian aodong"
CREATE TABLE table_name_1 (season INTEGER, winners VARCHAR, fourth_placed VARCHAR)
What season had Dalian Wanda as the winner with Yanbian Aodong winning 4th?
SELECT AVG(number_of_clubs) FROM table_name_66 WHERE fourth_placed = "shenzhen jianlibao" AND season < 2003
CREATE TABLE table_name_66 (number_of_clubs INTEGER, fourth_placed VARCHAR, season VARCHAR)
What is the number of clubs before 2003 with a 4th place winner of Shenzhen Jianlibao?
SELECT AVG(number_of_clubs) FROM table_name_35 WHERE winners = "dalian shide" AND fourth_placed = "sichuan quanxing"
CREATE TABLE table_name_35 (number_of_clubs INTEGER, winners VARCHAR, fourth_placed VARCHAR)
What is the number of clubs when Dalian Shide won and Sichuan Quanxing won 4th?
SELECT winners FROM table_name_34 WHERE runners_up = "guangzhou apollo"
CREATE TABLE table_name_34 (winners VARCHAR, runners_up VARCHAR)
Who was the winner when the runner-up was Guangzhou Apollo?
SELECT SUM(byes) FROM table_name_39 WHERE against = 972 AND wins > 11
CREATE TABLE table_name_39 (byes INTEGER, against VARCHAR, wins VARCHAR)
How many Byes have an Against of 972, and more than 11 wins?