Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
44,200 | <question>: What is the average Laps for the Mexico team with a grid number of more than 1? <context>: CREATE TABLE table_name_76 (laps INTEGER, grid VARCHAR, team VARCHAR) | SELECT AVG(laps) FROM table_name_76 WHERE grid > 1 AND team = "mexico" |
44,201 | <question>: What is name of the drive with a Time of +13.315? <context>: CREATE TABLE table_name_85 (driver VARCHAR, time VARCHAR) | SELECT driver FROM table_name_85 WHERE time = "+13.315" |
44,202 | <question>: What is the total grid number that has 14 laps and a time of +29.483? <context>: CREATE TABLE table_name_6 (grid VARCHAR, laps VARCHAR, time VARCHAR) | SELECT COUNT(grid) FROM table_name_6 WHERE laps = 14 AND time = "+29.483" |
44,203 | <question>: What is the total number of Laps when collision shows for time for Switzerland and less than 11 for grid? <context>: CREATE TABLE table_name_39 (laps VARCHAR, grid VARCHAR, time VARCHAR, team VARCHAR) | SELECT COUNT(laps) FROM table_name_39 WHERE time = "collision" AND team = "switzerland" AND grid < 11 |
44,204 | <question>: What is the time of the game after week 4 against the Baltimore Ravens? <context>: CREATE TABLE table_name_67 (time___et__ VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT time___et__ FROM table_name_67 WHERE week > 4 AND opponent = "baltimore ravens" |
44,205 | <question>: What nominated work has seattle international film festival as the award? <context>: CREATE TABLE table_name_24 (nominated_work VARCHAR, award VARCHAR) | SELECT nominated_work FROM table_name_24 WHERE award = "seattle international film festival" |
44,206 | <question>: What award has breakthrough performance as the category? <context>: CREATE TABLE table_name_52 (award VARCHAR, category VARCHAR) | SELECT award FROM table_name_52 WHERE category = "breakthrough performance" |
44,207 | <question>: What category has showest award for the category awards? <context>: CREATE TABLE table_name_9 (category VARCHAR, award VARCHAR) | SELECT category FROM table_name_9 WHERE award = "showest award" |
44,208 | <question>: What category has a year after 2004? <context>: CREATE TABLE table_name_33 (category VARCHAR, year INTEGER) | SELECT category FROM table_name_33 WHERE year > 2004 |
44,209 | <question>: Which Opponent had a Score of 6-3, 6-2? <context>: CREATE TABLE table_name_67 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_67 WHERE score = "6-3, 6-2" |
44,210 | <question>: Which Score had an Opponent of chris evert-lloyd? <context>: CREATE TABLE table_name_53 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_53 WHERE opponent = "chris evert-lloyd" |
44,211 | <question>: Which Surface had an Opponent of chris evert-lloyd? <context>: CREATE TABLE table_name_45 (surface VARCHAR, opponent VARCHAR) | SELECT surface FROM table_name_45 WHERE opponent = "chris evert-lloyd" |
44,212 | <question>: Which Surface had a Date of june 13, 1983? <context>: CREATE TABLE table_name_14 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_14 WHERE date = "june 13, 1983" |
44,213 | <question>: What was the highest attendance for a game where Geelong was the home team? <context>: CREATE TABLE table_name_25 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_25 WHERE home_team = "geelong" |
44,214 | <question>: What was the away team score when the home team was the Brisbane Lions? <context>: CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_83 WHERE home_team = "brisbane lions" |
44,215 | <question>: What was the largest attendance at the Telstra Dome, when the home team was the Western Bulldogs? <context>: CREATE TABLE table_name_30 (crowd INTEGER, ground VARCHAR, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_30 WHERE ground = "telstra dome" AND home_team = "western bulldogs" |
44,216 | <question>: What is the full amount of Total Cargo (in Metric Tonnes) where the Code (IATA/ICAO) is pvg/zspd, and the rank is less than 3? <context>: CREATE TABLE table_name_13 (total_cargo__metric_tonnes_ INTEGER, code__iata_icao_ VARCHAR, rank VARCHAR) | SELECT SUM(total_cargo__metric_tonnes_) FROM table_name_13 WHERE code__iata_icao_ = "pvg/zspd" AND rank < 3 |
44,217 | <question>: What is the Date at memorial stadium β’ minneapolis, mn with an Attendance of 20,000, and a Result of w52-0? <context>: CREATE TABLE table_name_7 (date VARCHAR, result VARCHAR, site VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_7 WHERE site = "memorial stadium β’ minneapolis, mn" AND attendance = "20,000" AND result = "w52-0" |
44,218 | <question>: What is the Opponent name at memorial stadium β’ minneapolis, mn on 10/20/1928? <context>: CREATE TABLE table_name_25 (opponent_number VARCHAR, site VARCHAR, date VARCHAR) | SELECT opponent_number FROM table_name_25 WHERE site = "memorial stadium β’ minneapolis, mn" AND date = "10/20/1928" |
44,219 | <question>: What is the Attendance number when the Opponent was purdue? <context>: CREATE TABLE table_name_15 (attendance VARCHAR, opponent_number VARCHAR) | SELECT attendance FROM table_name_15 WHERE opponent_number = "purdue" |
44,220 | <question>: What is the Site when the Result was w52-0? <context>: CREATE TABLE table_name_92 (site VARCHAR, result VARCHAR) | SELECT site FROM table_name_92 WHERE result = "w52-0" |
44,221 | <question>: What is the Attendance on 11/10/1928? <context>: CREATE TABLE table_name_42 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_42 WHERE date = "11/10/1928" |
44,222 | <question>: Who was the Winner at Campbelltown Sports Stadium? <context>: CREATE TABLE table_name_74 (winner VARCHAR, venue VARCHAR) | SELECT winner FROM table_name_74 WHERE venue = "campbelltown sports stadium" |
44,223 | <question>: When Sydney Roosters won with a Crown of more than 7,426, what was the Venue? <context>: CREATE TABLE table_name_74 (venue VARCHAR, winner VARCHAR, crowd VARCHAR) | SELECT venue FROM table_name_74 WHERE winner = "sydney roosters" AND crowd > 7 OFFSET 426 |
44,224 | <question>: What was the second leg score from the group stage on matchday 5? <context>: CREATE TABLE table_name_35 (second_leg VARCHAR, phase VARCHAR, round VARCHAR) | SELECT second_leg FROM table_name_35 WHERE phase = "group stage" AND round = "matchday 5" |
44,225 | <question>: what year did enrique alciati make a statue <context>: CREATE TABLE table_name_51 (year_erected VARCHAR, artist VARCHAR) | SELECT year_erected FROM table_name_51 WHERE artist = "enrique alciati" |
44,226 | <question>: what artist cam from uruguay <context>: CREATE TABLE table_name_81 (artist VARCHAR, country VARCHAR) | SELECT artist FROM table_name_81 WHERE country = "uruguay" |
44,227 | <question>: When did mika heinonen susanna dahlberg win mixed doubles? <context>: CREATE TABLE table_name_55 (year INTEGER, mixed_doubles VARCHAR) | SELECT AVG(year) FROM table_name_55 WHERE mixed_doubles = "mika heinonen susanna dahlberg" |
44,228 | <question>: Score of 0β3 (11β21, 14β21) had what outcome? <context>: CREATE TABLE table_name_32 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_32 WHERE score = "0β3 (11β21, 14β21)" |
44,229 | <question>: Venue of thessaloniki (without participation) had what score? <context>: CREATE TABLE table_name_99 (score VARCHAR, venue VARCHAR) | SELECT score FROM table_name_99 WHERE venue = "thessaloniki (without participation)" |
44,230 | <question>: Outcome of 13, and a Year of 2007 happened in what venue? <context>: CREATE TABLE table_name_51 (venue VARCHAR, outcome VARCHAR, year VARCHAR) | SELECT venue FROM table_name_51 WHERE outcome = "13" AND year = "2007" |
44,231 | <question>: Which Eruptions have a Location of pacific ring of fire, and a Volcanic Explosivity Index of 6, and a Country of peru? <context>: CREATE TABLE table_name_51 (eruptions VARCHAR, country VARCHAR, location VARCHAR, volcanic_explosivity_index VARCHAR) | SELECT eruptions FROM table_name_51 WHERE location = "pacific ring of fire" AND volcanic_explosivity_index = "6" AND country = "peru" |
44,232 | <question>: How many fatalities does Italy have? <context>: CREATE TABLE table_name_50 (fatalities VARCHAR, country VARCHAR) | SELECT fatalities FROM table_name_50 WHERE country = "italy" |
44,233 | <question>: How many years have a Location of pacific ring of fire, and Eruptions of pinatubo? <context>: CREATE TABLE table_name_22 (year INTEGER, location VARCHAR, eruptions VARCHAR) | SELECT SUM(year) FROM table_name_22 WHERE location = "pacific ring of fire" AND eruptions = "pinatubo" |
44,234 | <question>: What is the Standings of Eintracht Braunschweig? <context>: CREATE TABLE table_name_28 (standings VARCHAR, champions VARCHAR) | SELECT standings FROM table_name_28 WHERE champions = "eintracht braunschweig" |
44,235 | <question>: Year larger than 2001 has what average points? <context>: CREATE TABLE table_name_92 (points INTEGER, year INTEGER) | SELECT AVG(points) FROM table_name_92 WHERE year > 2001 |
44,236 | <question>: Team of Honda and a point total of 238 is what highest year? <context>: CREATE TABLE table_name_69 (year INTEGER, team VARCHAR, points VARCHAR) | SELECT MAX(year) FROM table_name_69 WHERE team = "honda" AND points = 238 |
44,237 | <question>: Wins of 0 involves what team? <context>: CREATE TABLE table_name_96 (team VARCHAR, wins VARCHAR) | SELECT team FROM table_name_96 WHERE wins = 0 |
44,238 | <question>: what player has a pick of 5 <context>: CREATE TABLE table_name_75 (player VARCHAR, pick VARCHAR) | SELECT player FROM table_name_75 WHERE pick = 5 |
44,239 | <question>: Which District has a First elected of 1858, and a Result of retired republican gain, and an Incumbent of william millward? <context>: CREATE TABLE table_name_2 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, result VARCHAR) | SELECT district FROM table_name_2 WHERE first_elected = 1858 AND result = "retired republican gain" AND incumbent = "william millward" |
44,240 | <question>: Which Result has a District of pennsylvania 13? <context>: CREATE TABLE table_name_5 (result VARCHAR, district VARCHAR) | SELECT result FROM table_name_5 WHERE district = "pennsylvania 13" |
44,241 | <question>: Which First elected is the lowest one that has an Incumbent of william stewart? <context>: CREATE TABLE table_name_9 (first_elected INTEGER, incumbent VARCHAR) | SELECT MIN(first_elected) FROM table_name_9 WHERE incumbent = "william stewart" |
44,242 | <question>: Who was the Player when College/Junior/Club Team (League) was regina pats (whl)? <context>: CREATE TABLE table_name_24 (player VARCHAR, college_junior_club_team__league_ VARCHAR) | SELECT player FROM table_name_24 WHERE college_junior_club_team__league_ = "regina pats (whl)" |
44,243 | <question>: What is the date of the game with an attendance larger than 62,491? <context>: CREATE TABLE table_name_55 (date VARCHAR, attendance INTEGER) | SELECT date FROM table_name_55 WHERE attendance > 62 OFFSET 491 |
44,244 | <question>: What is the attendance of the game on week 4? <context>: CREATE TABLE table_name_10 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_10 WHERE week = 4 |
44,245 | <question>: How many extra points are there that Herrnstein had with less than 2 touchdowns and less than 0 field goals? <context>: CREATE TABLE table_name_35 (extra_points INTEGER, field_goals VARCHAR, touchdowns VARCHAR, player VARCHAR) | SELECT AVG(extra_points) FROM table_name_35 WHERE touchdowns < 2 AND player = "herrnstein" AND field_goals < 0 |
44,246 | <question>: How many touchdowns are there that has field goals less than 0 and 0 extra points? <context>: CREATE TABLE table_name_53 (touchdowns INTEGER, extra_points VARCHAR, field_goals VARCHAR) | SELECT SUM(touchdowns) FROM table_name_53 WHERE extra_points = 0 AND field_goals < 0 |
44,247 | <question>: How many field goals are there that have 8 touchdowns and more than 49 points? <context>: CREATE TABLE table_name_91 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR) | SELECT SUM(field_goals) FROM table_name_91 WHERE touchdowns = 8 AND points > 49 |
44,248 | <question>: What's the number of touchdowns that Snow made that had 0 field goals, more than 5 points, and more than 0 extra points? <context>: CREATE TABLE table_name_66 (touchdowns INTEGER, extra_points VARCHAR, player VARCHAR, points VARCHAR, field_goals VARCHAR) | SELECT MIN(touchdowns) FROM table_name_66 WHERE points > 5 AND field_goals = 0 AND player = "snow" AND extra_points > 0 |
44,249 | <question>: For an IATA of MLE, what is the ICAO? <context>: CREATE TABLE table_name_21 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_21 WHERE iata = "mle" |
44,250 | <question>: For an ICAO of VCCT, what is the IATA? <context>: CREATE TABLE table_name_66 (iata VARCHAR, icao VARCHAR) | SELECT iata FROM table_name_66 WHERE icao = "vcct" |
44,251 | <question>: Which city has an ICAO of VCCJ? <context>: CREATE TABLE table_name_96 (city VARCHAR, icao VARCHAR) | SELECT city FROM table_name_96 WHERE icao = "vccj" |
44,252 | <question>: Which ICAO is found in Vavuniya? <context>: CREATE TABLE table_name_97 (icao VARCHAR, city VARCHAR) | SELECT icao FROM table_name_97 WHERE city = "vavuniya" |
44,253 | <question>: Which country has Weerawila Airport? <context>: CREATE TABLE table_name_76 (country VARCHAR, airport VARCHAR) | SELECT country FROM table_name_76 WHERE airport = "weerawila airport" |
44,254 | <question>: Which opponent has april 1 as the date? <context>: CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_39 WHERE date = "april 1" |
44,255 | <question>: What opponent has tomko (1-1) as a loss? <context>: CREATE TABLE table_name_24 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_24 WHERE loss = "tomko (1-1)" |
44,256 | <question>: What opponent has 8-10 as the record? <context>: CREATE TABLE table_name_76 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_76 WHERE record = "8-10" |
44,257 | <question>: Whcih was the Class AAA in school year 2006-07? <context>: CREATE TABLE table_name_85 (class_aAA VARCHAR, school_year VARCHAR) | SELECT class_aAA FROM table_name_85 WHERE school_year = "2006-07" |
44,258 | <question>: What team was class AA in years 1994-95? <context>: CREATE TABLE table_name_52 (class_aA VARCHAR, school_year VARCHAR) | SELECT class_aA FROM table_name_52 WHERE school_year = "1994-95" |
44,259 | <question>: Who was Class AA in School Year 1994-95? <context>: CREATE TABLE table_name_26 (class_aA VARCHAR, school_year VARCHAR) | SELECT class_aA FROM table_name_26 WHERE school_year = "1994-95" |
44,260 | <question>: What's the date of the game that has the Bulls as a visiting team? <context>: CREATE TABLE table_name_48 (date VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_48 WHERE visitor = "bulls" |
44,261 | <question>: What is the average game number that took place after February 13 against the Toronto Maple Leafs and more than 47 points were scored? <context>: CREATE TABLE table_name_3 (game INTEGER, points VARCHAR, february VARCHAR, opponent VARCHAR) | SELECT AVG(game) FROM table_name_3 WHERE february > 13 AND opponent = "toronto maple leafs" AND points > 47 |
44,262 | <question>: Who was the opponent at the game at Sullivan Stadium before week 11? <context>: CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_name_30 WHERE week < 11 AND game_site = "sullivan stadium" |
44,263 | <question>: What is the years coached by the person with a win percentage of 0.667 and 380 losses? <context>: CREATE TABLE table_name_25 (years VARCHAR, pct VARCHAR, lost VARCHAR) | SELECT years FROM table_name_25 WHERE pct = 0.667 AND lost = 380 |
44,264 | <question>: What is the average percent for the coach from 1905 and more than 7 losses? <context>: CREATE TABLE table_name_97 (pct INTEGER, years VARCHAR, lost VARCHAR) | SELECT AVG(pct) FROM table_name_97 WHERE years = "1905" AND lost > 7 |
44,265 | <question>: How many percentages have 20 losses and more than 1 season? <context>: CREATE TABLE table_name_17 (pct VARCHAR, lost VARCHAR, seasons VARCHAR) | SELECT COUNT(pct) FROM table_name_17 WHERE lost = 20 AND seasons > 1 |
44,266 | <question>: What home has February 10 as the date? <context>: CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_67 WHERE date = "february 10" |
44,267 | <question>: What date has ny islanders as the visitor? <context>: CREATE TABLE table_name_66 (date VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_66 WHERE visitor = "ny islanders" |
44,268 | <question>: What score has February 10 as the date? <context>: CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_57 WHERE date = "february 10" |
44,269 | <question>: Name the course for 24 july <context>: CREATE TABLE table_name_29 (course VARCHAR, date VARCHAR) | SELECT course FROM table_name_29 WHERE date = "24 july" |
44,270 | <question>: Name the course for team time trial <context>: CREATE TABLE table_name_58 (course VARCHAR, type VARCHAR) | SELECT course FROM table_name_58 WHERE type = "team time trial" |
44,271 | <question>: Name the winner for rest day for 13 july <context>: CREATE TABLE table_name_98 (winner VARCHAR, course VARCHAR, date VARCHAR) | SELECT winner FROM table_name_98 WHERE course = "rest day" AND date = "13 july" |
44,272 | <question>: Shawn Michaels entered the elimination chamber in what position? <context>: CREATE TABLE table_name_86 (entered INTEGER, wrestler VARCHAR) | SELECT SUM(entered) FROM table_name_86 WHERE wrestler = "shawn michaels" |
44,273 | <question>: Who Eliminated Kurt Angle? <context>: CREATE TABLE table_name_49 (eliminated_by VARCHAR, wrestler VARCHAR) | SELECT eliminated_by FROM table_name_49 WHERE wrestler = "kurt angle" |
44,274 | <question>: Who Eliminated Kane? <context>: CREATE TABLE table_name_63 (eliminated_by VARCHAR, wrestler VARCHAR) | SELECT eliminated_by FROM table_name_63 WHERE wrestler = "kane" |
44,275 | <question>: What is the sum of all gold medals for Algeria when total medals is less than 3? <context>: CREATE TABLE table_name_98 (gold INTEGER, nation VARCHAR, total VARCHAR) | SELECT SUM(gold) FROM table_name_98 WHERE nation = "algeria" AND total < 3 |
44,276 | <question>: what is the population of Valencia, Spain? <context>: CREATE TABLE table_name_56 (population INTEGER, country VARCHAR, urban_area VARCHAR) | SELECT AVG(population) FROM table_name_56 WHERE country = "spain" AND urban_area = "valencia" |
44,277 | <question>: which year holds rank 2? <context>: CREATE TABLE table_name_89 (year INTEGER, rank VARCHAR) | SELECT MAX(year) FROM table_name_89 WHERE rank = "2" |
44,278 | <question>: with name meridian condominiums what is number of floors? <context>: CREATE TABLE table_name_19 (floors INTEGER, name VARCHAR) | SELECT AVG(floors) FROM table_name_19 WHERE name = "meridian condominiums" |
44,279 | <question>: with rank of 31 what is the year? <context>: CREATE TABLE table_name_48 (year VARCHAR, rank VARCHAR) | SELECT COUNT(year) FROM table_name_48 WHERE rank = "31" |
44,280 | <question>: What was the date of the match against the visiting team, Toronto? <context>: CREATE TABLE table_name_78 (date VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_78 WHERE visitor = "toronto" |
44,281 | <question>: Who played the home team during the game on January 6? <context>: CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_56 WHERE date = "january 6" |
44,282 | <question>: What was the cougars record during the game where Boston were the visitors? <context>: CREATE TABLE table_name_88 (record VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_88 WHERE visitor = "boston" |
44,283 | <question>: What's the lowest Drawn that has a Lost that's less than 0? <context>: CREATE TABLE table_name_1 (drawn INTEGER, lost INTEGER) | SELECT MIN(drawn) FROM table_name_1 WHERE lost < 0 |
44,284 | <question>: What's the total Lost with Games that's less than 4? <context>: CREATE TABLE table_name_23 (lost INTEGER, games INTEGER) | SELECT SUM(lost) FROM table_name_23 WHERE games < 4 |
44,285 | <question>: What's the total of Games with a Lost that's larger than 2, and has Points that's smaller than 0? <context>: CREATE TABLE table_name_75 (games INTEGER, lost VARCHAR, points VARCHAR) | SELECT SUM(games) FROM table_name_75 WHERE lost > 2 AND points < 0 |
44,286 | <question>: What's the Lost average that has a Drawn less than 0? <context>: CREATE TABLE table_name_19 (lost INTEGER, drawn INTEGER) | SELECT AVG(lost) FROM table_name_19 WHERE drawn < 0 |
44,287 | <question>: What record has @ ottawa senators as the opponent? <context>: CREATE TABLE table_name_93 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_93 WHERE opponent = "@ ottawa senators" |
44,288 | <question>: What game has 28 points, and tampa bay lightning as the opponent? <context>: CREATE TABLE table_name_50 (game VARCHAR, points VARCHAR, opponent VARCHAR) | SELECT game FROM table_name_50 WHERE points = 28 AND opponent = "tampa bay lightning" |
44,289 | <question>: What is the average points that have a December less than 6, with a game greater than 26? <context>: CREATE TABLE table_name_17 (points INTEGER, december VARCHAR, game VARCHAR) | SELECT AVG(points) FROM table_name_17 WHERE december < 6 AND game > 26 |
44,290 | <question>: Who was the opponent at the game with a loss of Sele (0-1)? <context>: CREATE TABLE table_name_36 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_36 WHERE loss = "sele (0-1)" |
44,291 | <question>: Record of 42β16β8, and a March larger than 5 has what average points? <context>: CREATE TABLE table_name_95 (points INTEGER, record VARCHAR, march VARCHAR) | SELECT AVG(points) FROM table_name_95 WHERE record = "42β16β8" AND march > 5 |
44,292 | <question>: Points smaller than 96, and a Record of 43β16β8 belongs to what game? <context>: CREATE TABLE table_name_30 (game VARCHAR, points VARCHAR, record VARCHAR) | SELECT game FROM table_name_30 WHERE points < 96 AND record = "43β16β8" |
44,293 | <question>: Game smaller than 70, and a Record of 43β16β8 is what opponent? <context>: CREATE TABLE table_name_39 (opponent VARCHAR, game VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_39 WHERE game < 70 AND record = "43β16β8" |
44,294 | <question>: Record of 44β18β8 involves which score? <context>: CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_95 WHERE record = "44β18β8" |
44,295 | <question>: Which college is Kellen Davis from? <context>: CREATE TABLE table_name_44 (college VARCHAR, player VARCHAR) | SELECT college FROM table_name_44 WHERE player = "kellen davis" |
44,296 | <question>: Which round's position is according to official website? <context>: CREATE TABLE table_name_30 (round VARCHAR, position VARCHAR) | SELECT round FROM table_name_30 WHERE position = "according to official website" |
44,297 | <question>: Which position's round was 3 when pick was 70? <context>: CREATE TABLE table_name_29 (position VARCHAR, round VARCHAR, pick VARCHAR) | SELECT position FROM table_name_29 WHERE round = "3" AND pick = "70" |
44,298 | <question>: Which pick's round was 5 when Kellen Davis was a player? <context>: CREATE TABLE table_name_40 (pick VARCHAR, round VARCHAR, player VARCHAR) | SELECT pick FROM table_name_40 WHERE round = "5" AND player = "kellen davis" |
44,299 | <question>: Which college's pick was 14? <context>: CREATE TABLE table_name_86 (college VARCHAR, pick VARCHAR) | SELECT college FROM table_name_86 WHERE pick = "14" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.