question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Name the security forces with civilians being 67
CREATE TABLE table_name_81 (security_forces VARCHAR, civilians VARCHAR)
SELECT security_forces FROM table_name_81 WHERE civilians = "67"
### Context: CREATE TABLE table_name_81 (security_forces VARCHAR, civilians VARCHAR) ### Question: Name the security forces with civilians being 67 ### Answer: SELECT security_forces FROM table_name_81 WHERE civilians = "67"
Name the security forces for 2009
CREATE TABLE table_name_82 (security_forces VARCHAR, year VARCHAR)
SELECT security_forces FROM table_name_82 WHERE year = "2009"
### Context: CREATE TABLE table_name_82 (security_forces VARCHAR, year VARCHAR) ### Question: Name the security forces for 2009 ### Answer: SELECT security_forces FROM table_name_82 WHERE year = "2009"
What tyre has a chassis of p57 p61?
CREATE TABLE table_name_85 (tyre VARCHAR, chassis VARCHAR)
SELECT tyre FROM table_name_85 WHERE chassis = "p57 p61"
### Context: CREATE TABLE table_name_85 (tyre VARCHAR, chassis VARCHAR) ### Question: What tyre has a chassis of p57 p61? ### Answer: SELECT tyre FROM table_name_85 WHERE chassis = "p57 p61"
what is the highest laps when the grid is 1?
CREATE TABLE table_name_94 (laps INTEGER, grid VARCHAR)
SELECT MAX(laps) FROM table_name_94 WHERE grid = 1
### Context: CREATE TABLE table_name_94 (laps INTEGER, grid VARCHAR) ### Question: what is the highest laps when the grid is 1? ### Answer: SELECT MAX(laps) FROM table_name_94 WHERE grid = 1
How many athletes had a Swimming Time (pts) of 2:20.93 (1232)?
CREATE TABLE table_name_92 (total VARCHAR, swimming_time__pts_ VARCHAR)
SELECT COUNT(total) FROM table_name_92 WHERE swimming_time__pts_ = "2:20.93 (1232)"
### Context: CREATE TABLE table_name_92 (total VARCHAR, swimming_time__pts_ VARCHAR) ### Question: How many athletes had a Swimming Time (pts) of 2:20.93 (1232)? ### Answer: SELECT COUNT(total) FROM table_name_92 WHERE swimming_time__pts_ = "2:20.93 (1232)"
What is the riding penaltie (pts) for the athlete that has a Swimming Time (pts) of 2:18.16 (1264)?
CREATE TABLE table_name_83 (riding_penalties__pts_ VARCHAR, swimming_time__pts_ VARCHAR)
SELECT riding_penalties__pts_ FROM table_name_83 WHERE swimming_time__pts_ = "2:18.16 (1264)"
### Context: CREATE TABLE table_name_83 (riding_penalties__pts_ VARCHAR, swimming_time__pts_ VARCHAR) ### Question: What is the riding penaltie (pts) for the athlete that has a Swimming Time (pts) of 2:18.16 (1264)? ### Answer: SELECT riding_penalties__pts_ FROM table_name_83 WHERE swimming_time__pts_ = "2:18.16 (1264)"
Which owner has a description of Mark 1 pos and is dated 1956?
CREATE TABLE table_name_18 (owner_s_ VARCHAR, date VARCHAR, description VARCHAR)
SELECT owner_s_ FROM table_name_18 WHERE date = 1956 AND description = "mark 1 pos"
### Context: CREATE TABLE table_name_18 (owner_s_ VARCHAR, date VARCHAR, description VARCHAR) ### Question: Which owner has a description of Mark 1 pos and is dated 1956? ### Answer: SELECT owner_s_ FROM table_name_18 WHERE date = 1956 AND description = "mark 1 pos"
Which owner has a description of Mark 1 CK and is dated 1953?
CREATE TABLE table_name_30 (owner_s_ VARCHAR, date VARCHAR, description VARCHAR)
SELECT owner_s_ FROM table_name_30 WHERE date = 1953 AND description = "mark 1 ck"
### Context: CREATE TABLE table_name_30 (owner_s_ VARCHAR, date VARCHAR, description VARCHAR) ### Question: Which owner has a description of Mark 1 CK and is dated 1953? ### Answer: SELECT owner_s_ FROM table_name_30 WHERE date = 1953 AND description = "mark 1 ck"
Who was the athlete who had SEMI of 1:43.79?
CREATE TABLE table_name_97 (name_athlete VARCHAR, semi VARCHAR)
SELECT name_athlete FROM table_name_97 WHERE semi = "1:43.79"
### Context: CREATE TABLE table_name_97 (name_athlete VARCHAR, semi VARCHAR) ### Question: Who was the athlete who had SEMI of 1:43.79? ### Answer: SELECT name_athlete FROM table_name_97 WHERE semi = "1:43.79"
What were the final time for the swimmer on lane 4?
CREATE TABLE table_name_1 (final VARCHAR, lane VARCHAR)
SELECT final FROM table_name_1 WHERE lane = 4
### Context: CREATE TABLE table_name_1 (final VARCHAR, lane VARCHAR) ### Question: What were the final time for the swimmer on lane 4? ### Answer: SELECT final FROM table_name_1 WHERE lane = 4
What is the final score of the game at lambeau field?
CREATE TABLE table_name_21 (final_score VARCHAR, stadium VARCHAR)
SELECT final_score FROM table_name_21 WHERE stadium = "lambeau field"
### Context: CREATE TABLE table_name_21 (final_score VARCHAR, stadium VARCHAR) ### Question: What is the final score of the game at lambeau field? ### Answer: SELECT final_score FROM table_name_21 WHERE stadium = "lambeau field"
What rank is aliyya qadi with less than 1421 votes?
CREATE TABLE table_name_73 (rank INTEGER, candidate_name VARCHAR, votes VARCHAR)
SELECT MIN(rank) FROM table_name_73 WHERE candidate_name = "aliyya qadi" AND votes < 1421
### Context: CREATE TABLE table_name_73 (rank INTEGER, candidate_name VARCHAR, votes VARCHAR) ### Question: What rank is aliyya qadi with less than 1421 votes? ### Answer: SELECT MIN(rank) FROM table_name_73 WHERE candidate_name = "aliyya qadi" AND votes < 1421
Which candidate has more than 279 votes, rank less than 50, is ♀ and al-ahd?
CREATE TABLE table_name_61 (candidate_name VARCHAR, list VARCHAR, gender VARCHAR, votes VARCHAR, rank VARCHAR)
SELECT candidate_name FROM table_name_61 WHERE votes > 279 AND rank < 50 AND gender = "♀" AND list = "al-ahd"
### Context: CREATE TABLE table_name_61 (candidate_name VARCHAR, list VARCHAR, gender VARCHAR, votes VARCHAR, rank VARCHAR) ### Question: Which candidate has more than 279 votes, rank less than 50, is ♀ and al-ahd? ### Answer: SELECT candidate_name FROM table_name_61 WHERE votes > 279 AND rank < 50 AND gender = "♀" AND list = "al-ahd"
What is the first year that the Favorite Male Replacement category had Ben Vereen as a nominee?
CREATE TABLE table_name_48 (year INTEGER, category VARCHAR, nominee VARCHAR)
SELECT MIN(year) FROM table_name_48 WHERE category = "favorite male replacement" AND nominee = "ben vereen"
### Context: CREATE TABLE table_name_48 (year INTEGER, category VARCHAR, nominee VARCHAR) ### Question: What is the first year that the Favorite Male Replacement category had Ben Vereen as a nominee? ### Answer: SELECT MIN(year) FROM table_name_48 WHERE category = "favorite male replacement" AND nominee = "ben vereen"
What year was Kristin Chenoweth nominated in the category of outstanding actress in a musical?
CREATE TABLE table_name_52 (award_ceremony VARCHAR, category VARCHAR, nominee VARCHAR)
SELECT award_ceremony FROM table_name_52 WHERE category = "outstanding actress in a musical" AND nominee = "kristin chenoweth"
### Context: CREATE TABLE table_name_52 (award_ceremony VARCHAR, category VARCHAR, nominee VARCHAR) ### Question: What year was Kristin Chenoweth nominated in the category of outstanding actress in a musical? ### Answer: SELECT award_ceremony FROM table_name_52 WHERE category = "outstanding actress in a musical" AND nominee = "kristin chenoweth"
What year was Aaron Tveit nominated in the Favorite Male Replacement category?
CREATE TABLE table_name_87 (year INTEGER, nominee VARCHAR, result VARCHAR, category VARCHAR)
SELECT AVG(year) FROM table_name_87 WHERE result = "nominated" AND category = "favorite male replacement" AND nominee = "aaron tveit"
### Context: CREATE TABLE table_name_87 (year INTEGER, nominee VARCHAR, result VARCHAR, category VARCHAR) ### Question: What year was Aaron Tveit nominated in the Favorite Male Replacement category? ### Answer: SELECT AVG(year) FROM table_name_87 WHERE result = "nominated" AND category = "favorite male replacement" AND nominee = "aaron tveit"
Tell me the sum of rank for placings of 58
CREATE TABLE table_name_39 (rank INTEGER, placings VARCHAR)
SELECT SUM(rank) FROM table_name_39 WHERE placings = 58
### Context: CREATE TABLE table_name_39 (rank INTEGER, placings VARCHAR) ### Question: Tell me the sum of rank for placings of 58 ### Answer: SELECT SUM(rank) FROM table_name_39 WHERE placings = 58
Tell me the lowest placings for United Kingdom and rank less than 13
CREATE TABLE table_name_30 (placings INTEGER, nation VARCHAR, rank VARCHAR)
SELECT MIN(placings) FROM table_name_30 WHERE nation = "united kingdom" AND rank < 13
### Context: CREATE TABLE table_name_30 (placings INTEGER, nation VARCHAR, rank VARCHAR) ### Question: Tell me the lowest placings for United Kingdom and rank less than 13 ### Answer: SELECT MIN(placings) FROM table_name_30 WHERE nation = "united kingdom" AND rank < 13
I want to know the highest rank with placings more than 123 and points greater than 88.06
CREATE TABLE table_name_75 (rank INTEGER, placings VARCHAR, points VARCHAR)
SELECT MAX(rank) FROM table_name_75 WHERE placings > 123 AND points > 88.06
### Context: CREATE TABLE table_name_75 (rank INTEGER, placings VARCHAR, points VARCHAR) ### Question: I want to know the highest rank with placings more than 123 and points greater than 88.06 ### Answer: SELECT MAX(rank) FROM table_name_75 WHERE placings > 123 AND points > 88.06
Who is the drive for an Entrant of Scuderia Ambrosiana?
CREATE TABLE table_name_65 (driver VARCHAR, entrant VARCHAR)
SELECT driver FROM table_name_65 WHERE entrant = "scuderia ambrosiana"
### Context: CREATE TABLE table_name_65 (driver VARCHAR, entrant VARCHAR) ### Question: Who is the drive for an Entrant of Scuderia Ambrosiana? ### Answer: SELECT driver FROM table_name_65 WHERE entrant = "scuderia ambrosiana"
Which of the Rounds has an Entrant of automobiles Talbot-Darracq, and Pierre Levegh as the driver?
CREATE TABLE table_name_72 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)
SELECT rounds FROM table_name_72 WHERE entrant = "automobiles talbot-darracq" AND driver = "pierre levegh"
### Context: CREATE TABLE table_name_72 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR) ### Question: Which of the Rounds has an Entrant of automobiles Talbot-Darracq, and Pierre Levegh as the driver? ### Answer: SELECT rounds FROM table_name_72 WHERE entrant = "automobiles talbot-darracq" AND driver = "pierre levegh"
Who is the driver for the Entract of Enrico Platé?
CREATE TABLE table_name_80 (driver VARCHAR, entrant VARCHAR)
SELECT driver FROM table_name_80 WHERE entrant = "enrico platé"
### Context: CREATE TABLE table_name_80 (driver VARCHAR, entrant VARCHAR) ### Question: Who is the driver for the Entract of Enrico Platé? ### Answer: SELECT driver FROM table_name_80 WHERE entrant = "enrico platé"
Which of the entrants had Luigi Fagioli as a driver?
CREATE TABLE table_name_79 (entrant VARCHAR, driver VARCHAR)
SELECT entrant FROM table_name_79 WHERE driver = "luigi fagioli"
### Context: CREATE TABLE table_name_79 (entrant VARCHAR, driver VARCHAR) ### Question: Which of the entrants had Luigi Fagioli as a driver? ### Answer: SELECT entrant FROM table_name_79 WHERE driver = "luigi fagioli"
Who is the driver whose Constructor was Era, and whose entrant was T.A.S.O. Mathieson?
CREATE TABLE table_name_94 (driver VARCHAR, constructor VARCHAR, entrant VARCHAR)
SELECT driver FROM table_name_94 WHERE constructor = "era" AND entrant = "t.a.s.o. mathieson"
### Context: CREATE TABLE table_name_94 (driver VARCHAR, constructor VARCHAR, entrant VARCHAR) ### Question: Who is the driver whose Constructor was Era, and whose entrant was T.A.S.O. Mathieson? ### Answer: SELECT driver FROM table_name_94 WHERE constructor = "era" AND entrant = "t.a.s.o. mathieson"
Which chassis had Rounds of 7, and an Entrant of Ecurie Rosier?
CREATE TABLE table_name_15 (chassis VARCHAR, rounds VARCHAR, entrant VARCHAR)
SELECT chassis FROM table_name_15 WHERE rounds = "7" AND entrant = "ecurie rosier"
### Context: CREATE TABLE table_name_15 (chassis VARCHAR, rounds VARCHAR, entrant VARCHAR) ### Question: Which chassis had Rounds of 7, and an Entrant of Ecurie Rosier? ### Answer: SELECT chassis FROM table_name_15 WHERE rounds = "7" AND entrant = "ecurie rosier"
Who is the winner constructor with driver riccardo patrese?
CREATE TABLE table_name_79 (winning_constructor VARCHAR, winning_driver VARCHAR)
SELECT winning_constructor FROM table_name_79 WHERE winning_driver = "riccardo patrese"
### Context: CREATE TABLE table_name_79 (winning_constructor VARCHAR, winning_driver VARCHAR) ### Question: Who is the winner constructor with driver riccardo patrese? ### Answer: SELECT winning_constructor FROM table_name_79 WHERE winning_driver = "riccardo patrese"
What is the highest round on 5 april?
CREATE TABLE table_name_42 (round INTEGER, date VARCHAR)
SELECT MAX(round) FROM table_name_42 WHERE date = "5 april"
### Context: CREATE TABLE table_name_42 (round INTEGER, date VARCHAR) ### Question: What is the highest round on 5 april? ### Answer: SELECT MAX(round) FROM table_name_42 WHERE date = "5 april"
Which date was hermanos rodríguez the location?
CREATE TABLE table_name_37 (date VARCHAR, location VARCHAR)
SELECT date FROM table_name_37 WHERE location = "hermanos rodríguez"
### Context: CREATE TABLE table_name_37 (date VARCHAR, location VARCHAR) ### Question: Which date was hermanos rodríguez the location? ### Answer: SELECT date FROM table_name_37 WHERE location = "hermanos rodríguez"
Name the record for may 3
CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_92 WHERE date = "may 3"
### Context: CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR) ### Question: Name the record for may 3 ### Answer: SELECT record FROM table_name_92 WHERE date = "may 3"
Name the total number in attendance for may 1
CREATE TABLE table_name_68 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_68 WHERE date = "may 1"
### Context: CREATE TABLE table_name_68 (attendance VARCHAR, date VARCHAR) ### Question: Name the total number in attendance for may 1 ### Answer: SELECT COUNT(attendance) FROM table_name_68 WHERE date = "may 1"
Name the loss on may 29
CREATE TABLE table_name_20 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_20 WHERE date = "may 29"
### Context: CREATE TABLE table_name_20 (loss VARCHAR, date VARCHAR) ### Question: Name the loss on may 29 ### Answer: SELECT loss FROM table_name_20 WHERE date = "may 29"
How many cuts were made when there weren't any wins but had a top-5 of 1 and a top 10 larger than 4?
CREATE TABLE table_name_62 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_5 VARCHAR)
SELECT SUM(cuts_made) FROM table_name_62 WHERE wins < 1 AND top_5 = 1 AND top_10 > 4
### Context: CREATE TABLE table_name_62 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_5 VARCHAR) ### Question: How many cuts were made when there weren't any wins but had a top-5 of 1 and a top 10 larger than 4? ### Answer: SELECT SUM(cuts_made) FROM table_name_62 WHERE wins < 1 AND top_5 = 1 AND top_10 > 4
Which college has a Player of shabazz muhammad?
CREATE TABLE table_name_36 (college VARCHAR, player VARCHAR)
SELECT college FROM table_name_36 WHERE player = "shabazz muhammad"
### Context: CREATE TABLE table_name_36 (college VARCHAR, player VARCHAR) ### Question: Which college has a Player of shabazz muhammad? ### Answer: SELECT college FROM table_name_36 WHERE player = "shabazz muhammad"
How tall is nerlens noel?
CREATE TABLE table_name_11 (height VARCHAR, player VARCHAR)
SELECT height FROM table_name_11 WHERE player = "nerlens noel"
### Context: CREATE TABLE table_name_11 (height VARCHAR, player VARCHAR) ### Question: How tall is nerlens noel? ### Answer: SELECT height FROM table_name_11 WHERE player = "nerlens noel"
Who is from flower mound, tx?
CREATE TABLE table_name_47 (player VARCHAR, hometown VARCHAR)
SELECT player FROM table_name_47 WHERE hometown = "flower mound, tx"
### Context: CREATE TABLE table_name_47 (player VARCHAR, hometown VARCHAR) ### Question: Who is from flower mound, tx? ### Answer: SELECT player FROM table_name_47 WHERE hometown = "flower mound, tx"
Where is shabazz muhammad from?
CREATE TABLE table_name_58 (hometown VARCHAR, player VARCHAR)
SELECT hometown FROM table_name_58 WHERE player = "shabazz muhammad"
### Context: CREATE TABLE table_name_58 (hometown VARCHAR, player VARCHAR) ### Question: Where is shabazz muhammad from? ### Answer: SELECT hometown FROM table_name_58 WHERE player = "shabazz muhammad"
What was the opponent for july 21?
CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_35 WHERE date = "july 21"
### Context: CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR) ### Question: What was the opponent for july 21? ### Answer: SELECT opponent FROM table_name_35 WHERE date = "july 21"
What was the record on july 24?
CREATE TABLE table_name_95 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_95 WHERE date = "july 24"
### Context: CREATE TABLE table_name_95 (record VARCHAR, date VARCHAR) ### Question: What was the record on july 24? ### Answer: SELECT record FROM table_name_95 WHERE date = "july 24"
Who constructed the car with a grid under 15, 77 laps, and a Time/Retired of + 0.771?
CREATE TABLE table_name_77 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT constructor FROM table_name_77 WHERE grid < 15 AND laps = 77 AND time_retired = "+ 0.771"
### Context: CREATE TABLE table_name_77 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR) ### Question: Who constructed the car with a grid under 15, 77 laps, and a Time/Retired of + 0.771? ### Answer: SELECT constructor FROM table_name_77 WHERE grid < 15 AND laps = 77 AND time_retired = "+ 0.771"
What is the average grid for damon hill with over 74 laps?
CREATE TABLE table_name_29 (grid INTEGER, laps VARCHAR, driver VARCHAR)
SELECT AVG(grid) FROM table_name_29 WHERE laps > 74 AND driver = "damon hill"
### Context: CREATE TABLE table_name_29 (grid INTEGER, laps VARCHAR, driver VARCHAR) ### Question: What is the average grid for damon hill with over 74 laps? ### Answer: SELECT AVG(grid) FROM table_name_29 WHERE laps > 74 AND driver = "damon hill"
Which position has a School/club team of jacksonville?
CREATE TABLE table_name_81 (pos VARCHAR, school_club_team VARCHAR)
SELECT pos FROM table_name_81 WHERE school_club_team = "jacksonville"
### Context: CREATE TABLE table_name_81 (pos VARCHAR, school_club_team VARCHAR) ### Question: Which position has a School/club team of jacksonville? ### Answer: SELECT pos FROM table_name_81 WHERE school_club_team = "jacksonville"
How many rounds have a Pick of 13?
CREATE TABLE table_name_21 (round INTEGER, pick VARCHAR)
SELECT SUM(round) FROM table_name_21 WHERE pick = 13
### Context: CREATE TABLE table_name_21 (round INTEGER, pick VARCHAR) ### Question: How many rounds have a Pick of 13? ### Answer: SELECT SUM(round) FROM table_name_21 WHERE pick = 13
How many rounds have School/club team of pan american?
CREATE TABLE table_name_91 (round INTEGER, school_club_team VARCHAR)
SELECT SUM(round) FROM table_name_91 WHERE school_club_team = "pan american"
### Context: CREATE TABLE table_name_91 (round INTEGER, school_club_team VARCHAR) ### Question: How many rounds have School/club team of pan american? ### Answer: SELECT SUM(round) FROM table_name_91 WHERE school_club_team = "pan american"
What is the chassis when there is 25 points?
CREATE TABLE table_name_41 (chassis VARCHAR, points VARCHAR)
SELECT chassis FROM table_name_41 WHERE points = "25"
### Context: CREATE TABLE table_name_41 (chassis VARCHAR, points VARCHAR) ### Question: What is the chassis when there is 25 points? ### Answer: SELECT chassis FROM table_name_41 WHERE points = "25"
How many points were there before 1979 with a ferrari 312b2 chassis?
CREATE TABLE table_name_3 (points VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT points FROM table_name_3 WHERE year < 1979 AND chassis = "ferrari 312b2"
### Context: CREATE TABLE table_name_3 (points VARCHAR, year VARCHAR, chassis VARCHAR) ### Question: How many points were there before 1979 with a ferrari 312b2 chassis? ### Answer: SELECT points FROM table_name_3 WHERE year < 1979 AND chassis = "ferrari 312b2"
What year were there 29 (32) points?
CREATE TABLE table_name_3 (year VARCHAR, points VARCHAR)
SELECT year FROM table_name_3 WHERE points = "29 (32)"
### Context: CREATE TABLE table_name_3 (year VARCHAR, points VARCHAR) ### Question: What year were there 29 (32) points? ### Answer: SELECT year FROM table_name_3 WHERE points = "29 (32)"
What result occurs when the round is 4 leg 2?
CREATE TABLE table_name_87 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_87 WHERE round = "4 leg 2"
### Context: CREATE TABLE table_name_87 (result VARCHAR, round VARCHAR) ### Question: What result occurs when the round is 4 leg 2? ### Answer: SELECT result FROM table_name_87 WHERE round = "4 leg 2"
What did fitzroy score at their home game?
CREATE TABLE table_name_98 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_98 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_98 (home_team VARCHAR) ### Question: What did fitzroy score at their home game? ### Answer: SELECT home_team AS score FROM table_name_98 WHERE home_team = "fitzroy"
Which away team played at western oval?
CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_16 WHERE venue = "western oval"
### Context: CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR) ### Question: Which away team played at western oval? ### Answer: SELECT away_team FROM table_name_16 WHERE venue = "western oval"
Which surface had Yew-Ming Si as a partner?
CREATE TABLE table_name_83 (surface VARCHAR, partner VARCHAR)
SELECT surface FROM table_name_83 WHERE partner = "yew-ming si"
### Context: CREATE TABLE table_name_83 (surface VARCHAR, partner VARCHAR) ### Question: Which surface had Yew-Ming Si as a partner? ### Answer: SELECT surface FROM table_name_83 WHERE partner = "yew-ming si"
What was the result of rank 1?
CREATE TABLE table_name_73 (result VARCHAR, rank VARCHAR)
SELECT result FROM table_name_73 WHERE rank = 1
### Context: CREATE TABLE table_name_73 (result VARCHAR, rank VARCHAR) ### Question: What was the result of rank 1? ### Answer: SELECT result FROM table_name_73 WHERE rank = 1
What type has a date of 1 june?
CREATE TABLE table_name_70 (type VARCHAR, date VARCHAR)
SELECT type FROM table_name_70 WHERE date = "1 june"
### Context: CREATE TABLE table_name_70 (type VARCHAR, date VARCHAR) ### Question: What type has a date of 1 june? ### Answer: SELECT type FROM table_name_70 WHERE date = "1 june"
What was the date with a hilly stage?
CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR)
SELECT date FROM table_name_16 WHERE type = "hilly stage"
### Context: CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR) ### Question: What was the date with a hilly stage? ### Answer: SELECT date FROM table_name_16 WHERE type = "hilly stage"
What is the name of the winner on 18 may?
CREATE TABLE table_name_21 (winner VARCHAR, date VARCHAR)
SELECT winner FROM table_name_21 WHERE date = "18 may"
### Context: CREATE TABLE table_name_21 (winner VARCHAR, date VARCHAR) ### Question: What is the name of the winner on 18 may? ### Answer: SELECT winner FROM table_name_21 WHERE date = "18 may"
What date was moena to aprica the course?
CREATE TABLE table_name_13 (date VARCHAR, course VARCHAR)
SELECT date FROM table_name_13 WHERE course = "moena to aprica"
### Context: CREATE TABLE table_name_13 (date VARCHAR, course VARCHAR) ### Question: What date was moena to aprica the course? ### Answer: SELECT date FROM table_name_13 WHERE course = "moena to aprica"
What is the name of the winner with a type of plain stage and a Course of nola to sora?
CREATE TABLE table_name_35 (winner VARCHAR, type VARCHAR, course VARCHAR)
SELECT winner FROM table_name_35 WHERE type = "plain stage" AND course = "nola to sora"
### Context: CREATE TABLE table_name_35 (winner VARCHAR, type VARCHAR, course VARCHAR) ### Question: What is the name of the winner with a type of plain stage and a Course of nola to sora? ### Answer: SELECT winner FROM table_name_35 WHERE type = "plain stage" AND course = "nola to sora"
Which sign has a red border and a warning sign?
CREATE TABLE table_name_68 (text_symbol VARCHAR, border VARCHAR, type_of_sign VARCHAR)
SELECT text_symbol FROM table_name_68 WHERE border = "red" AND type_of_sign = "warning"
### Context: CREATE TABLE table_name_68 (text_symbol VARCHAR, border VARCHAR, type_of_sign VARCHAR) ### Question: Which sign has a red border and a warning sign? ### Answer: SELECT text_symbol FROM table_name_68 WHERE border = "red" AND type_of_sign = "warning"
Which sign had a yellow background and a triangular shape?
CREATE TABLE table_name_86 (border VARCHAR, background_colour VARCHAR, shape VARCHAR)
SELECT border FROM table_name_86 WHERE background_colour = "yellow" AND shape = "triangular"
### Context: CREATE TABLE table_name_86 (border VARCHAR, background_colour VARCHAR, shape VARCHAR) ### Question: Which sign had a yellow background and a triangular shape? ### Answer: SELECT border FROM table_name_86 WHERE background_colour = "yellow" AND shape = "triangular"
Which sign has a red border?
CREATE TABLE table_name_42 (text_symbol VARCHAR, border VARCHAR)
SELECT text_symbol FROM table_name_42 WHERE border = "red"
### Context: CREATE TABLE table_name_42 (text_symbol VARCHAR, border VARCHAR) ### Question: Which sign has a red border? ### Answer: SELECT text_symbol FROM table_name_42 WHERE border = "red"
Which color is the background of the mandatory instructions?
CREATE TABLE table_name_43 (background_colour VARCHAR, type_of_sign VARCHAR)
SELECT background_colour FROM table_name_43 WHERE type_of_sign = "mandatory instructions"
### Context: CREATE TABLE table_name_43 (background_colour VARCHAR, type_of_sign VARCHAR) ### Question: Which color is the background of the mandatory instructions? ### Answer: SELECT background_colour FROM table_name_43 WHERE type_of_sign = "mandatory instructions"
What is the color of the background of the white border and sign of information?
CREATE TABLE table_name_25 (background_colour VARCHAR, border VARCHAR, type_of_sign VARCHAR)
SELECT background_colour FROM table_name_25 WHERE border = "white" AND type_of_sign = "information"
### Context: CREATE TABLE table_name_25 (background_colour VARCHAR, border VARCHAR, type_of_sign VARCHAR) ### Question: What is the color of the background of the white border and sign of information? ### Answer: SELECT background_colour FROM table_name_25 WHERE border = "white" AND type_of_sign = "information"
What is the average total of Italy and has a bronze larger than 1?
CREATE TABLE table_name_56 (total INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT AVG(total) FROM table_name_56 WHERE nation = "italy" AND bronze > 1
### Context: CREATE TABLE table_name_56 (total INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What is the average total of Italy and has a bronze larger than 1? ### Answer: SELECT AVG(total) FROM table_name_56 WHERE nation = "italy" AND bronze > 1
What amount of Gold does Russia have and have a rank larger than 1?
CREATE TABLE table_name_8 (gold INTEGER, nation VARCHAR, rank VARCHAR)
SELECT SUM(gold) FROM table_name_8 WHERE nation = "russia" AND rank > 1
### Context: CREATE TABLE table_name_8 (gold INTEGER, nation VARCHAR, rank VARCHAR) ### Question: What amount of Gold does Russia have and have a rank larger than 1? ### Answer: SELECT SUM(gold) FROM table_name_8 WHERE nation = "russia" AND rank > 1
What is the sum of the ranks with a total of 1 and silver less than 0.
CREATE TABLE table_name_83 (rank INTEGER, total VARCHAR, silver VARCHAR)
SELECT SUM(rank) FROM table_name_83 WHERE total = 1 AND silver < 0
### Context: CREATE TABLE table_name_83 (rank INTEGER, total VARCHAR, silver VARCHAR) ### Question: What is the sum of the ranks with a total of 1 and silver less than 0. ### Answer: SELECT SUM(rank) FROM table_name_83 WHERE total = 1 AND silver < 0
Which Player is linebacker and has a pick larger than 28?
CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, pick VARCHAR)
SELECT player FROM table_name_69 WHERE position = "linebacker" AND pick > 28
### Context: CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, pick VARCHAR) ### Question: Which Player is linebacker and has a pick larger than 28? ### Answer: SELECT player FROM table_name_69 WHERE position = "linebacker" AND pick > 28
What was the lowest round that Melvin Johnson played?
CREATE TABLE table_name_99 (round INTEGER, player VARCHAR)
SELECT MIN(round) FROM table_name_99 WHERE player = "melvin johnson"
### Context: CREATE TABLE table_name_99 (round INTEGER, player VARCHAR) ### Question: What was the lowest round that Melvin Johnson played? ### Answer: SELECT MIN(round) FROM table_name_99 WHERE player = "melvin johnson"
Who was the runner-up at the South Florida Semi-Finalist #1?
CREATE TABLE table_name_96 (runner_up VARCHAR, semi_finalist__number1 VARCHAR)
SELECT runner_up FROM table_name_96 WHERE semi_finalist__number1 = "south florida"
### Context: CREATE TABLE table_name_96 (runner_up VARCHAR, semi_finalist__number1 VARCHAR) ### Question: Who was the runner-up at the South Florida Semi-Finalist #1? ### Answer: SELECT runner_up FROM table_name_96 WHERE semi_finalist__number1 = "south florida"
Who was the Champion in Snellville, GA in 2006?
CREATE TABLE table_name_46 (champion VARCHAR, location VARCHAR, year VARCHAR)
SELECT champion FROM table_name_46 WHERE location = "snellville, ga" AND year = "2006"
### Context: CREATE TABLE table_name_46 (champion VARCHAR, location VARCHAR, year VARCHAR) ### Question: Who was the Champion in Snellville, GA in 2006? ### Answer: SELECT champion FROM table_name_46 WHERE location = "snellville, ga" AND year = "2006"
Who won when Elon was the runner-up?
CREATE TABLE table_name_53 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_name_53 WHERE runner_up = "elon"
### Context: CREATE TABLE table_name_53 (champion VARCHAR, runner_up VARCHAR) ### Question: Who won when Elon was the runner-up? ### Answer: SELECT champion FROM table_name_53 WHERE runner_up = "elon"
What year saw a score of 8-5?
CREATE TABLE table_name_9 (year VARCHAR, score VARCHAR)
SELECT year FROM table_name_9 WHERE score = "8-5"
### Context: CREATE TABLE table_name_9 (year VARCHAR, score VARCHAR) ### Question: What year saw a score of 8-5? ### Answer: SELECT year FROM table_name_9 WHERE score = "8-5"
Who was the Semi-Finalist #2 in 2007?
CREATE TABLE table_name_59 (semi_finalist__number2 VARCHAR, year VARCHAR)
SELECT semi_finalist__number2 FROM table_name_59 WHERE year = "2007"
### Context: CREATE TABLE table_name_59 (semi_finalist__number2 VARCHAR, year VARCHAR) ### Question: Who was the Semi-Finalist #2 in 2007? ### Answer: SELECT semi_finalist__number2 FROM table_name_59 WHERE year = "2007"
Who was the Semi-Finalist #2 in 2001?
CREATE TABLE table_name_26 (semi_finalist__number2 VARCHAR, year VARCHAR)
SELECT semi_finalist__number2 FROM table_name_26 WHERE year = "2001"
### Context: CREATE TABLE table_name_26 (semi_finalist__number2 VARCHAR, year VARCHAR) ### Question: Who was the Semi-Finalist #2 in 2001? ### Answer: SELECT semi_finalist__number2 FROM table_name_26 WHERE year = "2001"
What tournament is in Arizona?
CREATE TABLE table_name_70 (tournament VARCHAR, location VARCHAR)
SELECT tournament FROM table_name_70 WHERE location = "arizona"
### Context: CREATE TABLE table_name_70 (tournament VARCHAR, location VARCHAR) ### Question: What tournament is in Arizona? ### Answer: SELECT tournament FROM table_name_70 WHERE location = "arizona"
Which away team had a crowd bigger than 21,000?
CREATE TABLE table_name_60 (away_team VARCHAR, crowd INTEGER)
SELECT away_team FROM table_name_60 WHERE crowd > 21 OFFSET 000
### Context: CREATE TABLE table_name_60 (away_team VARCHAR, crowd INTEGER) ### Question: Which away team had a crowd bigger than 21,000? ### Answer: SELECT away_team FROM table_name_60 WHERE crowd > 21 OFFSET 000
What is the rank for points less than 166.96, and a Places of 166?
CREATE TABLE table_name_88 (rank INTEGER, points VARCHAR, places VARCHAR)
SELECT AVG(rank) FROM table_name_88 WHERE points < "166".96 AND places = "166"
### Context: CREATE TABLE table_name_88 (rank INTEGER, points VARCHAR, places VARCHAR) ### Question: What is the rank for points less than 166.96, and a Places of 166? ### Answer: SELECT AVG(rank) FROM table_name_88 WHERE points < "166".96 AND places = "166"
What is the rank for more than 120.44 points in East Germany and a SP+FS of 3?
CREATE TABLE table_name_21 (rank VARCHAR, points VARCHAR, nation VARCHAR, sp VARCHAR, fs VARCHAR)
SELECT COUNT(rank) FROM table_name_21 WHERE points > 120.44 AND nation = "east germany" AND sp + fs = 3
### Context: CREATE TABLE table_name_21 (rank VARCHAR, points VARCHAR, nation VARCHAR, sp VARCHAR, fs VARCHAR) ### Question: What is the rank for more than 120.44 points in East Germany and a SP+FS of 3? ### Answer: SELECT COUNT(rank) FROM table_name_21 WHERE points > 120.44 AND nation = "east germany" AND sp + fs = 3
What is the rank when 233 shows for places and SP+FS smaller than 27?
CREATE TABLE table_name_94 (rank VARCHAR, places VARCHAR, sp VARCHAR, fs VARCHAR)
SELECT COUNT(rank) FROM table_name_94 WHERE places = "233" AND sp + fs < 27
### Context: CREATE TABLE table_name_94 (rank VARCHAR, places VARCHAR, sp VARCHAR, fs VARCHAR) ### Question: What is the rank when 233 shows for places and SP+FS smaller than 27? ### Answer: SELECT COUNT(rank) FROM table_name_94 WHERE places = "233" AND sp + fs < 27
What is the average SP+FS for Denise Biellmann, and a Rank larger than 5?
CREATE TABLE table_name_14 (fs VARCHAR, sp INTEGER, name VARCHAR, rank VARCHAR)
SELECT AVG(sp) + fs FROM table_name_14 WHERE name = "denise biellmann" AND rank > 5
### Context: CREATE TABLE table_name_14 (fs VARCHAR, sp INTEGER, name VARCHAR, rank VARCHAR) ### Question: What is the average SP+FS for Denise Biellmann, and a Rank larger than 5? ### Answer: SELECT AVG(sp) + fs FROM table_name_14 WHERE name = "denise biellmann" AND rank > 5
What is the number of points for east germany, and a Places of 88?
CREATE TABLE table_name_84 (points INTEGER, nation VARCHAR, places VARCHAR)
SELECT SUM(points) FROM table_name_84 WHERE nation = "east germany" AND places = "88"
### Context: CREATE TABLE table_name_84 (points INTEGER, nation VARCHAR, places VARCHAR) ### Question: What is the number of points for east germany, and a Places of 88? ### Answer: SELECT SUM(points) FROM table_name_84 WHERE nation = "east germany" AND places = "88"
what is the years for engin 5.7l hemi v8?
CREATE TABLE table_name_82 (years VARCHAR, engine VARCHAR)
SELECT years FROM table_name_82 WHERE engine = "5.7l hemi v8"
### Context: CREATE TABLE table_name_82 (years VARCHAR, engine VARCHAR) ### Question: what is the years for engin 5.7l hemi v8? ### Answer: SELECT years FROM table_name_82 WHERE engine = "5.7l hemi v8"
what is the years when the notes is laredo, limited, overland and the engine is 5.7l hemi v8?
CREATE TABLE table_name_51 (years VARCHAR, notes VARCHAR, engine VARCHAR)
SELECT years FROM table_name_51 WHERE notes = "laredo, limited, overland" AND engine = "5.7l hemi v8"
### Context: CREATE TABLE table_name_51 (years VARCHAR, notes VARCHAR, engine VARCHAR) ### Question: what is the years when the notes is laredo, limited, overland and the engine is 5.7l hemi v8? ### Answer: SELECT years FROM table_name_51 WHERE notes = "laredo, limited, overland" AND engine = "5.7l hemi v8"
what is the torque when the notes are laredo, limited, overland and the engine is 5.7l hemi v8?
CREATE TABLE table_name_69 (torque VARCHAR, notes VARCHAR, engine VARCHAR)
SELECT torque FROM table_name_69 WHERE notes = "laredo, limited, overland" AND engine = "5.7l hemi v8"
### Context: CREATE TABLE table_name_69 (torque VARCHAR, notes VARCHAR, engine VARCHAR) ### Question: what is the torque when the notes are laredo, limited, overland and the engine is 5.7l hemi v8? ### Answer: SELECT torque FROM table_name_69 WHERE notes = "laredo, limited, overland" AND engine = "5.7l hemi v8"
Who drove the ferrari that went 57 laps?
CREATE TABLE table_name_21 (driver VARCHAR, constructor VARCHAR, laps VARCHAR)
SELECT driver FROM table_name_21 WHERE constructor = "ferrari" AND laps = 57
### Context: CREATE TABLE table_name_21 (driver VARCHAR, constructor VARCHAR, laps VARCHAR) ### Question: Who drove the ferrari that went 57 laps? ### Answer: SELECT driver FROM table_name_21 WHERE constructor = "ferrari" AND laps = 57
What place did R. Wenzel, who was active after 1934, have?
CREATE TABLE table_name_7 (place INTEGER, name VARCHAR, until VARCHAR)
SELECT SUM(place) FROM table_name_7 WHERE name = "r. wenzel" AND until > 1934
### Context: CREATE TABLE table_name_7 (place INTEGER, name VARCHAR, until VARCHAR) ### Question: What place did R. Wenzel, who was active after 1934, have? ### Answer: SELECT SUM(place) FROM table_name_7 WHERE name = "r. wenzel" AND until > 1934
What's the time for a round of n/a when the opponent is mikhail ilyukhin?
CREATE TABLE table_name_75 (time VARCHAR, round VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_75 WHERE round = "n/a" AND opponent = "mikhail ilyukhin"
### Context: CREATE TABLE table_name_75 (time VARCHAR, round VARCHAR, opponent VARCHAR) ### Question: What's the time for a round of n/a when the opponent is mikhail ilyukhin? ### Answer: SELECT time FROM table_name_75 WHERE round = "n/a" AND opponent = "mikhail ilyukhin"
What is the pole position of the Portuguese Grand Prix?
CREATE TABLE table_name_54 (pole_position VARCHAR, grand_prix VARCHAR)
SELECT pole_position FROM table_name_54 WHERE grand_prix = "portuguese grand prix"
### Context: CREATE TABLE table_name_54 (pole_position VARCHAR, grand_prix VARCHAR) ### Question: What is the pole position of the Portuguese Grand Prix? ### Answer: SELECT pole_position FROM table_name_54 WHERE grand_prix = "portuguese grand prix"
What is the pole position of the grand prix with 1 round?
CREATE TABLE table_name_93 (pole_position VARCHAR, round VARCHAR)
SELECT pole_position FROM table_name_93 WHERE round = 1
### Context: CREATE TABLE table_name_93 (pole_position VARCHAR, round VARCHAR) ### Question: What is the pole position of the grand prix with 1 round? ### Answer: SELECT pole_position FROM table_name_93 WHERE round = 1
What is the pole position of the Hungarian Grand Prix?
CREATE TABLE table_name_41 (pole_position VARCHAR, grand_prix VARCHAR)
SELECT pole_position FROM table_name_41 WHERE grand_prix = "hungarian grand prix"
### Context: CREATE TABLE table_name_41 (pole_position VARCHAR, grand_prix VARCHAR) ### Question: What is the pole position of the Hungarian Grand Prix? ### Answer: SELECT pole_position FROM table_name_41 WHERE grand_prix = "hungarian grand prix"
What is the pole position of the Belgian Grand Prix?
CREATE TABLE table_name_27 (pole_position VARCHAR, grand_prix VARCHAR)
SELECT pole_position FROM table_name_27 WHERE grand_prix = "belgian grand prix"
### Context: CREATE TABLE table_name_27 (pole_position VARCHAR, grand_prix VARCHAR) ### Question: What is the pole position of the Belgian Grand Prix? ### Answer: SELECT pole_position FROM table_name_27 WHERE grand_prix = "belgian grand prix"
What is the grand prix with Gerhard Berger as the fastest lap and Michael Schumacher as the pole position?
CREATE TABLE table_name_50 (grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)
SELECT grand_prix FROM table_name_50 WHERE fastest_lap = "gerhard berger" AND pole_position = "michael schumacher"
### Context: CREATE TABLE table_name_50 (grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ### Question: What is the grand prix with Gerhard Berger as the fastest lap and Michael Schumacher as the pole position? ### Answer: SELECT grand_prix FROM table_name_50 WHERE fastest_lap = "gerhard berger" AND pole_position = "michael schumacher"
Tell me the declination for consellaion of ophiuchus and apparent magnitude less than 8.6 with right ascension of 16h47m14.5s
CREATE TABLE table_name_55 (declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR, constellation VARCHAR, apparent_magnitude VARCHAR)
SELECT declination___j2000__ FROM table_name_55 WHERE constellation = "ophiuchus" AND apparent_magnitude < 8.6 AND right_ascension___j2000__ = "16h47m14.5s"
### Context: CREATE TABLE table_name_55 (declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR, constellation VARCHAR, apparent_magnitude VARCHAR) ### Question: Tell me the declination for consellaion of ophiuchus and apparent magnitude less than 8.6 with right ascension of 16h47m14.5s ### Answer: SELECT declination___j2000__ FROM table_name_55 WHERE constellation = "ophiuchus" AND apparent_magnitude < 8.6 AND right_ascension___j2000__ = "16h47m14.5s"
Tell me the right ascensuon for object type of globular cluster and apparent magnitude of 8.5 and NGC number of 6273
CREATE TABLE table_name_2 (right_ascension___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, apparent_magnitude VARCHAR)
SELECT right_ascension___j2000__ FROM table_name_2 WHERE object_type = "globular cluster" AND apparent_magnitude = 8.5 AND ngc_number = 6273
### Context: CREATE TABLE table_name_2 (right_ascension___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, apparent_magnitude VARCHAR) ### Question: Tell me the right ascensuon for object type of globular cluster and apparent magnitude of 8.5 and NGC number of 6273 ### Answer: SELECT right_ascension___j2000__ FROM table_name_2 WHERE object_type = "globular cluster" AND apparent_magnitude = 8.5 AND ngc_number = 6273
When was the game played where St Kilda was the home team?
CREATE TABLE table_name_4 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_4 WHERE home_team = "st kilda"
### Context: CREATE TABLE table_name_4 (date VARCHAR, home_team VARCHAR) ### Question: When was the game played where St Kilda was the home team? ### Answer: SELECT date FROM table_name_4 WHERE home_team = "st kilda"
What was the home team score with an away team of Melbourne?
CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_65 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team score with an away team of Melbourne? ### Answer: SELECT home_team AS score FROM table_name_65 WHERE away_team = "melbourne"
Which away team played the home team of Footscray?
CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_56 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR) ### Question: Which away team played the home team of Footscray? ### Answer: SELECT away_team FROM table_name_56 WHERE home_team = "footscray"
How old was the conservative party member that left the house in 2001?
CREATE TABLE table_name_43 (age_on_leaving VARCHAR, political_party VARCHAR, left_house VARCHAR)
SELECT age_on_leaving FROM table_name_43 WHERE political_party = "conservative" AND left_house = "2001"
### Context: CREATE TABLE table_name_43 (age_on_leaving VARCHAR, political_party VARCHAR, left_house VARCHAR) ### Question: How old was the conservative party member that left the house in 2001? ### Answer: SELECT age_on_leaving FROM table_name_43 WHERE political_party = "conservative" AND left_house = "2001"
What was the lowest Attendance for the Staples Center Arena when the Points were over 14?
CREATE TABLE table_name_21 (attendance INTEGER, points VARCHAR, arena VARCHAR)
SELECT MIN(attendance) FROM table_name_21 WHERE points > 14 AND arena = "staples center"
### Context: CREATE TABLE table_name_21 (attendance INTEGER, points VARCHAR, arena VARCHAR) ### Question: What was the lowest Attendance for the Staples Center Arena when the Points were over 14? ### Answer: SELECT MIN(attendance) FROM table_name_21 WHERE points > 14 AND arena = "staples center"
Name the leading scorer for 12 january 2008
CREATE TABLE table_name_40 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_name_40 WHERE date = "12 january 2008"
### Context: CREATE TABLE table_name_40 (leading_scorer VARCHAR, date VARCHAR) ### Question: Name the leading scorer for 12 january 2008 ### Answer: SELECT leading_scorer FROM table_name_40 WHERE date = "12 january 2008"
Name the record for 21 january 2008
CREATE TABLE table_name_4 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_4 WHERE date = "21 january 2008"
### Context: CREATE TABLE table_name_4 (record VARCHAR, date VARCHAR) ### Question: Name the record for 21 january 2008 ### Answer: SELECT record FROM table_name_4 WHERE date = "21 january 2008"
what is the date when the away team is melbourne?
CREATE TABLE table_name_48 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_48 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_48 (date VARCHAR, away_team VARCHAR) ### Question: what is the date when the away team is melbourne? ### Answer: SELECT date FROM table_name_48 WHERE away_team = "melbourne"