Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
51,100 | <question>: What was the Category after 1991 with a Score of 7-5, 6-7, 6-2? <context>: CREATE TABLE table_name_90 (category VARCHAR, year VARCHAR, score VARCHAR) | SELECT category FROM table_name_90 WHERE year > 1991 AND score = "7-5, 6-7, 6-2" |
51,101 | <question>: What was the issue date for the song by Paul Mccartney and Michael Jackson? <context>: CREATE TABLE table_name_97 (issue_date_s_ VARCHAR, artist VARCHAR) | SELECT issue_date_s_ FROM table_name_97 WHERE artist = "paul mccartney and michael jackson" |
51,102 | <question>: What is the smallest number of seats with INC as an election winner and BJP incumbent? <context>: CREATE TABLE table_name_57 (seats__acs_ INTEGER, election_winner VARCHAR, incumbent VARCHAR) | SELECT MIN(seats__acs_) FROM table_name_57 WHERE election_winner = "inc" AND incumbent = "bjp" |
51,103 | <question>: Who was the election winner with a BJP incumbent in Chhattisgarh? <context>: CREATE TABLE table_name_77 (election_winner VARCHAR, incumbent VARCHAR, state VARCHAR) | SELECT election_winner FROM table_name_77 WHERE incumbent = "bjp" AND state = "chhattisgarh" |
51,104 | <question>: Which country has an IATA of EVN? <context>: CREATE TABLE table_name_8 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_8 WHERE iata = "evn" |
51,105 | <question>: What is the name of the airport located in Russia with an IATA of AER? <context>: CREATE TABLE table_name_34 (airport VARCHAR, country VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_34 WHERE country = "russia" AND iata = "aer" |
51,106 | <question>: What is the name of the airport located in Russia with an IATA of KRR? <context>: CREATE TABLE table_name_30 (airport VARCHAR, country VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_30 WHERE country = "russia" AND iata = "krr" |
51,107 | <question>: What is the name of the airport with an ICAO of ULLI? <context>: CREATE TABLE table_name_40 (airport VARCHAR, icao VARCHAR) | SELECT airport FROM table_name_40 WHERE icao = "ulli" |
51,108 | <question>: What is the ICAO for the destination in Armenia? <context>: CREATE TABLE table_name_80 (icao VARCHAR, country VARCHAR) | SELECT icao FROM table_name_80 WHERE country = "armenia" |
51,109 | <question>: What is the name of the airport with an IATA of KUF? <context>: CREATE TABLE table_name_68 (airport VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_68 WHERE iata = "kuf" |
51,110 | <question>: What is the status of Author Del Corro? <context>: CREATE TABLE table_name_84 (status VARCHAR, authors VARCHAR) | SELECT status FROM table_name_84 WHERE authors = "del corro" |
51,111 | <question>: What is the location of the authors of Molnar? <context>: CREATE TABLE table_name_65 (location VARCHAR, authors VARCHAR) | SELECT location FROM table_name_65 WHERE authors = "molnar" |
51,112 | <question>: What is the status of Prenocephale? <context>: CREATE TABLE table_name_96 (status VARCHAR, name VARCHAR) | SELECT status FROM table_name_96 WHERE name = "prenocephale" |
51,113 | <question>: What is the novel that has a valid status, located in Mongolia, and named Prenocephale? <context>: CREATE TABLE table_name_40 (novelty VARCHAR, name VARCHAR, status VARCHAR, location VARCHAR) | SELECT novelty FROM table_name_40 WHERE status = "valid" AND location = "mongolia" AND name = "prenocephale" |
51,114 | <question>: What is the novelty of Tylocephale? <context>: CREATE TABLE table_name_14 (novelty VARCHAR, name VARCHAR) | SELECT novelty FROM table_name_14 WHERE name = "tylocephale" |
51,115 | <question>: Which team 1 has vfl gummersbach as team 2? <context>: CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_13 WHERE team_2 = "vfl gummersbach" |
51,116 | <question>: Which team 1 has cbm valladolid as team 2? <context>: CREATE TABLE table_name_75 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_75 WHERE team_2 = "cbm valladolid" |
51,117 | <question>: What 2nd leg has rk gold club kozina as team 1? <context>: CREATE TABLE table_name_23 (team_1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_23 WHERE team_1 = "rk gold club kozina" |
51,118 | <question>: What 1st leg has 52-70 as the agg.? <context>: CREATE TABLE table_name_8 (agg VARCHAR) | SELECT 1 AS st_leg FROM table_name_8 WHERE agg = "52-70" |
51,119 | <question>: What was the surface for October 10, 2004? <context>: CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_72 WHERE date = "october 10, 2004" |
51,120 | <question>: What was the surface for the opponent Roger Federer? <context>: CREATE TABLE table_name_94 (surface VARCHAR, opponent VARCHAR) | SELECT surface FROM table_name_94 WHERE opponent = "roger federer" |
51,121 | <question>: How many years was the 400 m event in the olympic games? <context>: CREATE TABLE table_name_28 (year VARCHAR, competition VARCHAR, event VARCHAR) | SELECT COUNT(year) FROM table_name_28 WHERE competition = "olympic games" AND event = "400 m" |
51,122 | <question>: How many were in attendance of the game with l 26-21 result? <context>: CREATE TABLE table_name_28 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_28 WHERE result = "l 26-21" |
51,123 | <question>: Who is the opponent for the game with 37,845 people in attendance? <context>: CREATE TABLE table_name_64 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_64 WHERE attendance = "37,845" |
51,124 | <question>: How many silver medals were there with 2 gold medals and more than 2 bronze medals? <context>: CREATE TABLE table_name_11 (silver VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT silver FROM table_name_11 WHERE gold = 2 AND bronze > 2 |
51,125 | <question>: What is the smallest total number of medals for rank 11 and more than 0 silver medals? <context>: CREATE TABLE table_name_25 (total INTEGER, rank VARCHAR, silver VARCHAR) | SELECT MIN(total) FROM table_name_25 WHERE rank = "11" AND silver > 0 |
51,126 | <question>: What is the sum of all total medals with more than 2 bronze medals and more than 1 gold medal for the United States? <context>: CREATE TABLE table_name_27 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR) | SELECT SUM(total) FROM table_name_27 WHERE bronze > 2 AND nation = "united states" AND gold > 1 |
51,127 | <question>: What is the largest number of gold medals for Canada with more than 7 bronze medals? <context>: CREATE TABLE table_name_31 (gold INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT MAX(gold) FROM table_name_31 WHERE nation = "canada" AND bronze > 7 |
51,128 | <question>: What is the sum of all silver medals with less than 23 medals in total and more than 3 bronze medals for the United States? <context>: CREATE TABLE table_name_21 (silver INTEGER, bronze VARCHAR, total VARCHAR, nation VARCHAR) | SELECT SUM(silver) FROM table_name_21 WHERE total < 23 AND nation = "united states" AND bronze > 3 |
51,129 | <question>: When was Steve Williams in Zurich and his result was 10.07? <context>: CREATE TABLE table_name_28 (date VARCHAR, location VARCHAR, result VARCHAR) | SELECT date FROM table_name_28 WHERE location = "zurich" AND result = 10.07 |
51,130 | <question>: What is the largest number lost with 0 draws and less than 12 points for Gwardia Katowice? <context>: CREATE TABLE table_name_81 (lost INTEGER, points VARCHAR, draw VARCHAR, team VARCHAR) | SELECT MAX(lost) FROM table_name_81 WHERE draw = 0 AND team = "gwardia katowice" AND points < 12 |
51,131 | <question>: What is the highest number of draws with 6 losses and less than 15 points? <context>: CREATE TABLE table_name_94 (draw INTEGER, lost VARCHAR, points VARCHAR) | SELECT MAX(draw) FROM table_name_94 WHERE lost = 6 AND points < 15 |
51,132 | <question>: How many draws correspond to more than 11 losses in a match less than 14? <context>: CREATE TABLE table_name_36 (draw VARCHAR, lost VARCHAR, match VARCHAR) | SELECT COUNT(draw) FROM table_name_36 WHERE lost > 11 AND match < 14 |
51,133 | <question>: What is the Director of Children of Sarajevo? <context>: CREATE TABLE table_name_39 (director VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT director FROM table_name_39 WHERE film_title_used_in_nomination = "children of sarajevo" |
51,134 | <question>: What is the Result of the 2010 (83rd) Ceremony? <context>: CREATE TABLE table_name_11 (result VARCHAR, year__ceremony_ VARCHAR) | SELECT result FROM table_name_11 WHERE year__ceremony_ = "2010 (83rd)" |
51,135 | <question>: What is the Result of the 2013 (86th) Ceremony? <context>: CREATE TABLE table_name_77 (result VARCHAR, year__ceremony_ VARCHAR) | SELECT result FROM table_name_77 WHERE year__ceremony_ = "2013 (86th)" |
51,136 | <question>: What is the Original title of Children of Sarajevo? <context>: CREATE TABLE table_name_42 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT original_title FROM table_name_42 WHERE film_title_used_in_nomination = "children of sarajevo" |
51,137 | <question>: In the 2012 (85th) Ceremony, what was the Original title of the film not nominated? <context>: CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCHAR) | SELECT original_title FROM table_name_66 WHERE result = "not nominated" AND year__ceremony_ = "2012 (85th)" |
51,138 | <question>: What is the lowest draw number for the song ranked 6th with more than 43 points? <context>: CREATE TABLE table_name_22 (draw INTEGER, points VARCHAR, rank VARCHAR) | SELECT MIN(draw) FROM table_name_22 WHERE points > 43 AND rank = "6th" |
51,139 | <question>: What is the total sum of points for songs performed by Partners in Crime? <context>: CREATE TABLE table_name_16 (points INTEGER, performer VARCHAR) | SELECT SUM(points) FROM table_name_16 WHERE performer = "partners in crime" |
51,140 | <question>: What is the class of facility ID 150935? <context>: CREATE TABLE table_name_21 (class VARCHAR, facility_id VARCHAR) | SELECT class FROM table_name_21 WHERE facility_id = 150935 |
51,141 | <question>: Which city has a facility ID greater than 150833? <context>: CREATE TABLE table_name_17 (city_of_license VARCHAR, facility_id INTEGER) | SELECT city_of_license FROM table_name_17 WHERE facility_id > 150833 |
51,142 | <question>: What position does the player from the Toronto Argonauts play? <context>: CREATE TABLE table_name_99 (position VARCHAR, cfl_team VARCHAR) | SELECT position FROM table_name_99 WHERE cfl_team = "toronto argonauts" |
51,143 | <question>: What was the 1st leg for Team 2 Concepto Egile? <context>: CREATE TABLE table_name_88 (team_2 VARCHAR) | SELECT 1 AS st_leg FROM table_name_88 WHERE team_2 = "concepto egile" |
51,144 | <question>: Which team 1 has team 2, Gomera? <context>: CREATE TABLE table_name_54 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_54 WHERE team_2 = "gomera" |
51,145 | <question>: What public team was founded prior to 1883? <context>: CREATE TABLE table_name_45 (team VARCHAR, founded VARCHAR, type VARCHAR) | SELECT team FROM table_name_45 WHERE founded < 1883 AND type = "public" |
51,146 | <question>: Who has exactly 342 spikes? <context>: CREATE TABLE table_name_68 (name VARCHAR, spike VARCHAR) | SELECT name FROM table_name_68 WHERE spike = 342 |
51,147 | <question>: What is the smallest number of spikes for players with a weight of 83 and height over 190? <context>: CREATE TABLE table_name_69 (spike INTEGER, weight VARCHAR, height VARCHAR) | SELECT MIN(spike) FROM table_name_69 WHERE weight = 83 AND height > 190 |
51,148 | <question>: What is Class, when Power is 78 Watts? <context>: CREATE TABLE table_name_15 (class VARCHAR, power VARCHAR) | SELECT class FROM table_name_15 WHERE power = "78 watts" |
51,149 | <question>: What is Power, when Identifier is CBEB-FM? <context>: CREATE TABLE table_name_48 (power VARCHAR, identifier VARCHAR) | SELECT power FROM table_name_48 WHERE identifier = "cbeb-fm" |
51,150 | <question>: What is Identifier, when City of License is Terrace Bay? <context>: CREATE TABLE table_name_26 (identifier VARCHAR, city_of_license VARCHAR) | SELECT identifier FROM table_name_26 WHERE city_of_license = "terrace bay" |
51,151 | <question>: What is Power, when City of License is Sioux Lookout? <context>: CREATE TABLE table_name_93 (power VARCHAR, city_of_license VARCHAR) | SELECT power FROM table_name_93 WHERE city_of_license = "sioux lookout" |
51,152 | <question>: What is Identifier, when City of License is Hornepayne? <context>: CREATE TABLE table_name_55 (identifier VARCHAR, city_of_license VARCHAR) | SELECT identifier FROM table_name_55 WHERE city_of_license = "hornepayne" |
51,153 | <question>: What is City of License, when Frequency is 101.1? <context>: CREATE TABLE table_name_20 (city_of_license VARCHAR, frequency VARCHAR) | SELECT city_of_license FROM table_name_20 WHERE frequency = "101.1" |
51,154 | <question>: Which LE-5 Model has an LE-5A of 130? <context>: CREATE TABLE table_name_2 (le_5_model VARCHAR, le_5A VARCHAR) | SELECT le_5_model FROM table_name_2 WHERE le_5A = 130 |
51,155 | <question>: What Series had 14 races and 12th position? <context>: CREATE TABLE table_name_11 (series VARCHAR, races VARCHAR, position VARCHAR) | SELECT series FROM table_name_11 WHERE races = 14 AND position = "12th" |
51,156 | <question>: What season was the Formula BMW USA in? <context>: CREATE TABLE table_name_87 (season VARCHAR, series VARCHAR) | SELECT season FROM table_name_87 WHERE series = "formula bmw usa" |
51,157 | <question>: What series had more than 10 Podiums? <context>: CREATE TABLE table_name_73 (series VARCHAR, podiums INTEGER) | SELECT series FROM table_name_73 WHERE podiums > 10 |
51,158 | <question>: What is the Status with an Author that is colbert? <context>: CREATE TABLE table_name_25 (status VARCHAR, authors VARCHAR) | SELECT status FROM table_name_25 WHERE authors = "colbert" |
51,159 | <question>: What college was the draft pick number larger than 18 that went to the Barangay ginebra kings? <context>: CREATE TABLE table_name_78 (college VARCHAR, pick VARCHAR, pba_team VARCHAR) | SELECT college FROM table_name_78 WHERE pick > 18 AND pba_team = "barangay ginebra kings" |
51,160 | <question>: What is the sum of the pick numbers for the player that went to San Miguel Beermen who played at San Sebastian? <context>: CREATE TABLE table_name_36 (pick INTEGER, pba_team VARCHAR, college VARCHAR) | SELECT SUM(pick) FROM table_name_36 WHERE pba_team = "san miguel beermen" AND college = "san sebastian" |
51,161 | <question>: What is the total number of picks for PBA team san miguel beermen who picked rommel daep? <context>: CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR) | SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = "san miguel beermen" AND player = "rommel daep" |
51,162 | <question>: Who won after 1999 with changwon lg sakers as runners-up? <context>: CREATE TABLE table_name_47 (champions VARCHAR, year VARCHAR, runners_up VARCHAR) | SELECT champions FROM table_name_47 WHERE year > 1999 AND runners_up = "changwon lg sakers" |
51,163 | <question>: What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007? <context>: CREATE TABLE table_name_39 (result VARCHAR, champions VARCHAR, year VARCHAR, runners_up VARCHAR) | SELECT result FROM table_name_39 WHERE year > 2007 AND runners_up = "seoul samsung thunders" AND champions = "jeonju kcc egis" |
51,164 | <question>: What was the winning team in 2013? <context>: CREATE TABLE table_name_74 (winning_team VARCHAR, year VARCHAR) | SELECT winning_team FROM table_name_74 WHERE year = 2013 |
51,165 | <question>: What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth? <context>: CREATE TABLE table_name_93 (year INTEGER, winning_team VARCHAR, usa_captain VARCHAR) | SELECT MAX(year) FROM table_name_93 WHERE winning_team = "europe" AND usa_captain = "kathy whitworth" |
51,166 | <question>: When the USA's captain was Beth Daniel, who was the winning team? <context>: CREATE TABLE table_name_99 (winning_team VARCHAR, usa_captain VARCHAR) | SELECT winning_team FROM table_name_99 WHERE usa_captain = "beth daniel" |
51,167 | <question>: What is the Season when league shows bundesliga, and a European competition of played korac cup? <context>: CREATE TABLE table_name_25 (season VARCHAR, league VARCHAR, european_competitions VARCHAR) | SELECT season FROM table_name_25 WHERE league = "bundesliga" AND european_competitions = "played korac cup" |
51,168 | <question>: What is the average Tier when the postseason shows -, and the season is 2012–13? <context>: CREATE TABLE table_name_56 (tier INTEGER, postseason VARCHAR, season VARCHAR) | SELECT AVG(tier) FROM table_name_56 WHERE postseason = "–" AND season = "2012–13" |
51,169 | <question>: What is the European competition when the tier is more than 2? <context>: CREATE TABLE table_name_33 (european_competitions VARCHAR, tier INTEGER) | SELECT european_competitions FROM table_name_33 WHERE tier > 2 |
51,170 | <question>: What was the outcome of the match played on grass? <context>: CREATE TABLE table_name_64 (outcome VARCHAR, surface VARCHAR) | SELECT outcome FROM table_name_64 WHERE surface = "grass" |
51,171 | <question>: What was the outcome of the match on February 17, 2003? <context>: CREATE TABLE table_name_13 (outcome VARCHAR, date__final_ VARCHAR) | SELECT outcome FROM table_name_13 WHERE date__final_ = "february 17, 2003" |
51,172 | <question>: How many average wins have USA as the team? <context>: CREATE TABLE table_name_25 (wins INTEGER, team VARCHAR) | SELECT AVG(wins) FROM table_name_25 WHERE team = "usa" |
51,173 | <question>: What are the average wins that have great britain as the team? <context>: CREATE TABLE table_name_80 (wins INTEGER, team VARCHAR) | SELECT AVG(wins) FROM table_name_80 WHERE team = "great britain" |
51,174 | <question>: What's the average draft pick number from Carson-Newman College before Round 7? <context>: CREATE TABLE table_name_21 (pick__number INTEGER, college VARCHAR, round VARCHAR) | SELECT AVG(pick__number) FROM table_name_21 WHERE college = "carson-newman" AND round < 7 |
51,175 | <question>: Which college has a pick number of 155? <context>: CREATE TABLE table_name_19 (college VARCHAR, pick__number VARCHAR) | SELECT college FROM table_name_19 WHERE pick__number = 155 |
51,176 | <question>: What score in the final has november 3, 2002 as the date? <context>: CREATE TABLE table_name_76 (score_in_the_final VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_76 WHERE date = "november 3, 2002" |
51,177 | <question>: What surface has natalia gussoni as the partner? <context>: CREATE TABLE table_name_14 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_14 WHERE partner = "natalia gussoni" |
51,178 | <question>: What outcome has September 23, 2013 as the date? <context>: CREATE TABLE table_name_68 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_68 WHERE date = "september 23, 2013" |
51,179 | <question>: What score in the final has hard as the surface, and june 13, 2011 as the date? <context>: CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_57 WHERE surface = "hard" AND date = "june 13, 2011" |
51,180 | <question>: What date has elke clijsters as the partner? <context>: CREATE TABLE table_name_43 (date VARCHAR, partner VARCHAR) | SELECT date FROM table_name_43 WHERE partner = "elke clijsters" |
51,181 | <question>: What is the Round with a Prize of money that is £120,000? <context>: CREATE TABLE table_name_59 (round VARCHAR, prize_money VARCHAR) | SELECT round FROM table_name_59 WHERE prize_money = "£120,000" |
51,182 | <question>: What is the Match with a Prize of money that is £1,000,000? <context>: CREATE TABLE table_name_16 (matches VARCHAR, prize_money VARCHAR) | SELECT matches FROM table_name_16 WHERE prize_money = "£1,000,000" |
51,183 | <question>: When alvin and the chipmunks meet frankenstein, what was the role? <context>: CREATE TABLE table_name_99 (role VARCHAR, title VARCHAR) | SELECT role FROM table_name_99 WHERE title = "alvin and the chipmunks meet frankenstein" |
51,184 | <question>: What's the earliest year with a role of alvin seville simon seville david 'dave' seville, and a Title of alvin and the chipmunks meet the wolfman? <context>: CREATE TABLE table_name_18 (year INTEGER, role VARCHAR, title VARCHAR) | SELECT MIN(year) FROM table_name_18 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "alvin and the chipmunks meet the wolfman" |
51,185 | <question>: What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure? <context>: CREATE TABLE table_name_30 (year INTEGER, role VARCHAR, title VARCHAR) | SELECT AVG(year) FROM table_name_30 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "the chipmunk adventure" |
51,186 | <question>: What was the role in the chipmunk adventure? <context>: CREATE TABLE table_name_53 (role VARCHAR, title VARCHAR) | SELECT role FROM table_name_53 WHERE title = "the chipmunk adventure" |
51,187 | <question>: What role was played in 2007? <context>: CREATE TABLE table_name_37 (role VARCHAR, year VARCHAR) | SELECT role FROM table_name_37 WHERE year = 2007 |
51,188 | <question>: What is the total number of points for the KV Racing Technology team when they use a chevrolet engine? <context>: CREATE TABLE table_name_75 (points VARCHAR, engine VARCHAR, team VARCHAR) | SELECT COUNT(points) FROM table_name_75 WHERE engine = "chevrolet" AND team = "kv racing technology" |
51,189 | <question>: Which engine has a chassis of dallara, is ranked 6th, and has 384 points? <context>: CREATE TABLE table_name_99 (engine VARCHAR, points VARCHAR, chassis VARCHAR, rank VARCHAR) | SELECT engine FROM table_name_99 WHERE chassis = "dallara" AND rank = "6th" AND points = 384 |
51,190 | <question>: Which engine is used when there is a 3rd place rank and 513 points? <context>: CREATE TABLE table_name_23 (engine VARCHAR, rank VARCHAR, points VARCHAR) | SELECT engine FROM table_name_23 WHERE rank = "3rd" AND points = 513 |
51,191 | <question>: What is the chassis when the rank is 3rd? <context>: CREATE TABLE table_name_25 (chassis VARCHAR, rank VARCHAR) | SELECT chassis FROM table_name_25 WHERE rank = "3rd" |
51,192 | <question>: What are the years that Andretti Autosport is a team? <context>: CREATE TABLE table_name_44 (year VARCHAR, team VARCHAR) | SELECT COUNT(year) FROM table_name_44 WHERE team = "andretti autosport" |
51,193 | <question>: Which team is ranked 3rd in 2008? <context>: CREATE TABLE table_name_66 (team VARCHAR, rank VARCHAR, year VARCHAR) | SELECT team FROM table_name_66 WHERE rank = "3rd" AND year = 2008 |
51,194 | <question>: Which Oilers points have a Record of 10–6, and Oilers first downs larger than 14? <context>: CREATE TABLE table_name_1 (oilers_points INTEGER, record VARCHAR, oilers_first_downs VARCHAR) | SELECT AVG(oilers_points) FROM table_name_1 WHERE record = "10–6" AND oilers_first_downs > 14 |
51,195 | <question>: Which Oilers points have an Opponent of san francisco 49ers, and Opponents larger than 19? <context>: CREATE TABLE table_name_72 (oilers_points INTEGER, opponent VARCHAR, opponents VARCHAR) | SELECT MAX(oilers_points) FROM table_name_72 WHERE opponent = "san francisco 49ers" AND opponents > 19 |
51,196 | <question>: Which Game has an Opponent of at kansas city chiefs, and an Attendance smaller than 40,213? <context>: CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, attendance VARCHAR) | SELECT SUM(game) FROM table_name_60 WHERE opponent = "at kansas city chiefs" AND attendance < 40 OFFSET 213 |
51,197 | <question>: What is the name of the country that has 18 May 2004 as the date? <context>: CREATE TABLE table_name_27 (country VARCHAR, date VARCHAR) | SELECT country FROM table_name_27 WHERE date = "18 may 2004" |
51,198 | <question>: What catalog has Australia as the country? <context>: CREATE TABLE table_name_58 (catalog VARCHAR, country VARCHAR) | SELECT catalog FROM table_name_58 WHERE country = "australia" |
51,199 | <question>: In what format was the release that was dated 7 April 2003 from catalog 584 2112? <context>: CREATE TABLE table_name_18 (format VARCHAR, date VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_18 WHERE date = "7 april 2003" AND catalog = "584 2112" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.