question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Name the black knights points for loss result
CREATE TABLE table_21094951_1 (black_knights_points INTEGER, result VARCHAR)
SELECT MAX(black_knights_points) FROM table_21094951_1 WHERE result = "Loss"
What school did Conor Jackson attend?
CREATE TABLE table_name_75 (school VARCHAR, player VARCHAR)
SELECT school FROM table_name_75 WHERE player = "conor jackson"
During the 1st Place (Won the Series), who was the act?
CREATE TABLE table_23429629_4 (act VARCHAR, place_came VARCHAR)
SELECT act FROM table_23429629_4 WHERE place_came = "1st Place (Won the Series)"
What was the score of the game at RIch Stadium?
CREATE TABLE table_name_14 (result VARCHAR, stadium VARCHAR)
SELECT result FROM table_name_14 WHERE stadium = "rich stadium"
What is the silver medal count of the team that finished with 8 bronze medals?
CREATE TABLE table_name_41 (silver INTEGER, bronze VARCHAR)
SELECT SUM(silver) FROM table_name_41 WHERE bronze = 8
Name the loss for june 30
CREATE TABLE table_name_96 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_96 WHERE date = "june 30"
How many Points have a Drawn smaller than 0?
CREATE TABLE table_name_36 (points VARCHAR, drawn INTEGER)
SELECT COUNT(points) FROM table_name_36 WHERE drawn < 0
Who was the driver in 1964?
CREATE TABLE table_name_83 (driver VARCHAR, year VARCHAR)
SELECT driver FROM table_name_83 WHERE year = "1964"
What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network?
CREATE TABLE table_name_11 (origin_of_programming VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR, language VARCHAR)
SELECT origin_of_programming FROM table_name_11 WHERE service = "dish" AND language = "malayalam" AND genre = "general" AND network = "asianet plus"
Which Wins has a Byes larger than 0?
CREATE TABLE table_name_65 (wins INTEGER, byes INTEGER)
SELECT MAX(wins) FROM table_name_65 WHERE byes > 0
What is the highest capacity that has stadio marcello torre as the stadium?
CREATE TABLE table_name_80 (capacity INTEGER, stadium VARCHAR)
SELECT MAX(capacity) FROM table_name_80 WHERE stadium = "stadio marcello torre"
If the stadium name is the Thuwunna Stadium, what is the date?
CREATE TABLE table_25428629_1 (date VARCHAR, stadium VARCHAR)
SELECT date FROM table_25428629_1 WHERE stadium = "Thuwunna stadium"
What is the Location of the game on 11/08/1975*?
CREATE TABLE table_name_43 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_43 WHERE date = "11/08/1975*"
What is the version number and template type code for the template with version number later than 5?
CREATE TABLE Templates (version_number INTEGER, template_type_code VARCHAR)
SELECT version_number, template_type_code FROM Templates WHERE version_number > 5
How many lessons were in cancelled state?
CREATE TABLE Lessons (lesson_status_code VARCHAR)
SELECT COUNT(*) FROM Lessons WHERE lesson_status_code = "Cancelled"
What score has vancouver as the home, and february 16 as the date?
CREATE TABLE table_name_81 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_81 WHERE home = "vancouver" AND date = "february 16"
Which week was the team's bye week?
CREATE TABLE table_name_78 (week INTEGER, attendance VARCHAR)
SELECT MAX(week) FROM table_name_78 WHERE attendance = "bye"
What is the score for the home team when the venue is Junction Oval?
CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_96 WHERE venue = "junction oval"
What is the name of the player if the innings is 82?
CREATE TABLE table_23316034_16 (player VARCHAR, innings VARCHAR)
SELECT player FROM table_23316034_16 WHERE innings = 82
What are airlines that have some flight departing from airport 'AHD'?
CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR); CREATE TABLE FLIGHTS (Airline VARCHAR, SourceAirport VARCHAR)
SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = "AHD"
Which Apogee was on 1959-02-20?
CREATE TABLE table_name_5 (apogee VARCHAR, date VARCHAR)
SELECT apogee FROM table_name_5 WHERE date = "1959-02-20"
who was the successor for district ohio 15th?
CREATE TABLE table_1652224_5 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_1652224_5 WHERE district = "Ohio 15th"
Show the manager name with most number of gas stations opened after 2000.
CREATE TABLE gas_station (manager_name VARCHAR, open_year INTEGER)
SELECT manager_name FROM gas_station WHERE open_year > 2000 GROUP BY manager_name ORDER BY COUNT(*) DESC LIMIT 1
Name the 2008 for 2012 being a and tournament of australian open
CREATE TABLE table_name_20 (tournament VARCHAR)
SELECT 2008 FROM table_name_20 WHERE 2012 = "a" AND tournament = "australian open"
What is the total number of lanes used for races with winners from Austria?
CREATE TABLE table_name_75 (lane VARCHAR, country VARCHAR)
SELECT COUNT(lane) FROM table_name_75 WHERE country = "austria"
In the game that has a score of 71-71-70-73=285 what is the to par?
CREATE TABLE table_name_79 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_79 WHERE score = 71 - 71 - 70 - 73 = 285
What title has lt as the series, ben hardaway as the director, with 6612 as the production num.?
CREATE TABLE table_name_66 (title VARCHAR, production_num VARCHAR, series VARCHAR, director VARCHAR)
SELECT title FROM table_name_66 WHERE series = "lt" AND director = "ben hardaway" AND production_num = "6612"
Which Mission has a Launch Date of december 30, 1970; 14:50 gmt?
CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR)
SELECT mission FROM table_name_47 WHERE launch_date = "december 30, 1970; 14:50 gmt"
What is the place number for the player with a To Par score of 'E'?
CREATE TABLE table_name_85 (place VARCHAR, to_par VARCHAR)
SELECT place FROM table_name_85 WHERE to_par = "e"
who had a last performance of 3 july 2011?
CREATE TABLE table_name_18 (name VARCHAR, last_performance VARCHAR)
SELECT name FROM table_name_18 WHERE last_performance = "3 july 2011"
What place did the person who left on day 3 finish in?
CREATE TABLE table_name_54 (finished VARCHAR, exited VARCHAR)
SELECT finished FROM table_name_54 WHERE exited = "day 3"
What's the gold medal count for Total Nation with a bronze count more than 0 and a total less than 54?
CREATE TABLE table_name_13 (gold INTEGER, bronze VARCHAR, nation VARCHAR)
SELECT MAX(gold) FROM table_name_13 WHERE bronze > 0 AND nation = "total" AND "total" < 54
What is the model number for the processor with sSpec number of sl3jm(kc0)sl3jt(kc0)?
CREATE TABLE table_name_32 (model_number VARCHAR, sspec_number VARCHAR)
SELECT model_number FROM table_name_32 WHERE sspec_number = "sl3jm(kc0)sl3jt(kc0)"
Which Pct has Years of 1957–1970, and Wins smaller than 78?
CREATE TABLE table_name_89 (pct INTEGER, years VARCHAR, wins VARCHAR)
SELECT SUM(pct) FROM table_name_89 WHERE years = "1957–1970" AND wins < 78
Which state includes the city of Storrs?
CREATE TABLE table_name_25 (state VARCHAR, city VARCHAR)
SELECT state FROM table_name_25 WHERE city = "storrs"
Which operating system has a storage (flash) of 128MB?
CREATE TABLE table_name_18 (operating_system_version VARCHAR, storage___flash__ VARCHAR)
SELECT operating_system_version FROM table_name_18 WHERE storage___flash__ = "128mb"
Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss?
CREATE TABLE table_2646656_3 (candidates VARCHAR, result VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_2646656_3 WHERE result = "Retired Republican hold" AND incumbent = "Philemon Bliss"
What is the location of the authors of Molnar?
CREATE TABLE table_name_65 (location VARCHAR, authors VARCHAR)
SELECT location FROM table_name_65 WHERE authors = "molnar"
Name the class for 4th position with year before 2006
CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR)
SELECT class FROM table_name_67 WHERE pos = "4th" AND year < 2006
What is the drawn value for furnace united rfc?
CREATE TABLE table_name_47 (drawn VARCHAR, club VARCHAR)
SELECT drawn FROM table_name_47 WHERE club = "furnace united rfc"
What is the displacement for the petrol engines model?
CREATE TABLE table_name_64 (displacement VARCHAR, model VARCHAR)
SELECT displacement FROM table_name_64 WHERE model = "petrol engines"
What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009?
CREATE TABLE table_name_29 (Id VARCHAR)
SELECT 2012 FROM table_name_29 WHERE 2009 = "1r" AND 2008 = "1r" AND 2007 = "2r"
What city was completed in 1910-1978?
CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR)
SELECT city FROM table_name_23 WHERE completion = "1910-1978"
Who are the writer(s) for the production code 2394084
CREATE TABLE table_10953197_3 (writer_s_ VARCHAR, production_code VARCHAR)
SELECT writer_s_ FROM table_10953197_3 WHERE production_code = "2394084"
Name the school that is private
CREATE TABLE table_2293402_2 (institution VARCHAR, type VARCHAR)
SELECT institution FROM table_2293402_2 WHERE type = "Private"
What result is found for the round that has f?
CREATE TABLE table_name_37 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_37 WHERE round = "f"
Which date is the team @ la clippers?
CREATE TABLE table_23284271_10 (date VARCHAR, team VARCHAR)
SELECT date FROM table_23284271_10 WHERE team = "@ LA Clippers"
What is the to par for Leonard Thompson from the United States with a place of T6?
CREATE TABLE table_name_3 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_3 WHERE place = "t6" AND country = "united states" AND player = "leonard thompson"
How many years have a Form album of the thing?
CREATE TABLE table_name_39 (year INTEGER, from_album VARCHAR)
SELECT SUM(year) FROM table_name_39 WHERE from_album = "the thing"
What is the Place of the Player with a To par of –8 and a Score of 67-74-67=208?
CREATE TABLE table_name_83 (place VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT place FROM table_name_83 WHERE to_par = "–8" AND score = 67 - 74 - 67 = 208
What is the frequency of WMAD?
CREATE TABLE table_name_21 (frequency VARCHAR, call_letters VARCHAR)
SELECT frequency FROM table_name_21 WHERE call_letters = "wmad"
Which game has the highest score in October with 9?
CREATE TABLE table_name_41 (october INTEGER, game VARCHAR)
SELECT MAX(october) FROM table_name_41 WHERE game = 9
What is the total University of Dublin value with a labour panel greater than 11?
CREATE TABLE table_name_45 (university_of_dublin VARCHAR, labour_panel INTEGER)
SELECT COUNT(university_of_dublin) FROM table_name_45 WHERE labour_panel > 11
Which percent has Wins larger than 72, and a Name of john yovicsin?
CREATE TABLE table_name_70 (pct INTEGER, wins VARCHAR, name VARCHAR)
SELECT SUM(pct) FROM table_name_70 WHERE wins > 72 AND name = "john yovicsin"
What is the lowest total points Karine Trécy has with a less than 12 place?
CREATE TABLE table_name_84 (total_points INTEGER, artist VARCHAR, place VARCHAR)
SELECT MIN(total_points) FROM table_name_84 WHERE artist = "karine trécy" AND place < 12
Show all the information about election.
CREATE TABLE election (Id VARCHAR)
SELECT * FROM election
Which Surface has a Semifinalist of stefan edberg thomas muster?
CREATE TABLE table_name_98 (surface VARCHAR, semifinalists VARCHAR)
SELECT surface FROM table_name_98 WHERE semifinalists = "stefan edberg thomas muster"
What is the highest rank of the day with a gross of $38,916 and more than 6 screens?
CREATE TABLE table_name_27 (rank INTEGER, gross VARCHAR, screens VARCHAR)
SELECT MAX(rank) FROM table_name_27 WHERE gross = "$38,916" AND screens > 6
Find the names of departments that are located in Houston.
CREATE TABLE dept_locations (dnumber VARCHAR, dlocation VARCHAR); CREATE TABLE department (dname VARCHAR, dnumber VARCHAR)
SELECT t1.dname FROM department AS t1 JOIN dept_locations AS t2 ON t1.dnumber = t2.dnumber WHERE t2.dlocation = 'Houston'
What's the highest enrollment among the schools?
CREATE TABLE table_1971074_1 (enrollment INTEGER)
SELECT MAX(enrollment) FROM table_1971074_1
What 2008 has A as the 2007, and 2r as the 2010?
CREATE TABLE table_name_40 (Id VARCHAR)
SELECT 2008 FROM table_name_40 WHERE 2007 = "a" AND 2010 = "2r"
What did Essendon score as the Away team?
CREATE TABLE table_name_7 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_7 WHERE away_team = "essendon"
What is the latitude, longitude, city of the station from which the shortest trip started?
CREATE TABLE trip (start_station_id VARCHAR, duration VARCHAR); CREATE TABLE station (lat VARCHAR, long VARCHAR, city VARCHAR, id VARCHAR)
SELECT T1.lat, T1.long, T1.city FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id ORDER BY T2.duration LIMIT 1
What is 2007, when 2003 is "85"?
CREATE TABLE table_name_37 (Id VARCHAR)
SELECT 2007 FROM table_name_37 WHERE 2003 = "85"
Name the james e. holmes for erselle young
CREATE TABLE table_25330991_3 (james_e_holmes VARCHAR, reidsville VARCHAR)
SELECT james_e_holmes FROM table_25330991_3 WHERE reidsville = "Erselle Young"
What engine was used when Aguri Suzuki drove the FA13B FA14 Chassis?
CREATE TABLE table_name_31 (engine VARCHAR, chassis VARCHAR, driver VARCHAR)
SELECT engine FROM table_name_31 WHERE chassis = "fa13b fa14" AND driver = "aguri suzuki"
Name the minimum wins
CREATE TABLE table_19001175_1 (wins INTEGER)
SELECT MIN(wins) FROM table_19001175_1
Who made the most assists in Game 2 of this season?
CREATE TABLE table_name_4 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_name_4 WHERE game = 2
What is the external weapon of knight zeke?
CREATE TABLE table_name_26 (external_weapon VARCHAR, knight VARCHAR)
SELECT external_weapon FROM table_name_26 WHERE knight = "zeke"
Which site has a Score of 0-1?
CREATE TABLE table_name_98 (site VARCHAR, score VARCHAR)
SELECT site FROM table_name_98 WHERE score = "0-1"
For week 15, what was the total number of attendance recorded?
CREATE TABLE table_name_66 (attendance VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_66 WHERE week = 15
What is the pick # of cfl team bc lions (7)
CREATE TABLE table_26996293_7 (pick__number VARCHAR, cfl_team VARCHAR)
SELECT pick__number FROM table_26996293_7 WHERE cfl_team = "BC Lions (7)"
Name the pinyin for kɵkyar k̡irƣiz yezisi
CREATE TABLE table_2008069_2 (pinyin VARCHAR, uyghur___yenɡi_yezik̢__ VARCHAR)
SELECT pinyin FROM table_2008069_2 WHERE uyghur___yenɡi_yezik̢__ = "Kɵkyar K̡irƣiz yezisi"
who is the the candidates with first elected being 1977
CREATE TABLE table_1341586_19 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341586_19 WHERE first_elected = 1977
What is the value of total costs (2005) in the Coldstream municipality?
CREATE TABLE table_12340907_1 (total_costs__2005_ VARCHAR, municipality VARCHAR)
SELECT total_costs__2005_ FROM table_12340907_1 WHERE municipality = "Coldstream"
What cub team or college did Bob Law come from?
CREATE TABLE table_1965650_8 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_1965650_8 WHERE player = "Bob Law"
What is the # for the episode with a Production code of 3T7057?
CREATE TABLE table_13183076_3 (_number VARCHAR, production_code VARCHAR)
SELECT _number FROM table_13183076_3 WHERE production_code = "3T7057"
What was the largest crowd when South Melbourne was the away team?
CREATE TABLE table_name_89 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_89 WHERE away_team = "south melbourne"
what is the english translation when the artist is ann christine?
CREATE TABLE table_name_10 (english_translation VARCHAR, artist VARCHAR)
SELECT english_translation FROM table_name_10 WHERE artist = "ann christine"
Tell me the outgoing manager for resigned and replaced by manolo villanova for real zaragoza
CREATE TABLE table_name_29 (outgoing_manager VARCHAR, replaced_by VARCHAR, manner_of_departure VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_name_29 WHERE manner_of_departure = "resigned" AND team = "real zaragoza" AND replaced_by = "manolo villanova"
Who was RL Süd (1st) when FK Pirmasens was RL Südwest (1st)?
CREATE TABLE table_20217456_7 (rl_süd__1st_ VARCHAR, rl_südwest__1st_ VARCHAR)
SELECT rl_süd__1st_ FROM table_20217456_7 WHERE rl_südwest__1st_ = "FK Pirmasens"
What country has CD format and catalog RCD 10523?
CREATE TABLE table_name_45 (country VARCHAR, format VARCHAR, catalog VARCHAR)
SELECT country FROM table_name_45 WHERE format = "cd" AND catalog = "rcd 10523"
Which player plays for the Winnipeg Blue Bombers?
CREATE TABLE table_21321804_3 (player VARCHAR, cfl_team VARCHAR)
SELECT player FROM table_21321804_3 WHERE cfl_team = "Winnipeg Blue Bombers"
What event did he have a 2-0 record?
CREATE TABLE table_name_51 (event VARCHAR, record VARCHAR)
SELECT event FROM table_name_51 WHERE record = "2-0"
What is the name of the national final co host when David Jacobs was the National final main host, and the selection show was a song for europe in 1966?
CREATE TABLE table_name_85 (national_final_co_host VARCHAR, year_s_ VARCHAR, national_final_main_host VARCHAR, selection_show VARCHAR)
SELECT national_final_co_host FROM table_name_85 WHERE national_final_main_host = "david jacobs" AND selection_show = "a song for europe" AND year_s_ = "1966"
What was the time recorded for grid 18?
CREATE TABLE table_name_89 (time_retired VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_89 WHERE grid = 18
Which Goals against have a Club of cd castellón, and Points smaller than 24?
CREATE TABLE table_name_15 (goals_against INTEGER, club VARCHAR, points VARCHAR)
SELECT AVG(goals_against) FROM table_name_15 WHERE club = "cd castellón" AND points < 24
who is the player when the place is t10 and the score is 67-72-72=211?
CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR, score VARCHAR)
SELECT player FROM table_name_37 WHERE place = "t10" AND score = 67 - 72 - 72 = 211
What weight has one rupee as the denomination?
CREATE TABLE table_name_88 (weight VARCHAR, denomination VARCHAR)
SELECT weight FROM table_name_88 WHERE denomination = "one rupee"
Name the format for quick callanetics: hips and behind
CREATE TABLE table_27303975_2 (format VARCHAR, title VARCHAR)
SELECT format FROM table_27303975_2 WHERE title = "Quick Callanetics: Hips and Behind"
What is the Ratt of the year with a 78 long?
CREATE TABLE table_name_97 (ratt VARCHAR, long VARCHAR)
SELECT ratt FROM table_name_97 WHERE long = "78"
Find all the distinct id and nationality of drivers who have had laptime more than 100000 milliseconds?
CREATE TABLE laptimes (driverid VARCHAR, milliseconds INTEGER); CREATE TABLE drivers (driverid VARCHAR, nationality VARCHAR)
SELECT DISTINCT T1.driverid, T1.nationality FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds > 100000
What is the last 10 meetings that have 12 as the games played?
CREATE TABLE table_name_43 (last_10_meetings VARCHAR, games_played VARCHAR)
SELECT last_10_meetings FROM table_name_43 WHERE games_played = "12"
What school/club team has tim kempton as the player?
CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_25 WHERE player = "tim kempton"
What is the lowest silver for France with a rank less than 5 and a total larger than 19?
CREATE TABLE table_name_43 (silver INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)
SELECT MIN(silver) FROM table_name_43 WHERE rank < 5 AND nation = "france" AND total > 19
Which actor played Harold Bishop for 17 years?
CREATE TABLE table_name_85 (actor VARCHAR, duration VARCHAR, character VARCHAR)
SELECT actor FROM table_name_85 WHERE duration = "17 years" AND character = "harold bishop"
Name the lead for institute of election results and social democratic of 31.7% 8 seats
CREATE TABLE table_name_95 (lead VARCHAR, institute VARCHAR, social_democratic VARCHAR)
SELECT lead FROM table_name_95 WHERE institute = "election results" AND social_democratic = "31.7% 8 seats"
In what Season was Colin Miller (TAS) the Player?
CREATE TABLE table_name_34 (season VARCHAR, player VARCHAR)
SELECT season FROM table_name_34 WHERE player = "colin miller (tas)"
What is the origin of the name of Keller Patera?
CREATE TABLE table_16799784_8 (name VARCHAR)
SELECT name AS origin FROM table_16799784_8 WHERE name = "Keller Patera"
Who had the most assist and how many on July 26?
CREATE TABLE table_18813011_6 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_18813011_6 WHERE date = "July 26"