Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
24,300 | <question>: How many games had 22 goals before 1935? <context>: CREATE TABLE table_name_23 (games INTEGER, goals VARCHAR, debut_year VARCHAR) | SELECT SUM(games) FROM table_name_23 WHERE goals = 22 AND debut_year < 1935 |
24,301 | <question>: What is the average games a player born on 17 March 1915 and debut before 1935 had? <context>: CREATE TABLE table_name_68 (games INTEGER, date_of_birth VARCHAR, debut_year VARCHAR) | SELECT AVG(games) FROM table_name_68 WHERE date_of_birth = "17 march 1915" AND debut_year < 1935 |
24,302 | <question>: What is the lowest number of games Jack Gaudion, who debut in 1936, played? <context>: CREATE TABLE table_name_88 (games INTEGER, debut_year VARCHAR, player VARCHAR) | SELECT MIN(games) FROM table_name_88 WHERE debut_year = 1936 AND player = "jack gaudion" |
24,303 | <question>: What is the years at the club of the player with 2 goals and was born on 23 July 1910? <context>: CREATE TABLE table_name_63 (years_at_club VARCHAR, goals VARCHAR, date_of_birth VARCHAR) | SELECT years_at_club FROM table_name_63 WHERE goals = 2 AND date_of_birth = "23 july 1910" |
24,304 | <question>: During the play-off quarter-final which team scored position was the team that scored 56 points? <context>: CREATE TABLE table_name_91 (pos VARCHAR, play_offs VARCHAR, pts VARCHAR) | SELECT pos FROM table_name_91 WHERE play_offs = "quarter-final" AND pts = "56" |
24,305 | <question>: What is the score when Philadelphia is at home? <context>: CREATE TABLE table_name_84 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_84 WHERE home = "philadelphia" |
24,306 | <question>: What is the record on December 4? <context>: CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_55 WHERE date = "december 4" |
24,307 | <question>: what is the decision when the record is 13–10–4? <context>: CREATE TABLE table_name_84 (decision VARCHAR, record VARCHAR) | SELECT decision FROM table_name_84 WHERE record = "13–10–4" |
24,308 | <question>: What is the lowest attendance total on August 26? <context>: CREATE TABLE table_name_71 (attendance INTEGER, date VARCHAR) | SELECT MIN(attendance) FROM table_name_71 WHERE date = "august 26" |
24,309 | <question>: What is the sum of the year for 5 february? <context>: CREATE TABLE table_name_1 (year INTEGER, date VARCHAR) | SELECT SUM(year) FROM table_name_1 WHERE date = "5 february" |
24,310 | <question>: What was the location for a year later than 2012? <context>: CREATE TABLE table_name_82 (location VARCHAR, year INTEGER) | SELECT location FROM table_name_82 WHERE year > 2012 |
24,311 | <question>: who is the constructor when the laps is more than 72 and the driver is eddie irvine? <context>: CREATE TABLE table_name_33 (constructor VARCHAR, laps VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_33 WHERE laps > 72 AND driver = "eddie irvine" |
24,312 | <question>: What was the record of the game where the Rockets were the visiting team? <context>: CREATE TABLE table_name_16 (record VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_16 WHERE visitor = "rockets" |
24,313 | <question>: What's the voltage for the pentium dual-core e2140? <context>: CREATE TABLE table_name_49 (voltage VARCHAR, model_number VARCHAR) | SELECT voltage FROM table_name_49 WHERE model_number = "pentium dual-core e2140" |
24,314 | <question>: What part number(s) has a frequency of 2.4 ghz? <context>: CREATE TABLE table_name_20 (part_number_s_ VARCHAR, frequency VARCHAR) | SELECT part_number_s_ FROM table_name_20 WHERE frequency = "2.4 ghz" |
24,315 | <question>: What's the release price (USD) for part number hh80557pg0491m? <context>: CREATE TABLE table_name_98 (release_price___usd__ VARCHAR, part_number_s_ VARCHAR) | SELECT release_price___usd__ FROM table_name_98 WHERE part_number_s_ = "hh80557pg0491m" |
24,316 | <question>: What L2 cache had a release date of august 26, 2007? <context>: CREATE TABLE table_name_71 (l2_cache VARCHAR, release_date VARCHAR) | SELECT l2_cache FROM table_name_71 WHERE release_date = "august 26, 2007" |
24,317 | <question>: Where did the team in which Tom Pryce was in Pole Position race? <context>: CREATE TABLE table_name_10 (location VARCHAR, pole_position VARCHAR) | SELECT location FROM table_name_10 WHERE pole_position = "tom pryce" |
24,318 | <question>: Who ran the fastest lap in the team that competed in Zolder, in which Ferrari was the Constructor? <context>: CREATE TABLE table_name_39 (fastest_lap VARCHAR, constructor VARCHAR, location VARCHAR) | SELECT fastest_lap FROM table_name_39 WHERE constructor = "ferrari" AND location = "zolder" |
24,319 | <question>: What tournament was on Jan 29, 2012? <context>: CREATE TABLE table_name_8 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_8 WHERE date = "jan 29, 2012" |
24,320 | <question>: What is the to par of the match with a winning score 69-67-72-64=272? <context>: CREATE TABLE table_name_25 (to_par VARCHAR, winning_score VARCHAR) | SELECT to_par FROM table_name_25 WHERE winning_score = 69 - 67 - 72 - 64 = 272 |
24,321 | <question>: What is the episode number of the episode that originally aired on January 26, 2009 and had a production number smaller than 38? <context>: CREATE TABLE table_name_53 (episode_no VARCHAR, original_airdate VARCHAR, production_no VARCHAR) | SELECT COUNT(episode_no) FROM table_name_53 WHERE original_airdate = "january 26, 2009" AND production_no < 38 |
24,322 | <question>: Who acquired tom norton? <context>: CREATE TABLE table_name_1 (acquired VARCHAR, player VARCHAR) | SELECT acquired FROM table_name_1 WHERE player = "tom norton" |
24,323 | <question>: Where did Geelong play as the home team? <context>: CREATE TABLE table_name_4 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_4 WHERE home_team = "geelong" |
24,324 | <question>: Where did North Melbourne play as the home team? <context>: CREATE TABLE table_name_25 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_25 WHERE home_team = "north melbourne" |
24,325 | <question>: What did the away team score when playing Footscray? <context>: CREATE TABLE table_name_37 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_37 WHERE home_team = "footscray" |
24,326 | <question>: What's the record for October 8, 2000 before week 13? <context>: CREATE TABLE table_name_61 (record VARCHAR, week VARCHAR, date VARCHAR) | SELECT record FROM table_name_61 WHERE week < 13 AND date = "october 8, 2000" |
24,327 | <question>: What game site has a result of bye? <context>: CREATE TABLE table_name_52 (game_site VARCHAR, result VARCHAR) | SELECT game_site FROM table_name_52 WHERE result = "bye" |
24,328 | <question>: What's the record after week 16? <context>: CREATE TABLE table_name_80 (record VARCHAR, week INTEGER) | SELECT record FROM table_name_80 WHERE week > 16 |
24,329 | <question>: What's the result at psinet stadium when the cincinnati bengals are the opponent? <context>: CREATE TABLE table_name_39 (result VARCHAR, game_site VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_39 WHERE game_site = "psinet stadium" AND opponent = "cincinnati bengals" |
24,330 | <question>: What's the record after week 12 with a game site of bye? <context>: CREATE TABLE table_name_26 (record VARCHAR, week VARCHAR, game_site VARCHAR) | SELECT record FROM table_name_26 WHERE week > 12 AND game_site = "bye" |
24,331 | <question>: What day has a callback Venue of total tickets to hollywood? Question <context>: CREATE TABLE table_name_73 (date VARCHAR, callback_venue VARCHAR) | SELECT date FROM table_name_73 WHERE callback_venue = "total tickets to hollywood" |
24,332 | <question>: How many golden tickets for the georgia international convention center? <context>: CREATE TABLE table_name_85 (golden_tickets INTEGER, callback_venue VARCHAR) | SELECT SUM(golden_tickets) FROM table_name_85 WHERE callback_venue = "georgia international convention center" |
24,333 | <question>: What class is associated with a W.A. of 0-8-0? <context>: CREATE TABLE table_name_10 (class VARCHAR, wa VARCHAR) | SELECT class FROM table_name_10 WHERE wa = "0-8-0" |
24,334 | <question>: Who was the Opponent at the Game Site Indianapolis Hoosierdome? <context>: CREATE TABLE table_name_21 (opponent VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_name_21 WHERE game_site = "indianapolis hoosierdome" |
24,335 | <question>: What is the St Kilda Away team score? <context>: CREATE TABLE table_name_24 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_24 WHERE away_team = "st kilda" |
24,336 | <question>: Tell me the highest snatch for 68.63 bodyweight and total kg less than 290 <context>: CREATE TABLE table_name_65 (snatch INTEGER, bodyweight VARCHAR, total__kg_ VARCHAR) | SELECT MAX(snatch) FROM table_name_65 WHERE bodyweight = 68.63 AND total__kg_ < 290 |
24,337 | <question>: Tell me the total number of snatches for clean and jerk more than 132.5 when the total kg was 315 and bodyweight was 68.63 <context>: CREATE TABLE table_name_62 (snatch VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR) | SELECT COUNT(snatch) FROM table_name_62 WHERE clean_ & _jerk > 132.5 AND total__kg_ = 315 AND bodyweight = 68.63 |
24,338 | <question>: Name the average clean and jerk for snatch of 140 and total kg less than 315 <context>: CREATE TABLE table_name_10 (_jerk VARCHAR, clean_ INTEGER, snatch VARCHAR, total__kg_ VARCHAR) | SELECT AVG(clean_) & _jerk FROM table_name_10 WHERE snatch = 140 AND total__kg_ < 315 |
24,339 | <question>: Who constructed the car that Derek Warwick raced in with a TG181 chassis? <context>: CREATE TABLE table_name_20 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_20 WHERE chassis = "tg181" AND driver = "derek warwick" |
24,340 | <question>: Which player has a Club/province of direito, less than 21 caps, and a Position of lock? <context>: CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, club_province VARCHAR, caps VARCHAR) | SELECT player FROM table_name_99 WHERE club_province = "direito" AND caps < 21 AND position = "lock" |
24,341 | <question>: How many caps have a Position of prop, and a Player of rui cordeiro? <context>: CREATE TABLE table_name_6 (caps VARCHAR, position VARCHAR, player VARCHAR) | SELECT COUNT(caps) FROM table_name_6 WHERE position = "prop" AND player = "rui cordeiro" |
24,342 | <question>: Which Club/province has a Player of david penalva? <context>: CREATE TABLE table_name_41 (club_province VARCHAR, player VARCHAR) | SELECT club_province FROM table_name_41 WHERE player = "david penalva" |
24,343 | <question>: How many caps have a Date of Birth (Age) of 15 july 1981? <context>: CREATE TABLE table_name_49 (caps VARCHAR, date_of_birth__age_ VARCHAR) | SELECT COUNT(caps) FROM table_name_49 WHERE date_of_birth__age_ = "15 july 1981" |
24,344 | <question>: Which player has a Position of fly-half, and a Caps of 3? <context>: CREATE TABLE table_name_41 (player VARCHAR, position VARCHAR, caps VARCHAR) | SELECT player FROM table_name_41 WHERE position = "fly-half" AND caps = 3 |
24,345 | <question>: What constituency does the Conservative Darren Millar belong to? <context>: CREATE TABLE table_name_93 (constituency VARCHAR, conservative VARCHAR) | SELECT constituency FROM table_name_93 WHERE conservative = "darren millar" |
24,346 | <question>: In what constituency was the result labour hold and Liberal democrat Elizabeth Newton won? <context>: CREATE TABLE table_name_12 (constituency VARCHAR, result VARCHAR, liberal_democrats VARCHAR) | SELECT constituency FROM table_name_12 WHERE result = "labour hold" AND liberal_democrats = "elizabeth newton" |
24,347 | <question>: Who has the Winning score of –10 (66-71-62-71=270) ? <context>: CREATE TABLE table_name_21 (runner_s__up VARCHAR, winning_score VARCHAR) | SELECT runner_s__up FROM table_name_21 WHERE winning_score = –10(66 - 71 - 62 - 71 = 270) |
24,348 | <question>: Who is Runner(s)-up that has a Date of may 24, 1999? <context>: CREATE TABLE table_name_37 (runner_s__up VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_37 WHERE date = "may 24, 1999" |
24,349 | <question>: Which Tournament has a Margin of victory of 7 strokes <context>: CREATE TABLE table_name_38 (tournament VARCHAR, margin_of_victory VARCHAR) | SELECT tournament FROM table_name_38 WHERE margin_of_victory = "7 strokes" |
24,350 | <question>: What was the decision of the Kings game when Chicago was the visiting team? <context>: CREATE TABLE table_name_71 (decision VARCHAR, visitor VARCHAR) | SELECT decision FROM table_name_71 WHERE visitor = "chicago" |
24,351 | <question>: What round was the nose tackle drafted? <context>: CREATE TABLE table_name_38 (round INTEGER, position VARCHAR) | SELECT SUM(round) FROM table_name_38 WHERE position = "nose tackle" |
24,352 | <question>: What is the Record when Buffalo is at Home? <context>: CREATE TABLE table_name_36 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_36 WHERE home = "buffalo" |
24,353 | <question>: What were the winnings for the Chevrolet with a number larger than 29 and scored 102 points? <context>: CREATE TABLE table_name_65 (winnings VARCHAR, points VARCHAR, make VARCHAR, car__number VARCHAR) | SELECT winnings FROM table_name_65 WHERE make = "chevrolet" AND car__number > 29 AND points = 102 |
24,354 | <question>: What is the make of car 31? <context>: CREATE TABLE table_name_47 (make VARCHAR, car__number VARCHAR) | SELECT make FROM table_name_47 WHERE car__number = 31 |
24,355 | <question>: What is the car number that has less than 369 laps for a Dodge with more than 49 points? <context>: CREATE TABLE table_name_62 (car__number INTEGER, points VARCHAR, laps VARCHAR, make VARCHAR) | SELECT SUM(car__number) FROM table_name_62 WHERE laps < 369 AND make = "dodge" AND points > 49 |
24,356 | <question>: Tell me the total number of ties for name of totals and lost more than 30 <context>: CREATE TABLE table_name_27 (ties VARCHAR, name VARCHAR, lost VARCHAR) | SELECT COUNT(ties) FROM table_name_27 WHERE name = "totals" AND lost > 30 |
24,357 | <question>: I want the total number of ties for win % more than 0 and tenure of 2001-2011 with lost more than 16 <context>: CREATE TABLE table_name_3 (ties VARCHAR, lost VARCHAR, win__percentage VARCHAR, tenure VARCHAR) | SELECT COUNT(ties) FROM table_name_3 WHERE win__percentage > 0 AND tenure = "2001-2011" AND lost > 16 |
24,358 | <question>: What's the record when the attendance was 28,531? <context>: CREATE TABLE table_name_62 (record VARCHAR, attendance VARCHAR) | SELECT record FROM table_name_62 WHERE attendance = "28,531" |
24,359 | <question>: What's the record when the attendance was 41,573? <context>: CREATE TABLE table_name_25 (record VARCHAR, attendance VARCHAR) | SELECT record FROM table_name_25 WHERE attendance = "41,573" |
24,360 | <question>: Who's the opponent for June 13? <context>: CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_88 WHERE date = "june 13" |
24,361 | <question>: Where does center Joakim Andersson come from? <context>: CREATE TABLE table_name_67 (nationality VARCHAR, position VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_67 WHERE position = "center" AND player = "joakim andersson" |
24,362 | <question>: What position does Zack Torquato play? <context>: CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_6 WHERE player = "zack torquato" |
24,363 | <question>: When a lane of 4 has a QUART greater than 44.62, what is the lowest HEAT? <context>: CREATE TABLE table_name_44 (heat INTEGER, lane VARCHAR, quart VARCHAR) | SELECT MIN(heat) FROM table_name_44 WHERE lane = 4 AND quart > 44.62 |
24,364 | <question>: When did the game at Arden Street Oval occur? <context>: CREATE TABLE table_name_7 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_7 WHERE venue = "arden street oval" |
24,365 | <question>: What did the away team score when playing North Melbourne? <context>: CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_79 WHERE home_team = "north melbourne" |
24,366 | <question>: How many people attended the game at VFL Park? <context>: CREATE TABLE table_name_71 (crowd INTEGER, venue VARCHAR) | SELECT SUM(crowd) FROM table_name_71 WHERE venue = "vfl park" |
24,367 | <question>: When the home team was fitzroy, what did the away team score? <context>: CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_16 WHERE home_team = "fitzroy" |
24,368 | <question>: Name the fastest lap for the brazilian grand prix <context>: CREATE TABLE table_name_39 (fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT fastest_lap FROM table_name_39 WHERE grand_prix = "brazilian grand prix" |
24,369 | <question>: Name the pole position at the japanese grand prix when the fastest lap is damon hill <context>: CREATE TABLE table_name_62 (pole_position VARCHAR, fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_name_62 WHERE fastest_lap = "damon hill" AND grand_prix = "japanese grand prix" |
24,370 | <question>: Name the lowest round for when pole position and winning driver is michael schumacher <context>: CREATE TABLE table_name_27 (round INTEGER, pole_position VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR) | SELECT MIN(round) FROM table_name_27 WHERE fastest_lap = "michael schumacher" AND winning_driver = "michael schumacher" AND pole_position = "michael schumacher" |
24,371 | <question>: How many reg GP for nathan barrett in a round less than 8? <context>: CREATE TABLE table_name_62 (reg_gp VARCHAR, player VARCHAR, rd__number VARCHAR) | SELECT COUNT(reg_gp) FROM table_name_62 WHERE player = "nathan barrett" AND rd__number < 8 |
24,372 | <question>: What organization ranks 68? <context>: CREATE TABLE table_name_14 (organization VARCHAR, rank VARCHAR) | SELECT organization FROM table_name_14 WHERE rank = "68" |
24,373 | <question>: What year is the happy planet index? <context>: CREATE TABLE table_name_79 (year INTEGER, index VARCHAR) | SELECT SUM(year) FROM table_name_79 WHERE index = "happy planet index" |
24,374 | <question>: What year for the legatum institute? <context>: CREATE TABLE table_name_79 (year VARCHAR, organization VARCHAR) | SELECT year FROM table_name_79 WHERE organization = "legatum institute" |
24,375 | <question>: What 1st leg has Alense Vivaldi (Trentino) as Agg.? <context>: CREATE TABLE table_name_58 (agg VARCHAR) | SELECT 1 AS st_leg FROM table_name_58 WHERE agg = "alense vivaldi (trentino)" |
24,376 | <question>: What is the grid for the Minardi Team USA with laps smaller than 90? <context>: CREATE TABLE table_name_42 (grid VARCHAR, laps VARCHAR, team VARCHAR) | SELECT grid FROM table_name_42 WHERE laps < 90 AND team = "minardi team usa" |
24,377 | <question>: What is Fitzroy's Home team score? <context>: CREATE TABLE table_name_60 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_60 WHERE home_team = "fitzroy" |
24,378 | <question>: What is Fitzroy's Home team Crowd? <context>: CREATE TABLE table_name_90 (crowd INTEGER, home_team VARCHAR) | SELECT SUM(crowd) FROM table_name_90 WHERE home_team = "fitzroy" |
24,379 | <question>: What is the average gold total for nations ranked 6 with 1 total medal and 1 bronze medal? <context>: CREATE TABLE table_name_90 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR) | SELECT AVG(gold) FROM table_name_90 WHERE total = 1 AND rank = "6" AND bronze > 1 |
24,380 | <question>: Who drove the grid 10 car? <context>: CREATE TABLE table_name_3 (driver VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_3 WHERE grid = 10 |
24,381 | <question>: Who drive the car that went under 60 laps and spun off? <context>: CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_25 WHERE laps < 60 AND time_retired = "spun off" |
24,382 | <question>: What number of Yards has 32 as an In 20? <context>: CREATE TABLE table_name_90 (yards VARCHAR, in_20 VARCHAR) | SELECT COUNT(yards) FROM table_name_90 WHERE in_20 = 32 |
24,383 | <question>: What was the score on June 12? <context>: CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_76 WHERE date = "june 12" |
24,384 | <question>: What is the top attendance for weeks past 2 on october 29, 1961? <context>: CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR, date VARCHAR) | SELECT MAX(attendance) FROM table_name_57 WHERE week > 2 AND date = "october 29, 1961" |
24,385 | <question>: What is the low week from october 15, 1961? <context>: CREATE TABLE table_name_82 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_82 WHERE date = "october 15, 1961" |
24,386 | <question>: What is the low attendance rate against buffalo bills? <context>: CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR) | SELECT MIN(attendance) FROM table_name_98 WHERE opponent = "buffalo bills" |
24,387 | <question>: What team played on November 28? <context>: CREATE TABLE table_name_37 (team VARCHAR, date VARCHAR) | SELECT team FROM table_name_37 WHERE date = "november 28" |
24,388 | <question>: What driver has a Time/Retired of 2:16:38.0? <context>: CREATE TABLE table_name_19 (driver VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_19 WHERE time_retired = "2:16:38.0" |
24,389 | <question>: What time/retired for grid 18? <context>: CREATE TABLE table_name_49 (time_retired VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_49 WHERE grid = 18 |
24,390 | <question>: What was the Venue of the North Melbourne Away Team? <context>: CREATE TABLE table_name_33 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_33 WHERE away_team = "north melbourne" |
24,391 | <question>: On what Date is Delta 0:40? <context>: CREATE TABLE table_name_7 (date VARCHAR, delta VARCHAR) | SELECT date FROM table_name_7 WHERE delta = "0:40" |
24,392 | <question>: Who is the Winner on June 2, 2007? <context>: CREATE TABLE table_name_44 (winner VARCHAR, date VARCHAR) | SELECT winner FROM table_name_44 WHERE date = "june 2, 2007" |
24,393 | <question>: What did the home team of essendon score? <context>: CREATE TABLE table_name_78 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_78 WHERE home_team = "essendon" |
24,394 | <question>: When the venue was lake oval what did the home team score? <context>: CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_56 WHERE venue = "lake oval" |
24,395 | <question>: What did the away team score when they were playing collingwood? <context>: CREATE TABLE table_name_47 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_47 WHERE home_team = "collingwood" |
24,396 | <question>: What is the position of the player from Fort Lauderdale, Florida? <context>: CREATE TABLE table_name_3 (position VARCHAR, hometown VARCHAR) | SELECT position FROM table_name_3 WHERE hometown = "fort lauderdale, florida" |
24,397 | <question>: What is the position of the player from Beaumont, Texas? <context>: CREATE TABLE table_name_83 (position VARCHAR, hometown VARCHAR) | SELECT position FROM table_name_83 WHERE hometown = "beaumont, texas" |
24,398 | <question>: What position did Max Redfield play? <context>: CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_97 WHERE player = "max redfield" |
24,399 | <question>: What college did the player from Liberty County High School attend? <context>: CREATE TABLE table_name_58 (college VARCHAR, school VARCHAR) | SELECT college FROM table_name_58 WHERE school = "liberty county high school" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.