Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
41,300 | <question>: Tell me the bp comp 2 for % wt comp 1 of 76 <context>: CREATE TABLE table_name_32 (bp_comp_2__Λc_ VARCHAR, _percentage_wt_comp_1 VARCHAR) | SELECT bp_comp_2__Λc_ FROM table_name_32 WHERE _percentage_wt_comp_1 = 76 |
41,301 | <question>: Tell me the total number of % wt comp 1 foR % wt comp 2 or 27 <context>: CREATE TABLE table_name_1 (_percentage_wt_comp_1 VARCHAR, _percentage_wt_comp_2 VARCHAR) | SELECT COUNT(_percentage_wt_comp_1) FROM table_name_1 WHERE _percentage_wt_comp_2 = 27 |
41,302 | <question>: What is the percentage of the popular vote when there were 90 seats available? <context>: CREATE TABLE table_name_53 (_percentage_of_popular_vote VARCHAR, _number_of_seats_available VARCHAR) | SELECT _percentage_of_popular_vote FROM table_name_53 WHERE _number_of_seats_available = 90 |
41,303 | <question>: Name the gold for silver of 39 <context>: CREATE TABLE table_name_56 (gold VARCHAR, silver VARCHAR) | SELECT gold FROM table_name_56 WHERE silver = 39 |
41,304 | <question>: What is the compression ratio for the 302-2v Windsor v8 engine? <context>: CREATE TABLE table_name_41 (compression_ratio VARCHAR, engine VARCHAR) | SELECT compression_ratio FROM table_name_41 WHERE engine = "302-2v windsor v8" |
41,305 | <question>: How many games had 41 rushes and were than 197 yards? <context>: CREATE TABLE table_name_21 (games VARCHAR, rushes VARCHAR, yards VARCHAR) | SELECT COUNT(games) FROM table_name_21 WHERE rushes = 41 AND yards < 197 |
41,306 | <question>: What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games? <context>: CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR) | SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12 |
41,307 | <question>: What is the pick # for Dimelon Westfield? <context>: CREATE TABLE table_name_93 (pick__number INTEGER, player VARCHAR) | SELECT MIN(pick__number) FROM table_name_93 WHERE player = "dimelon westfield" |
41,308 | <question>: What was the final score of the November 8, 2001 game? <context>: CREATE TABLE table_name_64 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_64 WHERE date = "november 8, 2001" |
41,309 | <question>: Tell me the bullet tip color of headstamp id of h1z <context>: CREATE TABLE table_name_54 (bullet_tip_color VARCHAR, headstamp_id VARCHAR) | SELECT bullet_tip_color FROM table_name_54 WHERE headstamp_id = "h1z" |
41,310 | <question>: Tell me the total number of gold for bronze more than 0 and total more than 100 <context>: CREATE TABLE table_name_2 (gold VARCHAR, bronze VARCHAR, rank VARCHAR) | SELECT COUNT(gold) FROM table_name_2 WHERE bronze > 0 AND rank = "total" AND "total" > 100 |
41,311 | <question>: Tell me the least silver for total less than 6 and rank of 8 <context>: CREATE TABLE table_name_17 (silver INTEGER, total VARCHAR, rank VARCHAR) | SELECT MIN(silver) FROM table_name_17 WHERE total < 6 AND rank = "8" |
41,312 | <question>: What is the first leg score in that match where Marseille was the first team? <context>: CREATE TABLE table_name_85 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_85 WHERE team_1 = "marseille" |
41,313 | <question>: Tell me the discovery/publication for still living <context>: CREATE TABLE table_name_55 (discovery___publication_of_name VARCHAR, fossil_record VARCHAR) | SELECT discovery___publication_of_name FROM table_name_55 WHERE fossil_record = "still living" |
41,314 | <question>: Tell me the discovery/publication for red deer cave people <context>: CREATE TABLE table_name_69 (discovery___publication_of_name VARCHAR, species VARCHAR) | SELECT discovery___publication_of_name FROM table_name_69 WHERE species = "red deer cave people" |
41,315 | <question>: Tell me the discovery/publicatio of name for h.heidelbergensis <context>: CREATE TABLE table_name_78 (discovery___publication_of_name VARCHAR, species VARCHAR) | SELECT discovery___publication_of_name FROM table_name_78 WHERE species = "h.heidelbergensis" |
41,316 | <question>: Tell me the fossil record for name of 1994/2003 <context>: CREATE TABLE table_name_33 (fossil_record VARCHAR, discovery___publication_of_name VARCHAR) | SELECT fossil_record FROM table_name_33 WHERE discovery___publication_of_name = "1994/2003" |
41,317 | <question>: Tell me lived for name of 1994/2003 <context>: CREATE TABLE table_name_99 (lived_when___mya__ VARCHAR, discovery___publication_of_name VARCHAR) | SELECT lived_when___mya__ FROM table_name_99 WHERE discovery___publication_of_name = "1994/2003" |
41,318 | <question>: When was the Monza circuit? <context>: CREATE TABLE table_name_68 (date VARCHAR, circuit VARCHAR) | SELECT date FROM table_name_68 WHERE circuit = "monza" |
41,319 | <question>: What is Metro's win percentage? <context>: CREATE TABLE table_name_4 (win__percentage VARCHAR, conference VARCHAR) | SELECT win__percentage FROM table_name_4 WHERE conference = "metro" |
41,320 | <question>: How many elite eight teams came from the Atlantic 10? <context>: CREATE TABLE table_name_67 (elite_eight VARCHAR, conference VARCHAR) | SELECT elite_eight FROM table_name_67 WHERE conference = "atlantic 10" |
41,321 | <question>: Tell me the opponent for attendance of 55,527 <context>: CREATE TABLE table_name_24 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_24 WHERE attendance = "55,527" |
41,322 | <question>: Which version B-58 aircraft model originated in the United States has 2 in service? <context>: CREATE TABLE table_name_57 (aircraft VARCHAR, versions VARCHAR, in_service VARCHAR, origin VARCHAR) | SELECT aircraft FROM table_name_57 WHERE in_service = "2" AND origin = "united states" AND versions = "b-58" |
41,323 | <question>: What aircraft type is the Casa C-212 Aviocar? <context>: CREATE TABLE table_name_45 (type VARCHAR, aircraft VARCHAR) | SELECT type FROM table_name_45 WHERE aircraft = "casa c-212 aviocar" |
41,324 | <question>: How many T-260 EU aircrafts are currently in service? <context>: CREATE TABLE table_name_64 (in_service VARCHAR, versions VARCHAR) | SELECT in_service FROM table_name_64 WHERE versions = "t-260 eu" |
41,325 | <question>: How many C-95 aircrafts originating in Brazil are currently in service? <context>: CREATE TABLE table_name_12 (in_service VARCHAR, origin VARCHAR, versions VARCHAR) | SELECT in_service FROM table_name_12 WHERE origin = "brazil" AND versions = "c-95" |
41,326 | <question>: Tell me the lowest other for albanians more than 8793 and Roma less than 1030 <context>: CREATE TABLE table_name_47 (other INTEGER, albanians VARCHAR, roma VARCHAR) | SELECT MIN(other) FROM table_name_47 WHERE albanians > 8793 AND roma < 1030 |
41,327 | <question>: Tell me the highest bosniaks for year more than 2002 <context>: CREATE TABLE table_name_8 (bosniaks INTEGER, census_year INTEGER) | SELECT MAX(bosniaks) FROM table_name_8 WHERE census_year > 2002 |
41,328 | <question>: Name the lowest ERP W with a frequency mhz less than 103.1 <context>: CREATE TABLE table_name_21 (erp_w INTEGER, frequency_mhz INTEGER) | SELECT MIN(erp_w) FROM table_name_21 WHERE frequency_mhz < 103.1 |
41,329 | <question>: Name the city with 103.1 frequency and ERP W less than 80 <context>: CREATE TABLE table_name_92 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) | SELECT city_of_license FROM table_name_92 WHERE frequency_mhz = 103.1 AND erp_w < 80 |
41,330 | <question>: Tell me the affiliation for pick number less than 59 and position of gk <context>: CREATE TABLE table_name_33 (affiliation VARCHAR, pick__number VARCHAR, position VARCHAR) | SELECT affiliation FROM table_name_33 WHERE pick__number < 59 AND position = "gk" |
41,331 | <question>: What Tournament of canada happened in 1998? <context>: CREATE TABLE table_name_97 (tournament VARCHAR) | SELECT 1998 FROM table_name_97 WHERE tournament = "canada" |
41,332 | <question>: Who had 1990 of 2β2 in 1993? <context>: CREATE TABLE table_name_67 (Id VARCHAR) | SELECT 1993 FROM table_name_67 WHERE 1990 = "2β2" |
41,333 | <question>: What Tournament of monte carlo had 1996 and a 1987 of nme? <context>: CREATE TABLE table_name_45 (tournament VARCHAR) | SELECT 1996 FROM table_name_45 WHERE 1987 = "nme" AND tournament = "monte carlo" |
41,334 | <question>: What Tournament of the french open had 2004 that has a 1998 of 2r? <context>: CREATE TABLE table_name_58 (tournament VARCHAR) | SELECT 2004 FROM table_name_58 WHERE 1998 = "2r" AND tournament = "french open" |
41,335 | <question>: What is the margin at the Nabisco Championship? <context>: CREATE TABLE table_name_18 (margin VARCHAR, championship VARCHAR) | SELECT margin FROM table_name_18 WHERE championship = "nabisco championship" |
41,336 | <question>: What was the margin in 2001 at the McDonald's LPGA Championship? <context>: CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, championship VARCHAR) | SELECT margin FROM table_name_88 WHERE year = 2001 AND championship = "mcdonald's lpga championship" |
41,337 | <question>: Tell me the date of goal 5 <context>: CREATE TABLE table_name_5 (date VARCHAR, goal VARCHAR) | SELECT date FROM table_name_5 WHERE goal = 5 |
41,338 | <question>: Tell me the date for goal of 5 <context>: CREATE TABLE table_name_17 (date VARCHAR, goal VARCHAR) | SELECT date FROM table_name_17 WHERE goal = 5 |
41,339 | <question>: What was the result of Sopot (pol)? <context>: CREATE TABLE table_name_33 (result VARCHAR, location VARCHAR) | SELECT result FROM table_name_33 WHERE location = "sopot (pol)" |
41,340 | <question>: Which division was the Rampage in when they were in the 2nd round in the Open Cup? <context>: CREATE TABLE table_name_39 (division VARCHAR, open_cup VARCHAR) | SELECT division FROM table_name_39 WHERE open_cup = "2nd round" |
41,341 | <question>: What was the Rampage's regular season in 1997? <context>: CREATE TABLE table_name_12 (reg_season VARCHAR, year VARCHAR) | SELECT reg_season FROM table_name_12 WHERE year = 1997 |
41,342 | <question>: What was the Rampage's status in the Open Cup in the year that they made it to the 2nd round of the playoffs? <context>: CREATE TABLE table_name_98 (open_cup VARCHAR, playoffs VARCHAR) | SELECT open_cup FROM table_name_98 WHERE playoffs = "2nd round" |
41,343 | <question>: What was the Rampage's result in the playoffs in the year that their regular season resulted in 4th, central? <context>: CREATE TABLE table_name_38 (playoffs VARCHAR, reg_season VARCHAR) | SELECT playoffs FROM table_name_38 WHERE reg_season = "4th, central" |
41,344 | <question>: Which method resulting in a win against Ed Mahone? <context>: CREATE TABLE table_name_77 (method VARCHAR, result VARCHAR, opponent VARCHAR) | SELECT method FROM table_name_77 WHERE result = "win" AND opponent = "ed mahone" |
41,345 | <question>: When did the technical knockout against Fatu Tuimanono happen? <context>: CREATE TABLE table_name_24 (date VARCHAR, method VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_24 WHERE method = "technical knockout" AND opponent = "fatu tuimanono" |
41,346 | <question>: When did the opponent knockout Barry Prior in more than 2 rounds? <context>: CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR) | SELECT date FROM table_name_53 WHERE method = "knockout" AND round > 2 AND opponent = "barry prior" |
41,347 | <question>: What resulted after 4 rounds with Ed Mahone? <context>: CREATE TABLE table_name_19 (result VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_19 WHERE round > 4 AND opponent = "ed mahone" |
41,348 | <question>: Tell me the region for georgia <context>: CREATE TABLE table_name_8 (region VARCHAR, state VARCHAR) | SELECT region FROM table_name_8 WHERE state = "georgia" |
41,349 | <question>: Tell me the host for midwest thomas assembly center <context>: CREATE TABLE table_name_85 (host VARCHAR, region VARCHAR, venue VARCHAR) | SELECT host FROM table_name_85 WHERE region = "midwest" AND venue = "thomas assembly center" |
41,350 | <question>: Tell me the region for frank erwin center <context>: CREATE TABLE table_name_10 (region VARCHAR, venue VARCHAR) | SELECT region FROM table_name_10 WHERE venue = "frank erwin center" |
41,351 | <question>: In 1971 at MCG, what was the score of the VFL Reserves? <context>: CREATE TABLE table_name_35 (score VARCHAR, year VARCHAR, competition VARCHAR, venue VARCHAR) | SELECT score FROM table_name_35 WHERE competition = "vfl reserves" AND venue = "mcg" AND year = "1971" |
41,352 | <question>: What was the score when Richmond was the opponent? <context>: CREATE TABLE table_name_45 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_45 WHERE opponent = "richmond" |
41,353 | <question>: Where was the match with a score of 18.6 (114) - 21.14 (140)? <context>: CREATE TABLE table_name_62 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_name_62 WHERE score = "18.6 (114) - 21.14 (140)" |
41,354 | <question>: At the VFL Reserves, who was the opponent when the score was 18.6 (114) - 21.14 (140)? <context>: CREATE TABLE table_name_7 (opponent VARCHAR, competition VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_7 WHERE competition = "vfl reserves" AND score = "18.6 (114) - 21.14 (140)" |
41,355 | <question>: Where was the match with a score of 4.10 (34) - 8.12 (60)? <context>: CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_name_51 WHERE score = "4.10 (34) - 8.12 (60)" |
41,356 | <question>: How much is the total BBC 2 viewing in 1999? <context>: CREATE TABLE table_name_57 (bbc_two_total_viewing VARCHAR, year VARCHAR) | SELECT bbc_two_total_viewing FROM table_name_57 WHERE year = "1999" |
41,357 | <question>: What was the rank of BBC 2 in 2005? <context>: CREATE TABLE table_name_53 (bbc_two_rank VARCHAR, year VARCHAR) | SELECT bbc_two_rank FROM table_name_53 WHERE year = "2005" |
41,358 | <question>: What is the BBC 2 rank when BBC 1 is 1st rank and the total viewing is 9,840,000? <context>: CREATE TABLE table_name_2 (bbc_two_rank VARCHAR, bbc_one_rank VARCHAR, bbc_one_total_viewing VARCHAR) | SELECT bbc_two_rank FROM table_name_2 WHERE bbc_one_rank = "1st" AND bbc_one_total_viewing = "9,840,000" |
41,359 | <question>: In what year was BBC 2 13th in rank? <context>: CREATE TABLE table_name_51 (year VARCHAR, bbc_two_rank VARCHAR) | SELECT year FROM table_name_51 WHERE bbc_two_rank = "13th" |
41,360 | <question>: How many goals occurred for Stein Huysegems when the caps value is more than 8? <context>: CREATE TABLE table_name_13 (goals VARCHAR, caps VARCHAR, player VARCHAR) | SELECT goals FROM table_name_13 WHERE caps > 8 AND player = "stein huysegems" |
41,361 | <question>: What is the largest caps value for Glen Moss? <context>: CREATE TABLE table_name_50 (caps INTEGER, player VARCHAR) | SELECT MAX(caps) FROM table_name_50 WHERE player = "glen moss" |
41,362 | <question>: What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records? <context>: CREATE TABLE table_name_63 (year_of_recording INTEGER, orchestra VARCHAR, record_company VARCHAR) | SELECT MIN(year_of_recording) FROM table_name_63 WHERE orchestra = "royal philharmonic orchestra" AND record_company = "decca records" |
41,363 | <question>: What format was conductor Erich Leinsdorf's album released on? <context>: CREATE TABLE table_name_34 (format VARCHAR, conductor VARCHAR) | SELECT format FROM table_name_34 WHERE conductor = "erich leinsdorf" |
41,364 | <question>: What record company released a CD in 1964? <context>: CREATE TABLE table_name_48 (record_company VARCHAR, year_of_recording VARCHAR, format VARCHAR) | SELECT record_company FROM table_name_48 WHERE year_of_recording = 1964 AND format = "cd" |
41,365 | <question>: What division has finalist playoffs and was 3rd round Open Cup? <context>: CREATE TABLE table_name_73 (division VARCHAR, playoffs VARCHAR, open_cup VARCHAR) | SELECT division FROM table_name_73 WHERE playoffs = "finalist" AND open_cup = "3rd round" |
41,366 | <question>: What year was the team 8th in the season and made it to the 3rd round in Open Cup? <context>: CREATE TABLE table_name_21 (year VARCHAR, reg_season VARCHAR, open_cup VARCHAR) | SELECT year FROM table_name_21 WHERE reg_season = "8th" AND open_cup = "3rd round" |
41,367 | <question>: Tell me the launch date/time for payload of gsat-4 <context>: CREATE TABLE table_name_57 (launch_date_time__utc_ VARCHAR, payload VARCHAR) | SELECT launch_date_time__utc_ FROM table_name_57 WHERE payload = "gsat-4" |
41,368 | <question>: Tell me the launch pad for 25 december 2010 10:34 <context>: CREATE TABLE table_name_16 (launch_pad VARCHAR, launch_date_time__utc_ VARCHAR) | SELECT launch_pad FROM table_name_16 WHERE launch_date_time__utc_ = "25 december 2010 10:34" |
41,369 | <question>: Who had a rank more than 48, and a last in 2005? <context>: CREATE TABLE table_name_16 (name VARCHAR, rank VARCHAR, last VARCHAR) | SELECT name FROM table_name_16 WHERE rank > 48 AND last = 2005 |
41,370 | <question>: Which UEFA confederation member had a rank more than 17 and caps of 114? <context>: CREATE TABLE table_name_32 (name VARCHAR, caps VARCHAR, rank VARCHAR, confederation VARCHAR) | SELECT name FROM table_name_32 WHERE rank > 17 AND confederation = "uefa" AND caps = 114 |
41,371 | <question>: Tell me the result of july 16, 2000 <context>: CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_68 WHERE date = "july 16, 2000" |
41,372 | <question>: What is the maximum cap number where 0 goals were scored with a rank of 15? <context>: CREATE TABLE table_name_5 (caps INTEGER, goals VARCHAR, rank VARCHAR) | SELECT MAX(caps) FROM table_name_5 WHERE goals = 0 AND rank = 15 |
41,373 | <question>: What were the fewest amount of guns possessed by a frigate that served in 1815? <context>: CREATE TABLE table_name_32 (guns INTEGER, class VARCHAR, year VARCHAR) | SELECT MIN(guns) FROM table_name_32 WHERE class = "frigate" AND year = "1815" |
41,374 | <question>: Of the games that sold 321,000 units in the UK, what is their average place? <context>: CREATE TABLE table_name_86 (place INTEGER, units_sold_in_the_uk VARCHAR) | SELECT AVG(place) FROM table_name_86 WHERE units_sold_in_the_uk = "321,000" |
41,375 | <question>: How many units were sold in the US of the game that sold 346,000 units in japan? <context>: CREATE TABLE table_name_72 (units_sold_in_the_us VARCHAR, units_sold_in_japan VARCHAR) | SELECT units_sold_in_the_us FROM table_name_72 WHERE units_sold_in_japan = "346,000" |
41,376 | <question>: Tell me the player from dallas burn <context>: CREATE TABLE table_name_64 (player VARCHAR, mls_team VARCHAR) | SELECT player FROM table_name_64 WHERE mls_team = "dallas burn" |
41,377 | <question>: Tell me the sum of pick number for kenny arena <context>: CREATE TABLE table_name_40 (pick__number INTEGER, player VARCHAR) | SELECT SUM(pick__number) FROM table_name_40 WHERE player = "kenny arena" |
41,378 | <question>: What city is the Northeast Louisiana University located in? <context>: CREATE TABLE table_name_7 (city VARCHAR, host VARCHAR) | SELECT city FROM table_name_7 WHERE host = "northeast louisiana university" |
41,379 | <question>: What region is the city of Philadelphia located in? <context>: CREATE TABLE table_name_16 (region VARCHAR, city VARCHAR) | SELECT region FROM table_name_16 WHERE city = "philadelphia" |
41,380 | <question>: What venue is in Long Beach? <context>: CREATE TABLE table_name_73 (venue VARCHAR, city VARCHAR) | SELECT venue FROM table_name_73 WHERE city = "long beach" |
41,381 | <question>: What state is Knoxville and the mideast region located in? <context>: CREATE TABLE table_name_76 (state VARCHAR, region VARCHAR, city VARCHAR) | SELECT state FROM table_name_76 WHERE region = "mideast" AND city = "knoxville" |
41,382 | <question>: What is the host in Georgia? <context>: CREATE TABLE table_name_51 (host VARCHAR, state VARCHAR) | SELECT host FROM table_name_51 WHERE state = "georgia" |
41,383 | <question>: What state is the University of Tennessee located in? <context>: CREATE TABLE table_name_91 (state VARCHAR, host VARCHAR) | SELECT state FROM table_name_91 WHERE host = "university of tennessee" |
41,384 | <question>: Tell me the date that has a week larger than 3 and a result of w 28-27 <context>: CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR) | SELECT date FROM table_name_26 WHERE week > 3 AND result = "w 28-27" |
41,385 | <question>: Tell me the sum of attendane for a result of w 12-3 and week more than 12 <context>: CREATE TABLE table_name_64 (attendance INTEGER, result VARCHAR, week VARCHAR) | SELECT SUM(attendance) FROM table_name_64 WHERE result = "w 12-3" AND week > 12 |
41,386 | <question>: Tell me the total number of attendance for result of l 18-6 <context>: CREATE TABLE table_name_3 (attendance VARCHAR, result VARCHAR) | SELECT COUNT(attendance) FROM table_name_3 WHERE result = "l 18-6" |
41,387 | <question>: Tell me the total number of attendance for week of 16 <context>: CREATE TABLE table_name_12 (attendance VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_12 WHERE week = 16 |
41,388 | <question>: How many bronzes were held by those with a total of 4 and less than 3 silvers. <context>: CREATE TABLE table_name_37 (bronze INTEGER, total VARCHAR, silver VARCHAR) | SELECT SUM(bronze) FROM table_name_37 WHERE total = 4 AND silver < 3 |
41,389 | <question>: How many rounds did the IFL: Oakland event have? <context>: CREATE TABLE table_name_4 (round INTEGER, event VARCHAR) | SELECT SUM(round) FROM table_name_4 WHERE event = "ifl: oakland" |
41,390 | <question>: Which opponent has a record of 3-0? <context>: CREATE TABLE table_name_83 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_83 WHERE record = "3-0" |
41,391 | <question>: Tell me the constructor for david coulthard <context>: CREATE TABLE table_name_10 (constructor VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_10 WHERE driver = "david coulthard" |
41,392 | <question>: Tell me the pos for adrian sutil <context>: CREATE TABLE table_name_75 (pos VARCHAR, driver VARCHAR) | SELECT pos FROM table_name_75 WHERE driver = "adrian sutil" |
41,393 | <question>: Tell me the part 1 of grid of 1 <context>: CREATE TABLE table_name_60 (part_1 VARCHAR, grid VARCHAR) | SELECT part_1 FROM table_name_60 WHERE grid = "1" |
41,394 | <question>: Name the city of license for call sign of k215es <context>: CREATE TABLE table_name_7 (city_of_license VARCHAR, call_sign VARCHAR) | SELECT city_of_license FROM table_name_7 WHERE call_sign = "k215es" |
41,395 | <question>: Name the FCC info for call sign of k208eq <context>: CREATE TABLE table_name_51 (fcc_info VARCHAR, call_sign VARCHAR) | SELECT fcc_info FROM table_name_51 WHERE call_sign = "k208eq" |
41,396 | <question>: Tell me the total number of date for carpet <context>: CREATE TABLE table_name_94 (date VARCHAR, surface VARCHAR) | SELECT COUNT(date) FROM table_name_94 WHERE surface = "carpet" |
41,397 | <question>: Tell me the opponent for 6β2, 3β6, 4β6 <context>: CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponent_in_the_final FROM table_name_29 WHERE score_in_the_final = "6β2, 3β6, 4β6" |
41,398 | <question>: What is the nationality of Martin Lewis? <context>: CREATE TABLE table_name_62 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_62 WHERE player = "martin lewis" |
41,399 | <question>: Tell me the opponent of week 14 <context>: CREATE TABLE table_name_59 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_59 WHERE week = 14 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.