Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
53,200 | <question>: What is the sum of Game, when Date is 29 January 2008? <context>: CREATE TABLE table_name_59 (game INTEGER, date VARCHAR) | SELECT SUM(game) FROM table_name_59 WHERE date = "29 january 2008" |
53,201 | <question>: What date had a catalog of kicp-1321? <context>: CREATE TABLE table_name_61 (date VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_61 WHERE catalog = "kicp-1321" |
53,202 | <question>: What was the catalog when the label was frontiers records? <context>: CREATE TABLE table_name_61 (catalog VARCHAR, label VARCHAR) | SELECT catalog FROM table_name_61 WHERE label = "frontiers records" |
53,203 | <question>: What was the format for the region of europe? <context>: CREATE TABLE table_name_81 (format VARCHAR, region VARCHAR) | SELECT format FROM table_name_81 WHERE region = "europe" |
53,204 | <question>: What was the region when the label was the universal music group? <context>: CREATE TABLE table_name_92 (region VARCHAR, label VARCHAR) | SELECT region FROM table_name_92 WHERE label = "universal music group" |
53,205 | <question>: What was the format when the label was loen entertainment? <context>: CREATE TABLE table_name_20 (format VARCHAR, label VARCHAR) | SELECT format FROM table_name_20 WHERE label = "loen entertainment" |
53,206 | <question>: With a works number of 40864 for the builder of Baldwin Locomotive Works, the number listed is? <context>: CREATE TABLE table_name_15 (number VARCHAR, builder VARCHAR, works_number VARCHAR) | SELECT number FROM table_name_15 WHERE builder = "baldwin locomotive works" AND works_number = 40864 |
53,207 | <question>: Builder H. K. Porter, inc who had a type of 0-4-4 Forney locomotive, has what works number? <context>: CREATE TABLE table_name_88 (works_number VARCHAR, type VARCHAR, builder VARCHAR) | SELECT works_number FROM table_name_88 WHERE type = "0-4-4 forney locomotive" AND builder = "h. k. porter, inc" |
53,208 | <question>: Baldwin Locomotive Works, also with works number 40864, is listed as what number? <context>: CREATE TABLE table_name_2 (number VARCHAR, builder VARCHAR, works_number VARCHAR) | SELECT number FROM table_name_2 WHERE builder = "baldwin locomotive works" AND works_number = 40864 |
53,209 | <question>: Hinkley Locomotive Works is listed as what number as it has a works number smaller than 1563? <context>: CREATE TABLE table_name_7 (number VARCHAR, works_number VARCHAR, builder VARCHAR) | SELECT number FROM table_name_7 WHERE works_number < 1563 AND builder = "hinkley locomotive works" |
53,210 | <question>: What is Score, when Outcome is Winner, and when Opponent is Angela Haynes? <context>: CREATE TABLE table_name_69 (score VARCHAR, outcome VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_69 WHERE outcome = "winner" AND opponent = "angela haynes" |
53,211 | <question>: What is Date, when Championship is Mackay? <context>: CREATE TABLE table_name_72 (date VARCHAR, championship VARCHAR) | SELECT date FROM table_name_72 WHERE championship = "mackay" |
53,212 | <question>: What is Opponent, when Championship is Pétange? <context>: CREATE TABLE table_name_69 (opponent VARCHAR, championship VARCHAR) | SELECT opponent FROM table_name_69 WHERE championship = "pétange" |
53,213 | <question>: What is Outcome, when Score is 1-6, 3-6? <context>: CREATE TABLE table_name_5 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_5 WHERE score = "1-6, 3-6" |
53,214 | <question>: What is Date, when Score is 6-3, 4-6, 0-6? <context>: CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_88 WHERE score = "6-3, 4-6, 0-6" |
53,215 | <question>: What is Score, when Opponent is Natalia Rizhonkova? <context>: CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_62 WHERE opponent = "natalia rizhonkova" |
53,216 | <question>: Which Game has a Nugget points of 89? <context>: CREATE TABLE table_name_99 (game INTEGER, nuggets_points VARCHAR) | SELECT MIN(game) FROM table_name_99 WHERE nuggets_points = 89 |
53,217 | <question>: Which Record has a Result of win, and a Streak of won 1, and a Game of 47? <context>: CREATE TABLE table_name_47 (record VARCHAR, game VARCHAR, result VARCHAR, streak VARCHAR) | SELECT record FROM table_name_47 WHERE result = "win" AND streak = "won 1" AND game = 47 |
53,218 | <question>: How many Opponents have a Result of win, and Nuggets points smaller than 115, and an Opponent of washington? <context>: CREATE TABLE table_name_62 (opponents INTEGER, opponent VARCHAR, result VARCHAR, nuggets_points VARCHAR) | SELECT SUM(opponents) FROM table_name_62 WHERE result = "win" AND nuggets_points < 115 AND opponent = "washington" |
53,219 | <question>: How many Opponents have a Result of loss, and a Game smaller than 49, and Nuggets points of 108? <context>: CREATE TABLE table_name_34 (opponents VARCHAR, nuggets_points VARCHAR, result VARCHAR, game VARCHAR) | SELECT COUNT(opponents) FROM table_name_34 WHERE result = "loss" AND game < 49 AND nuggets_points = 108 |
53,220 | <question>: Which Result has a Game smaller than 37, and a Streak of lost 1, and a Record of 4-9? <context>: CREATE TABLE table_name_40 (result VARCHAR, record VARCHAR, game VARCHAR, streak VARCHAR) | SELECT result FROM table_name_40 WHERE game < 37 AND streak = "lost 1" AND record = "4-9" |
53,221 | <question>: What round has a name of vladimir morozov? <context>: CREATE TABLE table_name_90 (round VARCHAR, name VARCHAR) | SELECT round FROM table_name_90 WHERE name = "vladimir morozov" |
53,222 | <question>: What is the record for the date of 12 december? <context>: CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_36 WHERE date = "12 december" |
53,223 | <question>: What is the date for the name ryan lochte? <context>: CREATE TABLE table_name_79 (date VARCHAR, name VARCHAR) | SELECT date FROM table_name_79 WHERE name = "ryan lochte" |
53,224 | <question>: What is the record for the date 15 december, and a round of final? <context>: CREATE TABLE table_name_6 (record VARCHAR, date VARCHAR, round VARCHAR) | SELECT record FROM table_name_6 WHERE date = "15 december" AND round = "final" |
53,225 | <question>: What is the lowest attendance for week 11? <context>: CREATE TABLE table_name_46 (attendance INTEGER, week VARCHAR) | SELECT MIN(attendance) FROM table_name_46 WHERE week = 11 |
53,226 | <question>: What is the total number of spectators on week 4? <context>: CREATE TABLE table_name_98 (attendance VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_98 WHERE week = 4 |
53,227 | <question>: What was the sample size for polling on May 2-7, 2007 for Hillary Clinton? <context>: CREATE TABLE table_name_35 (sample_size VARCHAR, date VARCHAR, democrat VARCHAR) | SELECT sample_size FROM table_name_35 WHERE date = "may 2-7, 2007" AND democrat = "hillary clinton" |
53,228 | <question>: Who was the republican when hillary clinton was the democrat and the sample size was more than 1087 with a margin of error of 2.6? <context>: CREATE TABLE table_name_47 (republican VARCHAR, margin_of_error VARCHAR, sample_size VARCHAR, democrat VARCHAR) | SELECT republican FROM table_name_47 WHERE sample_size > 1087 AND democrat = "hillary clinton" AND margin_of_error = 2.6 |
53,229 | <question>: Where is the poll source when Hillary clinton was the democrat, john mccain was the republican, and the margin of error was less than 4.5 on May 2-7, 2007? <context>: CREATE TABLE table_name_41 (poll_source VARCHAR, date VARCHAR, republican VARCHAR, democrat VARCHAR, margin_of_error VARCHAR) | SELECT poll_source FROM table_name_41 WHERE democrat = "hillary clinton" AND margin_of_error < 4.5 AND republican = "john mccain" AND date = "may 2-7, 2007" |
53,230 | <question>: What si the total sample size at rasmussen reports when the margin of error was bigger than 4.5? <context>: CREATE TABLE table_name_59 (sample_size VARCHAR, poll_source VARCHAR, margin_of_error VARCHAR) | SELECT COUNT(sample_size) FROM table_name_59 WHERE poll_source = "rasmussen reports" AND margin_of_error > 4.5 |
53,231 | <question>: What is the date that the polls were going on at quinnipiac when john mccain was the republican, barack obama was the democrat and the sample size was bigger than 1427? <context>: CREATE TABLE table_name_67 (date VARCHAR, sample_size VARCHAR, democrat VARCHAR, republican VARCHAR, poll_source VARCHAR) | SELECT date FROM table_name_67 WHERE republican = "john mccain" AND poll_source = "quinnipiac" AND democrat = "barack obama" AND sample_size > 1427 |
53,232 | <question>: What is To Par, when Player is Greg Norman? <context>: CREATE TABLE table_name_65 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_65 WHERE player = "greg norman" |
53,233 | <question>: What is Score, when Money ( $ ) is 32,200, and when Player is Chip Beck? <context>: CREATE TABLE table_name_2 (score VARCHAR, money___$__ VARCHAR, player VARCHAR) | SELECT score FROM table_name_2 WHERE money___$__ = "32,200" AND player = "chip beck" |
53,234 | <question>: What is Money ( $ ), when Player is Greg Norman? <context>: CREATE TABLE table_name_1 (money___$__ VARCHAR, player VARCHAR) | SELECT money___$__ FROM table_name_1 WHERE player = "greg norman" |
53,235 | <question>: What is Player, when Country is United States, and when Score is 73-76-72-66=287? <context>: CREATE TABLE table_name_6 (player VARCHAR, country VARCHAR, score VARCHAR) | SELECT player FROM table_name_6 WHERE country = "united states" AND score = 73 - 76 - 72 - 66 = 287 |
53,236 | <question>: What is To Par, when Money ( $ ) is Playoff, and when Score is 68-73-77-65=283? <context>: CREATE TABLE table_name_97 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_97 WHERE money___$__ = "playoff" AND score = 68 - 73 - 77 - 65 = 283 |
53,237 | <question>: What country was Ernie Els from? <context>: CREATE TABLE table_name_80 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_80 WHERE player = "ernie els" |
53,238 | <question>: What was the par for the t5 place player Steve Jones? <context>: CREATE TABLE table_name_16 (to_par VARCHAR, place VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_16 WHERE place = "t5" AND player = "steve jones" |
53,239 | <question>: What type is You from the state of Chen? <context>: CREATE TABLE table_name_91 (type VARCHAR, state VARCHAR, name VARCHAR) | SELECT type FROM table_name_91 WHERE state = "chen" AND name = "you" |
53,240 | <question>: What country had the runner abubaker kaki khamis in lane 5? <context>: CREATE TABLE table_name_9 (country VARCHAR, lane VARCHAR, name VARCHAR) | SELECT country FROM table_name_9 WHERE lane = 5 AND name = "abubaker kaki khamis" |
53,241 | <question>: What is the highest heat for a lane past 1 and mark of 1:48.61? <context>: CREATE TABLE table_name_79 (heat INTEGER, lane VARCHAR, mark VARCHAR) | SELECT MAX(heat) FROM table_name_79 WHERE lane > 1 AND mark = "1:48.61" |
53,242 | <question>: What is average for Benito Lorenzi league when total is smaller than 143? <context>: CREATE TABLE table_name_20 (league INTEGER, name VARCHAR, total VARCHAR) | SELECT AVG(league) FROM table_name_20 WHERE name = "benito lorenzi" AND total < 143 |
53,243 | <question>: Which league has total smaller than 284, with Sandro Mazzola league? <context>: CREATE TABLE table_name_42 (league INTEGER, total VARCHAR, name VARCHAR) | SELECT MIN(league) FROM table_name_42 WHERE total < 284 AND name = "sandro mazzola" |
53,244 | <question>: What is the earliest election with 2 seats and the outcome of the election of minority in parliament? <context>: CREATE TABLE table_name_67 (election INTEGER, outcome_of_election VARCHAR, seats VARCHAR) | SELECT MIN(election) FROM table_name_67 WHERE outcome_of_election = "minority in parliament" AND seats = "2" |
53,245 | <question>: How many seats does the election with the outcome of election of minority in parliament and 186,226 PNC votes have? <context>: CREATE TABLE table_name_86 (seats VARCHAR, outcome_of_election VARCHAR, number_of_pnc_votes VARCHAR) | SELECT seats FROM table_name_86 WHERE outcome_of_election = "minority in parliament" AND number_of_pnc_votes = "186,226" |
53,246 | <question>: How many seats did the election before 2004 with 3.4% share of votes have? <context>: CREATE TABLE table_name_72 (seats VARCHAR, election VARCHAR, share_of_votes VARCHAR) | SELECT seats FROM table_name_72 WHERE election < 2004 AND share_of_votes = "3.4%" |
53,247 | <question>: How many PNC votes did the election before 1996 have? <context>: CREATE TABLE table_name_39 (number_of_pnc_votes VARCHAR, election INTEGER) | SELECT number_of_pnc_votes FROM table_name_39 WHERE election < 1996 |
53,248 | <question>: How many times is the postion S? <context>: CREATE TABLE table_name_4 (overall VARCHAR, position VARCHAR) | SELECT COUNT(overall) FROM table_name_4 WHERE position = "s" |
53,249 | <question>: how many times is the name Derek Smith when the round is higher than 3? <context>: CREATE TABLE table_name_63 (overall VARCHAR, name VARCHAR, round VARCHAR) | SELECT COUNT(overall) FROM table_name_63 WHERE name = "derek smith" AND round > 3 |
53,250 | <question>: what is the lowest overall when the pick is 20? <context>: CREATE TABLE table_name_50 (overall INTEGER, pick VARCHAR) | SELECT MIN(overall) FROM table_name_50 WHERE pick = 20 |
53,251 | <question>: what is the highest round when the overall is less than 17? <context>: CREATE TABLE table_name_32 (round INTEGER, overall INTEGER) | SELECT MAX(round) FROM table_name_32 WHERE overall < 17 |
53,252 | <question>: What is Partner, when Opponents In The Final is Remi Tezuka Shuko Aoyama? <context>: CREATE TABLE table_name_98 (partner VARCHAR, opponents_in_the_final VARCHAR) | SELECT partner FROM table_name_98 WHERE opponents_in_the_final = "remi tezuka shuko aoyama" |
53,253 | <question>: What is Opponents In The Final, when Score is 4-1 5-4 (7) 4-2? <context>: CREATE TABLE table_name_84 (opponents_in_the_final VARCHAR, score VARCHAR) | SELECT opponents_in_the_final FROM table_name_84 WHERE score = "4-1 5-4 (7) 4-2" |
53,254 | <question>: What is Date, when Opponents In The Final, is Maria-Fernanda Alves Stéphanie Dubois? <context>: CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR) | SELECT date FROM table_name_59 WHERE opponents_in_the_final = "maria-fernanda alves stéphanie dubois" |
53,255 | <question>: Where was the Fury FC 4: High Voltage event held? <context>: CREATE TABLE table_name_5 (location VARCHAR, event VARCHAR) | SELECT location FROM table_name_5 WHERE event = "fury fc 4: high voltage" |
53,256 | <question>: What's the nat that ends in 2009? <context>: CREATE TABLE table_name_93 (nat VARCHAR, ends VARCHAR) | SELECT nat FROM table_name_93 WHERE ends = "2009" |
53,257 | <question>: What is the type when they move from Gimnàstic? <context>: CREATE TABLE table_name_69 (type VARCHAR, moving_from VARCHAR) | SELECT type FROM table_name_69 WHERE moving_from = "gimnàstic" |
53,258 | <question>: What's the transfer window that ends in 2012? <context>: CREATE TABLE table_name_19 (transfer_window VARCHAR, ends VARCHAR) | SELECT transfer_window FROM table_name_19 WHERE ends = "2012" |
53,259 | <question>: What's the type that ends in 2009? <context>: CREATE TABLE table_name_60 (type VARCHAR, ends VARCHAR) | SELECT type FROM table_name_60 WHERE ends = "2009" |
53,260 | <question>: What's the moving of the Esp with a transfer and named De La Red? <context>: CREATE TABLE table_name_53 (moving_from VARCHAR, name VARCHAR, type VARCHAR, nat VARCHAR) | SELECT moving_from FROM table_name_53 WHERE type = "transfer" AND nat = "esp" AND name = "de la red" |
53,261 | <question>: What type is González? <context>: CREATE TABLE table_name_20 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_20 WHERE name = "gonzález" |
53,262 | <question>: How many sales took place with a peak of 1 for Boris? <context>: CREATE TABLE table_name_81 (sales VARCHAR, peak VARCHAR, artist VARCHAR) | SELECT COUNT(sales) FROM table_name_81 WHERE peak = 1 AND artist = "boris" |
53,263 | <question>: What was the record in the game where the opponent was the cincinnati royals? <context>: CREATE TABLE table_name_60 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_60 WHERE opponent = "cincinnati royals" |
53,264 | <question>: What was the attendance of game 25 when the played the San Francisco Warriors? <context>: CREATE TABLE table_name_43 (location_attendance VARCHAR, opponent VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_name_43 WHERE opponent = "san francisco warriors" AND game = 25 |
53,265 | <question>: Which manufacturer has a grid of 6? <context>: CREATE TABLE table_name_25 (manufacturer VARCHAR, grid VARCHAR) | SELECT manufacturer FROM table_name_25 WHERE grid = "6" |
53,266 | <question>: Who is the rider for Honda with a grid of 25? <context>: CREATE TABLE table_name_72 (rider VARCHAR, manufacturer VARCHAR, grid VARCHAR) | SELECT rider FROM table_name_72 WHERE manufacturer = "honda" AND grid = "25" |
53,267 | <question>: How many laps has a grid of 5? <context>: CREATE TABLE table_name_62 (laps VARCHAR, grid VARCHAR) | SELECT laps FROM table_name_62 WHERE grid = "5" |
53,268 | <question>: Who is the rider whose time/retired is accident? <context>: CREATE TABLE table_name_43 (rider VARCHAR, time_retired VARCHAR) | SELECT rider FROM table_name_43 WHERE time_retired = "accident" |
53,269 | <question>: How many laps have a time/retired of +23.080? <context>: CREATE TABLE table_name_51 (laps VARCHAR, time_retired VARCHAR) | SELECT laps FROM table_name_51 WHERE time_retired = "+23.080" |
53,270 | <question>: Who is the manufacturer for Henk Vd Lagemaat? <context>: CREATE TABLE table_name_68 (manufacturer VARCHAR, rider VARCHAR) | SELECT manufacturer FROM table_name_68 WHERE rider = "henk vd lagemaat" |
53,271 | <question>: what is the technology when the gel pouring is no and the analysis time is 8 days? <context>: CREATE TABLE table_name_88 (technology VARCHAR, gel_pouring VARCHAR, analysis_time VARCHAR) | SELECT technology FROM table_name_88 WHERE gel_pouring = "no" AND analysis_time = "8 days" |
53,272 | <question>: what is the throughput (including analysis) when the analysis time is 4 hours? <context>: CREATE TABLE table_name_77 (throughput__including_analysis_ VARCHAR, analysis_time VARCHAR) | SELECT throughput__including_analysis_ FROM table_name_77 WHERE analysis_time = "4 hours" |
53,273 | <question>: What is Geust, when Result is 0:9? <context>: CREATE TABLE table_name_45 (geust VARCHAR, result VARCHAR) | SELECT geust FROM table_name_45 WHERE result = "0:9" |
53,274 | <question>: What is Home, when Time is 18:00, and when Geust is Servette FC (CHL)? <context>: CREATE TABLE table_name_49 (home VARCHAR, time VARCHAR, geust VARCHAR) | SELECT home FROM table_name_49 WHERE time = "18:00" AND geust = "servette fc (chl)" |
53,275 | <question>: What is Time, when Geust is AC Bellinzona (CHL)? <context>: CREATE TABLE table_name_77 (time VARCHAR, geust VARCHAR) | SELECT time FROM table_name_77 WHERE geust = "ac bellinzona (chl)" |
53,276 | <question>: What was the transfer fee when winter was the transfer window? <context>: CREATE TABLE table_name_1 (transfer_fee VARCHAR, transfer_window VARCHAR) | SELECT transfer_fee FROM table_name_1 WHERE transfer_window = "winter" |
53,277 | <question>: What transfer fee has both winter as the transfer window, and Madureira as the moving to? <context>: CREATE TABLE table_name_68 (transfer_fee VARCHAR, transfer_window VARCHAR, moving_to VARCHAR) | SELECT transfer_fee FROM table_name_68 WHERE transfer_window = "winter" AND moving_to = "madureira" |
53,278 | <question>: What was the moving that has a free transfer fee, and the nationality of CYP, and winter as the transfer window? <context>: CREATE TABLE table_name_12 (moving_to VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR, nat VARCHAR) | SELECT moving_to FROM table_name_12 WHERE transfer_fee = "free" AND nat = "cyp" AND transfer_window = "winter" |
53,279 | <question>: Who is moving to Metalurh Donetsk? <context>: CREATE TABLE table_name_9 (name VARCHAR, moving_to VARCHAR) | SELECT name FROM table_name_9 WHERE moving_to = "metalurh donetsk" |
53,280 | <question>: The player moving to Villa Rio has what transfer fee? <context>: CREATE TABLE table_name_11 (transfer_fee VARCHAR, moving_to VARCHAR) | SELECT transfer_fee FROM table_name_11 WHERE moving_to = "villa rio" |
53,281 | <question>: Emerson has what transfer window? <context>: CREATE TABLE table_name_90 (transfer_window VARCHAR, name VARCHAR) | SELECT transfer_window FROM table_name_90 WHERE name = "emerson" |
53,282 | <question>: Where was the fight located that lasted a time of 2:33? <context>: CREATE TABLE table_name_7 (location VARCHAR, time VARCHAR) | SELECT location FROM table_name_7 WHERE time = "2:33" |
53,283 | <question>: What is the total number of Game, when Attendance is "18,568"? <context>: CREATE TABLE table_name_7 (game VARCHAR, attendance VARCHAR) | SELECT COUNT(game) FROM table_name_7 WHERE attendance = 18 OFFSET 568 |
53,284 | <question>: In Silver Bow County, Montana, when the capicity is more than 45 tons, what's the highest rank found? <context>: CREATE TABLE table_name_21 (rank INTEGER, county_and_state VARCHAR, capacity__thousands_of_metric_tons_ VARCHAR) | SELECT MAX(rank) FROM table_name_21 WHERE county_and_state = "silver bow county, montana" AND capacity__thousands_of_metric_tons_ > 45 |
53,285 | <question>: In Pinal County, Arizona, when there's a capacity of over 5 metric tons, and the rank is under 14, what's the mine called? <context>: CREATE TABLE table_name_67 (mine VARCHAR, county_and_state VARCHAR, rank VARCHAR, capacity__thousands_of_metric_tons_ VARCHAR) | SELECT mine FROM table_name_67 WHERE rank < 14 AND capacity__thousands_of_metric_tons_ > 5 AND county_and_state = "pinal county, arizona" |
53,286 | <question>: How many sets lost have a loss smaller than 3 and a rank larger than 1? <context>: CREATE TABLE table_name_26 (sets_lost INTEGER, loss VARCHAR, rank VARCHAR) | SELECT SUM(sets_lost) FROM table_name_26 WHERE loss < 3 AND rank > 1 |
53,287 | <question>: What is Bids, when Champions is "1"? <context>: CREATE TABLE table_name_34 (bids VARCHAR, champions VARCHAR) | SELECT bids FROM table_name_34 WHERE champions = "1" |
53,288 | <question>: Which finalist played in the week of October 21? <context>: CREATE TABLE table_name_38 (finalist VARCHAR, week VARCHAR) | SELECT finalist FROM table_name_38 WHERE week = "october 21" |
53,289 | <question>: On what surface did they play the match in the week of October 21? <context>: CREATE TABLE table_name_27 (surface VARCHAR, week VARCHAR) | SELECT surface FROM table_name_27 WHERE week = "october 21" |
53,290 | <question>: Who was the finalist in the Monte Carlo Tournament? <context>: CREATE TABLE table_name_91 (finalist VARCHAR, tournament VARCHAR) | SELECT finalist FROM table_name_91 WHERE tournament = "monte carlo" |
53,291 | <question>: What is the Rank of the Nation with more than 1 Gold and a more than 4 Total medals? <context>: CREATE TABLE table_name_65 (rank INTEGER, gold VARCHAR, total VARCHAR) | SELECT SUM(rank) FROM table_name_65 WHERE gold > 1 AND total > 4 |
53,292 | <question>: What is the Gold for the Nation in Rank 4 with less than 1 Silver? <context>: CREATE TABLE table_name_37 (gold INTEGER, rank VARCHAR, silver VARCHAR) | SELECT MIN(gold) FROM table_name_37 WHERE rank = 4 AND silver < 1 |
53,293 | <question>: What is the transfer window for Steven Thompson? <context>: CREATE TABLE table_name_1 (transfer_window VARCHAR, name VARCHAR) | SELECT transfer_window FROM table_name_1 WHERE name = "steven thompson" |
53,294 | <question>: What type is Kevin Muscat? <context>: CREATE TABLE table_name_35 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_35 WHERE name = "kevin muscat" |
53,295 | <question>: What is the freestyle leg for the Netherlands? <context>: CREATE TABLE table_name_5 (freestyle_leg VARCHAR, country VARCHAR) | SELECT freestyle_leg FROM table_name_5 WHERE country = "netherlands" |
53,296 | <question>: What is the release date when the location is Europe? <context>: CREATE TABLE table_name_37 (release_date VARCHAR, location VARCHAR) | SELECT release_date FROM table_name_37 WHERE location = "europe" |
53,297 | <question>: What is the release in Germany? <context>: CREATE TABLE table_name_96 (release_date VARCHAR, location VARCHAR) | SELECT release_date FROM table_name_96 WHERE location = "germany" |
53,298 | <question>: What is the name with a release date of December 1966, and a Location of UK? <context>: CREATE TABLE table_name_42 (name VARCHAR, release_date VARCHAR, location VARCHAR) | SELECT name FROM table_name_42 WHERE release_date = "december 1966" AND location = "uk" |
53,299 | <question>: What is the US release date? <context>: CREATE TABLE table_name_5 (release_date VARCHAR, location VARCHAR) | SELECT release_date FROM table_name_5 WHERE location = "us" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.