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