combined_text stringlengths 106 1.05k |
|---|
###question:In what Year was Rhode Island the National Champion?###answer:SELECT year FROM table_name_77 WHERE national_champion = "rhode island"###context:CREATE TABLE table_name_77 (year VARCHAR, national_champion VARCHAR) |
###question:What was the Runner-up in the Monroe County Sports Commission?###answer:SELECT runner_up FROM table_name_59 WHERE host = "monroe county sports commission"###context:CREATE TABLE table_name_59 (runner_up VARCHAR, host VARCHAR) |
###question:At what Location was the Runner-up TBD?###answer:SELECT location FROM table_name_3 WHERE runner_up = "tbd"###context:CREATE TABLE table_name_3 (location VARCHAR, runner_up VARCHAR) |
###question:At what Location did Robert Morris University (Illinois) Host the Lindenwood National Chamption?###answer:SELECT location FROM table_name_71 WHERE host = "robert morris university (illinois)" AND national_champion = "lindenwood"###context:CREATE TABLE table_name_71 (location VARCHAR, host VARCHAR, national_... |
###question:What was the Runner-up with Ohio as the National Champion in Tucson, AZ?###answer:SELECT runner_up FROM table_name_53 WHERE national_champion = "ohio" AND location = "tucson, az"###context:CREATE TABLE table_name_53 (runner_up VARCHAR, national_champion VARCHAR, location VARCHAR) |
###question:Which graphics spec has a VRAM spec of 512MB?###answer:SELECT graphics FROM table_name_43 WHERE vram = "512mb"###context:CREATE TABLE table_name_43 (graphics VARCHAR, vram VARCHAR) |
###question:What is the MSRP for the laptop with storage of 128-512 GB SSD?###answer:SELECT msrp FROM table_name_2 WHERE storage = "128-512 gb ssd"###context:CREATE TABLE table_name_2 (msrp VARCHAR, storage VARCHAR) |
###question:Name the opponent for game 5###answer:SELECT opponent FROM table_name_25 WHERE game = 5###context:CREATE TABLE table_name_25 (opponent VARCHAR, game VARCHAR) |
###question:What status is shown for Cadeby?###answer:SELECT status FROM table_name_17 WHERE name = "cadeby"###context:CREATE TABLE table_name_17 (status VARCHAR, name VARCHAR) |
###question:What is the Former local authority for Ecclesfield?###answer:SELECT former_local_authority FROM table_name_96 WHERE name = "ecclesfield"###context:CREATE TABLE table_name_96 (former_local_authority VARCHAR, name VARCHAR) |
###question:What is the Status of Mexborough?###answer:SELECT status FROM table_name_83 WHERE name = "mexborough"###context:CREATE TABLE table_name_83 (status VARCHAR, name VARCHAR) |
###question:What is the score on December 1?###answer:SELECT score FROM table_name_36 WHERE date = "december 1"###context:CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR) |
###question:Which skip has Oliver Dupont as a second?###answer:SELECT skip FROM table_name_63 WHERE second = "oliver dupont"###context:CREATE TABLE table_name_63 (skip VARCHAR, second VARCHAR) |
###question:Which second's third is Jean-Michel Arsenault?###answer:SELECT second FROM table_name_91 WHERE third = "jean-michel arsenault"###context:CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR) |
###question:Which skip's third is Steffen Walstad?###answer:SELECT skip FROM table_name_1 WHERE third = "steffen walstad"###context:CREATE TABLE table_name_1 (skip VARCHAR, third VARCHAR) |
###question:Which skip's second is Martin Hejhal?###answer:SELECT skip FROM table_name_51 WHERE second = "martin hejhal"###context:CREATE TABLE table_name_51 (skip VARCHAR, second VARCHAR) |
###question:Which skip's lead is Gordon McDougall?###answer:SELECT skip FROM table_name_17 WHERE lead = "gordon mcdougall"###context:CREATE TABLE table_name_17 (skip VARCHAR, lead VARCHAR) |
###question:Which second's skip is Chris Plys?###answer:SELECT second FROM table_name_10 WHERE skip = "chris plys"###context:CREATE TABLE table_name_10 (second VARCHAR, skip VARCHAR) |
###question:How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3?###answer:SELECT SUM(poles) FROM table_name_39 WHERE class = "125cc" AND team = "matteoni racing team" AND points > 3###context:CREATE TABLE table_name_39 (poles INTEGER, points VARCHAR, class VARCHAR, team VA... |
###question:How many Podiums have a Class of 250cc, and an F laps of 0?###answer:SELECT SUM(podiums) FROM table_name_18 WHERE class = "250cc" AND f_laps = 0###context:CREATE TABLE table_name_18 (podiums INTEGER, class VARCHAR, f_laps VARCHAR) |
###question:Team of elgin city, and a Highest smaller than 537 had what total number of average?###answer:SELECT COUNT(average) FROM table_name_20 WHERE team = "elgin city" AND highest < 537###context:CREATE TABLE table_name_20 (average VARCHAR, team VARCHAR, highest VARCHAR) |
###question:Lowest larger than 288, and a Team of east stirlingshire has what lowest average?###answer:SELECT MIN(average) FROM table_name_61 WHERE lowest > 288 AND team = "east stirlingshire"###context:CREATE TABLE table_name_61 (average INTEGER, lowest VARCHAR, team VARCHAR) |
###question:what is the owner of the c501###answer:SELECT owner FROM table_name_2 WHERE locomotive = "c501"###context:CREATE TABLE table_name_2 (owner VARCHAR, locomotive VARCHAR) |
###question:Which Record has a Game larger than 32, and a December smaller than 21?###answer:SELECT record FROM table_name_34 WHERE game > 32 AND december < 21###context:CREATE TABLE table_name_34 (record VARCHAR, game VARCHAR, december VARCHAR) |
###question:Which Score has Points larger than 46, and a Game smaller than 35, and a December of 21?###answer:SELECT score FROM table_name_35 WHERE points > 46 AND game < 35 AND december = 21###context:CREATE TABLE table_name_35 (score VARCHAR, december VARCHAR, points VARCHAR, game VARCHAR) |
###question:Which December is the lowest one that has Points of 52?###answer:SELECT MIN(december) FROM table_name_96 WHERE points = 52###context:CREATE TABLE table_name_96 (december INTEGER, points VARCHAR) |
###question:Which December has Points of 48, and a Game larger than 33?###answer:SELECT SUM(december) FROM table_name_77 WHERE points = 48 AND game > 33###context:CREATE TABLE table_name_77 (december INTEGER, points VARCHAR, game VARCHAR) |
###question:WHich Regular Season Champions has a Year of 1943–44?###answer:SELECT regular_season_champion_s_ FROM table_name_70 WHERE year = "1943–44"###context:CREATE TABLE table_name_70 (regular_season_champion_s_ VARCHAR, year VARCHAR) |
###question:WHich Tournament venue has a Tournament Champion of duke and a Record of 15–1?###answer:SELECT tournament_venue FROM table_name_33 WHERE tournament_champion = "duke" AND record = "15–1"###context:CREATE TABLE table_name_33 (tournament_venue VARCHAR, tournament_champion VARCHAR, record VARCHAR) |
###question:When has a Tournament venue of richmond arena, and a Record of 12–1, and a Regular Season Champion(s) of virginia tech?###answer:SELECT year FROM table_name_45 WHERE tournament_venue = "richmond arena" AND record = "12–1" AND regular_season_champion_s_ = "virginia tech"###context:CREATE TABLE table_name_45 ... |
###question:When has a Record of 9–1, and a Tournament Champion of duke?###answer:SELECT year FROM table_name_50 WHERE record = "9–1" AND tournament_champion = "duke"###context:CREATE TABLE table_name_50 (year VARCHAR, record VARCHAR, tournament_champion VARCHAR) |
###question:Which Regular Season Champion(s) has a Tournament Champion of west virginia in 1955–56?###answer:SELECT regular_season_champion_s_ FROM table_name_4 WHERE tournament_champion = "west virginia" AND year = "1955–56"###context:CREATE TABLE table_name_4 (regular_season_champion_s_ VARCHAR, tournament_champion V... |
###question:Which Regular Season Champion(s) has a Record of 9–0, and a Tournament Champion of north carolina?###answer:SELECT regular_season_champion_s_ FROM table_name_16 WHERE record = "9–0" AND tournament_champion = "north carolina"###context:CREATE TABLE table_name_16 (regular_season_champion_s_ VARCHAR, record VA... |
###question:What is the lowest round for a player selected from a college of New Hampshire?###answer:SELECT MIN(round) FROM table_name_64 WHERE college_junior_club_team__league_ = "new hampshire"###context:CREATE TABLE table_name_64 (round INTEGER, college_junior_club_team__league_ VARCHAR) |
###question:What nationality is Rod Langway?###answer:SELECT nationality FROM table_name_79 WHERE player = "rod langway"###context:CREATE TABLE table_name_79 (nationality VARCHAR, player VARCHAR) |
###question:What position is the player selected that has a round value over 3?###answer:SELECT position FROM table_name_81 WHERE round > 3###context:CREATE TABLE table_name_81 (position VARCHAR, round INTEGER) |
###question:What college did the player selected in rounds over 3 play for?###answer:SELECT college_junior_club_team__league_ FROM table_name_59 WHERE round > 3###context:CREATE TABLE table_name_59 (college_junior_club_team__league_ VARCHAR, round INTEGER) |
###question:What is the highest round that has a player selected from Clarkson University?###answer:SELECT MAX(round) FROM table_name_15 WHERE college_junior_club_team__league_ = "clarkson university"###context:CREATE TABLE table_name_15 (round INTEGER, college_junior_club_team__league_ VARCHAR) |
###question:What is the lowest rank of Deutsche Telekom with a market value over 209,628?###answer:SELECT MIN(rank) FROM table_name_85 WHERE name = "deutsche telekom" AND market_value___usd_million_ > 209 OFFSET 628###context:CREATE TABLE table_name_85 (rank INTEGER, name VARCHAR, market_value___usd_million_ VARCHAR) |
###question:What is the total market value of all corporations headquartered in Germany?###answer:SELECT COUNT(market_value___usd_million_) FROM table_name_51 WHERE headquarters = "germany"###context:CREATE TABLE table_name_51 (market_value___usd_million_ VARCHAR, headquarters VARCHAR) |
###question:What is the lowest earnings of Vijay Singh who had more than 24 wins?###answer:SELECT MIN(earnings___) AS $__ FROM table_name_34 WHERE player = "vijay singh" AND wins > 24###context:CREATE TABLE table_name_34 (earnings___ INTEGER, player VARCHAR, wins VARCHAR) |
###question:Which Rank is the highest one that has a Change smaller than 44, and a Centre of buenos aires, and a Rating larger than 628?###answer:SELECT MAX(rank) FROM table_name_2 WHERE change < 44 AND centre = "buenos aires" AND rating > 628###context:CREATE TABLE table_name_2 (rank INTEGER, rating VARCHAR, change VA... |
###question:Which Centre has a Rank of 42?###answer:SELECT centre FROM table_name_34 WHERE rank = 42###context:CREATE TABLE table_name_34 (centre VARCHAR, rank VARCHAR) |
###question:Which Rating has a Centre of helsinki?###answer:SELECT SUM(rating) FROM table_name_88 WHERE centre = "helsinki"###context:CREATE TABLE table_name_88 (rating INTEGER, centre VARCHAR) |
###question:Which Change is the average one that has a Centre of buenos aires, and a Rank smaller than 46?###answer:SELECT AVG(change) FROM table_name_31 WHERE centre = "buenos aires" AND rank < 46###context:CREATE TABLE table_name_31 (change INTEGER, centre VARCHAR, rank VARCHAR) |
###question:Operation of find-min has what Fibonacci?###answer:SELECT fibonacci FROM table_name_18 WHERE operation = "find-min"###context:CREATE TABLE table_name_18 (fibonacci VARCHAR, operation VARCHAR) |
###question:Binomial of θ(1) has what pairing?###answer:SELECT pairing FROM table_name_68 WHERE binomial = "θ(1)"###context:CREATE TABLE table_name_68 (pairing VARCHAR, binomial VARCHAR) |
###question:Pairing of θ(1), and a Binomial of θ(1) is what binary?###answer:SELECT binary FROM table_name_82 WHERE pairing = "θ(1)" AND binomial = "θ(1)"###context:CREATE TABLE table_name_82 (binary VARCHAR, pairing VARCHAR, binomial VARCHAR) |
###question:Operation of find-min has what binary?###answer:SELECT binary FROM table_name_98 WHERE operation = "find-min"###context:CREATE TABLE table_name_98 (binary VARCHAR, operation VARCHAR) |
###question:Binary of θ(log n), and a Fibonacci of θ(1) has what binomial?###answer:SELECT binomial FROM table_name_7 WHERE binary = "θ(log n)" AND fibonacci = "θ(1)"###context:CREATE TABLE table_name_7 (binomial VARCHAR, binary VARCHAR, fibonacci VARCHAR) |
###question:Which of the titles have a duration time of 4:57?###answer:SELECT title FROM table_name_81 WHERE duration = "4:57"###context:CREATE TABLE table_name_81 (title VARCHAR, duration VARCHAR) |
###question:What composer has a duration time of 3:31?###answer:SELECT composer FROM table_name_8 WHERE duration = "3:31"###context:CREATE TABLE table_name_8 (composer VARCHAR, duration VARCHAR) |
###question:Which one of the duration has a translation of 1000 lies?###answer:SELECT duration FROM table_name_73 WHERE translation = "1000 lies"###context:CREATE TABLE table_name_73 (duration VARCHAR, translation VARCHAR) |
###question:Which title has a translation of I know in it?###answer:SELECT title FROM table_name_76 WHERE translation = "i know"###context:CREATE TABLE table_name_76 (title VARCHAR, translation VARCHAR) |
###question:Which title has a translation in it of 1000 lies?###answer:SELECT title FROM table_name_32 WHERE translation = "1000 lies"###context:CREATE TABLE table_name_32 (title VARCHAR, translation VARCHAR) |
###question:Who won the gold when Bertil Ahlin Sweden won the silver?###answer:SELECT gold FROM table_name_48 WHERE silver = "bertil ahlin sweden"###context:CREATE TABLE table_name_48 (gold VARCHAR, silver VARCHAR) |
###question:Who won the gold when Jules van Dyk Belgium won bronze?###answer:SELECT gold FROM table_name_13 WHERE bronze = "jules van dyk belgium"###context:CREATE TABLE table_name_13 (gold VARCHAR, bronze VARCHAR) |
###question:Who is the second for the curling team which has alternate Margarita Fomina?###answer:SELECT second FROM table_name_48 WHERE alternate = "margarita fomina"###context:CREATE TABLE table_name_48 (second VARCHAR, alternate VARCHAR) |
###question:Who is the second for the team with alternate Margarita Fomina?###answer:SELECT second FROM table_name_12 WHERE alternate = "margarita fomina"###context:CREATE TABLE table_name_12 (second VARCHAR, alternate VARCHAR) |
###question:Who is the alternate for the team for which Monika Wagner is the third?###answer:SELECT alternate FROM table_name_60 WHERE third = "monika wagner"###context:CREATE TABLE table_name_60 (alternate VARCHAR, third VARCHAR) |
###question:Who is the lead for the team with Nkeiruka Ezekh as second?###answer:SELECT lead FROM table_name_59 WHERE second = "nkeiruka ezekh"###context:CREATE TABLE table_name_59 (lead VARCHAR, second VARCHAR) |
###question:Who is the lead for the team with Christina Haller as alternate?###answer:SELECT lead FROM table_name_86 WHERE alternate = "christina haller"###context:CREATE TABLE table_name_86 (lead VARCHAR, alternate VARCHAR) |
###question:What is the Latitude of the monument built in 1901?###answer:SELECT latitude FROM table_name_83 WHERE year_built = 1901###context:CREATE TABLE table_name_83 (latitude VARCHAR, year_built VARCHAR) |
###question:What is the City or Town of the monument with a Longitude of 89°11′w?###answer:SELECT city_or_town FROM table_name_71 WHERE longitude = "89°11′w"###context:CREATE TABLE table_name_71 (city_or_town VARCHAR, longitude VARCHAR) |
###question:What Monument was built after 1887 in Warren County?###answer:SELECT monument_name FROM table_name_95 WHERE year_built > 1887 AND county = "warren"###context:CREATE TABLE table_name_95 (monument_name VARCHAR, year_built VARCHAR, county VARCHAR) |
###question:What County has a Longitude of 85°45′43″w?###answer:SELECT county FROM table_name_47 WHERE longitude = "85°45′43″w"###context:CREATE TABLE table_name_47 (county VARCHAR, longitude VARCHAR) |
###question:What is the Opponent from the final with a Partner named jorgelina cravero?###answer:SELECT opponent_in_the_final FROM table_name_83 WHERE partner = "jorgelina cravero"###context:CREATE TABLE table_name_83 (opponent_in_the_final VARCHAR, partner VARCHAR) |
###question:What was the outcome for the match at the leipzig tournament with a score w/o?###answer:SELECT outcome FROM table_name_45 WHERE tournament = "leipzig" AND score = "w/o"###context:CREATE TABLE table_name_45 (outcome VARCHAR, tournament VARCHAR, score VARCHAR) |
###question:Who was the opponent that anke huber played against in the leipzig tournament?###answer:SELECT opponent FROM table_name_53 WHERE tournament = "leipzig"###context:CREATE TABLE table_name_53 (opponent VARCHAR, tournament VARCHAR) |
###question:What was the outcome of the match against Magdalena Maleeva?###answer:SELECT outcome FROM table_name_73 WHERE opponent = "magdalena maleeva"###context:CREATE TABLE table_name_73 (outcome VARCHAR, opponent VARCHAR) |
###question:What is the name of the player that was Pick 15?###answer:SELECT player FROM table_name_8 WHERE pick__number = "15"###context:CREATE TABLE table_name_8 (player VARCHAR, pick__number VARCHAR) |
###question:To which college/junior/club team did the player that was Pick 12 belong?###answer:SELECT college_junior_club_team FROM table_name_19 WHERE pick__number = "12"###context:CREATE TABLE table_name_19 (college_junior_club_team VARCHAR, pick__number VARCHAR) |
###question:What NHL team has a player in the position of Left Wing that came from the Toronto Marlboros (omjhl)?###answer:SELECT nhl_team FROM table_name_81 WHERE position = "left wing" AND college_junior_club_team = "toronto marlboros (omjhl)"###context:CREATE TABLE table_name_81 (nhl_team VARCHAR, position VARCHAR, ... |
###question:To which college/junior/club team did the player that was Pick 16 belong?###answer:SELECT college_junior_club_team FROM table_name_6 WHERE pick__number = "16"###context:CREATE TABLE table_name_6 (college_junior_club_team VARCHAR, pick__number VARCHAR) |
###question:What company does Simon Stone direct earlier than 2011?###answer:SELECT company FROM table_name_14 WHERE director = "simon stone" AND year < 2011###context:CREATE TABLE table_name_14 (company VARCHAR, director VARCHAR, year VARCHAR) |
###question:Which Result has a Competition of world cup qualifying, and a Date of march 21, 1954?###answer:SELECT result FROM table_name_85 WHERE competition = "world cup qualifying" AND date = "march 21, 1954"###context:CREATE TABLE table_name_85 (result VARCHAR, competition VARCHAR, date VARCHAR) |
###question:Which Competition has a Result of w, and a Score of 2-0, and a Date of may 9, 1954?###answer:SELECT competition FROM table_name_50 WHERE result = "w" AND score = "2-0" AND date = "may 9, 1954"###context:CREATE TABLE table_name_50 (competition VARCHAR, date VARCHAR, result VARCHAR, score VARCHAR) |
###question:Which Result has a Score of 4-1, and a Competition of world cup qualifying?###answer:SELECT result FROM table_name_89 WHERE score = "4-1" AND competition = "world cup qualifying"###context:CREATE TABLE table_name_89 (result VARCHAR, score VARCHAR, competition VARCHAR) |
###question:Which Score has a Competition of world cup qualifying, and a Brazil scorers of baltazar, and a Date of march 14, 1954?###answer:SELECT score FROM table_name_65 WHERE competition = "world cup qualifying" AND brazil_scorers = "baltazar" AND date = "march 14, 1954"###context:CREATE TABLE table_name_65 (score V... |
###question:Which Brazil scorers have a Result of w, and a Competition of world cup qualifying, and a Date of february 28, 1954?###answer:SELECT brazil_scorers FROM table_name_5 WHERE result = "w" AND competition = "world cup qualifying" AND date = "february 28, 1954"###context:CREATE TABLE table_name_5 (brazil_scorers... |
###question:when first elected was 1900 what was the district?###answer:SELECT district FROM table_name_4 WHERE first_elected = "1900"###context:CREATE TABLE table_name_4 (district VARCHAR, first_elected VARCHAR) |
###question:when first elected was 1898 what was the party?###answer:SELECT party FROM table_name_9 WHERE first_elected = "1898"###context:CREATE TABLE table_name_9 (party VARCHAR, first_elected VARCHAR) |
###question:How many Games have a Lost of 6, and Points smaller than 7?###answer:SELECT SUM(games) FROM table_name_31 WHERE lost = 6 AND points < 7###context:CREATE TABLE table_name_31 (games INTEGER, lost VARCHAR, points VARCHAR) |
###question:What is Larry Centers' average number when there were less than 600 yards?###answer:SELECT AVG(number) FROM table_name_23 WHERE player = "larry centers" AND yards < 600###context:CREATE TABLE table_name_23 (number INTEGER, player VARCHAR, yards VARCHAR) |
###question:What is the highest number when there were more than 50 long and less than 762 yards?###answer:SELECT MAX(number) FROM table_name_81 WHERE long > 50 AND yards < 762###context:CREATE TABLE table_name_81 (number INTEGER, long VARCHAR, yards VARCHAR) |
###question:What is the highest amount of yards when the average is 9.5?###answer:SELECT MAX(yards) FROM table_name_12 WHERE average = 9.5###context:CREATE TABLE table_name_12 (yards INTEGER, average VARCHAR) |
###question:Who was the runner-up on 5 aug 1990?###answer:SELECT runner_up FROM table_name_67 WHERE date = "5 aug 1990"###context:CREATE TABLE table_name_67 (runner_up VARCHAR, date VARCHAR) |
###question:Which Tournament has a Winning score of −14 (65-69-72-68=274)?###answer:SELECT tournament FROM table_name_18 WHERE winning_score = −14(65 - 69 - 72 - 68 = 274)###context:CREATE TABLE table_name_18 (tournament VARCHAR, winning_score VARCHAR) |
###question:Which Runner-up has a Winning score of −20 (70-69-64-65=268)?###answer:SELECT runner_up FROM table_name_69 WHERE winning_score = −20(70 - 69 - 64 - 65 = 268)###context:CREATE TABLE table_name_69 (runner_up VARCHAR, winning_score VARCHAR) |
###question:Which Date has a Winning score of −15 (71-69-68-65=273)?###answer:SELECT date FROM table_name_98 WHERE winning_score = −15(71 - 69 - 68 - 65 = 273)###context:CREATE TABLE table_name_98 (date VARCHAR, winning_score VARCHAR) |
###question:In which tournament was vijay singh a runner-up?###answer:SELECT tournament FROM table_name_15 WHERE runner_up = "vijay singh"###context:CREATE TABLE table_name_15 (tournament VARCHAR, runner_up VARCHAR) |
###question:In which tournament was vijay singh a runner-up?###answer:SELECT tournament FROM table_name_20 WHERE runner_up = "vijay singh"###context:CREATE TABLE table_name_20 (tournament VARCHAR, runner_up VARCHAR) |
###question:Which Description has a Year of Issue of 1983, and a Weight of 3.50grams?###answer:SELECT description FROM table_name_67 WHERE year_of_issue = 1983 AND weight = "3.50grams"###context:CREATE TABLE table_name_67 (description VARCHAR, year_of_issue VARCHAR, weight VARCHAR) |
###question:Which Thickness has a Year of Issue smaller than 1983?###answer:SELECT thickness FROM table_name_35 WHERE year_of_issue < 1983###context:CREATE TABLE table_name_35 (thickness VARCHAR, year_of_issue INTEGER) |
###question:Which Description has a Year of Issue of 1983, and a Thickness of 1.7mm, and a Weight of 3.50grams?###answer:SELECT description FROM table_name_8 WHERE year_of_issue = 1983 AND thickness = "1.7mm" AND weight = "3.50grams"###context:CREATE TABLE table_name_8 (description VARCHAR, weight VARCHAR, year_of_issu... |
###question:Which Thickness has a Weight of 3.50grams?###answer:SELECT thickness FROM table_name_3 WHERE weight = "3.50grams"###context:CREATE TABLE table_name_3 (thickness VARCHAR, weight VARCHAR) |
###question:Which Thickness has a Diameter of 21.9mm?###answer:SELECT thickness FROM table_name_56 WHERE diameter = "21.9mm"###context:CREATE TABLE table_name_56 (thickness VARCHAR, diameter VARCHAR) |
###question:Who was on the Socialist Labor ticket in the race against W. Averell Harriman?###answer:SELECT socialist_labor_ticket FROM table_name_65 WHERE liberal_ticket = "w. averell harriman"###context:CREATE TABLE table_name_65 (socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR) |
###question:Who was the Republican candidate against the Democratic candidate Arthur Levitt?###answer:SELECT republican_ticket FROM table_name_65 WHERE democratic_ticket = "arthur levitt"###context:CREATE TABLE table_name_65 (republican_ticket VARCHAR, democratic_ticket VARCHAR) |
###question:Who was the Independent Socialist candidate for the office of comptroller?###answer:SELECT independent_socialist_ticket FROM table_name_35 WHERE office = "comptroller"###context:CREATE TABLE table_name_35 (independent_socialist_ticket VARCHAR, office VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.