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