question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Who was in 4th when in 6th is Air Traffic?
CREATE TABLE table_17111812_1 (fourth VARCHAR, sixth VARCHAR)
SELECT fourth FROM table_17111812_1 WHERE sixth = "Air Traffic"
When Kubb is in 9th, who is in 10th?
CREATE TABLE table_17111812_1 (tenth VARCHAR, ninth VARCHAR)
SELECT tenth FROM table_17111812_1 WHERE ninth = "Kubb"
When Interpol is in 6th, who is in 7th?
CREATE TABLE table_17111812_1 (seventh VARCHAR, sixth VARCHAR)
SELECT COUNT(seventh) FROM table_17111812_1 WHERE sixth = "Interpol"
How many times was Plan B 4th place?
CREATE TABLE table_17111812_1 (winner VARCHAR, fourth VARCHAR)
SELECT COUNT(winner) FROM table_17111812_1 WHERE fourth = "Plan B"
When dizzee rascal is 5th, who was the winner?
CREATE TABLE table_17111812_1 (winner VARCHAR, fifth VARCHAR)
SELECT winner FROM table_17111812_1 WHERE fifth = "Dizzee Rascal"
What was the location and attendance for game 60?
CREATE TABLE table_17121262_9 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_17121262_9 WHERE game = 60
Who had the highest assists on March 18?
CREATE TABLE table_17121262_9 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17121262_9 WHERE date = "March 18"
Who had the high rebound total on january 6?
CREATE TABLE table_17140608_7 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_17140608_7 WHERE date = "January 6"
Name the total number of opponent of record 9-2
CREATE TABLE table_17186229_4 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_17186229_4 WHERE record = "9-2"
name the date where score time is w 74-63
CREATE TABLE table_17186229_4 (date VARCHAR, score_time VARCHAR)
SELECT date FROM table_17186229_4 WHERE score_time = "W 74-63"
What episode aired on 11july1964?
CREATE TABLE table_1723080_1 (episode VARCHAR, broadcast_date VARCHAR)
SELECT episode FROM table_1723080_1 WHERE broadcast_date = "11July1964"
How many viewers were there on 1august1964?
CREATE TABLE table_1723080_1 (viewers__in_millions_ VARCHAR, broadcast_date VARCHAR)
SELECT viewers__in_millions_ FROM table_1723080_1 WHERE broadcast_date = "1August1964"
What is run time when there were 7.4 million viewers?
CREATE TABLE table_1723080_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)
SELECT run_time FROM table_1723080_1 WHERE viewers__in_millions_ = "7.4"
If the equation is (10 times 8) + 4, what would be the 2nd throw?
CREATE TABLE table_17265535_6 (equation VARCHAR)
SELECT MAX(2 AS nd_throw) FROM table_17265535_6 WHERE equation = "(10 times 8) + 4"
If the equation is all equal, what is the 3rd throw?
CREATE TABLE table_17265535_6 (equation VARCHAR)
SELECT 3 AS rd_throw FROM table_17265535_6 WHERE equation = "all equal"
If the equation is (10 times 1) + 3, what is the 2nd throw?
CREATE TABLE table_17265535_6 (equation VARCHAR)
SELECT MAX(2 AS nd_throw) FROM table_17265535_6 WHERE equation = "(10 times 1) + 3"
Name the total number of grid for 30
CREATE TABLE table_17271495_1 (grid VARCHAR, points VARCHAR)
SELECT COUNT(grid) FROM table_17271495_1 WHERE points = "30"
Name the laps for 18 pointss
CREATE TABLE table_17271495_1 (laps VARCHAR, points VARCHAR)
SELECT laps FROM table_17271495_1 WHERE points = "18"
Name the drive for points being 13
CREATE TABLE table_17271495_1 (driver VARCHAR, points VARCHAR)
SELECT driver FROM table_17271495_1 WHERE points = "13"
Name the team for scott dixon
CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR)
SELECT team FROM table_17271495_1 WHERE driver = "Scott Dixon"
Name the team of darren manning
CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR)
SELECT team FROM table_17271495_1 WHERE driver = "Darren Manning"
Name the record for score of l 93–104 (ot)
CREATE TABLE table_17288825_8 (record VARCHAR, score VARCHAR)
SELECT record FROM table_17288825_8 WHERE score = "L 93–104 (OT)"
On what date did the Rockets play Memphis?
CREATE TABLE table_17288825_9 (date VARCHAR, team VARCHAR)
SELECT date FROM table_17288825_9 WHERE team = "Memphis"
Who had the most poinst in game 72?
CREATE TABLE table_17288825_9 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_17288825_9 WHERE game = 72
When tracy mcgrady (8) is leading in assists what is the date?
CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_17288825_6 WHERE high_assists = "Tracy McGrady (8)"
When @ new orleans is the team who has the highest amount of rebounds?
CREATE TABLE table_17288825_6 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_17288825_6 WHERE team = "@ New Orleans"
When aaron brooks (6) had the highest amount of assists what is the date?
CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_17288825_6 WHERE high_assists = "Aaron Brooks (6)"
What was the record on November 1?
CREATE TABLE table_17288869_5 (record VARCHAR, date VARCHAR)
SELECT record FROM table_17288869_5 WHERE date = "November 1"
What was the record on November 7?
CREATE TABLE table_17288869_5 (record VARCHAR, date VARCHAR)
SELECT COUNT(record) FROM table_17288869_5 WHERE date = "November 7"
What is the grid for the driver who earned 14 points?
CREATE TABLE table_17304504_1 (grid VARCHAR, points VARCHAR)
SELECT grid FROM table_17304504_1 WHERE points = "14"
Name the total number of cars for panther racing and grid of 9
CREATE TABLE table_17304308_1 (car_no VARCHAR, team VARCHAR, grid VARCHAR)
SELECT COUNT(car_no) FROM table_17304308_1 WHERE team = "Panther Racing" AND grid = 9
Name the least grid for 17 points
CREATE TABLE table_17304308_1 (grid INTEGER, points VARCHAR)
SELECT MIN(grid) FROM table_17304308_1 WHERE points = "17"
Name the total number of fin pos for 12 points of accident
CREATE TABLE table_17304308_1 (fin_pos VARCHAR, points VARCHAR, time_retired VARCHAR)
SELECT COUNT(fin_pos) FROM table_17304308_1 WHERE points = "12" AND time_retired = "Accident"
Name the number of driver for fin pos of 19
CREATE TABLE table_17304308_1 (driver VARCHAR, fin_pos VARCHAR)
SELECT COUNT(driver) FROM table_17304308_1 WHERE fin_pos = 19
how many high assists stats were maade on february 4
CREATE TABLE table_17311759_7 (high_assists VARCHAR, date VARCHAR)
SELECT COUNT(high_assists) FROM table_17311759_7 WHERE date = "February 4"
who made high assists on february 4
CREATE TABLE table_17311759_7 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17311759_7 WHERE date = "February 4"
What was the score in game 81?
CREATE TABLE table_17311797_10 (score VARCHAR, game VARCHAR)
SELECT score FROM table_17311797_10 WHERE game = 81
Which player had the highest points in game 79?
CREATE TABLE table_17311797_10 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_17311797_10 WHERE game = 79
What team(s) did they play on march 9?
CREATE TABLE table_17311783_9 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17311783_9 WHERE date = "March 9"
Who had the high point total against cleveland?
CREATE TABLE table_17311783_9 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_17311783_9 WHERE team = "Cleveland"
When did they play Miami?
CREATE TABLE table_17323042_8 (date VARCHAR, team VARCHAR)
SELECT date FROM table_17323042_8 WHERE team = "Miami"
Name the total number of score for staples center 13,266
CREATE TABLE table_17323529_5 (score VARCHAR, location_attendance VARCHAR)
SELECT COUNT(score) FROM table_17323529_5 WHERE location_attendance = "Staples Center 13,266"
Name the high points for the date of november 24
CREATE TABLE table_17323529_5 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17323529_5 WHERE date = "November 24"
Name the high assists for l 98–103 (ot)
CREATE TABLE table_17323529_5 (high_assists VARCHAR, score VARCHAR)
SELECT high_assists FROM table_17323529_5 WHERE score = "L 98–103 (OT)"
What was the team's score on April 1?
CREATE TABLE table_17340355_10 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17340355_10 WHERE date = "April 1"
Who did the most assists when Matt Barnes (11) got the most rebounds?
CREATE TABLE table_17340355_10 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_17340355_10 WHERE high_rebounds = "Matt Barnes (11)"
Steve Nash (24) got high points for how many teams?
CREATE TABLE table_17340355_10 (team VARCHAR, high_points VARCHAR)
SELECT COUNT(team) FROM table_17340355_10 WHERE high_points = "Steve Nash (24)"
After the March 15 game, what was the team's record?
CREATE TABLE table_17340355_9 (record VARCHAR, date VARCHAR)
SELECT record FROM table_17340355_9 WHERE date = "March 15"
Name who wrote the episode directed by arthur albert
CREATE TABLE table_17356042_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_17356042_1 WHERE directed_by = "Arthur Albert"
Name the title that was written by r. scott gemmill
CREATE TABLE table_17356042_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_17356042_1 WHERE written_by = "R. Scott Gemmill"
Name who directed the episode for the series number 236
CREATE TABLE table_17356042_1 (directed_by VARCHAR, series__number VARCHAR)
SELECT directed_by FROM table_17356042_1 WHERE series__number = 236
How many games did the team who scored 60 goals win?
CREATE TABLE table_17358515_1 (won INTEGER, goals_for VARCHAR)
SELECT MIN(won) FROM table_17358515_1 WHERE goals_for = 60
How many points did Goole Town accumulate?
CREATE TABLE table_17358515_1 (points_2 VARCHAR, team VARCHAR)
SELECT COUNT(points_2) FROM table_17358515_1 WHERE team = "Goole Town"
List all losses with average goals of 1.21.
CREATE TABLE table_17366952_1 (lost VARCHAR, goal_average_1 VARCHAR)
SELECT lost FROM table_17366952_1 WHERE goal_average_1 = "1.21"
Which team had goal averages of 1.34?
CREATE TABLE table_17366952_1 (team VARCHAR, goal_average_1 VARCHAR)
SELECT team FROM table_17366952_1 WHERE goal_average_1 = "1.34"
What is the highest position of the Bangor City team?
CREATE TABLE table_17366952_1 (position INTEGER, team VARCHAR)
SELECT MAX(position) FROM table_17366952_1 WHERE team = "Bangor City"
How many times did the Lancaster City team play?
CREATE TABLE table_17366952_1 (played VARCHAR, team VARCHAR)
SELECT COUNT(played) FROM table_17366952_1 WHERE team = "Lancaster City"
Which athlete competed in the flyweight division?
CREATE TABLE table_1745820_5 (athlete VARCHAR, event VARCHAR)
SELECT athlete FROM table_1745820_5 WHERE event = "Flyweight"
When there was a bye in the round of 32, what was the result in the round of 16?
CREATE TABLE table_1745820_5 (semifinals VARCHAR, round_of_32 VARCHAR)
SELECT semifinals FROM table_1745820_5 WHERE round_of_32 = "Bye"
What is the part 4 when part 1 is "lesan"?
CREATE TABLE table_1745843_8 (part_4 VARCHAR, part_1 VARCHAR)
SELECT part_4 FROM table_1745843_8 WHERE part_1 = "lesan"
What is the verb meaning of the word with part 3 "sufun"?
CREATE TABLE table_1745843_8 (verb_meaning VARCHAR, part_3 VARCHAR)
SELECT verb_meaning FROM table_1745843_8 WHERE part_3 = "sufun"
What class in the word with part 4 "giheizan"?
CREATE TABLE table_1745843_8 (class VARCHAR, part_4 VARCHAR)
SELECT class FROM table_1745843_8 WHERE part_4 = "giheizan"
What is the part 4 of the word with the part 1 "heizan"?
CREATE TABLE table_1745843_8 (part_4 VARCHAR, part_1 VARCHAR)
SELECT part_4 FROM table_1745843_8 WHERE part_1 = "heizan"
What is the part 3 of the word in class 7a?
CREATE TABLE table_1745843_8 (part_3 VARCHAR, class VARCHAR)
SELECT part_3 FROM table_1745843_8 WHERE class = "7a"
What is the verb meaning of the word with part 2 "bant"?
CREATE TABLE table_1745843_8 (verb_meaning VARCHAR, part_2 VARCHAR)
SELECT verb_meaning FROM table_1745843_8 WHERE part_2 = "bant"
What was the swimsuit score for the country with the average score of 8.848?
CREATE TABLE table_17521433_1 (swimsuit VARCHAR, average VARCHAR)
SELECT swimsuit FROM table_17521433_1 WHERE average = "8.848"
What country had a swimsuit score of 8.788?
CREATE TABLE table_17521433_1 (country VARCHAR, swimsuit VARCHAR)
SELECT country FROM table_17521433_1 WHERE swimsuit = "8.788"
What was the swimsuit score for Illinois?
CREATE TABLE table_17521433_1 (swimsuit VARCHAR, country VARCHAR)
SELECT swimsuit FROM table_17521433_1 WHERE country = "Illinois"
What was the average score for the country with the evening gown score of 9.100?
CREATE TABLE table_17521433_1 (average VARCHAR, evening_gown VARCHAR)
SELECT COUNT(average) FROM table_17521433_1 WHERE evening_gown = "9.100"
Name the swuinsuit for oregon
CREATE TABLE table_17516967_1 (swimsuit VARCHAR, state VARCHAR)
SELECT swimsuit FROM table_17516967_1 WHERE state = "Oregon"
Name the preliminary for north carolina
CREATE TABLE table_17516967_1 (preliminary VARCHAR, state VARCHAR)
SELECT preliminary FROM table_17516967_1 WHERE state = "North Carolina"
What are the census ranking(s) of maugerville?
CREATE TABLE table_176521_2 (census_ranking VARCHAR, official_name VARCHAR)
SELECT census_ranking FROM table_176521_2 WHERE official_name = "Maugerville"
What is the status(es) of the place with an area of 304.06 km2?
CREATE TABLE table_176521_2 (status VARCHAR, area_km_2 VARCHAR)
SELECT status FROM table_176521_2 WHERE area_km_2 = "304.06"
What are the official name(s) of places with an area of 304.06 km2?
CREATE TABLE table_176521_2 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_176521_2 WHERE area_km_2 = "304.06"
Name the location for school eckstein
CREATE TABLE table_17641314_3 (location_denotes_location_of_school_by_seattle_neighborhood VARCHAR, _does_not_necessary_correspond_with_attendance_area VARCHAR, school VARCHAR)
SELECT location_denotes_location_of_school_by_seattle_neighborhood, _does_not_necessary_correspond_with_attendance_area FROM table_17641314_3 WHERE school = "Eckstein"
Name the minimum 11-12 enrollment for washington school
CREATE TABLE table_17641314_3 (school VARCHAR)
SELECT MIN(11 AS _12_enrollment) FROM table_17641314_3 WHERE school = "Washington"
What's the length of the model with 500 E body style?
CREATE TABLE table_1773707_2 (length VARCHAR, body_style VARCHAR)
SELECT length FROM table_1773707_2 WHERE body_style = "500 E"
What's the length of the model with Sedan body style?
CREATE TABLE table_1773707_2 (length VARCHAR, body_style VARCHAR)
SELECT length FROM table_1773707_2 WHERE body_style = "Sedan"
What are the lengths of the models that are mm (in) tall?
CREATE TABLE table_1773707_2 (length VARCHAR, height VARCHAR)
SELECT length FROM table_1773707_2 WHERE height = "mm (in)"
How many providers are there where the resale category is yes and bandwith is up is 1024?
CREATE TABLE table_1773908_3 (provider VARCHAR, resale VARCHAR, up__up_to_kbit_s_ VARCHAR)
SELECT COUNT(provider) FROM table_1773908_3 WHERE resale = "yes" AND up__up_to_kbit_s_ = 1024
What is download bandwith where the provider is deutsche telekom ag?
CREATE TABLE table_1773908_3 (down__up_to_kbit_s_ INTEGER, provider VARCHAR)
SELECT MAX(down__up_to_kbit_s_) FROM table_1773908_3 WHERE provider = "Deutsche Telekom AG"
Who are all of the telecom providers for which the upload rate is 1024 kbits and the resale category is yes?
CREATE TABLE table_1773908_3 (provider VARCHAR, up__up_to_kbit_s_ VARCHAR, resale VARCHAR)
SELECT provider FROM table_1773908_3 WHERE up__up_to_kbit_s_ = 1024 AND resale = "yes"
What are all the dsl type offered by the M-Net telecom company?
CREATE TABLE table_1773908_3 (dsl_type VARCHAR, provider VARCHAR)
SELECT dsl_type FROM table_1773908_3 WHERE provider = "M-net"
What is the resale category for the provider NetCologne?
CREATE TABLE table_1773908_3 (resale VARCHAR, provider VARCHAR)
SELECT resale FROM table_1773908_3 WHERE provider = "Netcologne"
How many results are listed for week 13?
CREATE TABLE table_17782308_1 (result VARCHAR, week VARCHAR)
SELECT COUNT(result) FROM table_17782308_1 WHERE week = 13
On October 16, 1966, what was the game site?
CREATE TABLE table_17782308_1 (game_site VARCHAR, date VARCHAR)
SELECT game_site FROM table_17782308_1 WHERE date = "October 16, 1966"
What was the date of the game when the opponent was the Miami Dolphins?
CREATE TABLE table_17782308_1 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_17782308_1 WHERE opponent = "Miami Dolphins"
On how many dates was the complete 4th series released?
CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR)
SELECT COUNT(date_released) FROM table_17798548_4 WHERE season = "The Complete 4th Series"
How many discs for the complete 4th series?
CREATE TABLE table_17798548_4 (_number_of_discs INTEGER, season VARCHAR)
SELECT MAX(_number_of_discs) FROM table_17798548_4 WHERE season = "The Complete 4th Series"
What day was the complete 2nd series: volume one released?
CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR)
SELECT date_released FROM table_17798548_4 WHERE season = "The Complete 2nd Series: Volume One"
Which US air date had 4.4 million viewers?
CREATE TABLE table_17901155_4 (original_us_air_date VARCHAR, viewers__millions_ VARCHAR)
SELECT original_us_air_date FROM table_17901155_4 WHERE viewers__millions_ = "4.4"
How many million viewers watched episode 6?
CREATE TABLE table_17901155_4 (viewers__millions_ VARCHAR, no_in_season VARCHAR)
SELECT viewers__millions_ FROM table_17901155_4 WHERE no_in_season = 6
Name the most wickets for best is 4/22
CREATE TABLE table_17900317_5 (wickets INTEGER, best VARCHAR)
SELECT MAX(wickets) FROM table_17900317_5 WHERE best = "4/22"
Name the least matches for runs being 276
CREATE TABLE table_17900317_5 (matches INTEGER, runs VARCHAR)
SELECT MIN(matches) FROM table_17900317_5 WHERE runs = 276
Name the matches for wickets 17
CREATE TABLE table_17900317_5 (matches VARCHAR, wickets VARCHAR)
SELECT matches FROM table_17900317_5 WHERE wickets = 17
Name the most 4/inns
CREATE TABLE table_17900317_5 (Id VARCHAR)
SELECT MAX(4 AS _inns) FROM table_17900317_5
What was the date of the week 4 game?
CREATE TABLE table_17927935_1 (date VARCHAR, week VARCHAR)
SELECT date FROM table_17927935_1 WHERE week = 4
What was the week number when the opponent was the New York Jets?
CREATE TABLE table_17927935_1 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_17927935_1 WHERE opponent = "New York Jets"
What is the district when the first elected was in 1986?
CREATE TABLE table_1805191_14 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1805191_14 WHERE first_elected = 1986
Who were the candidates when the first elected was a republican in 1998?
CREATE TABLE table_1805191_14 (candidates VARCHAR, first_elected VARCHAR, party VARCHAR)
SELECT candidates FROM table_1805191_14 WHERE first_elected = 1998 AND party = "Republican"