Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
46,300 | <question>: Which Team Name has Poles of 0, and a Final Placing of 29th? <context>: CREATE TABLE table_name_25 (team_name VARCHAR, poles VARCHAR, final_placing VARCHAR) | SELECT team_name FROM table_name_25 WHERE poles = "0" AND final_placing = "29th" |
46,301 | <question>: Which Series has a Final Placing of 9th, and Podiums of 2? <context>: CREATE TABLE table_name_31 (series VARCHAR, final_placing VARCHAR, podiums VARCHAR) | SELECT series FROM table_name_31 WHERE final_placing = "9th" AND podiums = "2" |
46,302 | <question>: Which Series has a Team Name of sunred engineering? <context>: CREATE TABLE table_name_34 (series VARCHAR, team_name VARCHAR) | SELECT series FROM table_name_34 WHERE team_name = "sunred engineering" |
46,303 | <question>: Which Points have Wins of 0, and a Final Placing of 21st? <context>: CREATE TABLE table_name_38 (points VARCHAR, wins VARCHAR, final_placing VARCHAR) | SELECT points FROM table_name_38 WHERE wins = "0" AND final_placing = "21st" |
46,304 | <question>: Name the bronze for lahti <context>: CREATE TABLE table_name_46 (bronze VARCHAR, place VARCHAR) | SELECT bronze FROM table_name_46 WHERE place = "lahti" |
46,305 | <question>: Which Rank has Goals larger than 10, and a Scorer of choi sang-kuk? <context>: CREATE TABLE table_name_35 (rank VARCHAR, goals VARCHAR, scorer VARCHAR) | SELECT rank FROM table_name_35 WHERE goals > 10 AND scorer = "choi sang-kuk" |
46,306 | <question>: Which Rank has a Scorer of lee sang-cheol? <context>: CREATE TABLE table_name_69 (rank VARCHAR, scorer VARCHAR) | SELECT rank FROM table_name_69 WHERE scorer = "lee sang-cheol" |
46,307 | <question>: Which Club has a Rank of 5? <context>: CREATE TABLE table_name_40 (club VARCHAR, rank VARCHAR) | SELECT club FROM table_name_40 WHERE rank = "5" |
46,308 | <question>: How many original bills amendments cosponsored lower than 64,with the bill support withdrawn lower than 0? <context>: CREATE TABLE table_name_50 (original_amendments_cosponsored INTEGER, all_bills_sponsored VARCHAR, bill_support_withdrawn VARCHAR) | SELECT MIN(original_amendments_cosponsored) FROM table_name_50 WHERE all_bills_sponsored < 64 AND bill_support_withdrawn < 0 |
46,309 | <question>: Who is the democratic incumbent that was re-elected? <context>: CREATE TABLE table_name_55 (incumbent VARCHAR, status VARCHAR, party VARCHAR) | SELECT incumbent FROM table_name_55 WHERE status = "re-elected" AND party = "democratic" |
46,310 | <question>: What year was republican, re-elected incumbent John all barham elected? <context>: CREATE TABLE table_name_92 (elected VARCHAR, incumbent VARCHAR, party VARCHAR, status VARCHAR) | SELECT elected FROM table_name_92 WHERE party = "republican" AND status = "re-elected" AND incumbent = "john all barham" |
46,311 | <question>: What day in october was game number 4 with under 3 points? <context>: CREATE TABLE table_name_18 (october VARCHAR, game VARCHAR, points VARCHAR) | SELECT COUNT(october) FROM table_name_18 WHERE game = 4 AND points < 3 |
46,312 | <question>: Which school was the drafted player from in a pick larger than 181? <context>: CREATE TABLE table_name_27 (school VARCHAR, pick INTEGER) | SELECT school FROM table_name_27 WHERE pick > 181 |
46,313 | <question>: Which points against has 17 as the lost? <context>: CREATE TABLE table_name_61 (points_against VARCHAR, lost VARCHAR) | SELECT points_against FROM table_name_61 WHERE lost = "17" |
46,314 | <question>: What lost has 528 as the points? <context>: CREATE TABLE table_name_78 (lost VARCHAR, points_for VARCHAR) | SELECT lost FROM table_name_78 WHERE points_for = "528" |
46,315 | <question>: What is the drawn that has 16 as the trys bonus? <context>: CREATE TABLE table_name_31 (drawn VARCHAR, try_bonus VARCHAR) | SELECT drawn FROM table_name_31 WHERE try_bonus = "16" |
46,316 | <question>: What club has tries for in the category tries for? <context>: CREATE TABLE table_name_64 (club VARCHAR, tries_for VARCHAR) | SELECT club FROM table_name_64 WHERE tries_for = "tries for" |
46,317 | <question>: What is the drawn that has 22 for played, and 96 for points? <context>: CREATE TABLE table_name_96 (drawn VARCHAR, played VARCHAR, points VARCHAR) | SELECT drawn FROM table_name_96 WHERE played = "22" AND points = "96" |
46,318 | <question>: What points have 1 for drawn, and 16 as a try bonus? <context>: CREATE TABLE table_name_22 (points_for VARCHAR, drawn VARCHAR, try_bonus VARCHAR) | SELECT points_for FROM table_name_22 WHERE drawn = "1" AND try_bonus = "16" |
46,319 | <question>: What is team 1 in group h? <context>: CREATE TABLE table_name_45 (team__number1 VARCHAR, round VARCHAR) | SELECT team__number1 FROM table_name_45 WHERE round = "group h" |
46,320 | <question>: What was the score on 15 march 2006? <context>: CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_85 WHERE date = "15 march 2006" |
46,321 | <question>: Which winning team has a winning pitcher of Chris Young and was played in Arlington? <context>: CREATE TABLE table_name_46 (winning_team VARCHAR, winning_pitcher VARCHAR, location VARCHAR) | SELECT winning_team FROM table_name_46 WHERE winning_pitcher = "chris young" AND location = "arlington" |
46,322 | <question>: What winning team has a losing pitcher of Juan Dominguez? <context>: CREATE TABLE table_name_31 (winning_team VARCHAR, losing_pitcher VARCHAR) | SELECT winning_team FROM table_name_31 WHERE losing_pitcher = "juan dominguez" |
46,323 | <question>: Who was the opponent on August 14? <context>: CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_91 WHERE date = "august 14" |
46,324 | <question>: Which loss had a record of 79-49? <context>: CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_7 WHERE record = "79-49" |
46,325 | <question>: What is the semi-final dual television commentator status of the year with Pierre Tchernia as the grand final television commentator and an unknown spokesperson? <context>: CREATE TABLE table_name_96 (semi_final_dual_television_commentator VARCHAR, grand_final_television_commentator VARCHAR, spokesperson VARCHAR) | SELECT semi_final_dual_television_commentator FROM table_name_96 WHERE grand_final_television_commentator = "pierre tchernia" AND spokesperson = "unknown" |
46,326 | <question>: What is the semi-final television commentator status in 1962 with an unknown spokesperson? <context>: CREATE TABLE table_name_54 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR) | SELECT semi_final_television_commentator FROM table_name_54 WHERE spokesperson = "unknown" AND year_s_ = 1962 |
46,327 | <question>: What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson? <context>: CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR) | SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AND spokesperson = "marie myriam" |
46,328 | <question>: What is the grand final dual television commentator status of the year when Amaury Vassili was the spokesperson? <context>: CREATE TABLE table_name_52 (grand_final_dual_television_commentator VARCHAR, spokesperson VARCHAR) | SELECT grand_final_dual_television_commentator FROM table_name_52 WHERE spokesperson = "amaury vassili" |
46,329 | <question>: What state has lincoln, de as the hometown? <context>: CREATE TABLE table_name_73 (state VARCHAR, hometown VARCHAR) | SELECT state FROM table_name_73 WHERE hometown = "lincoln, de" |
46,330 | <question>: Name the ship with hull number of aor-6 <context>: CREATE TABLE table_name_89 (ship VARCHAR, hull_no VARCHAR) | SELECT ship FROM table_name_89 WHERE hull_no = "aor-6" |
46,331 | <question>: Name the hull number of Commissioned– Decommissioned of 1973–1996 <context>: CREATE TABLE table_name_29 (hull_no VARCHAR, commissioned__decommissioned VARCHAR) | SELECT hull_no FROM table_name_29 WHERE commissioned__decommissioned = "1973–1996" |
46,332 | <question>: Name the commissioned-decommissioned for oakland and NVR page of aor-1 <context>: CREATE TABLE table_name_62 (commissioned__decommissioned VARCHAR, home_port VARCHAR, nvr_page VARCHAR) | SELECT commissioned__decommissioned FROM table_name_62 WHERE home_port = "oakland" AND nvr_page = "aor-1" |
46,333 | <question>: Name the home port for kansas city <context>: CREATE TABLE table_name_15 (home_port VARCHAR, ship VARCHAR) | SELECT home_port FROM table_name_15 WHERE ship = "kansas city" |
46,334 | <question>: Name the commissioned-decommissioned for NVR page of aor-7 <context>: CREATE TABLE table_name_17 (commissioned__decommissioned VARCHAR, nvr_page VARCHAR) | SELECT commissioned__decommissioned FROM table_name_17 WHERE nvr_page = "aor-7" |
46,335 | <question>: Name the ship for oakland home port and NVR page of aor-3 <context>: CREATE TABLE table_name_28 (ship VARCHAR, home_port VARCHAR, nvr_page VARCHAR) | SELECT ship FROM table_name_28 WHERE home_port = "oakland" AND nvr_page = "aor-3" |
46,336 | <question>: What is the name of the location and ship type in the Gulf of Mexico that entered service in 1999? <context>: CREATE TABLE table_name_43 (name VARCHAR, entered_service VARCHAR, location VARCHAR, type VARCHAR) | SELECT name FROM table_name_43 WHERE location = "gulf of mexico" AND type = "ship" AND entered_service = "1999" |
46,337 | <question>: What was the water depth that entered service in 2001 named Cajun Express? <context>: CREATE TABLE table_name_11 (water_depth VARCHAR, entered_service VARCHAR, name VARCHAR) | SELECT water_depth FROM table_name_11 WHERE entered_service = "2001" AND name = "cajun express" |
46,338 | <question>: What was the water depth in the Gulf of Mexico named Discoverer Clear Leader? <context>: CREATE TABLE table_name_87 (water_depth VARCHAR, location VARCHAR, name VARCHAR) | SELECT water_depth FROM table_name_87 WHERE location = "gulf of mexico" AND name = "discoverer clear leader" |
46,339 | <question>: What is the name of a location in Nigeria? <context>: CREATE TABLE table_name_28 (name VARCHAR, location VARCHAR) | SELECT name FROM table_name_28 WHERE location = "nigeria" |
46,340 | <question>: What location entered service in 1999 and had a customer of Anadarko? <context>: CREATE TABLE table_name_5 (location VARCHAR, entered_service VARCHAR, customer VARCHAR) | SELECT location FROM table_name_5 WHERE entered_service = "1999" AND customer = "anadarko" |
46,341 | <question>: What was the Score on January 30? <context>: CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_93 WHERE date = "january 30" |
46,342 | <question>: Who were the Visitor of the Toronto Maple Leafs Home game on December 22? <context>: CREATE TABLE table_name_11 (visitor VARCHAR, home VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_11 WHERE home = "toronto maple leafs" AND date = "december 22" |
46,343 | <question>: On what Date was the Record 9–6–4? <context>: CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_62 WHERE record = "9–6–4" |
46,344 | <question>: What was the Score on March 1? <context>: CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_18 WHERE date = "march 1" |
46,345 | <question>: What is the primary conference that was founded before 1866 and has an affiliation of private/catholic? <context>: CREATE TABLE table_name_58 (primary_conference VARCHAR, founded VARCHAR, affiliation VARCHAR) | SELECT primary_conference FROM table_name_58 WHERE founded < 1866 AND affiliation = "private/catholic" |
46,346 | <question>: What is the total enrollment for an affiliation of public, and was founded before 1866? <context>: CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) | SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = "public" AND founded < 1866 |
46,347 | <question>: What is the affiliation for towson, md? <context>: CREATE TABLE table_name_37 (affiliation VARCHAR, location VARCHAR) | SELECT affiliation FROM table_name_37 WHERE location = "towson, md" |
46,348 | <question>: What is the total enrollment for a private/catholic affiliation and founded after 1842? <context>: CREATE TABLE table_name_1 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) | SELECT COUNT(enrollment) FROM table_name_1 WHERE affiliation = "private/catholic" AND founded > 1842 |
46,349 | <question>: What is the number founded for the nickname mountain hawks? <context>: CREATE TABLE table_name_68 (founded VARCHAR, nickname VARCHAR) | SELECT COUNT(founded) FROM table_name_68 WHERE nickname = "mountain hawks" |
46,350 | <question>: What is the score of the season in the host city kėdainiai? <context>: CREATE TABLE table_name_59 (score VARCHAR, host_city VARCHAR) | SELECT score FROM table_name_59 WHERE host_city = "kėdainiai" |
46,351 | <question>: Who was the winner of the season before 2010 with Lietuvos Rytas as a finalist? <context>: CREATE TABLE table_name_39 (winner VARCHAR, finalist VARCHAR, season VARCHAR) | SELECT winner FROM table_name_39 WHERE finalist = "lietuvos rytas" AND season < 2010 |
46,352 | <question>: Who was the finalist in the 2010 season in the host city tartu? <context>: CREATE TABLE table_name_57 (finalist VARCHAR, host_city VARCHAR, season VARCHAR) | SELECT finalist FROM table_name_57 WHERE host_city = "tartu" AND season = 2010 |
46,353 | <question>: Who was the winner during the 2009 season? <context>: CREATE TABLE table_name_42 (winner VARCHAR, season VARCHAR) | SELECT winner FROM table_name_42 WHERE season = 2009 |
46,354 | <question>: What is the host city during the 2012 season? <context>: CREATE TABLE table_name_47 (host_city VARCHAR, season VARCHAR) | SELECT host_city FROM table_name_47 WHERE season = 2012 |
46,355 | <question>: what game had a score of 4–6, 6–3, 7–6(10)? <context>: CREATE TABLE table_name_54 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_54 WHERE score = "4–6, 6–3, 7–6(10)" |
46,356 | <question>: When did eleonor magdalene of the palatinate-neuburg become duchess? <context>: CREATE TABLE table_name_77 (became_duchess VARCHAR, name VARCHAR) | SELECT became_duchess FROM table_name_77 WHERE name = "eleonor magdalene of the palatinate-neuburg" |
46,357 | <question>: Which Marriage has a Became Duchess of 12 december 1666? <context>: CREATE TABLE table_name_68 (marriage VARCHAR, became_duchess VARCHAR) | SELECT marriage FROM table_name_68 WHERE became_duchess = "12 december 1666" |
46,358 | <question>: When did the person die who was born on 18 november 1630? <context>: CREATE TABLE table_name_3 (death VARCHAR, birth VARCHAR) | SELECT death FROM table_name_3 WHERE birth = "18 november 1630" |
46,359 | <question>: Which Birth has a Became Duchess of 17 april 1711 husband's ascension? <context>: CREATE TABLE table_name_65 (birth VARCHAR, became_duchess VARCHAR) | SELECT birth FROM table_name_65 WHERE became_duchess = "17 april 1711 husband's ascension" |
46,360 | <question>: Which Spouse has a Birth of 30 may 1653? <context>: CREATE TABLE table_name_38 (spouse VARCHAR, birth VARCHAR) | SELECT spouse FROM table_name_38 WHERE birth = "30 may 1653" |
46,361 | <question>: When did the person born on 6 january 1655 die? <context>: CREATE TABLE table_name_34 (death VARCHAR, birth VARCHAR) | SELECT death FROM table_name_34 WHERE birth = "6 january 1655" |
46,362 | <question>: Which Club or province has a caps larger than 15 and has Chris Cusiter playing for them? <context>: CREATE TABLE table_name_88 (club_province VARCHAR, caps VARCHAR, player VARCHAR) | SELECT club_province FROM table_name_88 WHERE caps > 15 AND player = "chris cusiter" |
46,363 | <question>: What is the date of birth for the player from Ulster and plays at Centre position? <context>: CREATE TABLE table_name_26 (date_of_birth__age_ VARCHAR, club_province VARCHAR, position VARCHAR) | SELECT date_of_birth__age_ FROM table_name_26 WHERE club_province = "ulster" AND position = "centre" |
46,364 | <question>: What type of disaster is rms atlantic categorized in that was located in Nova Scotia? <context>: CREATE TABLE table_name_62 (type VARCHAR, location VARCHAR, disaster VARCHAR) | SELECT type FROM table_name_62 WHERE location = "nova scotia" AND disaster = "rms atlantic" |
46,365 | <question>: What is the type of disaster that the Arrow Air Flight 1285 categorized in? <context>: CREATE TABLE table_name_55 (type VARCHAR, disaster VARCHAR) | SELECT type FROM table_name_55 WHERE disaster = "arrow air flight 1285" |
46,366 | <question>: What is the disaster that was located in Ontario with 223 deaths? <context>: CREATE TABLE table_name_39 (disaster VARCHAR, location VARCHAR, deaths VARCHAR) | SELECT disaster FROM table_name_39 WHERE location = "ontario" AND deaths = "223" |
46,367 | <question>: How many deaths were there during the shipwreck in 1873? <context>: CREATE TABLE table_name_56 (deaths VARCHAR, type VARCHAR, date VARCHAR) | SELECT deaths FROM table_name_56 WHERE type = "shipwreck" AND date = "1873" |
46,368 | <question>: Where was the disaster located that took place on 1916? <context>: CREATE TABLE table_name_49 (location VARCHAR, date VARCHAR) | SELECT location FROM table_name_49 WHERE date = "1916" |
46,369 | <question>: Which Laps is the highest one that has a Time/Retired of +3.370 secs? <context>: CREATE TABLE table_name_52 (laps INTEGER, time_retired VARCHAR) | SELECT MAX(laps) FROM table_name_52 WHERE time_retired = "+3.370 secs" |
46,370 | <question>: Which Grid has a Team of rusport, and Laps larger than 221? <context>: CREATE TABLE table_name_62 (grid INTEGER, team VARCHAR, laps VARCHAR) | SELECT SUM(grid) FROM table_name_62 WHERE team = "rusport" AND laps > 221 |
46,371 | <question>: What title has a producer of MAQ and Anna as a role? <context>: CREATE TABLE table_name_18 (title VARCHAR, producer VARCHAR, role VARCHAR) | SELECT title FROM table_name_18 WHERE producer = "maq" AND role = "anna" |
46,372 | <question>: How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema? <context>: CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR, producer VARCHAR, director VARCHAR) | SELECT COUNT(year) FROM table_name_94 WHERE producer = "star cinema" AND director = "rory quintos" AND title = "kay tagal kang hinintay" |
46,373 | <question>: Which title was directed by Joyce Bernal? <context>: CREATE TABLE table_name_76 (title VARCHAR, director VARCHAR) | SELECT title FROM table_name_76 WHERE director = "joyce bernal" |
46,374 | <question>: What song is it that artist morena camilleri does and has more than 38 points <context>: CREATE TABLE table_name_46 (song VARCHAR, points VARCHAR, artist VARCHAR) | SELECT song FROM table_name_46 WHERE points > 38 AND artist = "morena camilleri" |
46,375 | <question>: What is the total number of points for ray agius <context>: CREATE TABLE table_name_15 (points INTEGER, lyricist VARCHAR) | SELECT SUM(points) FROM table_name_15 WHERE lyricist = "ray agius" |
46,376 | <question>: What play did henry s. uber / betty uber (eng) finish in? <context>: CREATE TABLE table_name_99 (place VARCHAR, name VARCHAR) | SELECT COUNT(place) FROM table_name_99 WHERE name = "henry s. uber / betty uber (eng)" |
46,377 | <question>: When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)? <context>: CREATE TABLE table_name_37 (first_elected INTEGER, counties_represented VARCHAR, committee VARCHAR) | SELECT MAX(first_elected) FROM table_name_37 WHERE counties_represented = "baltimore county, howard" AND committee = "environmental matters (vice-chair)" |
46,378 | <question>: What party is the delegate of Turner, Frank S. Frank S. Turner of Howard County? <context>: CREATE TABLE table_name_50 (party VARCHAR, counties_represented VARCHAR, delegate VARCHAR) | SELECT party FROM table_name_50 WHERE counties_represented = "howard" AND delegate = "turner, frank s. frank s. turner" |
46,379 | <question>: What is the damage of storm three? <context>: CREATE TABLE table_name_58 (damage__millions_usd__ VARCHAR, storm_name VARCHAR) | SELECT damage__millions_usd__ FROM table_name_58 WHERE storm_name = "three" |
46,380 | <question>: Which Round is the lowest one that has a Circuit of donington? <context>: CREATE TABLE table_name_18 (round INTEGER, circuit VARCHAR) | SELECT MIN(round) FROM table_name_18 WHERE circuit = "donington" |
46,381 | <question>: Which 250cc winner has a Round larger than 6, and a Date of 26 july? <context>: CREATE TABLE table_name_5 (round VARCHAR, date VARCHAR) | SELECT 250 AS cc_winner FROM table_name_5 WHERE round > 6 AND date = "26 july" |
46,382 | <question>: Attendance of 48,510 had what highest week? <context>: CREATE TABLE table_name_30 (week INTEGER, attendance VARCHAR) | SELECT MAX(week) FROM table_name_30 WHERE attendance = 48 OFFSET 510 |
46,383 | <question>: Opponent of at san francisco 49ers had what lowest week? <context>: CREATE TABLE table_name_43 (week INTEGER, opponent VARCHAR) | SELECT MIN(week) FROM table_name_43 WHERE opponent = "at san francisco 49ers" |
46,384 | <question>: On what Date is the Minnesota Vikings the Opponent? <context>: CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_71 WHERE opponent = "minnesota vikings" |
46,385 | <question>: What is the Date of Week 5? <context>: CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_3 WHERE week = 5 |
46,386 | <question>: What is the Date of Week 2? <context>: CREATE TABLE table_name_47 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_47 WHERE week = 2 |
46,387 | <question>: What was the score when the game has a loss of Lary (10-12)? <context>: CREATE TABLE table_name_18 (score VARCHAR, loss VARCHAR) | SELECT score FROM table_name_18 WHERE loss = "lary (10-12)" |
46,388 | <question>: What is the result of the friendly match? <context>: CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR) | SELECT result FROM table_name_37 WHERE competition = "friendly" |
46,389 | <question>: What is the score of the match on June 4, 2008? <context>: CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_76 WHERE date = "june 4, 2008" |
46,390 | <question>: Which Year is the lowest one that has a Length of 3:50? <context>: CREATE TABLE table_name_17 (year INTEGER, length VARCHAR) | SELECT MIN(year) FROM table_name_17 WHERE length = "3:50" |
46,391 | <question>: Which Length has a Year of 2000? <context>: CREATE TABLE table_name_13 (length VARCHAR, year VARCHAR) | SELECT length FROM table_name_13 WHERE year = 2000 |
46,392 | <question>: In what place is the artist Midnight Band with a draw larger than 2 and less than 139 points. <context>: CREATE TABLE table_name_7 (place VARCHAR, artist VARCHAR, draw VARCHAR, points VARCHAR) | SELECT place FROM table_name_7 WHERE draw > 2 AND points < 139 AND artist = "midnight band" |
46,393 | <question>: what player matched up with 9 <context>: CREATE TABLE table_name_78 (player VARCHAR, matches VARCHAR) | SELECT player FROM table_name_78 WHERE matches = "9" |
46,394 | <question>: What is the 2nd leg of the Internacional Team 1? <context>: CREATE TABLE table_name_48 (team_1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_48 WHERE team_1 = "internacional" |
46,395 | <question>: Which City has a Country of spain, and a Stadium of palacio de deportes de santander? <context>: CREATE TABLE table_name_57 (city VARCHAR, country VARCHAR, stadium VARCHAR) | SELECT city FROM table_name_57 WHERE country = "spain" AND stadium = "palacio de deportes de santander" |
46,396 | <question>: Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade? <context>: CREATE TABLE table_name_76 (capacity INTEGER, rank VARCHAR, city VARCHAR) | SELECT MIN(capacity) FROM table_name_76 WHERE rank < 15 AND city = "belgrade" |
46,397 | <question>: Which Capacity is the lowest one that has a City of brisbane, and a Rank smaller than 1? <context>: CREATE TABLE table_name_96 (capacity INTEGER, city VARCHAR, rank VARCHAR) | SELECT MIN(capacity) FROM table_name_96 WHERE city = "brisbane" AND rank < 1 |
46,398 | <question>: What are the total points that had 68 match points, 9 bonus points and 30 games? <context>: CREATE TABLE table_name_29 (total_points VARCHAR, match_points VARCHAR, games VARCHAR, bonus_points VARCHAR) | SELECT total_points FROM table_name_29 WHERE games = "30" AND bonus_points = "9" AND match_points = "68" |
46,399 | <question>: What's the shortest length from north klondike highway that has a length less than 326? <context>: CREATE TABLE table_name_38 (length__km_ INTEGER, name VARCHAR, length__mi_ VARCHAR) | SELECT MIN(length__km_) FROM table_name_38 WHERE name = "north klondike highway" AND length__mi_ < 326 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.