Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
44,900 | <question>: What is the museum name located in Rudyard? <context>: CREATE TABLE table_name_52 (name VARCHAR, town_city VARCHAR) | SELECT name FROM table_name_52 WHERE town_city = "rudyard" |
44,901 | <question>: What is the region that the Blaine County Museum is located in? <context>: CREATE TABLE table_name_43 (region VARCHAR, name VARCHAR) | SELECT region FROM table_name_43 WHERE name = "blaine county museum" |
44,902 | <question>: What Tournament had a Score of 6β3, 2β6, 6β3? <context>: CREATE TABLE table_name_13 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_13 WHERE score = "6β3, 2β6, 6β3" |
44,903 | <question>: What Partner had a Score of 6β3, 2β6, 6β3? <context>: CREATE TABLE table_name_31 (partner VARCHAR, score VARCHAR) | SELECT partner FROM table_name_31 WHERE score = "6β3, 2β6, 6β3" |
44,904 | <question>: Who were the Opponents in the match on a Hard Surface with Catherine Suire as Partner and Outcome of runner-up? <context>: CREATE TABLE table_name_6 (opponents VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT opponents FROM table_name_6 WHERE outcome = "runner-up" AND surface = "hard" AND partner = "catherine suire" |
44,905 | <question>: Who was the visiting team when the record was 6β12β5β1? <context>: CREATE TABLE table_name_4 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_4 WHERE record = "6β12β5β1" |
44,906 | <question>: Who was the home team when the record was 21β45β8β5? <context>: CREATE TABLE table_name_56 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_56 WHERE record = "21β45β8β5" |
44,907 | <question>: Which of the attributes has is cancelable and an answer of yes for bubbles? <context>: CREATE TABLE table_name_15 (attribute VARCHAR, cancelable VARCHAR, bubbles VARCHAR) | SELECT attribute FROM table_name_15 WHERE cancelable = "yes" AND bubbles = "yes" |
44,908 | <question>: Which bubbles has an atribute of onlostpointercapture? <context>: CREATE TABLE table_name_87 (bubbles VARCHAR, attribute VARCHAR) | SELECT bubbles FROM table_name_87 WHERE attribute = "onlostpointercapture" |
44,909 | <question>: For the attribute of onpointerout, what is the cancelable? <context>: CREATE TABLE table_name_75 (cancelable VARCHAR, attribute VARCHAR) | SELECT cancelable FROM table_name_75 WHERE attribute = "onpointerout" |
44,910 | <question>: Which bubble have a cancelable of yes and an attribute of onpointerdown? <context>: CREATE TABLE table_name_58 (bubbles VARCHAR, cancelable VARCHAR, attribute VARCHAR) | SELECT bubbles FROM table_name_58 WHERE cancelable = "yes" AND attribute = "onpointerdown" |
44,911 | <question>: What's the highest grid of Ronnie Bremer, who had more than 18 points? <context>: CREATE TABLE table_name_91 (grid INTEGER, driver VARCHAR, points VARCHAR) | SELECT MAX(grid) FROM table_name_91 WHERE driver = "ronnie bremer" AND points > 18 |
44,912 | <question>: What are the most points Lap 70 had with a grid larger than 16? <context>: CREATE TABLE table_name_71 (points INTEGER, laps VARCHAR, grid VARCHAR) | SELECT MAX(points) FROM table_name_71 WHERE laps = 70 AND grid > 16 |
44,913 | <question>: What is the name of the track in Holland? <context>: CREATE TABLE table_name_2 (track VARCHAR, city VARCHAR) | SELECT track FROM table_name_2 WHERE city = "holland" |
44,914 | <question>: What is the track in Washington state? <context>: CREATE TABLE table_name_83 (track VARCHAR, state VARCHAR) | SELECT track FROM table_name_83 WHERE state = "washington" |
44,915 | <question>: What is the city the track of manzanita speedway is in? <context>: CREATE TABLE table_name_89 (city VARCHAR, track VARCHAR) | SELECT city FROM table_name_89 WHERE track = "manzanita speedway" |
44,916 | <question>: What is the surface of the track at the indianapolis speedrome? <context>: CREATE TABLE table_name_2 (surface VARCHAR, track VARCHAR) | SELECT surface FROM table_name_2 WHERE track = "indianapolis speedrome" |
44,917 | <question>: What is the surface for the riverhead raceway? <context>: CREATE TABLE table_name_84 (surface VARCHAR, track VARCHAR) | SELECT surface FROM table_name_84 WHERE track = "riverhead raceway" |
44,918 | <question>: What city is the indianapolis speedrome in? <context>: CREATE TABLE table_name_21 (city VARCHAR, track VARCHAR) | SELECT city FROM table_name_21 WHERE track = "indianapolis speedrome" |
44,919 | <question>: What is the IUPAC name for chloroform? <context>: CREATE TABLE table_name_44 (iupac_name VARCHAR, common_name VARCHAR) | SELECT iupac_name FROM table_name_44 WHERE common_name = "chloroform" |
44,920 | <question>: What is the SZDSZ percentage with an MSZP of 25% on 25/2/2009? <context>: CREATE TABLE table_name_8 (szdsz VARCHAR, mszp VARCHAR, date VARCHAR) | SELECT szdsz FROM table_name_8 WHERE mszp = "25%" AND date = "25/2/2009" |
44,921 | <question>: What percentage of others have an SZDSZ of 4% and a Fidesz of 60%? <context>: CREATE TABLE table_name_10 (others VARCHAR, szdsz VARCHAR, fidesz VARCHAR) | SELECT others FROM table_name_10 WHERE szdsz = "4%" AND fidesz = "60%" |
44,922 | <question>: What is the percentage of others with a Fidesz of 62% and a Jobbik of 4%? <context>: CREATE TABLE table_name_93 (others VARCHAR, fidesz VARCHAR, jobbik VARCHAR) | SELECT others FROM table_name_93 WHERE fidesz = "62%" AND jobbik = "4%" |
44,923 | <question>: On what date do others have 5% with an SZDSZ of 5%? <context>: CREATE TABLE table_name_14 (date VARCHAR, others VARCHAR, szdsz VARCHAR) | SELECT date FROM table_name_14 WHERE others = "5%" AND szdsz = "5%" |
44,924 | <question>: What is the SZDSZ percentage with a Jobbik of 5% and a Fidesz of 68%? <context>: CREATE TABLE table_name_60 (szdsz VARCHAR, jobbik VARCHAR, fidesz VARCHAR) | SELECT szdsz FROM table_name_60 WHERE jobbik = "5%" AND fidesz = "68%" |
44,925 | <question>: What is the Jobbik percentage with a Fidesz of 61% and others of 2%? <context>: CREATE TABLE table_name_41 (jobbik VARCHAR, fidesz VARCHAR, others VARCHAR) | SELECT jobbik FROM table_name_41 WHERE fidesz = "61%" AND others = "2%" |
44,926 | <question>: What's listed for the Turnout % with a Ngilu of 3,429? <context>: CREATE TABLE table_name_11 (turnout__percentage VARCHAR, ngilu VARCHAR) | SELECT turnout__percentage FROM table_name_11 WHERE ngilu = "3,429" |
44,927 | <question>: What's listed for the Turnout % with a Raila of 519,180? <context>: CREATE TABLE table_name_70 (turnout__percentage VARCHAR, raila VARCHAR) | SELECT turnout__percentage FROM table_name_70 WHERE raila = "519,180" |
44,928 | <question>: What's listed for the Turnout % with a Ngilu of 30,535? <context>: CREATE TABLE table_name_32 (turnout__percentage VARCHAR, ngilu VARCHAR) | SELECT turnout__percentage FROM table_name_32 WHERE ngilu = "30,535" |
44,929 | <question>: What's listed for the Registered Voters with a Ngilu of 3,429? <context>: CREATE TABLE table_name_68 (registered_voters VARCHAR, ngilu VARCHAR) | SELECT registered_voters FROM table_name_68 WHERE ngilu = "3,429" |
44,930 | <question>: What is listed for the Province with a Wamalwa of 4,431? <context>: CREATE TABLE table_name_82 (province VARCHAR, wamalwa VARCHAR) | SELECT province FROM table_name_82 WHERE wamalwa = "4,431" |
44,931 | <question>: What's listed for the Wamalwa that has a Turnout % of 55.9%? <context>: CREATE TABLE table_name_32 (wamalwa VARCHAR, turnout__percentage VARCHAR) | SELECT wamalwa FROM table_name_32 WHERE turnout__percentage = "55.9%" |
44,932 | <question>: What were the average partial failures when the rocket was Ariane 5? <context>: CREATE TABLE table_name_87 (partial_failures INTEGER, rocket VARCHAR) | SELECT AVG(partial_failures) FROM table_name_87 WHERE rocket = "ariane 5" |
44,933 | <question>: What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes? <context>: CREATE TABLE table_name_3 (launches INTEGER, successes VARCHAR, failures VARCHAR, rocket VARCHAR) | SELECT AVG(launches) FROM table_name_3 WHERE failures = 0 AND rocket = "soyuz" AND successes < 12 |
44,934 | <question>: What is the sum of launches with Long March 3 and 0 failures? <context>: CREATE TABLE table_name_4 (launches INTEGER, rocket VARCHAR, failures VARCHAR) | SELECT SUM(launches) FROM table_name_4 WHERE rocket = "long march 3" AND failures > 0 |
44,935 | <question>: What is the least amount of failures with 1 launch and 0 partial failures? <context>: CREATE TABLE table_name_28 (failures INTEGER, launches VARCHAR, partial_failures VARCHAR) | SELECT MIN(failures) FROM table_name_28 WHERE launches = 1 AND partial_failures < 0 |
44,936 | <question>: What were the average launches for Ariane 5 and 0 partial failures? <context>: CREATE TABLE table_name_63 (launches INTEGER, rocket VARCHAR, partial_failures VARCHAR) | SELECT AVG(launches) FROM table_name_63 WHERE rocket = "ariane 5" AND partial_failures < 0 |
44,937 | <question>: What was the race of the jockey in na group in 4th place? <context>: CREATE TABLE table_name_15 (race VARCHAR, group VARCHAR, result VARCHAR) | SELECT race FROM table_name_15 WHERE group = "na" AND result = "4th" |
44,938 | <question>: How far did p. carbery run to get 2nd? <context>: CREATE TABLE table_name_67 (distance VARCHAR, jockey VARCHAR, result VARCHAR) | SELECT distance FROM table_name_67 WHERE jockey = "p. carbery" AND result = "2nd" |
44,939 | <question>: What is the Removal that has a Trim of xe (2009)? <context>: CREATE TABLE table_name_32 (transmission VARCHAR, trim VARCHAR) | SELECT transmission FROM table_name_32 WHERE trim = "xe (2009)" |
44,940 | <question>: What is the Torque that has a Power of hp (kw), and a Trim of xr (2009)? Question 6 <context>: CREATE TABLE table_name_18 (torque VARCHAR, power VARCHAR, trim VARCHAR) | SELECT torque FROM table_name_18 WHERE power = "hp (kw)" AND trim = "xr (2009)" |
44,941 | <question>: Which Round is the lowest one that has a College/Junior/Club Team (League) of oshawa generals (oha), and a Player of bob kelly? <context>: CREATE TABLE table_name_83 (round INTEGER, college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT MIN(round) FROM table_name_83 WHERE college_junior_club_team__league_ = "oshawa generals (oha)" AND player = "bob kelly" |
44,942 | <question>: What surface was used when she played with Remi Tezuka? <context>: CREATE TABLE table_name_76 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_76 WHERE partner = "remi tezuka" |
44,943 | <question>: What Results has the Record of 28-12? <context>: CREATE TABLE table_name_94 (results VARCHAR, record VARCHAR) | SELECT results FROM table_name_94 WHERE record = "28-12" |
44,944 | <question>: What Results has a Seed #12 and a Year that's smaller than 1996 <context>: CREATE TABLE table_name_36 (results VARCHAR, seed VARCHAR, year VARCHAR) | SELECT results FROM table_name_36 WHERE seed = "#12" AND year < 1996 |
44,945 | <question>: What's the highest Year with the Record of 18-12? <context>: CREATE TABLE table_name_23 (year INTEGER, record VARCHAR) | SELECT MAX(year) FROM table_name_23 WHERE record = "18-12" |
44,946 | <question>: What's the highest Year with the Region of Southeast? <context>: CREATE TABLE table_name_11 (year INTEGER, region VARCHAR) | SELECT MAX(year) FROM table_name_11 WHERE region = "southeast" |
44,947 | <question>: What Record has a Year that's larger than 2012? <context>: CREATE TABLE table_name_11 (record VARCHAR, year INTEGER) | SELECT record FROM table_name_11 WHERE year > 2012 |
44,948 | <question>: What is the Laker's record when they played against Kansas City Kings? <context>: CREATE TABLE table_name_84 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_84 WHERE opponent = "kansas city kings" |
44,949 | <question>: Name the pronunciation for ε³ <context>: CREATE TABLE table_name_83 (pronunciation_a VARCHAR, word VARCHAR) | SELECT pronunciation_a FROM table_name_83 WHERE word = "ε³" |
44,950 | <question>: Name the pronunciation for meaning of king <context>: CREATE TABLE table_name_85 (pronunciation_a VARCHAR, meaning_a VARCHAR) | SELECT pronunciation_a FROM table_name_85 WHERE meaning_a = "king" |
44,951 | <question>: Name the word with pronunciation b of *sɨks <context>: CREATE TABLE table_name_55 (word VARCHAR, pronunciation_b VARCHAR) | SELECT word FROM table_name_55 WHERE pronunciation_b = "*sɨks" |
44,952 | <question>: Name the pronunciation for meaning b of border, frontier <context>: CREATE TABLE table_name_64 (pronunciation_b VARCHAR, meaning_b VARCHAR) | SELECT pronunciation_b FROM table_name_64 WHERE meaning_b = "border, frontier" |
44,953 | <question>: Name the pronunciation b for meaning of grind <context>: CREATE TABLE table_name_56 (pronunciation_b VARCHAR, meaning_a VARCHAR) | SELECT pronunciation_b FROM table_name_56 WHERE meaning_a = "grind" |
44,954 | <question>: What is the 2008 value that was 2nd in 2006? <context>: CREATE TABLE table_name_87 (Id VARCHAR) | SELECT 2008 FROM table_name_87 WHERE 2006 = "2nd" |
44,955 | <question>: What is the average total that is 1st in 2010? <context>: CREATE TABLE table_name_8 (total INTEGER) | SELECT AVG(total) FROM table_name_8 WHERE 2010 = "1st" |
44,956 | <question>: What is the 2008 value with a 7 in 2010? <context>: CREATE TABLE table_name_94 (Id VARCHAR) | SELECT 2008 FROM table_name_94 WHERE 2010 = "7" |
44,957 | <question>: What is the Location for the woodburn dragstrip? <context>: CREATE TABLE table_name_12 (location VARCHAR, name VARCHAR) | SELECT location FROM table_name_12 WHERE name = "woodburn dragstrip" |
44,958 | <question>: What State has an Opened (closing date if defunct) that shows 1960? <context>: CREATE TABLE table_name_28 (state VARCHAR, opened__closing_date_if_defunct_ VARCHAR) | SELECT state FROM table_name_28 WHERE opened__closing_date_if_defunct_ = "1960" |
44,959 | <question>: What is the Location for the route 66 raceway? <context>: CREATE TABLE table_name_70 (location VARCHAR, name VARCHAR) | SELECT location FROM table_name_70 WHERE name = "route 66 raceway" |
44,960 | <question>: What is the Location for the newington international airport? <context>: CREATE TABLE table_name_6 (location VARCHAR, name VARCHAR) | SELECT location FROM table_name_6 WHERE name = "newington international airport" |
44,961 | <question>: What is the Name with an Opened (closing date if defunct) of 1995 and has a Length of miles (m), in Illinois? <context>: CREATE TABLE table_name_9 (name VARCHAR, state VARCHAR, opened__closing_date_if_defunct_ VARCHAR, length VARCHAR) | SELECT name FROM table_name_9 WHERE opened__closing_date_if_defunct_ = "1995" AND length = "miles (m)" AND state = "illinois" |
44,962 | <question>: What is the Score with an Opponent that is amanda brown brenda remilton? <context>: CREATE TABLE table_name_45 (score VARCHAR, opponents VARCHAR) | SELECT score FROM table_name_45 WHERE opponents = "amanda brown brenda remilton" |
44,963 | <question>: What is the Score with an Outcome of runner-up, and a Partner that is elizabeth little? <context>: CREATE TABLE table_name_1 (score VARCHAR, outcome VARCHAR, partner VARCHAR) | SELECT score FROM table_name_1 WHERE outcome = "runner-up" AND partner = "elizabeth little" |
44,964 | <question>: Who was the pitcher on June 8, 1961? <context>: CREATE TABLE table_name_88 (pitcher VARCHAR, date VARCHAR) | SELECT pitcher FROM table_name_88 WHERE date = "june 8, 1961" |
44,965 | <question>: What team had the record asscoiated with the 9th inning? <context>: CREATE TABLE table_name_54 (team VARCHAR, inn VARCHAR) | SELECT team FROM table_name_54 WHERE inn = "9th" |
44,966 | <question>: In what venue did the Boston Red Sox play in? <context>: CREATE TABLE table_name_49 (venue VARCHAR, team VARCHAR) | SELECT venue FROM table_name_49 WHERE team = "boston red sox" |
44,967 | <question>: Who was the pitcher with the record recorded in the 7th inning? <context>: CREATE TABLE table_name_55 (pitcher VARCHAR, inn VARCHAR) | SELECT pitcher FROM table_name_55 WHERE inn = "7th" |
44,968 | <question>: When David E. Finley was the incumbent what was the result? <context>: CREATE TABLE table_name_8 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_name_8 WHERE incumbent = "david e. finley" |
44,969 | <question>: When someone was first elected in 1898 what was the result? <context>: CREATE TABLE table_name_53 (result VARCHAR, first_elected VARCHAR) | SELECT result FROM table_name_53 WHERE first_elected = "1898" |
44,970 | <question>: What party has an incumbent of Stanyarne Wilson? <context>: CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_name_86 WHERE incumbent = "stanyarne wilson" |
44,971 | <question>: When the incumbent was William Elliott, what was the result? <context>: CREATE TABLE table_name_75 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_name_75 WHERE incumbent = "william elliott" |
44,972 | <question>: Score of 2-1, and a Competition of pl, and a Date of december 22, 2006 had what opponents? <context>: CREATE TABLE table_name_84 (opponents VARCHAR, date VARCHAR, score VARCHAR, competition VARCHAR) | SELECT opponents FROM table_name_84 WHERE score = "2-1" AND competition = "pl" AND date = "december 22, 2006" |
44,973 | <question>: Date of april 3, 2007 had what score? <context>: CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_2 WHERE date = "april 3, 2007" |
44,974 | <question>: Competition of pl, and a Score of 1-1, and a Opponents of kelantan had what date? <context>: CREATE TABLE table_name_5 (date VARCHAR, opponents VARCHAR, competition VARCHAR, score VARCHAR) | SELECT date FROM table_name_5 WHERE competition = "pl" AND score = "1-1" AND opponents = "kelantan" |
44,975 | <question>: Venue of klfa stadium, cheras, and a Score of 3-3 had what competition? <context>: CREATE TABLE table_name_71 (competition VARCHAR, venue VARCHAR, score VARCHAR) | SELECT competition FROM table_name_71 WHERE venue = "klfa stadium, cheras" AND score = "3-3" |
44,976 | <question>: Opponents of police, and a Venue of selayang municipal council stadium had what date? <context>: CREATE TABLE table_name_35 (date VARCHAR, opponents VARCHAR, venue VARCHAR) | SELECT date FROM table_name_35 WHERE opponents = "police" AND venue = "selayang municipal council stadium" |
44,977 | <question>: Competition of fa cup rd 1 had what venue? <context>: CREATE TABLE table_name_69 (venue VARCHAR, competition VARCHAR) | SELECT venue FROM table_name_69 WHERE competition = "fa cup rd 1" |
44,978 | <question>: Who was the visiting team on January 27? <context>: CREATE TABLE table_name_24 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_24 WHERE date = "january 27" |
44,979 | <question>: What is the home team that played on February 25? <context>: CREATE TABLE table_name_43 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_43 WHERE date = "february 25" |
44,980 | <question>: Name the date with chicago visiting <context>: CREATE TABLE table_name_64 (date VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_64 WHERE visitor = "chicago" |
44,981 | <question>: Name the home with chicago visiting <context>: CREATE TABLE table_name_76 (home VARCHAR, visitor VARCHAR) | SELECT home FROM table_name_76 WHERE visitor = "chicago" |
44,982 | <question>: What is the highest number of apps of the player with more than 63 goals and an avge of 0.45? <context>: CREATE TABLE table_name_55 (apps INTEGER, goals VARCHAR, avge VARCHAR) | SELECT MAX(apps) FROM table_name_55 WHERE goals > 63 AND avge = 0.45 |
44,983 | <question>: What is the total avge of John Hall, who has less than 63 goals? <context>: CREATE TABLE table_name_25 (avge VARCHAR, name VARCHAR, goals VARCHAR) | SELECT COUNT(avge) FROM table_name_25 WHERE name = "john hall" AND goals < 63 |
44,984 | <question>: When did Kim Thompson win with 278 score? <context>: CREATE TABLE table_name_87 (year INTEGER, score VARCHAR, champion VARCHAR) | SELECT SUM(year) FROM table_name_87 WHERE score = "278" AND champion = "kim thompson" |
44,985 | <question>: Where did Steve Gotsche win? <context>: CREATE TABLE table_name_26 (venue VARCHAR, champion VARCHAR) | SELECT venue FROM table_name_26 WHERE champion = "steve gotsche" |
44,986 | <question>: What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest? <context>: CREATE TABLE table_name_39 (rank INTEGER, built VARCHAR, building VARCHAR) | SELECT SUM(rank) FROM table_name_39 WHERE built < 2007 AND building = "howard johnson hotel bucharest" |
44,987 | <question>: What is the Height (m/ft) for bucharest Built in 2009, and a Rank of 13? <context>: CREATE TABLE table_name_47 (height__m_ft_ VARCHAR, rank VARCHAR, city VARCHAR, built VARCHAR) | SELECT height__m_ft_ FROM table_name_47 WHERE city = "bucharest" AND built = 2009 AND rank = 13 |
44,988 | <question>: What city is the bucharest tower center (btc) located in? <context>: CREATE TABLE table_name_47 (city VARCHAR, building VARCHAR) | SELECT city FROM table_name_47 WHERE building = "bucharest tower center (btc)" |
44,989 | <question>: What is the name of the building in Bucharest with a rank of less than 12? <context>: CREATE TABLE table_name_90 (building VARCHAR, city VARCHAR, rank VARCHAR) | SELECT building FROM table_name_90 WHERE city = "bucharest" AND rank < 12 |
44,990 | <question>: What city was the building built in 1988? <context>: CREATE TABLE table_name_93 (city VARCHAR, built VARCHAR) | SELECT city FROM table_name_93 WHERE built = 1988 |
44,991 | <question>: What is the score of the Boston Bruins game from April 11? <context>: CREATE TABLE table_name_39 (score VARCHAR, home VARCHAR, date VARCHAR) | SELECT score FROM table_name_39 WHERE home = "boston bruins" AND date = "april 11" |
44,992 | <question>: What is the record of the Hartford Whalers home team with the April 13 game date? <context>: CREATE TABLE table_name_7 (record VARCHAR, home VARCHAR, date VARCHAR) | SELECT record FROM table_name_7 WHERE home = "hartford whalers" AND date = "april 13" |
44,993 | <question>: What is the score of the visiting Hartford Whalers game from April 11? <context>: CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT score FROM table_name_8 WHERE visitor = "hartford whalers" AND date = "april 11" |
44,994 | <question>: Which Passengers have Carriers of air canada? <context>: CREATE TABLE table_name_65 (passengers VARCHAR, carriers VARCHAR) | SELECT passengers FROM table_name_65 WHERE carriers = "air canada" |
44,995 | <question>: Which Metropolitan area has an Airport of toronto pearson international airport? <context>: CREATE TABLE table_name_94 (metropolitan_area VARCHAR, airport VARCHAR) | SELECT metropolitan_area FROM table_name_94 WHERE airport = "toronto pearson international airport" |
44,996 | <question>: What is the link for january 31 β february 3, 2011? <context>: CREATE TABLE table_name_64 (link VARCHAR, date_of_polling VARCHAR) | SELECT link FROM table_name_64 WHERE date_of_polling = "january 31 β february 3, 2011" |
44,997 | <question>: On what date of polling was the Polling Firm forum research with 7 green and less than 30 liberals? <context>: CREATE TABLE table_name_2 (date_of_polling VARCHAR, liberal VARCHAR, polling_firm VARCHAR, green VARCHAR) | SELECT date_of_polling FROM table_name_2 WHERE polling_firm = "forum research" AND green = 7 AND liberal < 30 |
44,998 | <question>: Which september 26β28, 2011 polling firm had a Link of html, less than 36 liberals, and less than 8 green? <context>: CREATE TABLE table_name_96 (polling_firm VARCHAR, date_of_polling VARCHAR, green VARCHAR, link VARCHAR, liberal VARCHAR) | SELECT polling_firm FROM table_name_96 WHERE link = "html" AND liberal < 36 AND green < 8 AND date_of_polling = "september 26β28, 2011" |
44,999 | <question>: What june 21β22, 2011 polling has green smaller than 13? <context>: CREATE TABLE table_name_89 (polling_firm VARCHAR, green VARCHAR, date_of_polling VARCHAR) | SELECT polling_firm FROM table_name_89 WHERE green < 13 AND date_of_polling = "june 21β22, 2011" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.