question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the score of the tournament with olivier delaître as the opponent in the final? | CREATE TABLE table_name_41 (score VARCHAR, opponent_in_the_final VARCHAR) | SELECT score FROM table_name_41 WHERE opponent_in_the_final = "olivier delaître" | ### Context: CREATE TABLE table_name_41 (score VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the score of the tournament with olivier delaître as the opponent in the final? ### Answer: SELECT score FROM table_name_41 WHERE opponent_in_the_final = "olivier delaître" |
What is the date of the tournament with olivier delaître as the opponent in the final? | CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR) | SELECT date FROM table_name_49 WHERE opponent_in_the_final = "olivier delaître" | ### Context: CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the date of the tournament with olivier delaître as the opponent in the final? ### Answer: SELECT date FROM table_name_49 WHERE opponent_in_the_final = "olivier delaître" |
What is the surface of the tournament with cédric pioline as the opponent in the final? | CREATE TABLE table_name_37 (surface VARCHAR, opponent_in_the_final VARCHAR) | SELECT surface FROM table_name_37 WHERE opponent_in_the_final = "cédric pioline" | ### Context: CREATE TABLE table_name_37 (surface VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the surface of the tournament with cédric pioline as the opponent in the final? ### Answer: SELECT surface FROM table_name_37 WHERE opponent_in_the_final = "cédric pioline" |
What was the result for the team with 3 draws? | CREATE TABLE table_name_42 (result VARCHAR, draws VARCHAR) | SELECT result FROM table_name_42 WHERE draws = "3" | ### Context: CREATE TABLE table_name_42 (result VARCHAR, draws VARCHAR) ### Question: What was the result for the team with 3 draws? ### Answer: SELECT result FROM table_name_42 WHERE draws = "3" |
How many draws were there in 2006? | CREATE TABLE table_name_58 (draws VARCHAR, year VARCHAR) | SELECT draws FROM table_name_58 WHERE year = "2006" | ### Context: CREATE TABLE table_name_58 (draws VARCHAR, year VARCHAR) ### Question: How many draws were there in 2006? ### Answer: SELECT draws FROM table_name_58 WHERE year = "2006" |
What were the matches where the teams finished in the first group stage, in 1998? | CREATE TABLE table_name_95 (matches VARCHAR, result VARCHAR, year VARCHAR) | SELECT matches FROM table_name_95 WHERE result = "first group stage" AND year = "1998" | ### Context: CREATE TABLE table_name_95 (matches VARCHAR, result VARCHAR, year VARCHAR) ### Question: What were the matches where the teams finished in the first group stage, in 1998? ### Answer: SELECT matches FROM table_name_95 WHERE result = "first group stage" AND year = "1998" |
What year was Zona Sur nominated? | CREATE TABLE table_name_69 (year__ceremony_ VARCHAR, original_title VARCHAR) | SELECT year__ceremony_ FROM table_name_69 WHERE original_title = "zona sur" | ### Context: CREATE TABLE table_name_69 (year__ceremony_ VARCHAR, original_title VARCHAR) ### Question: What year was Zona Sur nominated? ### Answer: SELECT year__ceremony_ FROM table_name_69 WHERE original_title = "zona sur" |
What is Dependencia Sexual's film title that was used in its nomination? | CREATE TABLE table_name_2 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) | SELECT film_title_used_in_nomination FROM table_name_2 WHERE original_title = "dependencia sexual" | ### Context: CREATE TABLE table_name_2 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) ### Question: What is Dependencia Sexual's film title that was used in its nomination? ### Answer: SELECT film_title_used_in_nomination FROM table_name_2 WHERE original_title = "dependencia sexual" |
What was Zona Sur's result after being considered for nomination? | CREATE TABLE table_name_36 (result VARCHAR, original_title VARCHAR) | SELECT result FROM table_name_36 WHERE original_title = "zona sur" | ### Context: CREATE TABLE table_name_36 (result VARCHAR, original_title VARCHAR) ### Question: What was Zona Sur's result after being considered for nomination? ### Answer: SELECT result FROM table_name_36 WHERE original_title = "zona sur" |
How many losses did leon patton have with the longest gain higher than 45? | CREATE TABLE table_name_12 (loss VARCHAR, name VARCHAR, long VARCHAR) | SELECT COUNT(loss) FROM table_name_12 WHERE name = "leon patton" AND long > 45 | ### Context: CREATE TABLE table_name_12 (loss VARCHAR, name VARCHAR, long VARCHAR) ### Question: How many losses did leon patton have with the longest gain higher than 45? ### Answer: SELECT COUNT(loss) FROM table_name_12 WHERE name = "leon patton" AND long > 45 |
what is the average top-5 when the cuts made is more than 34? | CREATE TABLE table_name_1 (top_5 INTEGER, cuts_made INTEGER) | SELECT AVG(top_5) FROM table_name_1 WHERE cuts_made > 34 | ### Context: CREATE TABLE table_name_1 (top_5 INTEGER, cuts_made INTEGER) ### Question: what is the average top-5 when the cuts made is more than 34? ### Answer: SELECT AVG(top_5) FROM table_name_1 WHERE cuts_made > 34 |
what is the sum of wins when events is 13 and top-5 is less than 1? | CREATE TABLE table_name_15 (wins INTEGER, events VARCHAR, top_5 VARCHAR) | SELECT SUM(wins) FROM table_name_15 WHERE events = 13 AND top_5 < 1 | ### Context: CREATE TABLE table_name_15 (wins INTEGER, events VARCHAR, top_5 VARCHAR) ### Question: what is the sum of wins when events is 13 and top-5 is less than 1? ### Answer: SELECT SUM(wins) FROM table_name_15 WHERE events = 13 AND top_5 < 1 |
what is the highest events when the cuts made is less than 34, the top-25 is less than 5 and the top-10 is more than 1? | CREATE TABLE table_name_72 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR, top_25 VARCHAR) | SELECT MAX(events) FROM table_name_72 WHERE cuts_made < 34 AND top_25 < 5 AND top_10 > 1 | ### Context: CREATE TABLE table_name_72 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR, top_25 VARCHAR) ### Question: what is the highest events when the cuts made is less than 34, the top-25 is less than 5 and the top-10 is more than 1? ### Answer: SELECT MAX(events) FROM table_name_72 WHERE cuts_made < 34 AND top... |
what is the average top-10 when the cuts made is less than 9 and the events is more than 14? | CREATE TABLE table_name_48 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR) | SELECT AVG(top_10) FROM table_name_48 WHERE cuts_made < 9 AND events > 14 | ### Context: CREATE TABLE table_name_48 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR) ### Question: what is the average top-10 when the cuts made is less than 9 and the events is more than 14? ### Answer: SELECT AVG(top_10) FROM table_name_48 WHERE cuts_made < 9 AND events > 14 |
What is the 2008 for 2009 heartland high tech? | CREATE TABLE table_name_2 (Id VARCHAR) | SELECT 2008 FROM table_name_2 WHERE 2009 = "heartland high tech" | ### Context: CREATE TABLE table_name_2 (Id VARCHAR) ### Question: What is the 2008 for 2009 heartland high tech? ### Answer: SELECT 2008 FROM table_name_2 WHERE 2009 = "heartland high tech" |
What is the 2007 with ch callaway's copyright in 2003? | CREATE TABLE table_name_92 (Id VARCHAR) | SELECT 2007 FROM table_name_92 WHERE 2003 = "ch callaway's copyright" | ### Context: CREATE TABLE table_name_92 (Id VARCHAR) ### Question: What is the 2007 with ch callaway's copyright in 2003? ### Answer: SELECT 2007 FROM table_name_92 WHERE 2003 = "ch callaway's copyright" |
What year is the 2007 big red? | CREATE TABLE table_name_96 (year VARCHAR) | SELECT year FROM table_name_96 WHERE 2007 = "big red" | ### Context: CREATE TABLE table_name_96 (year VARCHAR) ### Question: What year is the 2007 big red? ### Answer: SELECT year FROM table_name_96 WHERE 2007 = "big red" |
What year is the 2004 shake don't stir? | CREATE TABLE table_name_67 (year VARCHAR) | SELECT year FROM table_name_67 WHERE 2004 = "shake don't stir" | ### Context: CREATE TABLE table_name_67 (year VARCHAR) ### Question: What year is the 2004 shake don't stir? ### Answer: SELECT year FROM table_name_67 WHERE 2004 = "shake don't stir" |
What is the 2007 for the 2003 desert prince? | CREATE TABLE table_name_48 (Id VARCHAR) | SELECT 2007 FROM table_name_48 WHERE 2003 = "desert prince" | ### Context: CREATE TABLE table_name_48 (Id VARCHAR) ### Question: What is the 2007 for the 2003 desert prince? ### Answer: SELECT 2007 FROM table_name_48 WHERE 2003 = "desert prince" |
What is the 2008 for the 2009 ch our charming lady? | CREATE TABLE table_name_89 (Id VARCHAR) | SELECT 2008 FROM table_name_89 WHERE 2009 = "ch our charming lady" | ### Context: CREATE TABLE table_name_89 (Id VARCHAR) ### Question: What is the 2008 for the 2009 ch our charming lady? ### Answer: SELECT 2008 FROM table_name_89 WHERE 2009 = "ch our charming lady" |
What is the antiparticle symbol with a rest mess (mev/c2) of .47 ± .33? | CREATE TABLE table_name_16 (antiparticle_symbol VARCHAR, rest_mass___mev___c_2__ VARCHAR) | SELECT antiparticle_symbol FROM table_name_16 WHERE rest_mass___mev___c_2__ = ".47 ± .33" | ### Context: CREATE TABLE table_name_16 (antiparticle_symbol VARCHAR, rest_mass___mev___c_2__ VARCHAR) ### Question: What is the antiparticle symbol with a rest mess (mev/c2) of .47 ± .33? ### Answer: SELECT antiparticle_symbol FROM table_name_16 WHERE rest_mass___mev___c_2__ = ".47 ± .33" |
What was the surface in 1981? | CREATE TABLE table_name_56 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_56 WHERE date = 1981 | ### Context: CREATE TABLE table_name_56 (surface VARCHAR, date VARCHAR) ### Question: What was the surface in 1981? ### Answer: SELECT surface FROM table_name_56 WHERE date = 1981 |
What is the outcome on a hard surface, when the score in the final was 4–6, 3–6? | CREATE TABLE table_name_1 (outcome VARCHAR, surface VARCHAR, score_in_the_final VARCHAR) | SELECT outcome FROM table_name_1 WHERE surface = "hard" AND score_in_the_final = "4–6, 3–6" | ### Context: CREATE TABLE table_name_1 (outcome VARCHAR, surface VARCHAR, score_in_the_final VARCHAR) ### Question: What is the outcome on a hard surface, when the score in the final was 4–6, 3–6? ### Answer: SELECT outcome FROM table_name_1 WHERE surface = "hard" AND score_in_the_final = "4–6, 3–6" |
What is the total championships that the league cup is less than 0? | CREATE TABLE table_name_55 (championship INTEGER, league_cup INTEGER) | SELECT SUM(championship) FROM table_name_55 WHERE league_cup < 0 | ### Context: CREATE TABLE table_name_55 (championship INTEGER, league_cup INTEGER) ### Question: What is the total championships that the league cup is less than 0? ### Answer: SELECT SUM(championship) FROM table_name_55 WHERE league_cup < 0 |
What is the total championships of James Henry that has a league cup more than 1? | CREATE TABLE table_name_4 (championship INTEGER, league_cup VARCHAR, name VARCHAR) | SELECT SUM(championship) FROM table_name_4 WHERE league_cup > 1 AND name = "james henry" | ### Context: CREATE TABLE table_name_4 (championship INTEGER, league_cup VARCHAR, name VARCHAR) ### Question: What is the total championships of James Henry that has a league cup more than 1? ### Answer: SELECT SUM(championship) FROM table_name_4 WHERE league_cup > 1 AND name = "james henry" |
What is the championship of Jem Karacan that has a total of 2 and a league cup more than 0? | CREATE TABLE table_name_10 (championship VARCHAR, name VARCHAR, total VARCHAR, league_cup VARCHAR) | SELECT championship FROM table_name_10 WHERE total = 2 AND league_cup > 0 AND name = "jem karacan" | ### Context: CREATE TABLE table_name_10 (championship VARCHAR, name VARCHAR, total VARCHAR, league_cup VARCHAR) ### Question: What is the championship of Jem Karacan that has a total of 2 and a league cup more than 0? ### Answer: SELECT championship FROM table_name_10 WHERE total = 2 AND league_cup > 0 AND name = "jem ... |
In which season did he have 0 Poles and 19th position in the GP2 Series? | CREATE TABLE table_name_57 (season VARCHAR, position VARCHAR, poles VARCHAR, series VARCHAR) | SELECT season FROM table_name_57 WHERE poles = "0" AND series = "gp2 series" AND position = "19th" | ### Context: CREATE TABLE table_name_57 (season VARCHAR, position VARCHAR, poles VARCHAR, series VARCHAR) ### Question: In which season did he have 0 Poles and 19th position in the GP2 Series? ### Answer: SELECT season FROM table_name_57 WHERE poles = "0" AND series = "gp2 series" AND position = "19th" |
What was his position in 2009 with 1 win? | CREATE TABLE table_name_93 (position VARCHAR, wins VARCHAR, season VARCHAR) | SELECT position FROM table_name_93 WHERE wins = "1" AND season = "2009" | ### Context: CREATE TABLE table_name_93 (position VARCHAR, wins VARCHAR, season VARCHAR) ### Question: What was his position in 2009 with 1 win? ### Answer: SELECT position FROM table_name_93 WHERE wins = "1" AND season = "2009" |
How many races did he do in the year he had 8 points? | CREATE TABLE table_name_47 (races VARCHAR, points VARCHAR) | SELECT races FROM table_name_47 WHERE points = "8" | ### Context: CREATE TABLE table_name_47 (races VARCHAR, points VARCHAR) ### Question: How many races did he do in the year he had 8 points? ### Answer: SELECT races FROM table_name_47 WHERE points = "8" |
What were the points in the year when his Wins were 0, his Podiums were 0, and he drove in 4 races? | CREATE TABLE table_name_60 (points VARCHAR, races VARCHAR, wins VARCHAR, podiums VARCHAR) | SELECT points FROM table_name_60 WHERE wins = "0" AND podiums = "0" AND races = "4" | ### Context: CREATE TABLE table_name_60 (points VARCHAR, races VARCHAR, wins VARCHAR, podiums VARCHAR) ### Question: What were the points in the year when his Wins were 0, his Podiums were 0, and he drove in 4 races? ### Answer: SELECT points FROM table_name_60 WHERE wins = "0" AND podiums = "0" AND races = "4" |
What were the points in the year when his Podiums were 5? | CREATE TABLE table_name_35 (points VARCHAR, podiums VARCHAR) | SELECT points FROM table_name_35 WHERE podiums = "5" | ### Context: CREATE TABLE table_name_35 (points VARCHAR, podiums VARCHAR) ### Question: What were the points in the year when his Podiums were 5? ### Answer: SELECT points FROM table_name_35 WHERE podiums = "5" |
What was the F/Laps when the Wins were 0 and the Position was 4th? | CREATE TABLE table_name_97 (f_laps VARCHAR, wins VARCHAR, position VARCHAR) | SELECT f_laps FROM table_name_97 WHERE wins = "0" AND position = "4th" | ### Context: CREATE TABLE table_name_97 (f_laps VARCHAR, wins VARCHAR, position VARCHAR) ### Question: What was the F/Laps when the Wins were 0 and the Position was 4th? ### Answer: SELECT f_laps FROM table_name_97 WHERE wins = "0" AND position = "4th" |
What was the Result on May 30? | CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_66 WHERE date = "may 30" | ### Context: CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) ### Question: What was the Result on May 30? ### Answer: SELECT result FROM table_name_66 WHERE date = "may 30" |
What was the Result on July 24? | CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_1 WHERE date = "july 24" | ### Context: CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR) ### Question: What was the Result on July 24? ### Answer: SELECT result FROM table_name_1 WHERE date = "july 24" |
What was the Score of the game with a Record of 0-1? | CREATE TABLE table_name_31 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_31 WHERE record = "0-1" | ### Context: CREATE TABLE table_name_31 (score VARCHAR, record VARCHAR) ### Question: What was the Score of the game with a Record of 0-1? ### Answer: SELECT score FROM table_name_31 WHERE record = "0-1" |
What is the Record of the game on June 24? | CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_23 WHERE date = "june 24" | ### Context: CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR) ### Question: What is the Record of the game on June 24? ### Answer: SELECT record FROM table_name_23 WHERE date = "june 24" |
What is the Date of the game with a Loss and Record of 7-9? | CREATE TABLE table_name_91 (date VARCHAR, result VARCHAR, record VARCHAR) | SELECT date FROM table_name_91 WHERE result = "loss" AND record = "7-9" | ### Context: CREATE TABLE table_name_91 (date VARCHAR, result VARCHAR, record VARCHAR) ### Question: What is the Date of the game with a Loss and Record of 7-9? ### Answer: SELECT date FROM table_name_91 WHERE result = "loss" AND record = "7-9" |
What is the Record on July 12? | CREATE TABLE table_name_10 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_10 WHERE date = "july 12" | ### Context: CREATE TABLE table_name_10 (record VARCHAR, date VARCHAR) ### Question: What is the Record on July 12? ### Answer: SELECT record FROM table_name_10 WHERE date = "july 12" |
What player has a total of 290 points? | CREATE TABLE table_name_46 (player VARCHAR, total VARCHAR) | SELECT player FROM table_name_46 WHERE total = 290 | ### Context: CREATE TABLE table_name_46 (player VARCHAR, total VARCHAR) ### Question: What player has a total of 290 points? ### Answer: SELECT player FROM table_name_46 WHERE total = 290 |
What is the year that Hale Irwin won with 285 points? | CREATE TABLE table_name_80 (year_s__won VARCHAR, total VARCHAR, player VARCHAR) | SELECT year_s__won FROM table_name_80 WHERE total = 285 AND player = "hale irwin" | ### Context: CREATE TABLE table_name_80 (year_s__won VARCHAR, total VARCHAR, player VARCHAR) ### Question: What is the year that Hale Irwin won with 285 points? ### Answer: SELECT year_s__won FROM table_name_80 WHERE total = 285 AND player = "hale irwin" |
Which year has a 2011 of 1r? | CREATE TABLE table_name_47 (Id VARCHAR) | SELECT 2008 FROM table_name_47 WHERE 2011 = "1r" | ### Context: CREATE TABLE table_name_47 (Id VARCHAR) ### Question: Which year has a 2011 of 1r? ### Answer: SELECT 2008 FROM table_name_47 WHERE 2011 = "1r" |
Which tournament has a 2013 of 1r, and a 2012 of 1r? | CREATE TABLE table_name_38 (tournament VARCHAR) | SELECT tournament FROM table_name_38 WHERE 2013 = "1r" AND 2012 = "1r" | ### Context: CREATE TABLE table_name_38 (tournament VARCHAR) ### Question: Which tournament has a 2013 of 1r, and a 2012 of 1r? ### Answer: SELECT tournament FROM table_name_38 WHERE 2013 = "1r" AND 2012 = "1r" |
Which year has a 2003 of lq? | CREATE TABLE table_name_82 (Id VARCHAR) | SELECT 2009 FROM table_name_82 WHERE 2003 = "lq" | ### Context: CREATE TABLE table_name_82 (Id VARCHAR) ### Question: Which year has a 2003 of lq? ### Answer: SELECT 2009 FROM table_name_82 WHERE 2003 = "lq" |
WHAT IS THE WEEK WITH AN ATTENDANCE OF 75,555? | CREATE TABLE table_name_23 (week INTEGER, attendance VARCHAR) | SELECT SUM(week) FROM table_name_23 WHERE attendance = "75,555" | ### Context: CREATE TABLE table_name_23 (week INTEGER, attendance VARCHAR) ### Question: WHAT IS THE WEEK WITH AN ATTENDANCE OF 75,555? ### Answer: SELECT SUM(week) FROM table_name_23 WHERE attendance = "75,555" |
WHAT IS THE RESULT WHEN THE OPPONENT WAS CHICAGO BEARS? | CREATE TABLE table_name_18 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_18 WHERE opponent = "chicago bears" | ### Context: CREATE TABLE table_name_18 (result VARCHAR, opponent VARCHAR) ### Question: WHAT IS THE RESULT WHEN THE OPPONENT WAS CHICAGO BEARS? ### Answer: SELECT result FROM table_name_18 WHERE opponent = "chicago bears" |
WHAT IS THE TV TIME WOTH A WEEK BIGGER THAN 15, WITH THE OAKLAND RAIDERS AS OPPONENT? | CREATE TABLE table_name_33 (tv_time VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT tv_time FROM table_name_33 WHERE week > 15 AND opponent = "oakland raiders" | ### Context: CREATE TABLE table_name_33 (tv_time VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: WHAT IS THE TV TIME WOTH A WEEK BIGGER THAN 15, WITH THE OAKLAND RAIDERS AS OPPONENT? ### Answer: SELECT tv_time FROM table_name_33 WHERE week > 15 AND opponent = "oakland raiders" |
WHAT IS THE TV TIME FOR NOVEMBER 10, 1996? | CREATE TABLE table_name_93 (tv_time VARCHAR, date VARCHAR) | SELECT tv_time FROM table_name_93 WHERE date = "november 10, 1996" | ### Context: CREATE TABLE table_name_93 (tv_time VARCHAR, date VARCHAR) ### Question: WHAT IS THE TV TIME FOR NOVEMBER 10, 1996? ### Answer: SELECT tv_time FROM table_name_93 WHERE date = "november 10, 1996" |
What was the date for the match where Tweedie-Yates' partner was jodi kenoyer? | CREATE TABLE table_name_18 (date VARCHAR, partner VARCHAR) | SELECT date FROM table_name_18 WHERE partner = "jodi kenoyer" | ### Context: CREATE TABLE table_name_18 (date VARCHAR, partner VARCHAR) ### Question: What was the date for the match where Tweedie-Yates' partner was jodi kenoyer? ### Answer: SELECT date FROM table_name_18 WHERE partner = "jodi kenoyer" |
Who were the opponents during the final when christina wheeler was partner? | CREATE TABLE table_name_87 (opponents_in_the_final VARCHAR, partner VARCHAR) | SELECT opponents_in_the_final FROM table_name_87 WHERE partner = "christina wheeler" | ### Context: CREATE TABLE table_name_87 (opponents_in_the_final VARCHAR, partner VARCHAR) ### Question: Who were the opponents during the final when christina wheeler was partner? ### Answer: SELECT opponents_in_the_final FROM table_name_87 WHERE partner = "christina wheeler" |
What is Country, when Total is less than 290, and when Year(s) Won is 1960? | CREATE TABLE table_name_29 (country VARCHAR, total VARCHAR, year_s__won VARCHAR) | SELECT country FROM table_name_29 WHERE total < 290 AND year_s__won = "1960" | ### Context: CREATE TABLE table_name_29 (country VARCHAR, total VARCHAR, year_s__won VARCHAR) ### Question: What is Country, when Total is less than 290, and when Year(s) Won is 1960? ### Answer: SELECT country FROM table_name_29 WHERE total < 290 AND year_s__won = "1960" |
What is the total number of Total, when To Par is 12? | CREATE TABLE table_name_71 (total VARCHAR, to_par VARCHAR) | SELECT COUNT(total) FROM table_name_71 WHERE to_par = 12 | ### Context: CREATE TABLE table_name_71 (total VARCHAR, to_par VARCHAR) ### Question: What is the total number of Total, when To Par is 12? ### Answer: SELECT COUNT(total) FROM table_name_71 WHERE to_par = 12 |
What is Player, when Total is 292? | CREATE TABLE table_name_36 (player VARCHAR, total VARCHAR) | SELECT player FROM table_name_36 WHERE total = 292 | ### Context: CREATE TABLE table_name_36 (player VARCHAR, total VARCHAR) ### Question: What is Player, when Total is 292? ### Answer: SELECT player FROM table_name_36 WHERE total = 292 |
What is Player, when Year(s) Won is 1955? | CREATE TABLE table_name_84 (player VARCHAR, year_s__won VARCHAR) | SELECT player FROM table_name_84 WHERE year_s__won = "1955" | ### Context: CREATE TABLE table_name_84 (player VARCHAR, year_s__won VARCHAR) ### Question: What is Player, when Year(s) Won is 1955? ### Answer: SELECT player FROM table_name_84 WHERE year_s__won = "1955" |
Which Oil Pattern has a Winner (Title #) of mike wolfe (3)? | CREATE TABLE table_name_58 (oil_pattern VARCHAR, winner__title__number_ VARCHAR) | SELECT oil_pattern FROM table_name_58 WHERE winner__title__number_ = "mike wolfe (3)" | ### Context: CREATE TABLE table_name_58 (oil_pattern VARCHAR, winner__title__number_ VARCHAR) ### Question: Which Oil Pattern has a Winner (Title #) of mike wolfe (3)? ### Answer: SELECT oil_pattern FROM table_name_58 WHERE winner__title__number_ = "mike wolfe (3)" |
Which Score has an Event of constructionjobs.com classic? | CREATE TABLE table_name_74 (score VARCHAR, event VARCHAR) | SELECT score FROM table_name_74 WHERE event = "constructionjobs.com classic" | ### Context: CREATE TABLE table_name_74 (score VARCHAR, event VARCHAR) ### Question: Which Score has an Event of constructionjobs.com classic? ### Answer: SELECT score FROM table_name_74 WHERE event = "constructionjobs.com classic" |
Name the Event which has a Winner (Title #) of parker bohn iii (31)? | CREATE TABLE table_name_90 (event VARCHAR, winner__title__number_ VARCHAR) | SELECT event FROM table_name_90 WHERE winner__title__number_ = "parker bohn iii (31)" | ### Context: CREATE TABLE table_name_90 (event VARCHAR, winner__title__number_ VARCHAR) ### Question: Name the Event which has a Winner (Title #) of parker bohn iii (31)? ### Answer: SELECT event FROM table_name_90 WHERE winner__title__number_ = "parker bohn iii (31)" |
Name the Date when has robert smith (7)? | CREATE TABLE table_name_8 (date VARCHAR, winner__title__number_ VARCHAR) | SELECT date FROM table_name_8 WHERE winner__title__number_ = "robert smith (7)" | ### Context: CREATE TABLE table_name_8 (date VARCHAR, winner__title__number_ VARCHAR) ### Question: Name the Date when has robert smith (7)? ### Answer: SELECT date FROM table_name_8 WHERE winner__title__number_ = "robert smith (7)" |
Name the Event which has a Score of 209-197? | CREATE TABLE table_name_24 (event VARCHAR, score VARCHAR) | SELECT event FROM table_name_24 WHERE score = "209-197" | ### Context: CREATE TABLE table_name_24 (event VARCHAR, score VARCHAR) ### Question: Name the Event which has a Score of 209-197? ### Answer: SELECT event FROM table_name_24 WHERE score = "209-197" |
Name the Date which has a Oil Pattern of chameleon, and a Event of lake county indiana classic? | CREATE TABLE table_name_51 (date VARCHAR, oil_pattern VARCHAR, event VARCHAR) | SELECT date FROM table_name_51 WHERE oil_pattern = "chameleon" AND event = "lake county indiana classic" | ### Context: CREATE TABLE table_name_51 (date VARCHAR, oil_pattern VARCHAR, event VARCHAR) ### Question: Name the Date which has a Oil Pattern of chameleon, and a Event of lake county indiana classic? ### Answer: SELECT date FROM table_name_51 WHERE oil_pattern = "chameleon" AND event = "lake county indiana classic" |
Which Rank has a Nation of south korea, and a Silver larger than 0? | CREATE TABLE table_name_53 (rank INTEGER, nation VARCHAR, silver VARCHAR) | SELECT SUM(rank) FROM table_name_53 WHERE nation = "south korea" AND silver > 0 | ### Context: CREATE TABLE table_name_53 (rank INTEGER, nation VARCHAR, silver VARCHAR) ### Question: Which Rank has a Nation of south korea, and a Silver larger than 0? ### Answer: SELECT SUM(rank) FROM table_name_53 WHERE nation = "south korea" AND silver > 0 |
Which Bronze has a Rank of 3, and a Silver larger than 0? | CREATE TABLE table_name_39 (bronze INTEGER, rank VARCHAR, silver VARCHAR) | SELECT MIN(bronze) FROM table_name_39 WHERE rank = 3 AND silver > 0 | ### Context: CREATE TABLE table_name_39 (bronze INTEGER, rank VARCHAR, silver VARCHAR) ### Question: Which Bronze has a Rank of 3, and a Silver larger than 0? ### Answer: SELECT MIN(bronze) FROM table_name_39 WHERE rank = 3 AND silver > 0 |
Who was the opponent when there was a TKO method? | CREATE TABLE table_name_32 (opponent VARCHAR, method VARCHAR) | SELECT opponent FROM table_name_32 WHERE method = "tko" | ### Context: CREATE TABLE table_name_32 (opponent VARCHAR, method VARCHAR) ### Question: Who was the opponent when there was a TKO method? ### Answer: SELECT opponent FROM table_name_32 WHERE method = "tko" |
What was the round that Sergio Vinagre had a time of 5:00? | CREATE TABLE table_name_36 (round INTEGER, time VARCHAR, opponent VARCHAR) | SELECT MAX(round) FROM table_name_36 WHERE time = "5:00" AND opponent = "sergio vinagre" | ### Context: CREATE TABLE table_name_36 (round INTEGER, time VARCHAR, opponent VARCHAR) ### Question: What was the round that Sergio Vinagre had a time of 5:00? ### Answer: SELECT MAX(round) FROM table_name_36 WHERE time = "5:00" AND opponent = "sergio vinagre" |
What round was it when the method was TKO (would not stand up from Butt Scoot)? | CREATE TABLE table_name_89 (round INTEGER, method VARCHAR) | SELECT AVG(round) FROM table_name_89 WHERE method = "tko (would not stand up from butt scoot)" | ### Context: CREATE TABLE table_name_89 (round INTEGER, method VARCHAR) ### Question: What round was it when the method was TKO (would not stand up from Butt Scoot)? ### Answer: SELECT AVG(round) FROM table_name_89 WHERE method = "tko (would not stand up from butt scoot)" |
What was the record after the game before Jan 7? | CREATE TABLE table_name_1 (record VARCHAR, january INTEGER) | SELECT record FROM table_name_1 WHERE january < 7 | ### Context: CREATE TABLE table_name_1 (record VARCHAR, january INTEGER) ### Question: What was the record after the game before Jan 7? ### Answer: SELECT record FROM table_name_1 WHERE january < 7 |
Which TV season has a Season larger than 2, and a Ranking of #5? | CREATE TABLE table_name_4 (tv_season VARCHAR, season VARCHAR, ranking VARCHAR) | SELECT tv_season FROM table_name_4 WHERE season > 2 AND ranking = "#5" | ### Context: CREATE TABLE table_name_4 (tv_season VARCHAR, season VARCHAR, ranking VARCHAR) ### Question: Which TV season has a Season larger than 2, and a Ranking of #5? ### Answer: SELECT tv_season FROM table_name_4 WHERE season > 2 AND ranking = "#5" |
Which TV season has a Season smaller than 8, and a Household (in millions) of 15.92 (17.1 rating)? | CREATE TABLE table_name_61 (tv_season VARCHAR, season VARCHAR, households__in_millions_ VARCHAR) | SELECT tv_season FROM table_name_61 WHERE season < 8 AND households__in_millions_ = "15.92 (17.1 rating)" | ### Context: CREATE TABLE table_name_61 (tv_season VARCHAR, season VARCHAR, households__in_millions_ VARCHAR) ### Question: Which TV season has a Season smaller than 8, and a Household (in millions) of 15.92 (17.1 rating)? ### Answer: SELECT tv_season FROM table_name_61 WHERE season < 8 AND households__in_millions_ = "... |
Which TV season has Households (in millions) of 30.503 (34.9 rating)? | CREATE TABLE table_name_80 (tv_season VARCHAR, households__in_millions_ VARCHAR) | SELECT tv_season FROM table_name_80 WHERE households__in_millions_ = "30.503 (34.9 rating)" | ### Context: CREATE TABLE table_name_80 (tv_season VARCHAR, households__in_millions_ VARCHAR) ### Question: Which TV season has Households (in millions) of 30.503 (34.9 rating)? ### Answer: SELECT tv_season FROM table_name_80 WHERE households__in_millions_ = "30.503 (34.9 rating)" |
What is the total number of area listed for cannonvale with a population less than 409? | CREATE TABLE table_name_96 (area__km_2__ VARCHAR, population VARCHAR, place VARCHAR) | SELECT COUNT(area__km_2__) FROM table_name_96 WHERE population < 409 AND place = "cannonvale" | ### Context: CREATE TABLE table_name_96 (area__km_2__ VARCHAR, population VARCHAR, place VARCHAR) ### Question: What is the total number of area listed for cannonvale with a population less than 409? ### Answer: SELECT COUNT(area__km_2__) FROM table_name_96 WHERE population < 409 AND place = "cannonvale" |
What is the lowest code number for the remainder of the municipality that has an area bigger than 15.34 squared kilometers, a population greater than 762 and a language of xhosa spoken? | CREATE TABLE table_name_3 (code INTEGER, place VARCHAR, area__km_2__ VARCHAR, population VARCHAR, most_spoken_language VARCHAR) | SELECT MIN(code) FROM table_name_3 WHERE population > 762 AND most_spoken_language = "xhosa" AND area__km_2__ > 15.34 AND place = "remainder of the municipality" | ### Context: CREATE TABLE table_name_3 (code INTEGER, place VARCHAR, area__km_2__ VARCHAR, population VARCHAR, most_spoken_language VARCHAR) ### Question: What is the lowest code number for the remainder of the municipality that has an area bigger than 15.34 squared kilometers, a population greater than 762 and a langu... |
What is the total code number for places with a population greater than 87,585? | CREATE TABLE table_name_41 (code VARCHAR, population INTEGER) | SELECT COUNT(code) FROM table_name_41 WHERE population > 87 OFFSET 585 | ### Context: CREATE TABLE table_name_41 (code VARCHAR, population INTEGER) ### Question: What is the total code number for places with a population greater than 87,585? ### Answer: SELECT COUNT(code) FROM table_name_41 WHERE population > 87 OFFSET 585 |
What is the lowest area for cannonvale that speaks afrikaans? | CREATE TABLE table_name_31 (area__km_2__ INTEGER, most_spoken_language VARCHAR, place VARCHAR) | SELECT MIN(area__km_2__) FROM table_name_31 WHERE most_spoken_language = "afrikaans" AND place = "cannonvale" | ### Context: CREATE TABLE table_name_31 (area__km_2__ INTEGER, most_spoken_language VARCHAR, place VARCHAR) ### Question: What is the lowest area for cannonvale that speaks afrikaans? ### Answer: SELECT MIN(area__km_2__) FROM table_name_31 WHERE most_spoken_language = "afrikaans" AND place = "cannonvale" |
Which Score has a Location of richfield coliseum? | CREATE TABLE table_name_96 (score VARCHAR, location VARCHAR) | SELECT score FROM table_name_96 WHERE location = "richfield coliseum" | ### Context: CREATE TABLE table_name_96 (score VARCHAR, location VARCHAR) ### Question: Which Score has a Location of richfield coliseum? ### Answer: SELECT score FROM table_name_96 WHERE location = "richfield coliseum" |
Where was game 78 held? | CREATE TABLE table_name_62 (location VARCHAR, game VARCHAR) | SELECT location FROM table_name_62 WHERE game = 78 | ### Context: CREATE TABLE table_name_62 (location VARCHAR, game VARCHAR) ### Question: Where was game 78 held? ### Answer: SELECT location FROM table_name_62 WHERE game = 78 |
When was the score 56-26? | CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_2 WHERE record = "56-26" | ### Context: CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR) ### Question: When was the score 56-26? ### Answer: SELECT date FROM table_name_2 WHERE record = "56-26" |
Which Opponent has a Score of 92-111? | CREATE TABLE table_name_44 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_44 WHERE score = "92-111" | ### Context: CREATE TABLE table_name_44 (opponent VARCHAR, score VARCHAR) ### Question: Which Opponent has a Score of 92-111? ### Answer: SELECT opponent FROM table_name_44 WHERE score = "92-111" |
What was the Opponent when the Cavaliers had a Record of 3-9? | CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_10 WHERE record = "3-9" | ### Context: CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR) ### Question: What was the Opponent when the Cavaliers had a Record of 3-9? ### Answer: SELECT opponent FROM table_name_10 WHERE record = "3-9" |
On what Date was the Score 105-128? | CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_14 WHERE score = "105-128" | ### Context: CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR) ### Question: On what Date was the Score 105-128? ### Answer: SELECT date FROM table_name_14 WHERE score = "105-128" |
What is the Opponent of the game with a H/A/N of H and Score of 120-99? | CREATE TABLE table_name_89 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_89 WHERE h_a_n = "h" AND score = "120-99" | ### Context: CREATE TABLE table_name_89 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR) ### Question: What is the Opponent of the game with a H/A/N of H and Score of 120-99? ### Answer: SELECT opponent FROM table_name_89 WHERE h_a_n = "h" AND score = "120-99" |
On what Date was the Score 106-104 against the Portland Trail Blazers? | CREATE TABLE table_name_30 (date VARCHAR, opponent VARCHAR, score VARCHAR) | SELECT date FROM table_name_30 WHERE opponent = "portland trail blazers" AND score = "106-104" | ### Context: CREATE TABLE table_name_30 (date VARCHAR, opponent VARCHAR, score VARCHAR) ### Question: On what Date was the Score 106-104 against the Portland Trail Blazers? ### Answer: SELECT date FROM table_name_30 WHERE opponent = "portland trail blazers" AND score = "106-104" |
On what Date was the Score 105-118 and the H/A/N A? | CREATE TABLE table_name_80 (date VARCHAR, h_a_n VARCHAR, score VARCHAR) | SELECT date FROM table_name_80 WHERE h_a_n = "a" AND score = "105-118" | ### Context: CREATE TABLE table_name_80 (date VARCHAR, h_a_n VARCHAR, score VARCHAR) ### Question: On what Date was the Score 105-118 and the H/A/N A? ### Answer: SELECT date FROM table_name_80 WHERE h_a_n = "a" AND score = "105-118" |
Which Selection has a College of texas a&m? | CREATE TABLE table_name_71 (selection INTEGER, college VARCHAR) | SELECT SUM(selection) FROM table_name_71 WHERE college = "texas a&m" | ### Context: CREATE TABLE table_name_71 (selection INTEGER, college VARCHAR) ### Question: Which Selection has a College of texas a&m? ### Answer: SELECT SUM(selection) FROM table_name_71 WHERE college = "texas a&m" |
Which Selection has a Player of jamaar taylor, and a Round larger than 6? | CREATE TABLE table_name_33 (selection INTEGER, player VARCHAR, round VARCHAR) | SELECT MIN(selection) FROM table_name_33 WHERE player = "jamaar taylor" AND round > 6 | ### Context: CREATE TABLE table_name_33 (selection INTEGER, player VARCHAR, round VARCHAR) ### Question: Which Selection has a Player of jamaar taylor, and a Round larger than 6? ### Answer: SELECT MIN(selection) FROM table_name_33 WHERE player = "jamaar taylor" AND round > 6 |
Which Position has a Player of gibril wilson? | CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_29 WHERE player = "gibril wilson" | ### Context: CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR) ### Question: Which Position has a Player of gibril wilson? ### Answer: SELECT position FROM table_name_29 WHERE player = "gibril wilson" |
Which Position has a Round larger than 5, and a Selection of 168? | CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR, selection VARCHAR) | SELECT position FROM table_name_13 WHERE round > 5 AND selection = 168 | ### Context: CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR, selection VARCHAR) ### Question: Which Position has a Round larger than 5, and a Selection of 168? ### Answer: SELECT position FROM table_name_13 WHERE round > 5 AND selection = 168 |
What is Jillian Evans highest number of seats? | CREATE TABLE table_name_45 (number_of_seats INTEGER, leader VARCHAR) | SELECT MAX(number_of_seats) FROM table_name_45 WHERE leader = "jillian evans" | ### Context: CREATE TABLE table_name_45 (number_of_seats INTEGER, leader VARCHAR) ### Question: What is Jillian Evans highest number of seats? ### Answer: SELECT MAX(number_of_seats) FROM table_name_45 WHERE leader = "jillian evans" |
Which party does Timothy Kirkhope lead? | CREATE TABLE table_name_50 (party VARCHAR, leader VARCHAR) | SELECT party FROM table_name_50 WHERE leader = "timothy kirkhope" | ### Context: CREATE TABLE table_name_50 (party VARCHAR, leader VARCHAR) ### Question: Which party does Timothy Kirkhope lead? ### Answer: SELECT party FROM table_name_50 WHERE leader = "timothy kirkhope" |
What is Daultan Leveille's Position? | CREATE TABLE table_name_68 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_68 WHERE player = "daultan leveille" | ### Context: CREATE TABLE table_name_68 (position VARCHAR, player VARCHAR) ### Question: What is Daultan Leveille's Position? ### Answer: SELECT position FROM table_name_68 WHERE player = "daultan leveille" |
What is the Player in Round 5? | CREATE TABLE table_name_23 (player VARCHAR, round VARCHAR) | SELECT player FROM table_name_23 WHERE round = 5 | ### Context: CREATE TABLE table_name_23 (player VARCHAR, round VARCHAR) ### Question: What is the Player in Round 5? ### Answer: SELECT player FROM table_name_23 WHERE round = 5 |
What is the highest rebounds for game 81? | CREATE TABLE table_name_58 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_name_58 WHERE game = 81 | ### Context: CREATE TABLE table_name_58 (high_rebounds VARCHAR, game VARCHAR) ### Question: What is the highest rebounds for game 81? ### Answer: SELECT high_rebounds FROM table_name_58 WHERE game = 81 |
Who was the winner of the Miami tournament where Elena Dementieva was a finalist? | CREATE TABLE table_name_25 (winner VARCHAR, finalist VARCHAR, tournament VARCHAR) | SELECT winner FROM table_name_25 WHERE finalist = "elena dementieva" AND tournament = "miami" | ### Context: CREATE TABLE table_name_25 (winner VARCHAR, finalist VARCHAR, tournament VARCHAR) ### Question: Who was the winner of the Miami tournament where Elena Dementieva was a finalist? ### Answer: SELECT winner FROM table_name_25 WHERE finalist = "elena dementieva" AND tournament = "miami" |
Who was the finalist of the hard surface tournament in Miami? | CREATE TABLE table_name_66 (finalist VARCHAR, surface VARCHAR, tournament VARCHAR) | SELECT finalist FROM table_name_66 WHERE surface = "hard" AND tournament = "miami" | ### Context: CREATE TABLE table_name_66 (finalist VARCHAR, surface VARCHAR, tournament VARCHAR) ### Question: Who was the finalist of the hard surface tournament in Miami? ### Answer: SELECT finalist FROM table_name_66 WHERE surface = "hard" AND tournament = "miami" |
Who were the semifinalists in the Rome tournament? | CREATE TABLE table_name_6 (semifinalists VARCHAR, tournament VARCHAR) | SELECT semifinalists FROM table_name_6 WHERE tournament = "rome" | ### Context: CREATE TABLE table_name_6 (semifinalists VARCHAR, tournament VARCHAR) ### Question: Who were the semifinalists in the Rome tournament? ### Answer: SELECT semifinalists FROM table_name_6 WHERE tournament = "rome" |
What is the resolution of the camera that has 6726 x 5040 pixels and a model of afi 7? | CREATE TABLE table_name_65 (resolution VARCHAR, active_pixels VARCHAR, model VARCHAR) | SELECT resolution FROM table_name_65 WHERE active_pixels = "6726 x 5040" AND model = "afi 7" | ### Context: CREATE TABLE table_name_65 (resolution VARCHAR, active_pixels VARCHAR, model VARCHAR) ### Question: What is the resolution of the camera that has 6726 x 5040 pixels and a model of afi 7? ### Answer: SELECT resolution FROM table_name_65 WHERE active_pixels = "6726 x 5040" AND model = "afi 7" |
Which model has a sensor sized 48x36 mm, pixels of 6726 x 5040, and a 33 mp resolution? | CREATE TABLE table_name_87 (model VARCHAR, resolution VARCHAR, sensor_size VARCHAR, active_pixels VARCHAR) | SELECT model FROM table_name_87 WHERE sensor_size = "48x36 mm" AND active_pixels = "6726 x 5040" AND resolution = "33 mp" | ### Context: CREATE TABLE table_name_87 (model VARCHAR, resolution VARCHAR, sensor_size VARCHAR, active_pixels VARCHAR) ### Question: Which model has a sensor sized 48x36 mm, pixels of 6726 x 5040, and a 33 mp resolution? ### Answer: SELECT model FROM table_name_87 WHERE sensor_size = "48x36 mm" AND active_pixels = "67... |
What are the active pixels of the cantare model? | CREATE TABLE table_name_10 (active_pixels VARCHAR, model VARCHAR) | SELECT active_pixels FROM table_name_10 WHERE model = "cantare" | ### Context: CREATE TABLE table_name_10 (active_pixels VARCHAR, model VARCHAR) ### Question: What are the active pixels of the cantare model? ### Answer: SELECT active_pixels FROM table_name_10 WHERE model = "cantare" |
What are the active pixels of the c-most model camera? | CREATE TABLE table_name_96 (active_pixels VARCHAR, model VARCHAR) | SELECT active_pixels FROM table_name_96 WHERE model = "c-most" | ### Context: CREATE TABLE table_name_96 (active_pixels VARCHAR, model VARCHAR) ### Question: What are the active pixels of the c-most model camera? ### Answer: SELECT active_pixels FROM table_name_96 WHERE model = "c-most" |
Which Rank has a Third of 2, and Winners smaller than 2? | CREATE TABLE table_name_98 (rank INTEGER, third VARCHAR, winners VARCHAR) | SELECT AVG(rank) FROM table_name_98 WHERE third = 2 AND winners < 2 | ### Context: CREATE TABLE table_name_98 (rank INTEGER, third VARCHAR, winners VARCHAR) ### Question: Which Rank has a Third of 2, and Winners smaller than 2? ### Answer: SELECT AVG(rank) FROM table_name_98 WHERE third = 2 AND winners < 2 |
How many Winners have a Third of 1, and Runners-up smaller than 0? | CREATE TABLE table_name_27 (winners VARCHAR, third VARCHAR, runners_up VARCHAR) | SELECT COUNT(winners) FROM table_name_27 WHERE third = 1 AND runners_up < 0 | ### Context: CREATE TABLE table_name_27 (winners VARCHAR, third VARCHAR, runners_up VARCHAR) ### Question: How many Winners have a Third of 1, and Runners-up smaller than 0? ### Answer: SELECT COUNT(winners) FROM table_name_27 WHERE third = 1 AND runners_up < 0 |
Which Third has Runners-up of 0, and Winners of 0, and a Club of far rabat? | CREATE TABLE table_name_4 (third INTEGER, club VARCHAR, runners_up VARCHAR, winners VARCHAR) | SELECT AVG(third) FROM table_name_4 WHERE runners_up = 0 AND winners = 0 AND club = "far rabat" | ### Context: CREATE TABLE table_name_4 (third INTEGER, club VARCHAR, runners_up VARCHAR, winners VARCHAR) ### Question: Which Third has Runners-up of 0, and Winners of 0, and a Club of far rabat? ### Answer: SELECT AVG(third) FROM table_name_4 WHERE runners_up = 0 AND winners = 0 AND club = "far rabat" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.