question
stringlengths
17
201
answer
stringlengths
21
400
context
stringlengths
32
286
What is the maximum t20 on green lane?
SELECT MAX(t20_matches) FROM table_1176371_1 WHERE name_of_ground = "Green Lane"
CREATE TABLE table_1176371_1 (t20_matches INTEGER, name_of_ground VARCHAR)
Name the womens doubles when mens doubles is charalambos kazilas stepan partemian
SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = "Charalambos Kazilas Stepan Partemian"
CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
What was built in 1857?
SELECT name FROM table_name_89 WHERE year_built = 1857
CREATE TABLE table_name_89 (name VARCHAR, year_built VARCHAR)
What was the overall record of UMBC?
SELECT record FROM table_16295365_1 WHERE school = "UMBC"
CREATE TABLE table_16295365_1 (record VARCHAR, school VARCHAR)
When mount gauttier is the peak what is the island?
SELECT island FROM table_18946749_1 WHERE peak = "Mount Gauttier"
CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)
What's the court ranking of 5th son of tadayori and has revenues of 10,000 koku?
SELECT court_rank FROM table_name_32 WHERE revenues = "10,000 koku" AND lineage = "5th son of tadayori"
CREATE TABLE table_name_32 (court_rank VARCHAR, revenues VARCHAR, lineage VARCHAR)
Which design has a serial format of AB-12-34?
SELECT design FROM table_name_46 WHERE serial_format = "ab-12-34"
CREATE TABLE table_name_46 (design VARCHAR, serial_format VARCHAR)
What is the winner women and third is italy and runner-up is finland?
SELECT winner AS Women FROM table_1216097_7 WHERE third = "Italy" AND runner_up = "Finland"
CREATE TABLE table_1216097_7 (winner VARCHAR, third VARCHAR, runner_up VARCHAR)
What's the melamine content of 英雄牌嬰幼兒配方乳粉 having more than 1 samples failed?
SELECT melamine_content_mg_kg_ FROM table_name_31 WHERE samples_failed > 1 AND product = "英雄牌嬰幼兒配方乳粉"
CREATE TABLE table_name_31 (melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR, product VARCHAR)
Name the hometown for ventrell jenkins
SELECT hometown FROM table_14624447_39 WHERE name = "Ventrell Jenkins"
CREATE TABLE table_14624447_39 (hometown VARCHAR, name VARCHAR)
Name the number for simon cellan jones
SELECT no FROM table_26914076_2 WHERE directed_by = "Simon Cellan Jones"
CREATE TABLE table_26914076_2 (no VARCHAR, directed_by VARCHAR)
Who was Carlton's away team opponents?
SELECT away_team FROM table_name_16 WHERE home_team = "carlton"
CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)
Which nominee won the award for Fourth Best Indian Film?
SELECT nominee FROM table_name_7 WHERE outcome = "won" AND category = "fourth best indian film"
CREATE TABLE table_name_7 (nominee VARCHAR, outcome VARCHAR, category VARCHAR)
What is the name of the place that has a census ranking of 1,229 of 5,008?
SELECT official_name FROM table_name_63 WHERE census_ranking = "1,229 of 5,008"
CREATE TABLE table_name_63 (official_name VARCHAR, census_ranking VARCHAR)
display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara excluding Clara.
SELECT first_name, last_name, hire_date FROM employees WHERE department_id = (SELECT department_id FROM employees WHERE first_name = "Clara") AND first_name <> "Clara"
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, department_id VARCHAR)
What was the minimum attendance against the New Orleans Saints?
SELECT MIN(attendance) FROM table_16028499_2 WHERE opponent = "New Orleans Saints"
CREATE TABLE table_16028499_2 (attendance INTEGER, opponent VARCHAR)
What is the state of Ted Stevens?
SELECT state_represented FROM table_10644188_3 WHERE name = "Ted Stevens"
CREATE TABLE table_10644188_3 (state_represented VARCHAR, name VARCHAR)
How many poles for the Netherlands?
SELECT MAX(poles) FROM table_19487922_1 WHERE country = "Netherlands"
CREATE TABLE table_19487922_1 (poles INTEGER, country VARCHAR)
If the channels is wxyzrstuvpq, what is the horizontal order?
SELECT horizontal_order FROM table_233830_1 WHERE channels = "WXYZRSTUVPQ"
CREATE TABLE table_233830_1 (horizontal_order VARCHAR, channels VARCHAR)
Which classes have more than two captains?
SELECT CLASS FROM captain GROUP BY CLASS HAVING COUNT(*) > 2
CREATE TABLE captain (CLASS VARCHAR)
What is the total number of Points- when the Sets- is larger than 51?
SELECT COUNT(points_) FROM table_name_56 WHERE sets_ > 51
CREATE TABLE table_name_56 (points_ VARCHAR, sets_ INTEGER)
What decade is the artist the replacements?
SELECT decade FROM table_name_92 WHERE artist = "the replacements"
CREATE TABLE table_name_92 (decade VARCHAR, artist VARCHAR)
What is the sum of the kono with a bonthe greater than 21,238?
SELECT SUM(kono) FROM table_name_38 WHERE bonthe > 21 OFFSET 238
CREATE TABLE table_name_38 (kono INTEGER, bonthe INTEGER)
What's the attendance when the week was more than 16?
SELECT attendance FROM table_name_95 WHERE week > 16
CREATE TABLE table_name_95 (attendance VARCHAR, week INTEGER)
Where did Hawthorn play as the away team?
SELECT venue FROM table_name_89 WHERE away_team = "hawthorn"
CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR)
How many Area's are there for Armstrong?
SELECT COUNT(area__km²_) FROM table_28367242_1 WHERE name = "Armstrong"
CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, name VARCHAR)
What was the average attendance on 18 October 2000?
SELECT AVG(attendance) FROM table_name_51 WHERE date = "18 october 2000"
CREATE TABLE table_name_51 (attendance INTEGER, date VARCHAR)
What is the percentage of Android use when Windows is 1.15%?
SELECT android FROM table_11381701_3 WHERE windows = "1.15%"
CREATE TABLE table_11381701_3 (android VARCHAR, windows VARCHAR)
Which school did player Rodney Purvis belong to?
SELECT school FROM table_name_32 WHERE player = "rodney purvis"
CREATE TABLE table_name_32 (school VARCHAR, player VARCHAR)
Name the theatre for aaron jablonski schuyler grogan with performances more than 49
SELECT theatre FROM table_name_31 WHERE performances > 49 AND role = "aaron jablonski schuyler grogan"
CREATE TABLE table_name_31 (theatre VARCHAR, performances VARCHAR, role VARCHAR)
Name the change with share of 2.9%
SELECT change FROM table_name_71 WHERE share = "2.9%"
CREATE TABLE table_name_71 (change VARCHAR, share VARCHAR)
Which Capacity has a Location of mogilev?
SELECT SUM(capacity) FROM table_name_38 WHERE location = "mogilev"
CREATE TABLE table_name_38 (capacity INTEGER, location VARCHAR)
Which team won against the New England Patriots 40-21?
SELECT winner FROM table_name_14 WHERE loser = "new england patriots" AND result = "40-21"
CREATE TABLE table_name_14 (winner VARCHAR, loser VARCHAR, result VARCHAR)
Find the names of the top 10 airlines that operate the most number of routes.
SELECT T1.name, T2.alid FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid GROUP BY T2.alid ORDER BY COUNT(*) DESC LIMIT 10
CREATE TABLE airlines (name VARCHAR, alid VARCHAR); CREATE TABLE routes (alid VARCHAR)
What was the score in Tie number 16?
SELECT score FROM table_name_16 WHERE tie_no = "16"
CREATE TABLE table_name_16 (score VARCHAR, tie_no VARCHAR)
When 2 is the k-band what is the v-band?
SELECT v_band FROM table_186468_1 WHERE k_band = "2"
CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR)
Who won at course Forlì to Carpi?
SELECT winner FROM table_name_47 WHERE course = "forlì to carpi"
CREATE TABLE table_name_47 (winner VARCHAR, course VARCHAR)
elaine lee worked on how many issues
SELECT COUNT(issues) FROM table_1420954_1 WHERE writer = "Elaine Lee"
CREATE TABLE table_1420954_1 (issues VARCHAR, writer VARCHAR)
What was the lowest attendance by the game that had an away team of Vida?
SELECT MIN(attendance) FROM table_name_47 WHERE away = "vida"
CREATE TABLE table_name_47 (attendance INTEGER, away VARCHAR)
For each nomination, show the name of the artwork and name of the festival where it is nominated.
SELECT T2.Name, T3.Festival_Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID
CREATE TABLE artwork (Name VARCHAR, Artwork_ID VARCHAR); CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE festival_detail (Festival_Name VARCHAR, Festival_ID VARCHAR)
What is the rank for China?
SELECT SUM(rank) FROM table_name_96 WHERE country = "china"
CREATE TABLE table_name_96 (rank INTEGER, country VARCHAR)
Which Year(s) won has a Total larger than 295?
SELECT year_s__won FROM table_name_31 WHERE total > 295
CREATE TABLE table_name_31 (year_s__won VARCHAR, total INTEGER)
Name the position of the player from college of virginia
SELECT position FROM table_name_96 WHERE college = "virginia"
CREATE TABLE table_name_96 (position VARCHAR, college VARCHAR)
What is Time, when Method is "submission (knees)"?
SELECT time FROM table_name_14 WHERE method = "submission (knees)"
CREATE TABLE table_name_14 (time VARCHAR, method VARCHAR)
How many points were there in a year earlier than 1977, a Cosworth V8 engine, and an entry from HB Bewaking alarm systems?
SELECT points FROM table_name_68 WHERE year < 1977 AND engine = "cosworth v8" AND entrant = "hb bewaking alarm systems"
CREATE TABLE table_name_68 (points VARCHAR, entrant VARCHAR, year VARCHAR, engine VARCHAR)
what team has a score of 11
SELECT record FROM table_name_3 WHERE game = 11
CREATE TABLE table_name_3 (record VARCHAR, game VARCHAR)
Which Spouse has a Birth of 30 may 1653?
SELECT spouse FROM table_name_38 WHERE birth = "30 may 1653"
CREATE TABLE table_name_38 (spouse VARCHAR, birth VARCHAR)
How much did the away team Melbourne score?
SELECT away_team AS score FROM table_name_64 WHERE away_team = "melbourne"
CREATE TABLE table_name_64 (away_team VARCHAR)
What is the highest average number in attendance when the most in attendance is 5,078?
SELECT MAX(average) FROM table_name_87 WHERE highest = 5 OFFSET 078
CREATE TABLE table_name_87 (average INTEGER, highest VARCHAR)
Which college's cfl team is the hamilton tiger-cats?
SELECT college FROM table_name_58 WHERE cfl_team = "hamilton tiger-cats"
CREATE TABLE table_name_58 (college VARCHAR, cfl_team VARCHAR)
Who is the coach located in Oakden?
SELECT coach FROM table_name_69 WHERE location = "oakden"
CREATE TABLE table_name_69 (coach VARCHAR, location VARCHAR)
How many points against did the club with a losing bonus of 3 and 84 tries have?
SELECT points_against FROM table_name_68 WHERE losing_bonus = "3" AND tries_for = "84"
CREATE TABLE table_name_68 (points_against VARCHAR, losing_bonus VARCHAR, tries_for VARCHAR)
which country won swimming track & field when lexington won swimming and madison won volleyball
SELECT track_ & _field FROM table_16423070_4 WHERE swimming = "Lexington" AND volleyball = "Madison"
CREATE TABLE table_16423070_4 (track_ VARCHAR, _field VARCHAR, swimming VARCHAR, volleyball VARCHAR)
List the names of poker players ordered by the final tables made in ascending order.
SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Final_Table_Made
CREATE TABLE poker_player (People_ID VARCHAR, Final_Table_Made VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
Name the power provided where transfer speed mb/s is 300 and max cable length of 10
SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = "300" AND max_cable_length__m_ = "10"
CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_s_ VARCHAR, max_cable_length__m_ VARCHAR)
What was the date of the game with 6 goals?
SELECT date FROM table_name_61 WHERE goal = 6
CREATE TABLE table_name_61 (date VARCHAR, goal VARCHAR)
Show all director names who have a movie in both year 1999 and 2000.
SELECT director FROM movie WHERE YEAR = 2000 INTERSECT SELECT director FROM movie WHERE YEAR = 1999
CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)
What was the class that team Honda Britain was in with points higher than 0?
SELECT class FROM table_name_34 WHERE team = "honda britain" AND points > 0
CREATE TABLE table_name_34 (class VARCHAR, team VARCHAR, points VARCHAR)
In season 5 what episode number was production 06-03-519?
SELECT COUNT(no_in_season) FROM table_1876825_6 WHERE production_code = "06-03-519"
CREATE TABLE table_1876825_6 (no_in_season VARCHAR, production_code VARCHAR)
what is the rank of the cinema when the number of sites is more than 62 and the circuit is cineplex entertainment?
SELECT SUM(rank) FROM table_name_3 WHERE sites > 62 AND circuit = "cineplex entertainment"
CREATE TABLE table_name_3 (rank INTEGER, sites VARCHAR, circuit VARCHAR)
Name the comprehension for non-fluent, effortful, slow
SELECT auditory_comprehension FROM table_2088_1 WHERE fluency = "non-fluent, effortful, slow"
CREATE TABLE table_2088_1 (auditory_comprehension VARCHAR, fluency VARCHAR)
What film was directed by Sandro Aguilar?
SELECT film FROM table_name_80 WHERE director_s_ = "sandro aguilar"
CREATE TABLE table_name_80 (film VARCHAR, director_s_ VARCHAR)
What is the name that has July 1823 as the Laid down, and portsmouth as the built by hm dockyard?
SELECT name FROM table_name_96 WHERE laid_down = "july 1823" AND built_by_hm_dockyard = "portsmouth"
CREATE TABLE table_name_96 (name VARCHAR, laid_down VARCHAR, built_by_hm_dockyard VARCHAR)
In the Georgia 6 district, what is the elected party?
SELECT party FROM table_1341663_11 WHERE district = "Georgia 6"
CREATE TABLE table_1341663_11 (party VARCHAR, district VARCHAR)
What is every year where opponent in the final is John Mcenroe at Wimbledon?
SELECT year FROM table_23235767_1 WHERE opponent_in_the_final = "John McEnroe" AND championship = "Wimbledon"
CREATE TABLE table_23235767_1 (year VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)
What is the Date of the game with a Record of 5-3?
SELECT date FROM table_name_53 WHERE record = "5-3"
CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR)
What is Team (B), when S No is greater than 17?
SELECT team__b_ FROM table_name_10 WHERE s_no > 17
CREATE TABLE table_name_10 (team__b_ VARCHAR, s_no INTEGER)
When has Score of 4–5, and a Record of 21–21–3?
SELECT date FROM table_name_94 WHERE score = "4–5" AND record = "21–21–3"
CREATE TABLE table_name_94 (date VARCHAR, score VARCHAR, record VARCHAR)
What has the lowest number of wins with GA smaller than 39, more than 2 losses, and ties greater than 0?
SELECT MIN(wins) FROM table_name_17 WHERE goals_against < 39 AND losses > 2 AND ties > 0
CREATE TABLE table_name_17 (wins INTEGER, ties VARCHAR, goals_against VARCHAR, losses VARCHAR)
what is the athens xi where dada xi b is strikers fc?
SELECT athens_xi FROM table_28759261_5 WHERE dadar_xi_‘b’ = "Strikers FC"
CREATE TABLE table_28759261_5 (athens_xi VARCHAR, dadar_xi_‘b’ VARCHAR)
What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii?
SELECT count_palatine_of_the_rhine FROM table_name_65 WHERE interregnum_began = "2 april 1657 death of ferdinand iii"
CREATE TABLE table_name_65 (count_palatine_of_the_rhine VARCHAR, interregnum_began VARCHAR)
what is the media debut for the asian black bear?
SELECT media_debut FROM table_26615633_3 WHERE species = "Asian black bear"
CREATE TABLE table_26615633_3 (media_debut VARCHAR, species VARCHAR)
what is the series when wins is less than 3, points is 9 and podiums is 1?
SELECT series FROM table_name_7 WHERE wins < 3 AND points = "9" AND podiums = 1
CREATE TABLE table_name_7 (series VARCHAR, podiums VARCHAR, wins VARCHAR, points VARCHAR)
Who is the captain of Dave Jones' team?
SELECT team AS captain FROM table_26593762_2 WHERE manager = "Dave Jones"
CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR)
Which Surface has a Tournament of olbia?
SELECT surface FROM table_name_62 WHERE tournament = "olbia"
CREATE TABLE table_name_62 (surface VARCHAR, tournament VARCHAR)
who won the senate seat in arkansas
SELECT senator FROM table_1133844_4 WHERE state__linked_to_summaries_below_ = "Arkansas"
CREATE TABLE table_1133844_4 (senator VARCHAR, state__linked_to_summaries_below_ VARCHAR)
How many flights have a velocity larger than 200?
SELECT COUNT(*) FROM flight WHERE velocity > 200
CREATE TABLE flight (velocity INTEGER)
Which points classification was used in stage 15?
SELECT points_classification FROM table_name_54 WHERE stage = "15"
CREATE TABLE table_name_54 (points_classification VARCHAR, stage VARCHAR)
Which airline has most number of flights?
SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY COUNT(*) DESC LIMIT 1
CREATE TABLE FLIGHTS (Airline VARCHAR); CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR)
Who belong to the institution "University of Oxford"? Show the first names and last names.
SELECT DISTINCT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "University of Oxford"
CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR); CREATE TABLE inst (instid VARCHAR, name VARCHAR)
What years was Lebanon the nationality?
SELECT years_in_orlando FROM table_name_82 WHERE nationality = "lebanon"
CREATE TABLE table_name_82 (years_in_orlando VARCHAR, nationality VARCHAR)
Who was the opponent at the game with a result of w 14–6?
SELECT opponent FROM table_name_60 WHERE result = "w 14–6"
CREATE TABLE table_name_60 (opponent VARCHAR, result VARCHAR)
What is the year when Scuderia Lancia Corse competed?
SELECT COUNT(year) FROM table_name_51 WHERE team = "scuderia lancia corse"
CREATE TABLE table_name_51 (year VARCHAR, team VARCHAR)
What is every value for % 20-39 if % 0-19 is 21,11%?
SELECT _percentage_20_39 FROM table_23606500_4 WHERE _percentage_0_19 = "21,11%"
CREATE TABLE table_23606500_4 (_percentage_20_39 VARCHAR, _percentage_0_19 VARCHAR)
What is the event in a year before 1989?
SELECT event FROM table_name_37 WHERE year < 1989
CREATE TABLE table_name_37 (event VARCHAR, year INTEGER)
Who was the actor/actress with a last appearance of 1 january 2010 and total is 20 and character is vanessa 'nessa' jenkins?
SELECT actor_actress FROM table_25831483_1 WHERE last_appearance = "1 January 2010" AND total = 20 AND character = "Vanessa 'Nessa' Jenkins"
CREATE TABLE table_25831483_1 (actor_actress VARCHAR, character VARCHAR, last_appearance VARCHAR, total VARCHAR)
What earpads does the headphone with plastic contruction and was succeeded by igrado have?
SELECT earpads FROM table_name_67 WHERE construction = "plastic" AND succeeded_by = "igrado"
CREATE TABLE table_name_67 (earpads VARCHAR, construction VARCHAR, succeeded_by VARCHAR)
How many points total are there later than 2003?
SELECT SUM(points) FROM table_name_99 WHERE year > 2003
CREATE TABLE table_name_99 (points INTEGER, year INTEGER)
Name the home for 16 april 2008
SELECT home FROM table_name_11 WHERE date = "16 april 2008"
CREATE TABLE table_name_11 (home VARCHAR, date VARCHAR)
What's the sum of money ($) that angela park has won?
SELECT SUM(money___) AS $__ FROM table_name_99 WHERE player = "angela park"
CREATE TABLE table_name_99 (money___ INTEGER, player VARCHAR)
Which Nationality has a Position of left wing?
SELECT nationality FROM table_name_99 WHERE position = "left wing"
CREATE TABLE table_name_99 (nationality VARCHAR, position VARCHAR)
Which state was first elected in 1914, and a Member of edward jolley?
SELECT state FROM table_name_97 WHERE first_elected = "1914" AND member = "edward jolley"
CREATE TABLE table_name_97 (state VARCHAR, first_elected VARCHAR, member VARCHAR)
What are all the title directed by reginald hudlin
SELECT COUNT(title) FROM table_21994729_3 WHERE directed_by = "Reginald Hudlin"
CREATE TABLE table_21994729_3 (title VARCHAR, directed_by VARCHAR)
Which average time has eithan urbach as a name with a lane bigger than 2?
SELECT AVG(time) FROM table_name_99 WHERE name = "eithan urbach" AND lane > 2
CREATE TABLE table_name_99 (time INTEGER, name VARCHAR, lane VARCHAR)
Jack Nicklaus finished in what place?
SELECT finish FROM table_name_18 WHERE player = "jack nicklaus"
CREATE TABLE table_name_18 (finish VARCHAR, player VARCHAR)
Who won Division Southwest when Madžari Solidarnost won Division North?
SELECT division_southwest FROM table_name_4 WHERE division_north = "madžari solidarnost"
CREATE TABLE table_name_4 (division_southwest VARCHAR, division_north VARCHAR)
Which Placings have a Nation of west germany, and Points larger than 303.72?
SELECT SUM(placings) FROM table_name_31 WHERE nation = "west germany" AND points > 303.72
CREATE TABLE table_name_31 (placings INTEGER, nation VARCHAR, points VARCHAR)
What is the surface when the us open is the championship in the year 1979?
SELECT surface FROM table_22860698_2 WHERE championship = "US Open" AND year = 1979
CREATE TABLE table_22860698_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)
Which Score has a Venue of idrottsparken?
SELECT score FROM table_name_31 WHERE venue = "idrottsparken"
CREATE TABLE table_name_31 (score VARCHAR, venue VARCHAR)
Name the losing bonus of 96 points
SELECT losing_bonus FROM table_12792876_4 WHERE points = "96"
CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, points VARCHAR)