Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
50,600 | <question>: What's the name of the tournament that Gianni Ocleppo was the runner-up? <context>: CREATE TABLE table_name_80 (tournament_name VARCHAR, runners_up VARCHAR) | SELECT tournament_name FROM table_name_80 WHERE runners_up = "gianni ocleppo" |
50,601 | <question>: What is the lowest percentage of wins for 6½ games and more than 77 total wins? <context>: 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 |
50,602 | <question>: What is the score of the competition on November 10? <context>: CREATE TABLE table_name_90 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_90 WHERE date = "november 10" |
50,603 | <question>: Who is the visitor when the record is 2-1? <context>: CREATE TABLE table_name_95 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_95 WHERE record = "2-1" |
50,604 | <question>: Who is the home team when the score is 81-80? <context>: CREATE TABLE table_name_56 (home VARCHAR, score VARCHAR) | SELECT home FROM table_name_56 WHERE score = "81-80" |
50,605 | <question>: How many Gold medals did Japan receive who had a Total of more than 1 medals? <context>: CREATE TABLE table_name_39 (gold INTEGER, nation VARCHAR, total VARCHAR) | SELECT SUM(gold) FROM table_name_39 WHERE nation = "japan" AND total > 1 |
50,606 | <question>: What time (cst) has and NFL recap of recap with october 19, 2008 as the date? <context>: 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" |
50,607 | <question>: Which week has giants stadium as the game site? <context>: CREATE TABLE table_name_57 (week VARCHAR, game_site VARCHAR) | SELECT week FROM table_name_57 WHERE game_site = "giants stadium" |
50,608 | <question>: What is the lowest week that has 7:15 p.m. as the time (cst) and fedexfield as the game site? <context>: 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" |
50,609 | <question>: What office was law preservation ticket holder William E. Barron running for? <context>: CREATE TABLE table_name_51 (office VARCHAR, law_preservation_ticket VARCHAR) | SELECT office FROM table_name_51 WHERE law_preservation_ticket = "william e. barron" |
50,610 | <question>: Who was the constitutional ticken when Charles B. Sears was the republican ticket? <context>: CREATE TABLE table_name_51 (constitutional_ticket VARCHAR, republican_ticket VARCHAR) | SELECT constitutional_ticket FROM table_name_51 WHERE republican_ticket = "charles b. sears" |
50,611 | <question>: Who was the constitutional ticket when william karlin was the socialist ticket? <context>: CREATE TABLE table_name_95 (constitutional_ticket VARCHAR, socialist_ticket VARCHAR) | SELECT constitutional_ticket FROM table_name_95 WHERE socialist_ticket = "william karlin" |
50,612 | <question>: What was the margin of victory on Mar 18, 1979? <context>: CREATE TABLE table_name_69 (margin_of_victory VARCHAR, date VARCHAR) | SELECT margin_of_victory FROM table_name_69 WHERE date = "mar 18, 1979" |
50,613 | <question>: What is the comp for the year 1989? <context>: CREATE TABLE table_name_42 (comp VARCHAR, year VARCHAR) | SELECT comp FROM table_name_42 WHERE year = "1989" |
50,614 | <question>: What is the team in 1989? <context>: CREATE TABLE table_name_50 (team VARCHAR, year VARCHAR) | SELECT team FROM table_name_50 WHERE year = "1989" |
50,615 | <question>: What is the RAtt in the year 1988? <context>: CREATE TABLE table_name_72 (ratt VARCHAR, year VARCHAR) | SELECT ratt FROM table_name_72 WHERE year = "1988" |
50,616 | <question>: What was the team with a Ratt of 42? <context>: CREATE TABLE table_name_73 (team VARCHAR, ratt VARCHAR) | SELECT team FROM table_name_73 WHERE ratt = "42" |
50,617 | <question>: What was the team with a ratt of 57? <context>: CREATE TABLE table_name_18 (team VARCHAR, ratt VARCHAR) | SELECT team FROM table_name_18 WHERE ratt = "57" |
50,618 | <question>: Who did the Giants play before week 7 in Tulane Stadium? <context>: 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" |
50,619 | <question>: What was the lowest attendance for week 1? <context>: CREATE TABLE table_name_48 (attendance INTEGER, week VARCHAR) | SELECT MIN(attendance) FROM table_name_48 WHERE week = 1 |
50,620 | <question>: What is the highest rank of a player from Ethiopia? <context>: CREATE TABLE table_name_8 (rank INTEGER, country VARCHAR) | SELECT MAX(rank) FROM table_name_8 WHERE country = "ethiopia" |
50,621 | <question>: How many ranks had 367 matches and more than 216 goals? <context>: CREATE TABLE table_name_94 (rank INTEGER, matches VARCHAR, goals VARCHAR) | SELECT SUM(rank) FROM table_name_94 WHERE matches = 367 AND goals > 216 |
50,622 | <question>: What is the mean rank number when goals are 230 and there are more than 535? <context>: CREATE TABLE table_name_86 (rank INTEGER, goals VARCHAR, matches VARCHAR) | SELECT AVG(rank) FROM table_name_86 WHERE goals = 230 AND matches > 535 |
50,623 | <question>: Where the audience share is 8%, what is the original airing? <context>: CREATE TABLE table_name_60 (original_airing VARCHAR, audience_share__average_ VARCHAR) | SELECT original_airing FROM table_name_60 WHERE audience_share__average_ = "8%" |
50,624 | <question>: What episode number has an audience share of 10%? <context>: 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%" |
50,625 | <question>: What is the value for the item "Class" when the value of the item "Wheels" is 137? <context>: CREATE TABLE table_name_97 (class VARCHAR, wheels VARCHAR) | SELECT class FROM table_name_97 WHERE wheels = 137 |
50,626 | <question>: What's the smallest number of games for the fenerbahçe team? <context>: CREATE TABLE table_name_84 (games INTEGER, team VARCHAR) | SELECT MIN(games) FROM table_name_84 WHERE team = "fenerbahçe" |
50,627 | <question>: What's the mean game number for the olympiacos team when there's less than 17 rebounds? <context>: CREATE TABLE table_name_75 (games INTEGER, team VARCHAR, rebounds VARCHAR) | SELECT AVG(games) FROM table_name_75 WHERE team = "olympiacos" AND rebounds < 17 |
50,628 | <question>: How many games does novica veličković have when there's more than 24 rebounds? <context>: 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 |
50,629 | <question>: What is the League with a Year that is 1990/91? <context>: CREATE TABLE table_name_64 (league VARCHAR, year VARCHAR) | SELECT league FROM table_name_64 WHERE year = "1990/91" |
50,630 | <question>: What is the ICAO for simferopol international airport? <context>: CREATE TABLE table_name_75 (icao VARCHAR, airport VARCHAR) | SELECT icao FROM table_name_75 WHERE airport = "simferopol international airport" |
50,631 | <question>: Which country has an IATA of gzt? <context>: CREATE TABLE table_name_70 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_70 WHERE iata = "gzt" |
50,632 | <question>: What country is Yerevan located in? <context>: CREATE TABLE table_name_21 (country VARCHAR, city VARCHAR) | SELECT country FROM table_name_21 WHERE city = "yerevan" |
50,633 | <question>: What is the ICAO when the IATA is ika? <context>: CREATE TABLE table_name_19 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_19 WHERE iata = "ika" |
50,634 | <question>: What is the ICAO when the IATA is ist? <context>: CREATE TABLE table_name_34 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_34 WHERE iata = "ist" |
50,635 | <question>: Which team has 10 losses? <context>: CREATE TABLE table_name_33 (team VARCHAR, lost VARCHAR) | SELECT team FROM table_name_33 WHERE lost = 10 |
50,636 | <question>: In which yearly change was there a capacity of 78.4% and a rank smaller than 3? <context>: 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%" |
50,637 | <question>: In Which rank was there a location of porto alegre? <context>: CREATE TABLE table_name_85 (rank VARCHAR, location VARCHAR) | SELECT rank FROM table_name_85 WHERE location = "porto alegre" |
50,638 | <question>: what is the number of passengers when the capacity is 81.2%? <context>: 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%" |
50,639 | <question>: what is the highest amount of passengers when there is a rank of 1? <context>: CREATE TABLE table_name_94 (total_passengers INTEGER, rank VARCHAR) | SELECT MAX(total_passengers) FROM table_name_94 WHERE rank = 1 |
50,640 | <question>: What was the latest Week on which the Result was l 17–0? <context>: CREATE TABLE table_name_95 (week INTEGER, result VARCHAR) | SELECT MAX(week) FROM table_name_95 WHERE result = "l 17–0" |
50,641 | <question>: What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3? <context>: 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 |
50,642 | <question>: What is average Top 10 with 0 wins? <context>: CREATE TABLE table_name_93 (top_10 INTEGER, wins INTEGER) | SELECT AVG(top_10) FROM table_name_93 WHERE wins < 0 |
50,643 | <question>: What is the average event for the Open Championship Tournament, and a Top-5 less than 1? <context>: 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 |
50,644 | <question>: What is the average wins has Top-25 less than 0? <context>: CREATE TABLE table_name_66 (wins INTEGER, top_25 INTEGER) | SELECT AVG(wins) FROM table_name_66 WHERE top_25 < 0 |
50,645 | <question>: What is the largest Against with a Byes larger than 0? <context>: CREATE TABLE table_name_40 (against INTEGER, byes INTEGER) | SELECT MAX(against) FROM table_name_40 WHERE byes > 0 |
50,646 | <question>: Which Wins has an Against of 1940, and a Byes larger than 0? <context>: CREATE TABLE table_name_61 (wins INTEGER, against VARCHAR, byes VARCHAR) | SELECT MAX(wins) FROM table_name_61 WHERE against = 1940 AND byes > 0 |
50,647 | <question>: Which Draws has a Wins of 10, and a Peel of south mandurah, and a Byes larger than 0? <context>: 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 |
50,648 | <question>: Which Against has a Draws larger than 0, a Losses smaller than 16, and a Wins smaller than 4? <context>: 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 |
50,649 | <question>: Which Losses has an Against of 1101, and a Byes smaller than 0? <context>: CREATE TABLE table_name_52 (losses VARCHAR, against VARCHAR, byes VARCHAR) | SELECT COUNT(losses) FROM table_name_52 WHERE against = 1101 AND byes < 0 |
50,650 | <question>: Which Byes has a Losses smaller than 1? <context>: CREATE TABLE table_name_5 (byes INTEGER, losses INTEGER) | SELECT MAX(byes) FROM table_name_5 WHERE losses < 1 |
50,651 | <question>: What is the average number of games of the player with a rank less than 1? <context>: CREATE TABLE table_name_55 (games INTEGER, rank INTEGER) | SELECT AVG(games) FROM table_name_55 WHERE rank < 1 |
50,652 | <question>: What is the highest rank of the player with less than 32 points? <context>: CREATE TABLE table_name_24 (rank INTEGER, points INTEGER) | SELECT MAX(rank) FROM table_name_24 WHERE points < 32 |
50,653 | <question>: What is the rank of the player with less than 34 points? <context>: CREATE TABLE table_name_95 (rank INTEGER, points INTEGER) | SELECT SUM(rank) FROM table_name_95 WHERE points < 34 |
50,654 | <question>: Who's Fourth District has a Second District of bob springstead? <context>: CREATE TABLE table_name_72 (fourth_district VARCHAR, second_district VARCHAR) | SELECT fourth_district FROM table_name_72 WHERE second_district = "bob springstead" |
50,655 | <question>: Who's the First District with a Fifth District of prudy adam? <context>: CREATE TABLE table_name_9 (first_district VARCHAR, fifth_district VARCHAR) | SELECT first_district FROM table_name_9 WHERE fifth_district = "prudy adam" |
50,656 | <question>: Who's the Fourth District with a First District of beverly bodem? <context>: CREATE TABLE table_name_98 (fourth_district VARCHAR, first_district VARCHAR) | SELECT fourth_district FROM table_name_98 WHERE first_district = "beverly bodem" |
50,657 | <question>: Who's the Fourth District with a Second District of kurt van koevering? <context>: CREATE TABLE table_name_41 (fourth_district VARCHAR, second_district VARCHAR) | SELECT fourth_district FROM table_name_41 WHERE second_district = "kurt van koevering" |
50,658 | <question>: Who's the Fifth District with a Second District of paul leidig? <context>: CREATE TABLE table_name_23 (fifth_district VARCHAR, second_district VARCHAR) | SELECT fifth_district FROM table_name_23 WHERE second_district = "paul leidig" |
50,659 | <question>: Who's the Fourth District with a Third District of sharon yentsch? <context>: CREATE TABLE table_name_82 (fourth_district VARCHAR, third_district VARCHAR) | SELECT fourth_district FROM table_name_82 WHERE third_district = "sharon yentsch" |
50,660 | <question>: How many Sets did Gary Muller have? <context>: CREATE TABLE table_name_21 (sets VARCHAR, player VARCHAR) | SELECT COUNT(sets) FROM table_name_21 WHERE player = "gary muller" |
50,661 | <question>: What Player in 2005 Wimbledon had less than 5 Sets? <context>: CREATE TABLE table_name_12 (player VARCHAR, sets VARCHAR, event VARCHAR) | SELECT player FROM table_name_12 WHERE sets < 5 AND event = "2005 wimbledon" |
50,662 | <question>: At the 2001 Davis Cup, what Opponent had less than 50 Aces? <context>: 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" |
50,663 | <question>: What time did Channel 4 air an episode number larger than 106 with the title of Marry Me A Little? <context>: 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" |
50,664 | <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? <context>: 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 |
50,665 | <question>: What is the total number sunk by warship or raider with 20 German submarines lost and more than 21616 sunk by aircraft? <context>: 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 |
50,666 | <question>: What is the total number of German submarines lost with more than 120958 sunk by mines? <context>: 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 |
50,667 | <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? <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) | 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 |
50,668 | <question>: What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider? <context>: 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 |
50,669 | <question>: What is the post-1986 provinces with a 全羅道 Hanja? <context>: CREATE TABLE table_name_52 (post_1896_provinces VARCHAR, hanja VARCHAR) | SELECT post_1896_provinces FROM table_name_52 WHERE hanja = "全羅道" |
50,670 | <question>: What is the Korean dialect in the daegu capital? <context>: CREATE TABLE table_name_71 (korean_dialect VARCHAR, capital VARCHAR) | SELECT korean_dialect FROM table_name_71 WHERE capital = "daegu" |
50,671 | <question>: What is the Korean dialect with a jeolla RR Romaja? <context>: CREATE TABLE table_name_18 (korean_dialect VARCHAR, rr_romaja VARCHAR) | SELECT korean_dialect FROM table_name_18 WHERE rr_romaja = "jeolla" |
50,672 | <question>: What is the Hanja for the hamgyeong RR Romaja? <context>: CREATE TABLE table_name_4 (hanja VARCHAR, rr_romaja VARCHAR) | SELECT hanja FROM table_name_4 WHERE rr_romaja = "hamgyeong" |
50,673 | <question>: What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels? <context>: 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 |
50,674 | <question>: What's the approximate number of HUs when there are more than 2 digits, and 6 levels? <context>: 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 |
50,675 | <question>: How many HUC example codes have 1 level? <context>: CREATE TABLE table_name_48 (example_code__huc_ VARCHAR, level VARCHAR) | SELECT COUNT(example_code__huc_) FROM table_name_48 WHERE level = 1 |
50,676 | <question>: What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370? <context>: 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 |
50,677 | <question>: What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0? <context>: 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 |
50,678 | <question>: What is the smallest losses when the wins are 5 and the against less than 1852? <context>: CREATE TABLE table_name_14 (losses INTEGER, wins VARCHAR, against VARCHAR) | SELECT MIN(losses) FROM table_name_14 WHERE wins = 5 AND against < 1852 |
50,679 | <question>: What is the fewest losses that Ballarat FL of Lake Wendouree has when the wins are smaller than 9? <context>: 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 |
50,680 | <question>: What is the smallest byes when the wins are 3? <context>: CREATE TABLE table_name_49 (byes INTEGER, wins VARCHAR) | SELECT MIN(byes) FROM table_name_49 WHERE wins = 3 |
50,681 | <question>: What is the highest Attendance when the away team was Wrexham? <context>: CREATE TABLE table_name_39 (attendance INTEGER, away_team VARCHAR) | SELECT MAX(attendance) FROM table_name_39 WHERE away_team = "wrexham" |
50,682 | <question>: What is the Away team when the home team was wycombe wanderers? <context>: CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_9 WHERE home_team = "wycombe wanderers" |
50,683 | <question>: What is the lowest Attendance when the home team was slough town? <context>: CREATE TABLE table_name_62 (attendance INTEGER, home_team VARCHAR) | SELECT MIN(attendance) FROM table_name_62 WHERE home_team = "slough town" |
50,684 | <question>: What is the sum of Attendance when macclesfield town was the way team? <context>: CREATE TABLE table_name_22 (attendance INTEGER, away_team VARCHAR) | SELECT SUM(attendance) FROM table_name_22 WHERE away_team = "macclesfield town" |
50,685 | <question>: How many Spins sources have a CCM Chart of CHR with a peak position less than 1? <context>: 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 |
50,686 | <question>: What CCM Chart had 18 total weeks? <context>: CREATE TABLE table_name_94 (ccm_chart VARCHAR, total_wks VARCHAR) | SELECT ccm_chart FROM table_name_94 WHERE total_wks = 18 |
50,687 | <question>: What is Opponent, when Date is December 18, 1988? <context>: CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_7 WHERE date = "december 18, 1988" |
50,688 | <question>: What is Attendance, when Opponent is Pittsburgh Steelers? <context>: CREATE TABLE table_name_2 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_2 WHERE opponent = "pittsburgh steelers" |
50,689 | <question>: What is the average Week, when Result is l 37–34? <context>: CREATE TABLE table_name_80 (week INTEGER, result VARCHAR) | SELECT AVG(week) FROM table_name_80 WHERE result = "l 37–34" |
50,690 | <question>: When was Shannon Long the Centerfold model? <context>: CREATE TABLE table_name_15 (date VARCHAR, centerfold_model VARCHAR) | SELECT date FROM table_name_15 WHERE centerfold_model = "shannon long" |
50,691 | <question>: Who was the Centerfold model on 5-88? <context>: CREATE TABLE table_name_20 (centerfold_model VARCHAR, date VARCHAR) | SELECT centerfold_model FROM table_name_20 WHERE date = "5-88" |
50,692 | <question>: Who was the Centerfild model that used Bruce Willis as her Interview subject? <context>: CREATE TABLE table_name_60 (centerfold_model VARCHAR, interview_subject VARCHAR) | SELECT centerfold_model FROM table_name_60 WHERE interview_subject = "bruce willis" |
50,693 | <question>: What is Series, when Launch Date is 23 February 2013? <context>: CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR) | SELECT series FROM table_name_16 WHERE launch_date = "23 february 2013" |
50,694 | <question>: What is Series, when Days is greater than 99, and when Prize is €50,000? <context>: CREATE TABLE table_name_15 (series VARCHAR, days VARCHAR, prize VARCHAR) | SELECT series FROM table_name_15 WHERE days > 99 AND prize = "€50,000" |
50,695 | <question>: What is Series, when Winner is Jetmir Salaj? <context>: CREATE TABLE table_name_54 (series VARCHAR, winner VARCHAR) | SELECT series FROM table_name_54 WHERE winner = "jetmir salaj" |
50,696 | <question>: What is Highest Days, when Launch Date is 23 January 2010? <context>: CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR) | SELECT MAX(days) FROM table_name_16 WHERE launch_date = "23 january 2010" |
50,697 | <question>: What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20? <context>: 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 |
50,698 | <question>: What is the lowest Games, when Name is Jeremiah Massey, and when Points is less than 340? <context>: 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 |
50,699 | <question>: What is the lowest Points, when Games is greater than 20, and when Team is Partizan Belgrade? <context>: 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" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.