question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What's the name of the tournament that Gianni Ocleppo was the runner-up? | CREATE TABLE table_name_80 (tournament_name VARCHAR, runners_up VARCHAR) | SELECT tournament_name FROM table_name_80 WHERE runners_up = "gianni ocleppo" | ### Context: CREATE TABLE table_name_80 (tournament_name VARCHAR, runners_up VARCHAR) ### Question: What's the name of the tournament that Gianni Ocleppo was the runner-up? ### Answer: SELECT tournament_name FROM table_name_80 WHERE runners_up = "gianni ocleppo" |
What is the lowest percentage of wins for 6½ games and more than 77 total wins? | CREATE TABLE table_name_63 (win_percentage INTEGER, games_behind VARCHAR, wins VARCHAR) | SELECT MIN(win_percentage) FROM table_name_63 WHERE games_behind = "6½" AND wins > 77 | ### Context: CREATE TABLE table_name_63 (win_percentage INTEGER, games_behind VARCHAR, wins VARCHAR) ### Question: What is the lowest percentage of wins for 6½ games and more than 77 total wins? ### Answer: SELECT MIN(win_percentage) FROM table_name_63 WHERE games_behind = "6½" AND wins > 77 |
What is the score of the competition on November 10? | CREATE TABLE table_name_90 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_90 WHERE date = "november 10" | ### Context: CREATE TABLE table_name_90 (score VARCHAR, date VARCHAR) ### Question: What is the score of the competition on November 10? ### Answer: SELECT score FROM table_name_90 WHERE date = "november 10" |
Who is the visitor when the record is 2-1? | CREATE TABLE table_name_95 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_95 WHERE record = "2-1" | ### Context: CREATE TABLE table_name_95 (visitor VARCHAR, record VARCHAR) ### Question: Who is the visitor when the record is 2-1? ### Answer: SELECT visitor FROM table_name_95 WHERE record = "2-1" |
Who is the home team when the score is 81-80? | CREATE TABLE table_name_56 (home VARCHAR, score VARCHAR) | SELECT home FROM table_name_56 WHERE score = "81-80" | ### Context: CREATE TABLE table_name_56 (home VARCHAR, score VARCHAR) ### Question: Who is the home team when the score is 81-80? ### Answer: SELECT home FROM table_name_56 WHERE score = "81-80" |
How many Gold medals did Japan receive who had a Total of more than 1 medals? | CREATE TABLE table_name_39 (gold INTEGER, nation VARCHAR, total VARCHAR) | SELECT SUM(gold) FROM table_name_39 WHERE nation = "japan" AND total > 1 | ### Context: CREATE TABLE table_name_39 (gold INTEGER, nation VARCHAR, total VARCHAR) ### Question: How many Gold medals did Japan receive who had a Total of more than 1 medals? ### Answer: SELECT SUM(gold) FROM table_name_39 WHERE nation = "japan" AND total > 1 |
What time (cst) has and NFL recap of recap with october 19, 2008 as the date? | CREATE TABLE table_name_75 (time__cst_ VARCHAR, nfl_recap VARCHAR, date VARCHAR) | SELECT time__cst_ FROM table_name_75 WHERE nfl_recap = "recap" AND date = "october 19, 2008" | ### Context: CREATE TABLE table_name_75 (time__cst_ VARCHAR, nfl_recap VARCHAR, date VARCHAR) ### Question: What time (cst) has and NFL recap of recap with october 19, 2008 as the date? ### Answer: SELECT time__cst_ FROM table_name_75 WHERE nfl_recap = "recap" AND date = "october 19, 2008" |
Which week has giants stadium as the game site? | CREATE TABLE table_name_57 (week VARCHAR, game_site VARCHAR) | SELECT week FROM table_name_57 WHERE game_site = "giants stadium" | ### Context: CREATE TABLE table_name_57 (week VARCHAR, game_site VARCHAR) ### Question: Which week has giants stadium as the game site? ### Answer: SELECT week FROM table_name_57 WHERE game_site = "giants stadium" |
What is the lowest week that has 7:15 p.m. as the time (cst) and fedexfield as the game site? | CREATE TABLE table_name_53 (week INTEGER, time__cst_ VARCHAR, game_site VARCHAR) | SELECT MIN(week) FROM table_name_53 WHERE time__cst_ = "7:15 p.m." AND game_site = "fedexfield" | ### Context: CREATE TABLE table_name_53 (week INTEGER, time__cst_ VARCHAR, game_site VARCHAR) ### Question: What is the lowest week that has 7:15 p.m. as the time (cst) and fedexfield as the game site? ### Answer: SELECT MIN(week) FROM table_name_53 WHERE time__cst_ = "7:15 p.m." AND game_site = "fedexfield" |
What office was law preservation ticket holder William E. Barron running for? | CREATE TABLE table_name_51 (office VARCHAR, law_preservation_ticket VARCHAR) | SELECT office FROM table_name_51 WHERE law_preservation_ticket = "william e. barron" | ### Context: CREATE TABLE table_name_51 (office VARCHAR, law_preservation_ticket VARCHAR) ### Question: What office was law preservation ticket holder William E. Barron running for? ### Answer: SELECT office FROM table_name_51 WHERE law_preservation_ticket = "william e. barron" |
Who was the constitutional ticken when Charles B. Sears was the republican ticket? | CREATE TABLE table_name_51 (constitutional_ticket VARCHAR, republican_ticket VARCHAR) | SELECT constitutional_ticket FROM table_name_51 WHERE republican_ticket = "charles b. sears" | ### Context: CREATE TABLE table_name_51 (constitutional_ticket VARCHAR, republican_ticket VARCHAR) ### Question: Who was the constitutional ticken when Charles B. Sears was the republican ticket? ### Answer: SELECT constitutional_ticket FROM table_name_51 WHERE republican_ticket = "charles b. sears" |
Who was the constitutional ticket when william karlin was the socialist ticket? | CREATE TABLE table_name_95 (constitutional_ticket VARCHAR, socialist_ticket VARCHAR) | SELECT constitutional_ticket FROM table_name_95 WHERE socialist_ticket = "william karlin" | ### Context: CREATE TABLE table_name_95 (constitutional_ticket VARCHAR, socialist_ticket VARCHAR) ### Question: Who was the constitutional ticket when william karlin was the socialist ticket? ### Answer: SELECT constitutional_ticket FROM table_name_95 WHERE socialist_ticket = "william karlin" |
What was the margin of victory on Mar 18, 1979? | CREATE TABLE table_name_69 (margin_of_victory VARCHAR, date VARCHAR) | SELECT margin_of_victory FROM table_name_69 WHERE date = "mar 18, 1979" | ### Context: CREATE TABLE table_name_69 (margin_of_victory VARCHAR, date VARCHAR) ### Question: What was the margin of victory on Mar 18, 1979? ### Answer: SELECT margin_of_victory FROM table_name_69 WHERE date = "mar 18, 1979" |
What is the comp for the year 1989? | CREATE TABLE table_name_42 (comp VARCHAR, year VARCHAR) | SELECT comp FROM table_name_42 WHERE year = "1989" | ### Context: CREATE TABLE table_name_42 (comp VARCHAR, year VARCHAR) ### Question: What is the comp for the year 1989? ### Answer: SELECT comp FROM table_name_42 WHERE year = "1989" |
What is the team in 1989? | CREATE TABLE table_name_50 (team VARCHAR, year VARCHAR) | SELECT team FROM table_name_50 WHERE year = "1989" | ### Context: CREATE TABLE table_name_50 (team VARCHAR, year VARCHAR) ### Question: What is the team in 1989? ### Answer: SELECT team FROM table_name_50 WHERE year = "1989" |
What is the RAtt in the year 1988? | CREATE TABLE table_name_72 (ratt VARCHAR, year VARCHAR) | SELECT ratt FROM table_name_72 WHERE year = "1988" | ### Context: CREATE TABLE table_name_72 (ratt VARCHAR, year VARCHAR) ### Question: What is the RAtt in the year 1988? ### Answer: SELECT ratt FROM table_name_72 WHERE year = "1988" |
What was the team with a Ratt of 42? | CREATE TABLE table_name_73 (team VARCHAR, ratt VARCHAR) | SELECT team FROM table_name_73 WHERE ratt = "42" | ### Context: CREATE TABLE table_name_73 (team VARCHAR, ratt VARCHAR) ### Question: What was the team with a Ratt of 42? ### Answer: SELECT team FROM table_name_73 WHERE ratt = "42" |
What was the team with a ratt of 57? | CREATE TABLE table_name_18 (team VARCHAR, ratt VARCHAR) | SELECT team FROM table_name_18 WHERE ratt = "57" | ### Context: CREATE TABLE table_name_18 (team VARCHAR, ratt VARCHAR) ### Question: What was the team with a ratt of 57? ### Answer: SELECT team FROM table_name_18 WHERE ratt = "57" |
Who did the Giants play before week 7 in Tulane Stadium? | CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_name_25 WHERE week < 7 AND game_site = "tulane stadium" | ### Context: CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR, game_site VARCHAR) ### Question: Who did the Giants play before week 7 in Tulane Stadium? ### Answer: SELECT opponent FROM table_name_25 WHERE week < 7 AND game_site = "tulane stadium" |
What was the lowest attendance for week 1? | CREATE TABLE table_name_48 (attendance INTEGER, week VARCHAR) | SELECT MIN(attendance) FROM table_name_48 WHERE week = 1 | ### Context: CREATE TABLE table_name_48 (attendance INTEGER, week VARCHAR) ### Question: What was the lowest attendance for week 1? ### Answer: SELECT MIN(attendance) FROM table_name_48 WHERE week = 1 |
What is the highest rank of a player from Ethiopia? | CREATE TABLE table_name_8 (rank INTEGER, country VARCHAR) | SELECT MAX(rank) FROM table_name_8 WHERE country = "ethiopia" | ### Context: CREATE TABLE table_name_8 (rank INTEGER, country VARCHAR) ### Question: What is the highest rank of a player from Ethiopia? ### Answer: SELECT MAX(rank) FROM table_name_8 WHERE country = "ethiopia" |
How many ranks had 367 matches and more than 216 goals? | CREATE TABLE table_name_94 (rank INTEGER, matches VARCHAR, goals VARCHAR) | SELECT SUM(rank) FROM table_name_94 WHERE matches = 367 AND goals > 216 | ### Context: CREATE TABLE table_name_94 (rank INTEGER, matches VARCHAR, goals VARCHAR) ### Question: How many ranks had 367 matches and more than 216 goals? ### Answer: SELECT SUM(rank) FROM table_name_94 WHERE matches = 367 AND goals > 216 |
What is the mean rank number when goals are 230 and there are more than 535? | CREATE TABLE table_name_86 (rank INTEGER, goals VARCHAR, matches VARCHAR) | SELECT AVG(rank) FROM table_name_86 WHERE goals = 230 AND matches > 535 | ### Context: CREATE TABLE table_name_86 (rank INTEGER, goals VARCHAR, matches VARCHAR) ### Question: What is the mean rank number when goals are 230 and there are more than 535? ### Answer: SELECT AVG(rank) FROM table_name_86 WHERE goals = 230 AND matches > 535 |
Where the audience share is 8%, what is the original airing? | CREATE TABLE table_name_60 (original_airing VARCHAR, audience_share__average_ VARCHAR) | SELECT original_airing FROM table_name_60 WHERE audience_share__average_ = "8%" | ### Context: CREATE TABLE table_name_60 (original_airing VARCHAR, audience_share__average_ VARCHAR) ### Question: Where the audience share is 8%, what is the original airing? ### Answer: SELECT original_airing FROM table_name_60 WHERE audience_share__average_ = "8%" |
What episode number has an audience share of 10%? | CREATE TABLE table_name_80 (episode_number VARCHAR, audience_share__average_ VARCHAR) | SELECT COUNT(episode_number) FROM table_name_80 WHERE audience_share__average_ = "10%" | ### Context: CREATE TABLE table_name_80 (episode_number VARCHAR, audience_share__average_ VARCHAR) ### Question: What episode number has an audience share of 10%? ### Answer: SELECT COUNT(episode_number) FROM table_name_80 WHERE audience_share__average_ = "10%" |
What is the value for the item "Class" when the value of the item "Wheels" is 137? | CREATE TABLE table_name_97 (class VARCHAR, wheels VARCHAR) | SELECT class FROM table_name_97 WHERE wheels = 137 | ### Context: CREATE TABLE table_name_97 (class VARCHAR, wheels VARCHAR) ### Question: What is the value for the item "Class" when the value of the item "Wheels" is 137? ### Answer: SELECT class FROM table_name_97 WHERE wheels = 137 |
What's the smallest number of games for the fenerbahçe team? | CREATE TABLE table_name_84 (games INTEGER, team VARCHAR) | SELECT MIN(games) FROM table_name_84 WHERE team = "fenerbahçe" | ### Context: CREATE TABLE table_name_84 (games INTEGER, team VARCHAR) ### Question: What's the smallest number of games for the fenerbahçe team? ### Answer: SELECT MIN(games) FROM table_name_84 WHERE team = "fenerbahçe" |
What's the mean game number for the olympiacos team when there's less than 17 rebounds? | CREATE TABLE table_name_75 (games INTEGER, team VARCHAR, rebounds VARCHAR) | SELECT AVG(games) FROM table_name_75 WHERE team = "olympiacos" AND rebounds < 17 | ### Context: CREATE TABLE table_name_75 (games INTEGER, team VARCHAR, rebounds VARCHAR) ### Question: What's the mean game number for the olympiacos team when there's less than 17 rebounds? ### Answer: SELECT AVG(games) FROM table_name_75 WHERE team = "olympiacos" AND rebounds < 17 |
How many games does novica veličković have when there's more than 24 rebounds? | CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR, rebounds VARCHAR) | SELECT COUNT(games) FROM table_name_57 WHERE name = "novica veličković" AND rebounds > 24 | ### Context: CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR, rebounds VARCHAR) ### Question: How many games does novica veličković have when there's more than 24 rebounds? ### Answer: SELECT COUNT(games) FROM table_name_57 WHERE name = "novica veličković" AND rebounds > 24 |
What is the League with a Year that is 1990/91? | CREATE TABLE table_name_64 (league VARCHAR, year VARCHAR) | SELECT league FROM table_name_64 WHERE year = "1990/91" | ### Context: CREATE TABLE table_name_64 (league VARCHAR, year VARCHAR) ### Question: What is the League with a Year that is 1990/91? ### Answer: SELECT league FROM table_name_64 WHERE year = "1990/91" |
What is the ICAO for simferopol international airport? | CREATE TABLE table_name_75 (icao VARCHAR, airport VARCHAR) | SELECT icao FROM table_name_75 WHERE airport = "simferopol international airport" | ### Context: CREATE TABLE table_name_75 (icao VARCHAR, airport VARCHAR) ### Question: What is the ICAO for simferopol international airport? ### Answer: SELECT icao FROM table_name_75 WHERE airport = "simferopol international airport" |
Which country has an IATA of gzt? | CREATE TABLE table_name_70 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_70 WHERE iata = "gzt" | ### Context: CREATE TABLE table_name_70 (country VARCHAR, iata VARCHAR) ### Question: Which country has an IATA of gzt? ### Answer: SELECT country FROM table_name_70 WHERE iata = "gzt" |
What country is Yerevan located in? | CREATE TABLE table_name_21 (country VARCHAR, city VARCHAR) | SELECT country FROM table_name_21 WHERE city = "yerevan" | ### Context: CREATE TABLE table_name_21 (country VARCHAR, city VARCHAR) ### Question: What country is Yerevan located in? ### Answer: SELECT country FROM table_name_21 WHERE city = "yerevan" |
What is the ICAO when the IATA is ika? | CREATE TABLE table_name_19 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_19 WHERE iata = "ika" | ### Context: CREATE TABLE table_name_19 (icao VARCHAR, iata VARCHAR) ### Question: What is the ICAO when the IATA is ika? ### Answer: SELECT icao FROM table_name_19 WHERE iata = "ika" |
What is the ICAO when the IATA is ist? | CREATE TABLE table_name_34 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_34 WHERE iata = "ist" | ### Context: CREATE TABLE table_name_34 (icao VARCHAR, iata VARCHAR) ### Question: What is the ICAO when the IATA is ist? ### Answer: SELECT icao FROM table_name_34 WHERE iata = "ist" |
Which team has 10 losses? | CREATE TABLE table_name_33 (team VARCHAR, lost VARCHAR) | SELECT team FROM table_name_33 WHERE lost = 10 | ### Context: CREATE TABLE table_name_33 (team VARCHAR, lost VARCHAR) ### Question: Which team has 10 losses? ### Answer: SELECT team FROM table_name_33 WHERE lost = 10 |
In which yearly change was there a capacity of 78.4% and a rank smaller than 3? | CREATE TABLE table_name_31 (annual_change VARCHAR, rank VARCHAR, capacity_in_use VARCHAR) | SELECT annual_change FROM table_name_31 WHERE rank < 3 AND capacity_in_use = "78.4%" | ### Context: CREATE TABLE table_name_31 (annual_change VARCHAR, rank VARCHAR, capacity_in_use VARCHAR) ### Question: In which yearly change was there a capacity of 78.4% and a rank smaller than 3? ### Answer: SELECT annual_change FROM table_name_31 WHERE rank < 3 AND capacity_in_use = "78.4%" |
In Which rank was there a location of porto alegre? | CREATE TABLE table_name_85 (rank VARCHAR, location VARCHAR) | SELECT rank FROM table_name_85 WHERE location = "porto alegre" | ### Context: CREATE TABLE table_name_85 (rank VARCHAR, location VARCHAR) ### Question: In Which rank was there a location of porto alegre? ### Answer: SELECT rank FROM table_name_85 WHERE location = "porto alegre" |
what is the number of passengers when the capacity is 81.2%? | CREATE TABLE table_name_88 (total_passengers INTEGER, capacity_in_use VARCHAR) | SELECT SUM(total_passengers) FROM table_name_88 WHERE capacity_in_use = "81.2%" | ### Context: CREATE TABLE table_name_88 (total_passengers INTEGER, capacity_in_use VARCHAR) ### Question: what is the number of passengers when the capacity is 81.2%? ### Answer: SELECT SUM(total_passengers) FROM table_name_88 WHERE capacity_in_use = "81.2%" |
what is the highest amount of passengers when there is a rank of 1? | CREATE TABLE table_name_94 (total_passengers INTEGER, rank VARCHAR) | SELECT MAX(total_passengers) FROM table_name_94 WHERE rank = 1 | ### Context: CREATE TABLE table_name_94 (total_passengers INTEGER, rank VARCHAR) ### Question: what is the highest amount of passengers when there is a rank of 1? ### Answer: SELECT MAX(total_passengers) FROM table_name_94 WHERE rank = 1 |
What was the latest Week on which the Result was l 17–0? | CREATE TABLE table_name_95 (week INTEGER, result VARCHAR) | SELECT MAX(week) FROM table_name_95 WHERE result = "l 17–0" | ### Context: CREATE TABLE table_name_95 (week INTEGER, result VARCHAR) ### Question: What was the latest Week on which the Result was l 17–0? ### Answer: SELECT MAX(week) FROM table_name_95 WHERE result = "l 17–0" |
What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3? | CREATE TABLE table_name_65 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR) | SELECT AVG(cuts_made) FROM table_name_65 WHERE top_25 < 10 AND top_10 > 3 | ### Context: CREATE TABLE table_name_65 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR) ### Question: What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3? ### Answer: SELECT AVG(cuts_made) FROM table_name_65 WHERE top_25 < 10 AND top_10 > 3 |
What is average Top 10 with 0 wins? | CREATE TABLE table_name_93 (top_10 INTEGER, wins INTEGER) | SELECT AVG(top_10) FROM table_name_93 WHERE wins < 0 | ### Context: CREATE TABLE table_name_93 (top_10 INTEGER, wins INTEGER) ### Question: What is average Top 10 with 0 wins? ### Answer: SELECT AVG(top_10) FROM table_name_93 WHERE wins < 0 |
What is the average event for the Open Championship Tournament, and a Top-5 less than 1? | CREATE TABLE table_name_18 (events INTEGER, tournament VARCHAR, top_5 VARCHAR) | SELECT AVG(events) FROM table_name_18 WHERE tournament = "the open championship" AND top_5 < 1 | ### Context: CREATE TABLE table_name_18 (events INTEGER, tournament VARCHAR, top_5 VARCHAR) ### Question: What is the average event for the Open Championship Tournament, and a Top-5 less than 1? ### Answer: SELECT AVG(events) FROM table_name_18 WHERE tournament = "the open championship" AND top_5 < 1 |
What is the average wins has Top-25 less than 0? | CREATE TABLE table_name_66 (wins INTEGER, top_25 INTEGER) | SELECT AVG(wins) FROM table_name_66 WHERE top_25 < 0 | ### Context: CREATE TABLE table_name_66 (wins INTEGER, top_25 INTEGER) ### Question: What is the average wins has Top-25 less than 0? ### Answer: SELECT AVG(wins) FROM table_name_66 WHERE top_25 < 0 |
What is the largest Against with a Byes larger than 0? | CREATE TABLE table_name_40 (against INTEGER, byes INTEGER) | SELECT MAX(against) FROM table_name_40 WHERE byes > 0 | ### Context: CREATE TABLE table_name_40 (against INTEGER, byes INTEGER) ### Question: What is the largest Against with a Byes larger than 0? ### Answer: SELECT MAX(against) FROM table_name_40 WHERE byes > 0 |
Which Wins has an Against of 1940, and a Byes larger than 0? | CREATE TABLE table_name_61 (wins INTEGER, against VARCHAR, byes VARCHAR) | SELECT MAX(wins) FROM table_name_61 WHERE against = 1940 AND byes > 0 | ### Context: CREATE TABLE table_name_61 (wins INTEGER, against VARCHAR, byes VARCHAR) ### Question: Which Wins has an Against of 1940, and a Byes larger than 0? ### Answer: SELECT MAX(wins) FROM table_name_61 WHERE against = 1940 AND byes > 0 |
Which Draws has a Wins of 10, and a Peel of south mandurah, and a Byes larger than 0? | CREATE TABLE table_name_28 (draws INTEGER, byes VARCHAR, wins VARCHAR, peel VARCHAR) | SELECT AVG(draws) FROM table_name_28 WHERE wins = 10 AND peel = "south mandurah" AND byes > 0 | ### Context: CREATE TABLE table_name_28 (draws INTEGER, byes VARCHAR, wins VARCHAR, peel VARCHAR) ### Question: Which Draws has a Wins of 10, and a Peel of south mandurah, and a Byes larger than 0? ### Answer: SELECT AVG(draws) FROM table_name_28 WHERE wins = 10 AND peel = "south mandurah" AND byes > 0 |
Which Against has a Draws larger than 0, a Losses smaller than 16, and a Wins smaller than 4? | CREATE TABLE table_name_50 (against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR) | SELECT MAX(against) FROM table_name_50 WHERE draws > 0 AND losses < 16 AND wins < 4 | ### Context: CREATE TABLE table_name_50 (against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR) ### Question: Which Against has a Draws larger than 0, a Losses smaller than 16, and a Wins smaller than 4? ### Answer: SELECT MAX(against) FROM table_name_50 WHERE draws > 0 AND losses < 16 AND wins < 4 |
Which Losses has an Against of 1101, and a Byes smaller than 0? | CREATE TABLE table_name_52 (losses VARCHAR, against VARCHAR, byes VARCHAR) | SELECT COUNT(losses) FROM table_name_52 WHERE against = 1101 AND byes < 0 | ### Context: CREATE TABLE table_name_52 (losses VARCHAR, against VARCHAR, byes VARCHAR) ### Question: Which Losses has an Against of 1101, and a Byes smaller than 0? ### Answer: SELECT COUNT(losses) FROM table_name_52 WHERE against = 1101 AND byes < 0 |
Which Byes has a Losses smaller than 1? | CREATE TABLE table_name_5 (byes INTEGER, losses INTEGER) | SELECT MAX(byes) FROM table_name_5 WHERE losses < 1 | ### Context: CREATE TABLE table_name_5 (byes INTEGER, losses INTEGER) ### Question: Which Byes has a Losses smaller than 1? ### Answer: SELECT MAX(byes) FROM table_name_5 WHERE losses < 1 |
What is the average number of games of the player with a rank less than 1? | CREATE TABLE table_name_55 (games INTEGER, rank INTEGER) | SELECT AVG(games) FROM table_name_55 WHERE rank < 1 | ### Context: CREATE TABLE table_name_55 (games INTEGER, rank INTEGER) ### Question: What is the average number of games of the player with a rank less than 1? ### Answer: SELECT AVG(games) FROM table_name_55 WHERE rank < 1 |
What is the highest rank of the player with less than 32 points? | CREATE TABLE table_name_24 (rank INTEGER, points INTEGER) | SELECT MAX(rank) FROM table_name_24 WHERE points < 32 | ### Context: CREATE TABLE table_name_24 (rank INTEGER, points INTEGER) ### Question: What is the highest rank of the player with less than 32 points? ### Answer: SELECT MAX(rank) FROM table_name_24 WHERE points < 32 |
What is the rank of the player with less than 34 points? | CREATE TABLE table_name_95 (rank INTEGER, points INTEGER) | SELECT SUM(rank) FROM table_name_95 WHERE points < 34 | ### Context: CREATE TABLE table_name_95 (rank INTEGER, points INTEGER) ### Question: What is the rank of the player with less than 34 points? ### Answer: SELECT SUM(rank) FROM table_name_95 WHERE points < 34 |
Who's Fourth District has a Second District of bob springstead? | CREATE TABLE table_name_72 (fourth_district VARCHAR, second_district VARCHAR) | SELECT fourth_district FROM table_name_72 WHERE second_district = "bob springstead" | ### Context: CREATE TABLE table_name_72 (fourth_district VARCHAR, second_district VARCHAR) ### Question: Who's Fourth District has a Second District of bob springstead? ### Answer: SELECT fourth_district FROM table_name_72 WHERE second_district = "bob springstead" |
Who's the First District with a Fifth District of prudy adam? | CREATE TABLE table_name_9 (first_district VARCHAR, fifth_district VARCHAR) | SELECT first_district FROM table_name_9 WHERE fifth_district = "prudy adam" | ### Context: CREATE TABLE table_name_9 (first_district VARCHAR, fifth_district VARCHAR) ### Question: Who's the First District with a Fifth District of prudy adam? ### Answer: SELECT first_district FROM table_name_9 WHERE fifth_district = "prudy adam" |
Who's the Fourth District with a First District of beverly bodem? | CREATE TABLE table_name_98 (fourth_district VARCHAR, first_district VARCHAR) | SELECT fourth_district FROM table_name_98 WHERE first_district = "beverly bodem" | ### Context: CREATE TABLE table_name_98 (fourth_district VARCHAR, first_district VARCHAR) ### Question: Who's the Fourth District with a First District of beverly bodem? ### Answer: SELECT fourth_district FROM table_name_98 WHERE first_district = "beverly bodem" |
Who's the Fourth District with a Second District of kurt van koevering? | CREATE TABLE table_name_41 (fourth_district VARCHAR, second_district VARCHAR) | SELECT fourth_district FROM table_name_41 WHERE second_district = "kurt van koevering" | ### Context: CREATE TABLE table_name_41 (fourth_district VARCHAR, second_district VARCHAR) ### Question: Who's the Fourth District with a Second District of kurt van koevering? ### Answer: SELECT fourth_district FROM table_name_41 WHERE second_district = "kurt van koevering" |
Who's the Fifth District with a Second District of paul leidig? | CREATE TABLE table_name_23 (fifth_district VARCHAR, second_district VARCHAR) | SELECT fifth_district FROM table_name_23 WHERE second_district = "paul leidig" | ### Context: CREATE TABLE table_name_23 (fifth_district VARCHAR, second_district VARCHAR) ### Question: Who's the Fifth District with a Second District of paul leidig? ### Answer: SELECT fifth_district FROM table_name_23 WHERE second_district = "paul leidig" |
Who's the Fourth District with a Third District of sharon yentsch? | CREATE TABLE table_name_82 (fourth_district VARCHAR, third_district VARCHAR) | SELECT fourth_district FROM table_name_82 WHERE third_district = "sharon yentsch" | ### Context: CREATE TABLE table_name_82 (fourth_district VARCHAR, third_district VARCHAR) ### Question: Who's the Fourth District with a Third District of sharon yentsch? ### Answer: SELECT fourth_district FROM table_name_82 WHERE third_district = "sharon yentsch" |
How many Sets did Gary Muller have? | CREATE TABLE table_name_21 (sets VARCHAR, player VARCHAR) | SELECT COUNT(sets) FROM table_name_21 WHERE player = "gary muller" | ### Context: CREATE TABLE table_name_21 (sets VARCHAR, player VARCHAR) ### Question: How many Sets did Gary Muller have? ### Answer: SELECT COUNT(sets) FROM table_name_21 WHERE player = "gary muller" |
What Player in 2005 Wimbledon had less than 5 Sets? | CREATE TABLE table_name_12 (player VARCHAR, sets VARCHAR, event VARCHAR) | SELECT player FROM table_name_12 WHERE sets < 5 AND event = "2005 wimbledon" | ### Context: CREATE TABLE table_name_12 (player VARCHAR, sets VARCHAR, event VARCHAR) ### Question: What Player in 2005 Wimbledon had less than 5 Sets? ### Answer: SELECT player FROM table_name_12 WHERE sets < 5 AND event = "2005 wimbledon" |
At the 2001 Davis Cup, what Opponent had less than 50 Aces? | CREATE TABLE table_name_93 (opponent VARCHAR, aces VARCHAR, event VARCHAR) | SELECT opponent FROM table_name_93 WHERE aces < 50 AND event = "2001 davis cup" | ### Context: CREATE TABLE table_name_93 (opponent VARCHAR, aces VARCHAR, event VARCHAR) ### Question: At the 2001 Davis Cup, what Opponent had less than 50 Aces? ### Answer: SELECT opponent FROM table_name_93 WHERE aces < 50 AND event = "2001 davis cup" |
What time did Channel 4 air an episode number larger than 106 with the title of Marry Me A Little? | CREATE TABLE table_name_74 (time_of_airing_on_channel_4 VARCHAR, episode_number VARCHAR, title VARCHAR) | SELECT time_of_airing_on_channel_4 FROM table_name_74 WHERE episode_number > 106 AND title = "marry me a little" | ### Context: CREATE TABLE table_name_74 (time_of_airing_on_channel_4 VARCHAR, episode_number VARCHAR, title VARCHAR) ### Question: What time did Channel 4 air an episode number larger than 106 with the title of Marry Me A Little? ### Answer: SELECT time_of_airing_on_channel_4 FROM table_name_74 WHERE episode_number > 106 AND title = "marry me a little" |
What is the total number of sunk by U-boats with less than 2 German submarines lost, 56328 sunk by aircrafts, and more than 8269 sunk by mines? | CREATE TABLE table_name_4 (sunk_by_u_boat VARCHAR, sunk_by_mines VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR) | SELECT COUNT(sunk_by_u_boat) FROM table_name_4 WHERE german_submarines_lost < 2 AND sunk_by_aircraft = 56328 AND sunk_by_mines > 8269 | ### Context: CREATE TABLE table_name_4 (sunk_by_u_boat VARCHAR, sunk_by_mines VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR) ### Question: What is the total number of sunk by U-boats with less than 2 German submarines lost, 56328 sunk by aircrafts, and more than 8269 sunk by mines? ### Answer: SELECT COUNT(sunk_by_u_boat) FROM table_name_4 WHERE german_submarines_lost < 2 AND sunk_by_aircraft = 56328 AND sunk_by_mines > 8269 |
What is the total number sunk by warship or raider with 20 German submarines lost and more than 21616 sunk by aircraft? | CREATE TABLE table_name_30 (sunk_by_warship_or_raider VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR) | SELECT COUNT(sunk_by_warship_or_raider) FROM table_name_30 WHERE german_submarines_lost = 20 AND sunk_by_aircraft > 21616 | ### Context: CREATE TABLE table_name_30 (sunk_by_warship_or_raider VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR) ### Question: What is the total number sunk by warship or raider with 20 German submarines lost and more than 21616 sunk by aircraft? ### Answer: SELECT COUNT(sunk_by_warship_or_raider) FROM table_name_30 WHERE german_submarines_lost = 20 AND sunk_by_aircraft > 21616 |
What is the total number of German submarines lost with more than 120958 sunk by mines? | CREATE TABLE table_name_46 (german_submarines_lost VARCHAR, sunk_by_mines INTEGER) | SELECT COUNT(german_submarines_lost) FROM table_name_46 WHERE sunk_by_mines > 120958 | ### Context: CREATE TABLE table_name_46 (german_submarines_lost VARCHAR, sunk_by_mines INTEGER) ### Question: What is the total number of German submarines lost with more than 120958 sunk by mines? ### Answer: SELECT COUNT(german_submarines_lost) FROM table_name_46 WHERE sunk_by_mines > 120958 |
What is the month and year less than 5 German submarines were lost, less than 6893 were sunk by warship or raider, less than 133746 were sunk by aircraft, and more than 111263 were sunk by U-boat? | CREATE TABLE table_name_24 (month VARCHAR, _year VARCHAR, sunk_by_u_boat VARCHAR, sunk_by_aircraft VARCHAR, german_submarines_lost VARCHAR, sunk_by_warship_or_raider VARCHAR) | SELECT month, _year FROM table_name_24 WHERE german_submarines_lost < 5 AND sunk_by_warship_or_raider < 6893 AND sunk_by_aircraft < 133746 AND sunk_by_u_boat > 111263 | ### Context: CREATE TABLE table_name_24 (month VARCHAR, _year VARCHAR, sunk_by_u_boat VARCHAR, sunk_by_aircraft VARCHAR, german_submarines_lost VARCHAR, sunk_by_warship_or_raider VARCHAR) ### Question: What is the month and year less than 5 German submarines were lost, less than 6893 were sunk by warship or raider, less than 133746 were sunk by aircraft, and more than 111263 were sunk by U-boat? ### Answer: SELECT month, _year FROM table_name_24 WHERE german_submarines_lost < 5 AND sunk_by_warship_or_raider < 6893 AND sunk_by_aircraft < 133746 AND sunk_by_u_boat > 111263 |
What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider? | CREATE TABLE table_name_73 (month VARCHAR, _year VARCHAR, sunk_by_aircraft VARCHAR, sunk_by_warship_or_raider VARCHAR) | SELECT month, _year FROM table_name_73 WHERE sunk_by_aircraft < 106005 AND sunk_by_warship_or_raider = 61857 | ### Context: CREATE TABLE table_name_73 (month VARCHAR, _year VARCHAR, sunk_by_aircraft VARCHAR, sunk_by_warship_or_raider VARCHAR) ### Question: What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider? ### Answer: SELECT month, _year FROM table_name_73 WHERE sunk_by_aircraft < 106005 AND sunk_by_warship_or_raider = 61857 |
What is the post-1986 provinces with a 全羅道 Hanja? | CREATE TABLE table_name_52 (post_1896_provinces VARCHAR, hanja VARCHAR) | SELECT post_1896_provinces FROM table_name_52 WHERE hanja = "全羅道" | ### Context: CREATE TABLE table_name_52 (post_1896_provinces VARCHAR, hanja VARCHAR) ### Question: What is the post-1986 provinces with a 全羅道 Hanja? ### Answer: SELECT post_1896_provinces FROM table_name_52 WHERE hanja = "全羅道" |
What is the Korean dialect in the daegu capital? | CREATE TABLE table_name_71 (korean_dialect VARCHAR, capital VARCHAR) | SELECT korean_dialect FROM table_name_71 WHERE capital = "daegu" | ### Context: CREATE TABLE table_name_71 (korean_dialect VARCHAR, capital VARCHAR) ### Question: What is the Korean dialect in the daegu capital? ### Answer: SELECT korean_dialect FROM table_name_71 WHERE capital = "daegu" |
What is the Korean dialect with a jeolla RR Romaja? | CREATE TABLE table_name_18 (korean_dialect VARCHAR, rr_romaja VARCHAR) | SELECT korean_dialect FROM table_name_18 WHERE rr_romaja = "jeolla" | ### Context: CREATE TABLE table_name_18 (korean_dialect VARCHAR, rr_romaja VARCHAR) ### Question: What is the Korean dialect with a jeolla RR Romaja? ### Answer: SELECT korean_dialect FROM table_name_18 WHERE rr_romaja = "jeolla" |
What is the Hanja for the hamgyeong RR Romaja? | CREATE TABLE table_name_4 (hanja VARCHAR, rr_romaja VARCHAR) | SELECT hanja FROM table_name_4 WHERE rr_romaja = "hamgyeong" | ### Context: CREATE TABLE table_name_4 (hanja VARCHAR, rr_romaja VARCHAR) ### Question: What is the Hanja for the hamgyeong RR Romaja? ### Answer: SELECT hanja FROM table_name_4 WHERE rr_romaja = "hamgyeong" |
What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels? | CREATE TABLE table_name_35 (example_code__huc_ INTEGER, level VARCHAR, example_name VARCHAR, digits VARCHAR) | SELECT AVG(example_code__huc_) FROM table_name_35 WHERE example_name = "lower snake" AND digits = 6 AND level < 3 | ### Context: CREATE TABLE table_name_35 (example_code__huc_ INTEGER, level VARCHAR, example_name VARCHAR, digits VARCHAR) ### Question: What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels? ### Answer: SELECT AVG(example_code__huc_) FROM table_name_35 WHERE example_name = "lower snake" AND digits = 6 AND level < 3 |
What's the approximate number of HUs when there are more than 2 digits, and 6 levels? | CREATE TABLE table_name_66 (number_of_hus__approximate_ VARCHAR, digits VARCHAR, level VARCHAR) | SELECT COUNT(number_of_hus__approximate_) FROM table_name_66 WHERE digits > 2 AND level = 6 | ### Context: CREATE TABLE table_name_66 (number_of_hus__approximate_ VARCHAR, digits VARCHAR, level VARCHAR) ### Question: What's the approximate number of HUs when there are more than 2 digits, and 6 levels? ### Answer: SELECT COUNT(number_of_hus__approximate_) FROM table_name_66 WHERE digits > 2 AND level = 6 |
How many HUC example codes have 1 level? | CREATE TABLE table_name_48 (example_code__huc_ VARCHAR, level VARCHAR) | SELECT COUNT(example_code__huc_) FROM table_name_48 WHERE level = 1 | ### Context: CREATE TABLE table_name_48 (example_code__huc_ VARCHAR, level VARCHAR) ### Question: How many HUC example codes have 1 level? ### Answer: SELECT COUNT(example_code__huc_) FROM table_name_48 WHERE level = 1 |
What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370? | CREATE TABLE table_name_42 (level INTEGER, example_name VARCHAR, number_of_hus__approximate_ VARCHAR) | SELECT AVG(level) FROM table_name_42 WHERE example_name = "lower snake" AND number_of_hus__approximate_ < 370 | ### Context: CREATE TABLE table_name_42 (level INTEGER, example_name VARCHAR, number_of_hus__approximate_ VARCHAR) ### Question: What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370? ### Answer: SELECT AVG(level) FROM table_name_42 WHERE example_name = "lower snake" AND number_of_hus__approximate_ < 370 |
What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0? | CREATE TABLE table_name_43 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR) | SELECT AVG(losses) FROM table_name_43 WHERE against > 1255 AND wins = 0 AND draws < 0 | ### Context: CREATE TABLE table_name_43 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR) ### Question: What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0? ### Answer: SELECT AVG(losses) FROM table_name_43 WHERE against > 1255 AND wins = 0 AND draws < 0 |
What is the smallest losses when the wins are 5 and the against less than 1852? | CREATE TABLE table_name_14 (losses INTEGER, wins VARCHAR, against VARCHAR) | SELECT MIN(losses) FROM table_name_14 WHERE wins = 5 AND against < 1852 | ### Context: CREATE TABLE table_name_14 (losses INTEGER, wins VARCHAR, against VARCHAR) ### Question: What is the smallest losses when the wins are 5 and the against less than 1852? ### Answer: SELECT MIN(losses) FROM table_name_14 WHERE wins = 5 AND against < 1852 |
What is the fewest losses that Ballarat FL of Lake Wendouree has when the wins are smaller than 9? | CREATE TABLE table_name_9 (losses INTEGER, ballarat_fl VARCHAR, wins VARCHAR) | SELECT MIN(losses) FROM table_name_9 WHERE ballarat_fl = "lake wendouree" AND wins < 9 | ### Context: CREATE TABLE table_name_9 (losses INTEGER, ballarat_fl VARCHAR, wins VARCHAR) ### Question: What is the fewest losses that Ballarat FL of Lake Wendouree has when the wins are smaller than 9? ### Answer: SELECT MIN(losses) FROM table_name_9 WHERE ballarat_fl = "lake wendouree" AND wins < 9 |
What is the smallest byes when the wins are 3? | CREATE TABLE table_name_49 (byes INTEGER, wins VARCHAR) | SELECT MIN(byes) FROM table_name_49 WHERE wins = 3 | ### Context: CREATE TABLE table_name_49 (byes INTEGER, wins VARCHAR) ### Question: What is the smallest byes when the wins are 3? ### Answer: SELECT MIN(byes) FROM table_name_49 WHERE wins = 3 |
What is the highest Attendance when the away team was Wrexham? | CREATE TABLE table_name_39 (attendance INTEGER, away_team VARCHAR) | SELECT MAX(attendance) FROM table_name_39 WHERE away_team = "wrexham" | ### Context: CREATE TABLE table_name_39 (attendance INTEGER, away_team VARCHAR) ### Question: What is the highest Attendance when the away team was Wrexham? ### Answer: SELECT MAX(attendance) FROM table_name_39 WHERE away_team = "wrexham" |
What is the Away team when the home team was wycombe wanderers? | CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_9 WHERE home_team = "wycombe wanderers" | ### Context: CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the Away team when the home team was wycombe wanderers? ### Answer: SELECT away_team FROM table_name_9 WHERE home_team = "wycombe wanderers" |
What is the lowest Attendance when the home team was slough town? | CREATE TABLE table_name_62 (attendance INTEGER, home_team VARCHAR) | SELECT MIN(attendance) FROM table_name_62 WHERE home_team = "slough town" | ### Context: CREATE TABLE table_name_62 (attendance INTEGER, home_team VARCHAR) ### Question: What is the lowest Attendance when the home team was slough town? ### Answer: SELECT MIN(attendance) FROM table_name_62 WHERE home_team = "slough town" |
What is the sum of Attendance when macclesfield town was the way team? | CREATE TABLE table_name_22 (attendance INTEGER, away_team VARCHAR) | SELECT SUM(attendance) FROM table_name_22 WHERE away_team = "macclesfield town" | ### Context: CREATE TABLE table_name_22 (attendance INTEGER, away_team VARCHAR) ### Question: What is the sum of Attendance when macclesfield town was the way team? ### Answer: SELECT SUM(attendance) FROM table_name_22 WHERE away_team = "macclesfield town" |
How many Spins sources have a CCM Chart of CHR with a peak position less than 1? | CREATE TABLE table_name_61 (spins__since_1998__source VARCHAR, ccm_chart VARCHAR, peak_pos VARCHAR) | SELECT COUNT(spins__since_1998__source) AS :_mediabase FROM table_name_61 WHERE ccm_chart = "chr" AND peak_pos < 1 | ### Context: CREATE TABLE table_name_61 (spins__since_1998__source VARCHAR, ccm_chart VARCHAR, peak_pos VARCHAR) ### Question: How many Spins sources have a CCM Chart of CHR with a peak position less than 1? ### Answer: SELECT COUNT(spins__since_1998__source) AS :_mediabase FROM table_name_61 WHERE ccm_chart = "chr" AND peak_pos < 1 |
What CCM Chart had 18 total weeks? | CREATE TABLE table_name_94 (ccm_chart VARCHAR, total_wks VARCHAR) | SELECT ccm_chart FROM table_name_94 WHERE total_wks = 18 | ### Context: CREATE TABLE table_name_94 (ccm_chart VARCHAR, total_wks VARCHAR) ### Question: What CCM Chart had 18 total weeks? ### Answer: SELECT ccm_chart FROM table_name_94 WHERE total_wks = 18 |
What is Opponent, when Date is December 18, 1988? | CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_7 WHERE date = "december 18, 1988" | ### Context: CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR) ### Question: What is Opponent, when Date is December 18, 1988? ### Answer: SELECT opponent FROM table_name_7 WHERE date = "december 18, 1988" |
What is Attendance, when Opponent is Pittsburgh Steelers? | CREATE TABLE table_name_2 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_2 WHERE opponent = "pittsburgh steelers" | ### Context: CREATE TABLE table_name_2 (attendance VARCHAR, opponent VARCHAR) ### Question: What is Attendance, when Opponent is Pittsburgh Steelers? ### Answer: SELECT attendance FROM table_name_2 WHERE opponent = "pittsburgh steelers" |
What is the average Week, when Result is l 37–34? | CREATE TABLE table_name_80 (week INTEGER, result VARCHAR) | SELECT AVG(week) FROM table_name_80 WHERE result = "l 37–34" | ### Context: CREATE TABLE table_name_80 (week INTEGER, result VARCHAR) ### Question: What is the average Week, when Result is l 37–34? ### Answer: SELECT AVG(week) FROM table_name_80 WHERE result = "l 37–34" |
When was Shannon Long the Centerfold model? | CREATE TABLE table_name_15 (date VARCHAR, centerfold_model VARCHAR) | SELECT date FROM table_name_15 WHERE centerfold_model = "shannon long" | ### Context: CREATE TABLE table_name_15 (date VARCHAR, centerfold_model VARCHAR) ### Question: When was Shannon Long the Centerfold model? ### Answer: SELECT date FROM table_name_15 WHERE centerfold_model = "shannon long" |
Who was the Centerfold model on 5-88? | CREATE TABLE table_name_20 (centerfold_model VARCHAR, date VARCHAR) | SELECT centerfold_model FROM table_name_20 WHERE date = "5-88" | ### Context: CREATE TABLE table_name_20 (centerfold_model VARCHAR, date VARCHAR) ### Question: Who was the Centerfold model on 5-88? ### Answer: SELECT centerfold_model FROM table_name_20 WHERE date = "5-88" |
Who was the Centerfild model that used Bruce Willis as her Interview subject? | CREATE TABLE table_name_60 (centerfold_model VARCHAR, interview_subject VARCHAR) | SELECT centerfold_model FROM table_name_60 WHERE interview_subject = "bruce willis" | ### Context: CREATE TABLE table_name_60 (centerfold_model VARCHAR, interview_subject VARCHAR) ### Question: Who was the Centerfild model that used Bruce Willis as her Interview subject? ### Answer: SELECT centerfold_model FROM table_name_60 WHERE interview_subject = "bruce willis" |
What is Series, when Launch Date is 23 February 2013? | CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR) | SELECT series FROM table_name_16 WHERE launch_date = "23 february 2013" | ### Context: CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR) ### Question: What is Series, when Launch Date is 23 February 2013? ### Answer: SELECT series FROM table_name_16 WHERE launch_date = "23 february 2013" |
What is Series, when Days is greater than 99, and when Prize is €50,000? | CREATE TABLE table_name_15 (series VARCHAR, days VARCHAR, prize VARCHAR) | SELECT series FROM table_name_15 WHERE days > 99 AND prize = "€50,000" | ### Context: CREATE TABLE table_name_15 (series VARCHAR, days VARCHAR, prize VARCHAR) ### Question: What is Series, when Days is greater than 99, and when Prize is €50,000? ### Answer: SELECT series FROM table_name_15 WHERE days > 99 AND prize = "€50,000" |
What is Series, when Winner is Jetmir Salaj? | CREATE TABLE table_name_54 (series VARCHAR, winner VARCHAR) | SELECT series FROM table_name_54 WHERE winner = "jetmir salaj" | ### Context: CREATE TABLE table_name_54 (series VARCHAR, winner VARCHAR) ### Question: What is Series, when Winner is Jetmir Salaj? ### Answer: SELECT series FROM table_name_54 WHERE winner = "jetmir salaj" |
What is Highest Days, when Launch Date is 23 January 2010? | CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR) | SELECT MAX(days) FROM table_name_16 WHERE launch_date = "23 january 2010" | ### Context: CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR) ### Question: What is Highest Days, when Launch Date is 23 January 2010? ### Answer: SELECT MAX(days) FROM table_name_16 WHERE launch_date = "23 january 2010" |
What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20? | CREATE TABLE table_name_60 (rank INTEGER, name VARCHAR, games VARCHAR) | SELECT MIN(rank) FROM table_name_60 WHERE name = "jeremiah massey" AND games < 20 | ### Context: CREATE TABLE table_name_60 (rank INTEGER, name VARCHAR, games VARCHAR) ### Question: What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20? ### Answer: SELECT MIN(rank) FROM table_name_60 WHERE name = "jeremiah massey" AND games < 20 |
What is the lowest Games, when Name is Jeremiah Massey, and when Points is less than 340? | CREATE TABLE table_name_91 (games INTEGER, name VARCHAR, points VARCHAR) | SELECT MIN(games) FROM table_name_91 WHERE name = "jeremiah massey" AND points < 340 | ### Context: CREATE TABLE table_name_91 (games INTEGER, name VARCHAR, points VARCHAR) ### Question: What is the lowest Games, when Name is Jeremiah Massey, and when Points is less than 340? ### Answer: SELECT MIN(games) FROM table_name_91 WHERE name = "jeremiah massey" AND points < 340 |
What is the lowest Points, when Games is greater than 20, and when Team is Partizan Belgrade? | CREATE TABLE table_name_30 (points INTEGER, games VARCHAR, team VARCHAR) | SELECT MIN(points) FROM table_name_30 WHERE games > 20 AND team = "partizan belgrade" | ### Context: CREATE TABLE table_name_30 (points INTEGER, games VARCHAR, team VARCHAR) ### Question: What is the lowest Points, when Games is greater than 20, and when Team is Partizan Belgrade? ### Answer: SELECT MIN(points) FROM table_name_30 WHERE games > 20 AND team = "partizan belgrade" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.