question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the total number of attendence has points greater than 40, and detroit as the home? | CREATE TABLE table_name_99 (attendance VARCHAR, points VARCHAR, home VARCHAR) | SELECT COUNT(attendance) FROM table_name_99 WHERE points > 40 AND home = "detroit" | ### Context: CREATE TABLE table_name_99 (attendance VARCHAR, points VARCHAR, home VARCHAR) ### Question: What is the total number of attendence has points greater than 40, and detroit as the home? ### Answer: SELECT COUNT(attendance) FROM table_name_99 WHERE points > 40 AND home = "detroit" |
What is the largest number for tropical Lows for the 1990β91 season with more than 10 tropical cyclones? | CREATE TABLE table_name_13 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR) | SELECT MAX(tropical_lows) FROM table_name_13 WHERE season = "1990β91" AND tropical_cyclones > 10 | ### Context: CREATE TABLE table_name_13 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR) ### Question: What is the largest number for tropical Lows for the 1990β91 season with more than 10 tropical cyclones? ### Answer: SELECT MAX(tropical_lows) FROM table_name_13 WHERE season = "1990β91" AND tropical_cyclones > 10 |
What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows. | CREATE TABLE table_name_88 (Severe INTEGER, strongest_storm VARCHAR, tropical_lows VARCHAR) | SELECT MIN(Severe) AS tropical_cyclones FROM table_name_88 WHERE strongest_storm = "tiffany" AND tropical_lows > 10 | ### Context: CREATE TABLE table_name_88 (Severe INTEGER, strongest_storm VARCHAR, tropical_lows VARCHAR) ### Question: What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows. ### Answer: SELECT MIN(Severe) AS tropical_cyclones FROM table_name_88 WHERE strongest_storm = "tiffany" AND tropical_lows > 10 |
What is the least amount of severe tropical cyclones for the 1992β93 season and the tropical Lows smaller than 6? | CREATE TABLE table_name_61 (Severe INTEGER, season VARCHAR, tropical_lows VARCHAR) | SELECT MIN(Severe) AS tropical_cyclones FROM table_name_61 WHERE season = "1992β93" AND tropical_lows < 6 | ### Context: CREATE TABLE table_name_61 (Severe INTEGER, season VARCHAR, tropical_lows VARCHAR) ### Question: What is the least amount of severe tropical cyclones for the 1992β93 season and the tropical Lows smaller than 6? ### Answer: SELECT MIN(Severe) AS tropical_cyclones FROM table_name_61 WHERE season = "1992β93" AND tropical_lows < 6 |
What is the least amount of tropical lows for the 1993β94 season with less than 11 tropical cyclones | CREATE TABLE table_name_41 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR) | SELECT MIN(tropical_lows) FROM table_name_41 WHERE season = "1993β94" AND tropical_cyclones < 11 | ### Context: CREATE TABLE table_name_41 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR) ### Question: What is the least amount of tropical lows for the 1993β94 season with less than 11 tropical cyclones ### Answer: SELECT MIN(tropical_lows) FROM table_name_41 WHERE season = "1993β94" AND tropical_cyclones < 11 |
How many Weeks are on september 8, 1980 and Attendances larger than 55,045? Question 4 | CREATE TABLE table_name_22 (week VARCHAR, date VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_22 WHERE date = "september 8, 1980" AND attendance > 55 OFFSET 045 | ### Context: CREATE TABLE table_name_22 (week VARCHAR, date VARCHAR, attendance VARCHAR) ### Question: How many Weeks are on september 8, 1980 and Attendances larger than 55,045? Question 4 ### Answer: SELECT COUNT(week) FROM table_name_22 WHERE date = "september 8, 1980" AND attendance > 55 OFFSET 045 |
Which Round has a College of stanford? | CREATE TABLE table_name_31 (round VARCHAR, college VARCHAR) | SELECT round FROM table_name_31 WHERE college = "stanford" | ### Context: CREATE TABLE table_name_31 (round VARCHAR, college VARCHAR) ### Question: Which Round has a College of stanford? ### Answer: SELECT round FROM table_name_31 WHERE college = "stanford" |
Which Round has a Pick of 174? | CREATE TABLE table_name_47 (round VARCHAR, pick VARCHAR) | SELECT round FROM table_name_47 WHERE pick = 174 | ### Context: CREATE TABLE table_name_47 (round VARCHAR, pick VARCHAR) ### Question: Which Round has a Pick of 174? ### Answer: SELECT round FROM table_name_47 WHERE pick = 174 |
Which Position has a Pick of 174? | CREATE TABLE table_name_66 (position VARCHAR, pick VARCHAR) | SELECT position FROM table_name_66 WHERE pick = 174 | ### Context: CREATE TABLE table_name_66 (position VARCHAR, pick VARCHAR) ### Question: Which Position has a Pick of 174? ### Answer: SELECT position FROM table_name_66 WHERE pick = 174 |
that was held in 1964? | CREATE TABLE table_name_39 (event VARCHAR, year VARCHAR) | SELECT event FROM table_name_39 WHERE year = 1964 | ### Context: CREATE TABLE table_name_39 (event VARCHAR, year VARCHAR) ### Question: that was held in 1964? ### Answer: SELECT event FROM table_name_39 WHERE year = 1964 |
What is the name of the Event with a venue that was in toronto, canada? | CREATE TABLE table_name_62 (event VARCHAR, venue VARCHAR) | SELECT event FROM table_name_62 WHERE venue = "toronto, canada" | ### Context: CREATE TABLE table_name_62 (event VARCHAR, venue VARCHAR) ### Question: What is the name of the Event with a venue that was in toronto, canada? ### Answer: SELECT event FROM table_name_62 WHERE venue = "toronto, canada" |
What is the Year the competition the british empire and commonwealth games were held? | CREATE TABLE table_name_98 (year INTEGER, competition VARCHAR) | SELECT SUM(year) FROM table_name_98 WHERE competition = "british empire and commonwealth games" | ### Context: CREATE TABLE table_name_98 (year INTEGER, competition VARCHAR) ### Question: What is the Year the competition the british empire and commonwealth games were held? ### Answer: SELECT SUM(year) FROM table_name_98 WHERE competition = "british empire and commonwealth games" |
What is the position of the commonwealth games? | CREATE TABLE table_name_98 (position VARCHAR, competition VARCHAR) | SELECT position FROM table_name_98 WHERE competition = "commonwealth games" | ### Context: CREATE TABLE table_name_98 (position VARCHAR, competition VARCHAR) ### Question: What is the position of the commonwealth games? ### Answer: SELECT position FROM table_name_98 WHERE competition = "commonwealth games" |
What is the venue with a competition in 1964? | CREATE TABLE table_name_15 (venue VARCHAR, year VARCHAR) | SELECT venue FROM table_name_15 WHERE year = 1964 | ### Context: CREATE TABLE table_name_15 (venue VARCHAR, year VARCHAR) ### Question: What is the venue with a competition in 1964? ### Answer: SELECT venue FROM table_name_15 WHERE year = 1964 |
Name the date for clay surface and location of santos, brazil | CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, location VARCHAR) | SELECT date FROM table_name_84 WHERE surface = "clay" AND location = "santos, brazil" | ### Context: CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, location VARCHAR) ### Question: Name the date for clay surface and location of santos, brazil ### Answer: SELECT date FROM table_name_84 WHERE surface = "clay" AND location = "santos, brazil" |
Name the date with outcome of winner and score of 4β6 6β2 7β6 (7β4) | CREATE TABLE table_name_25 (date VARCHAR, outcome VARCHAR, score VARCHAR) | SELECT date FROM table_name_25 WHERE outcome = "winner" AND score = "4β6 6β2 7β6 (7β4)" | ### Context: CREATE TABLE table_name_25 (date VARCHAR, outcome VARCHAR, score VARCHAR) ### Question: Name the date with outcome of winner and score of 4β6 6β2 7β6 (7β4) ### Answer: SELECT date FROM table_name_25 WHERE outcome = "winner" AND score = "4β6 6β2 7β6 (7β4)" |
What's the highest capacity for a position of 5 in 2004? | CREATE TABLE table_name_81 (capacity INTEGER, position_in_2004 VARCHAR) | SELECT MAX(capacity) FROM table_name_81 WHERE position_in_2004 = "5" | ### Context: CREATE TABLE table_name_81 (capacity INTEGER, position_in_2004 VARCHAR) ### Question: What's the highest capacity for a position of 5 in 2004? ### Answer: SELECT MAX(capacity) FROM table_name_81 WHERE position_in_2004 = "5" |
Which venue was number 9 for 2004? | CREATE TABLE table_name_45 (venue VARCHAR, position_in_2004 VARCHAR) | SELECT venue FROM table_name_45 WHERE position_in_2004 = "9" | ### Context: CREATE TABLE table_name_45 (venue VARCHAR, position_in_2004 VARCHAR) ### Question: Which venue was number 9 for 2004? ### Answer: SELECT venue FROM table_name_45 WHERE position_in_2004 = "9" |
What city was founded in 1857? | CREATE TABLE table_name_99 (city VARCHAR, founded VARCHAR) | SELECT city FROM table_name_99 WHERE founded = 1857 | ### Context: CREATE TABLE table_name_99 (city VARCHAR, founded VARCHAR) ### Question: What city was founded in 1857? ### Answer: SELECT city FROM table_name_99 WHERE founded = 1857 |
Which Opponent has a Time of 2:31? | CREATE TABLE table_name_42 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_42 WHERE time = "2:31" | ### Context: CREATE TABLE table_name_42 (opponent VARCHAR, time VARCHAR) ### Question: Which Opponent has a Time of 2:31? ### Answer: SELECT opponent FROM table_name_42 WHERE time = "2:31" |
Which Method has a Round of 1, and a Time of 0:28? | CREATE TABLE table_name_98 (method VARCHAR, round VARCHAR, time VARCHAR) | SELECT method FROM table_name_98 WHERE round = 1 AND time = "0:28" | ### Context: CREATE TABLE table_name_98 (method VARCHAR, round VARCHAR, time VARCHAR) ### Question: Which Method has a Round of 1, and a Time of 0:28? ### Answer: SELECT method FROM table_name_98 WHERE round = 1 AND time = "0:28" |
Which Time has an Event of call to arms i? | CREATE TABLE table_name_15 (time VARCHAR, event VARCHAR) | SELECT time FROM table_name_15 WHERE event = "call to arms i" | ### Context: CREATE TABLE table_name_15 (time VARCHAR, event VARCHAR) ### Question: Which Time has an Event of call to arms i? ### Answer: SELECT time FROM table_name_15 WHERE event = "call to arms i" |
what team played on april 9 | CREATE TABLE table_name_58 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_58 WHERE date = "april 9" | ### Context: CREATE TABLE table_name_58 (opponent VARCHAR, date VARCHAR) ### Question: what team played on april 9 ### Answer: SELECT opponent FROM table_name_58 WHERE date = "april 9" |
What is the smallest frequency (kHz) that is in the location of Longview? | CREATE TABLE table_name_61 (frequency__khz_ INTEGER, licensed_location VARCHAR) | SELECT MIN(frequency__khz_) FROM table_name_61 WHERE licensed_location = "longview" | ### Context: CREATE TABLE table_name_61 (frequency__khz_ INTEGER, licensed_location VARCHAR) ### Question: What is the smallest frequency (kHz) that is in the location of Longview? ### Answer: SELECT MIN(frequency__khz_) FROM table_name_61 WHERE licensed_location = "longview" |
What is the location with a frequency (kHz) greater than 1370? | CREATE TABLE table_name_44 (licensed_location VARCHAR, frequency__khz_ INTEGER) | SELECT licensed_location FROM table_name_44 WHERE frequency__khz_ > 1370 | ### Context: CREATE TABLE table_name_44 (licensed_location VARCHAR, frequency__khz_ INTEGER) ### Question: What is the location with a frequency (kHz) greater than 1370? ### Answer: SELECT licensed_location FROM table_name_44 WHERE frequency__khz_ > 1370 |
What is the capacity number for Yunost? | CREATE TABLE table_name_27 (capacity VARCHAR, venue VARCHAR) | SELECT COUNT(capacity) FROM table_name_27 WHERE venue = "yunost" | ### Context: CREATE TABLE table_name_27 (capacity VARCHAR, venue VARCHAR) ### Question: What is the capacity number for Yunost? ### Answer: SELECT COUNT(capacity) FROM table_name_27 WHERE venue = "yunost" |
What is the total number of first prizes in USD for the Canadian Open? | CREATE TABLE table_name_68 (tournament VARCHAR) | SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_68 WHERE tournament = "canadian open" | ### Context: CREATE TABLE table_name_68 (tournament VARCHAR) ### Question: What is the total number of first prizes in USD for the Canadian Open? ### Answer: SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_68 WHERE tournament = "canadian open" |
Which Drawn has a Lost of 19? | CREATE TABLE table_name_61 (drawn VARCHAR, lost VARCHAR) | SELECT drawn FROM table_name_61 WHERE lost = "19" | ### Context: CREATE TABLE table_name_61 (drawn VARCHAR, lost VARCHAR) ### Question: Which Drawn has a Lost of 19? ### Answer: SELECT drawn FROM table_name_61 WHERE lost = "19" |
Which Played has a Club of club? | CREATE TABLE table_name_94 (played VARCHAR) | SELECT played FROM table_name_94 WHERE "club" = "club" | ### Context: CREATE TABLE table_name_94 (played VARCHAR) ### Question: Which Played has a Club of club? ### Answer: SELECT played FROM table_name_94 WHERE "club" = "club" |
Which Club has 1 Losing bonus? | CREATE TABLE table_name_18 (club VARCHAR, losing_bonus VARCHAR) | SELECT club FROM table_name_18 WHERE losing_bonus = "1" | ### Context: CREATE TABLE table_name_18 (club VARCHAR, losing_bonus VARCHAR) ### Question: Which Club has 1 Losing bonus? ### Answer: SELECT club FROM table_name_18 WHERE losing_bonus = "1" |
What is the Losing bonus of 571 Points ? | CREATE TABLE table_name_65 (losing_bonus VARCHAR, points_for VARCHAR) | SELECT losing_bonus FROM table_name_65 WHERE points_for = "571" | ### Context: CREATE TABLE table_name_65 (losing_bonus VARCHAR, points_for VARCHAR) ### Question: What is the Losing bonus of 571 Points ? ### Answer: SELECT losing_bonus FROM table_name_65 WHERE points_for = "571" |
Which Lost has a Tries for of 75? | CREATE TABLE table_name_78 (lost VARCHAR, tries_for VARCHAR) | SELECT lost FROM table_name_78 WHERE tries_for = "75" | ### Context: CREATE TABLE table_name_78 (lost VARCHAR, tries_for VARCHAR) ### Question: Which Lost has a Tries for of 75? ### Answer: SELECT lost FROM table_name_78 WHERE tries_for = "75" |
Who is the opponent in the final of the match on 19 February 2006? | CREATE TABLE table_name_24 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_24 WHERE date = "19 february 2006" | ### Context: CREATE TABLE table_name_24 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: Who is the opponent in the final of the match on 19 February 2006? ### Answer: SELECT opponent_in_the_final FROM table_name_24 WHERE date = "19 february 2006" |
Who is the opponent in the final of the match on 26 March 2006? | CREATE TABLE table_name_49 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_49 WHERE date = "26 march 2006" | ### Context: CREATE TABLE table_name_49 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: Who is the opponent in the final of the match on 26 March 2006? ### Answer: SELECT opponent_in_the_final FROM table_name_49 WHERE date = "26 march 2006" |
What is the overall number of the player from Utah with a pick # higher than 7? | CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR, pick__number VARCHAR) | SELECT SUM(overall) FROM table_name_54 WHERE college = "utah" AND pick__number < 7 | ### Context: CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR, pick__number VARCHAR) ### Question: What is the overall number of the player from Utah with a pick # higher than 7? ### Answer: SELECT SUM(overall) FROM table_name_54 WHERE college = "utah" AND pick__number < 7 |
What is the highest round of the player with a pick number lower than 34? | CREATE TABLE table_name_83 (round INTEGER, pick__number INTEGER) | SELECT MAX(round) FROM table_name_83 WHERE pick__number > 34 | ### Context: CREATE TABLE table_name_83 (round INTEGER, pick__number INTEGER) ### Question: What is the highest round of the player with a pick number lower than 34? ### Answer: SELECT MAX(round) FROM table_name_83 WHERE pick__number > 34 |
What round did Mitch Davis, with an overall higher than 118, have? | CREATE TABLE table_name_50 (round INTEGER, name VARCHAR, overall VARCHAR) | SELECT SUM(round) FROM table_name_50 WHERE name = "mitch davis" AND overall < 118 | ### Context: CREATE TABLE table_name_50 (round INTEGER, name VARCHAR, overall VARCHAR) ### Question: What round did Mitch Davis, with an overall higher than 118, have? ### Answer: SELECT SUM(round) FROM table_name_50 WHERE name = "mitch davis" AND overall < 118 |
What is the highest overall of the player from Georgia? | CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR) | SELECT MAX(overall) FROM table_name_54 WHERE college = "georgia" | ### Context: CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR) ### Question: What is the highest overall of the player from Georgia? ### Answer: SELECT MAX(overall) FROM table_name_54 WHERE college = "georgia" |
What is the position of the player with an overall of 45? | CREATE TABLE table_name_70 (position VARCHAR, overall VARCHAR) | SELECT position FROM table_name_70 WHERE overall = 45 | ### Context: CREATE TABLE table_name_70 (position VARCHAR, overall VARCHAR) ### Question: What is the position of the player with an overall of 45? ### Answer: SELECT position FROM table_name_70 WHERE overall = 45 |
How many wins for team nsu and over 2 points? | CREATE TABLE table_name_54 (wins INTEGER, team VARCHAR, points VARCHAR) | SELECT AVG(wins) FROM table_name_54 WHERE team = "nsu" AND points > 2 | ### Context: CREATE TABLE table_name_54 (wins INTEGER, team VARCHAR, points VARCHAR) ### Question: How many wins for team nsu and over 2 points? ### Answer: SELECT AVG(wins) FROM table_name_54 WHERE team = "nsu" AND points > 2 |
What is the earliest year associated with under 0 wins? | CREATE TABLE table_name_55 (year INTEGER, wins INTEGER) | SELECT MIN(year) FROM table_name_55 WHERE wins < 0 | ### Context: CREATE TABLE table_name_55 (year INTEGER, wins INTEGER) ### Question: What is the earliest year associated with under 0 wins? ### Answer: SELECT MIN(year) FROM table_name_55 WHERE wins < 0 |
How many wins for team mv agusta, over 10 points, and after 1957? | CREATE TABLE table_name_59 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR) | SELECT SUM(wins) FROM table_name_59 WHERE team = "mv agusta" AND points > 10 AND year > 1957 | ### Context: CREATE TABLE table_name_59 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR) ### Question: How many wins for team mv agusta, over 10 points, and after 1957? ### Answer: SELECT SUM(wins) FROM table_name_59 WHERE team = "mv agusta" AND points > 10 AND year > 1957 |
What College/Junior/Club Team (League) has a round of 3? | CREATE TABLE table_name_32 (college_junior_club_team__league_ VARCHAR, round VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_32 WHERE round = 3 | ### Context: CREATE TABLE table_name_32 (college_junior_club_team__league_ VARCHAR, round VARCHAR) ### Question: What College/Junior/Club Team (League) has a round of 3? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_32 WHERE round = 3 |
What player has a round larger than 1 in Austria? | CREATE TABLE table_name_6 (player VARCHAR, round VARCHAR, nationality VARCHAR) | SELECT player FROM table_name_6 WHERE round > 1 AND nationality = "austria" | ### Context: CREATE TABLE table_name_6 (player VARCHAR, round VARCHAR, nationality VARCHAR) ### Question: What player has a round larger than 1 in Austria? ### Answer: SELECT player FROM table_name_6 WHERE round > 1 AND nationality = "austria" |
Which player's nationality is from Sweden? | CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR) | SELECT player FROM table_name_83 WHERE nationality = "sweden" | ### Context: CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR) ### Question: Which player's nationality is from Sweden? ### Answer: SELECT player FROM table_name_83 WHERE nationality = "sweden" |
What College/Junior/Club Team (League) from Canada has a round smaller than 3? | CREATE TABLE table_name_52 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, round VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_52 WHERE nationality = "canada" AND round < 3 | ### Context: CREATE TABLE table_name_52 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, round VARCHAR) ### Question: What College/Junior/Club Team (League) from Canada has a round smaller than 3? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_52 WHERE nationality = "canada" AND round < 3 |
What was the distance in 1997? | CREATE TABLE table_name_71 (distance VARCHAR, year VARCHAR) | SELECT distance FROM table_name_71 WHERE year = 1997 | ### Context: CREATE TABLE table_name_71 (distance VARCHAR, year VARCHAR) ### Question: What was the distance in 1997? ### Answer: SELECT distance FROM table_name_71 WHERE year = 1997 |
Who was the opponents in the final on January 5, 2003, on a hard surface? | CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) | SELECT opponents_in_the_final FROM table_name_19 WHERE surface = "hard" AND date = "january 5, 2003" | ### Context: CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) ### Question: Who was the opponents in the final on January 5, 2003, on a hard surface? ### Answer: SELECT opponents_in_the_final FROM table_name_19 WHERE surface = "hard" AND date = "january 5, 2003" |
What was the final score on the February 19, 2012 final? | CREATE TABLE table_name_46 (score_in_the_final VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_46 WHERE date = "february 19, 2012" | ### Context: CREATE TABLE table_name_46 (score_in_the_final VARCHAR, date VARCHAR) ### Question: What was the final score on the February 19, 2012 final? ### Answer: SELECT score_in_the_final FROM table_name_46 WHERE date = "february 19, 2012" |
Name the least attendance with venue of away on 24 august 2007 | CREATE TABLE table_name_99 (attendance__away_ INTEGER, venue VARCHAR, date VARCHAR) | SELECT MIN(attendance__away_) FROM table_name_99 WHERE venue = "away" AND date = "24 august 2007" | ### Context: CREATE TABLE table_name_99 (attendance__away_ INTEGER, venue VARCHAR, date VARCHAR) ### Question: Name the least attendance with venue of away on 24 august 2007 ### Answer: SELECT MIN(attendance__away_) FROM table_name_99 WHERE venue = "away" AND date = "24 august 2007" |
Name the average attendance with result of won 2-0 on 2 november 2007 | CREATE TABLE table_name_82 (attendance__away_ INTEGER, result VARCHAR, date VARCHAR) | SELECT AVG(attendance__away_) FROM table_name_82 WHERE result = "won 2-0" AND date = "2 november 2007" | ### Context: CREATE TABLE table_name_82 (attendance__away_ INTEGER, result VARCHAR, date VARCHAR) ### Question: Name the average attendance with result of won 2-0 on 2 november 2007 ### Answer: SELECT AVG(attendance__away_) FROM table_name_82 WHERE result = "won 2-0" AND date = "2 november 2007" |
What is the uniform number of the player whose last name is Wiltshire? | CREATE TABLE table_name_25 (uni_number INTEGER, surname VARCHAR) | SELECT MIN(uni_number) FROM table_name_25 WHERE surname = "wiltshire" | ### Context: CREATE TABLE table_name_25 (uni_number INTEGER, surname VARCHAR) ### Question: What is the uniform number of the player whose last name is Wiltshire? ### Answer: SELECT MIN(uni_number) FROM table_name_25 WHERE surname = "wiltshire" |
When the rank is larger than 3 with a second quarter of johnson & johnson 156,515.9, what is the fourth quarter? | CREATE TABLE table_name_86 (fourth_quarter VARCHAR, rank VARCHAR, second_quarter VARCHAR) | SELECT fourth_quarter FROM table_name_86 WHERE rank > 3 AND second_quarter = "johnson & johnson 156,515.9" | ### Context: CREATE TABLE table_name_86 (fourth_quarter VARCHAR, rank VARCHAR, second_quarter VARCHAR) ### Question: When the rank is larger than 3 with a second quarter of johnson & johnson 156,515.9, what is the fourth quarter? ### Answer: SELECT fourth_quarter FROM table_name_86 WHERE rank > 3 AND second_quarter = "johnson & johnson 156,515.9" |
With a rank of 2 what is the second quarter? | CREATE TABLE table_name_69 (second_quarter VARCHAR, rank VARCHAR) | SELECT second_quarter FROM table_name_69 WHERE rank = 2 | ### Context: CREATE TABLE table_name_69 (second_quarter VARCHAR, rank VARCHAR) ### Question: With a rank of 2 what is the second quarter? ### Answer: SELECT second_quarter FROM table_name_69 WHERE rank = 2 |
When the third quarter is China Mobile 195,680.4, what is the rank? | CREATE TABLE table_name_45 (rank VARCHAR, third_quarter VARCHAR) | SELECT rank FROM table_name_45 WHERE third_quarter = "china mobile 195,680.4" | ### Context: CREATE TABLE table_name_45 (rank VARCHAR, third_quarter VARCHAR) ### Question: When the third quarter is China Mobile 195,680.4, what is the rank? ### Answer: SELECT rank FROM table_name_45 WHERE third_quarter = "china mobile 195,680.4" |
When the first quarter is procter & gamble 138,013, what is the rank? | CREATE TABLE table_name_15 (rank VARCHAR, first_quarter VARCHAR) | SELECT rank FROM table_name_15 WHERE first_quarter = "procter & gamble 138,013" | ### Context: CREATE TABLE table_name_15 (rank VARCHAR, first_quarter VARCHAR) ### Question: When the first quarter is procter & gamble 138,013, what is the rank? ### Answer: SELECT rank FROM table_name_15 WHERE first_quarter = "procter & gamble 138,013" |
When the rank is less than 4, and has a second quarter of exxon mobil 341,140.3, what is the fourth quarter? | CREATE TABLE table_name_27 (fourth_quarter VARCHAR, rank VARCHAR, second_quarter VARCHAR) | SELECT fourth_quarter FROM table_name_27 WHERE rank < 4 AND second_quarter = "exxon mobil 341,140.3" | ### Context: CREATE TABLE table_name_27 (fourth_quarter VARCHAR, rank VARCHAR, second_quarter VARCHAR) ### Question: When the rank is less than 4, and has a second quarter of exxon mobil 341,140.3, what is the fourth quarter? ### Answer: SELECT fourth_quarter FROM table_name_27 WHERE rank < 4 AND second_quarter = "exxon mobil 341,140.3" |
What is the Term end that has a Party of united australia and 184 days in office? | CREATE TABLE table_name_74 (term_end VARCHAR, party VARCHAR, term_in_office VARCHAR) | SELECT term_end FROM table_name_74 WHERE party = "united australia" AND term_in_office = "184 days" | ### Context: CREATE TABLE table_name_74 (term_end VARCHAR, party VARCHAR, term_in_office VARCHAR) ### Question: What is the Term end that has a Party of united australia and 184 days in office? ### Answer: SELECT term_end FROM table_name_74 WHERE party = "united australia" AND term_in_office = "184 days" |
What is the sum of average values for 23 yards? | CREATE TABLE table_name_5 (average INTEGER, yards VARCHAR) | SELECT SUM(average) FROM table_name_5 WHERE yards = 23 | ### Context: CREATE TABLE table_name_5 (average INTEGER, yards VARCHAR) ### Question: What is the sum of average values for 23 yards? ### Answer: SELECT SUM(average) FROM table_name_5 WHERE yards = 23 |
What are the most yards for 2 sacks and an average greater than 0? | CREATE TABLE table_name_27 (yards INTEGER, sacks VARCHAR, average VARCHAR) | SELECT MAX(yards) FROM table_name_27 WHERE sacks = 2 AND average > 0 | ### Context: CREATE TABLE table_name_27 (yards INTEGER, sacks VARCHAR, average VARCHAR) ### Question: What are the most yards for 2 sacks and an average greater than 0? ### Answer: SELECT MAX(yards) FROM table_name_27 WHERE sacks = 2 AND average > 0 |
What is listed for the Bronze, with the Location of Bangkok, and the Year of 1978? | CREATE TABLE table_name_6 (bronze VARCHAR, location VARCHAR, year VARCHAR) | SELECT bronze FROM table_name_6 WHERE location = "bangkok" AND year = 1978 | ### Context: CREATE TABLE table_name_6 (bronze VARCHAR, location VARCHAR, year VARCHAR) ### Question: What is listed for the Bronze, with the Location of Bangkok, and the Year of 1978? ### Answer: SELECT bronze FROM table_name_6 WHERE location = "bangkok" AND year = 1978 |
What's listed for the lowest Year that a Silver of Kim Kyung-Ho? | CREATE TABLE table_name_51 (year INTEGER, silver VARCHAR) | SELECT MIN(year) FROM table_name_51 WHERE silver = "kim kyung-ho" | ### Context: CREATE TABLE table_name_51 (year INTEGER, silver VARCHAR) ### Question: What's listed for the lowest Year that a Silver of Kim Kyung-Ho? ### Answer: SELECT MIN(year) FROM table_name_51 WHERE silver = "kim kyung-ho" |
What's the Gold that also has Bronze of Kim Sun-Bin? | CREATE TABLE table_name_61 (gold VARCHAR, bronze VARCHAR) | SELECT gold FROM table_name_61 WHERE bronze = "kim sun-bin" | ### Context: CREATE TABLE table_name_61 (gold VARCHAR, bronze VARCHAR) ### Question: What's the Gold that also has Bronze of Kim Sun-Bin? ### Answer: SELECT gold FROM table_name_61 WHERE bronze = "kim sun-bin" |
What's the Bronze that's also got a Godl of Kim Woo-Jin? | CREATE TABLE table_name_75 (bronze VARCHAR, gold VARCHAR) | SELECT bronze FROM table_name_75 WHERE gold = "kim woo-jin" | ### Context: CREATE TABLE table_name_75 (bronze VARCHAR, gold VARCHAR) ### Question: What's the Bronze that's also got a Godl of Kim Woo-Jin? ### Answer: SELECT bronze FROM table_name_75 WHERE gold = "kim woo-jin" |
What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi? | CREATE TABLE table_name_1 (year INTEGER, bronze VARCHAR) | SELECT MAX(year) FROM table_name_1 WHERE bronze = "wataru haraguchi" | ### Context: CREATE TABLE table_name_1 (year INTEGER, bronze VARCHAR) ### Question: What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi? ### Answer: SELECT MAX(year) FROM table_name_1 WHERE bronze = "wataru haraguchi" |
What was the score when their record was 35β23β15? | CREATE TABLE table_name_58 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_58 WHERE record = "35β23β15" | ### Context: CREATE TABLE table_name_58 (score VARCHAR, record VARCHAR) ### Question: What was the score when their record was 35β23β15? ### Answer: SELECT score FROM table_name_58 WHERE record = "35β23β15" |
Which home team has a score of 5 β 6? | CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR) | SELECT home FROM table_name_90 WHERE score = "5 β 6" | ### Context: CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR) ### Question: Which home team has a score of 5 β 6? ### Answer: SELECT home FROM table_name_90 WHERE score = "5 β 6" |
In what county is the school of Merrillville? | CREATE TABLE table_name_17 (county VARCHAR, school VARCHAR) | SELECT county FROM table_name_17 WHERE school = "merrillville" | ### Context: CREATE TABLE table_name_17 (county VARCHAR, school VARCHAR) ### Question: In what county is the school of Merrillville? ### Answer: SELECT county FROM table_name_17 WHERE school = "merrillville" |
The school of Portage was in what conference previous? | CREATE TABLE table_name_41 (previous_conference VARCHAR, school VARCHAR) | SELECT previous_conference FROM table_name_41 WHERE school = "portage" | ### Context: CREATE TABLE table_name_41 (previous_conference VARCHAR, school VARCHAR) ### Question: The school of Portage was in what conference previous? ### Answer: SELECT previous_conference FROM table_name_41 WHERE school = "portage" |
What is the name of the school that is in Valparaiso? | CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR) | SELECT school FROM table_name_37 WHERE location = "valparaiso" | ### Context: CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR) ### Question: What is the name of the school that is in Valparaiso? ### Answer: SELECT school FROM table_name_37 WHERE location = "valparaiso" |
Which FA Cup is the highest one that has a Malaysia Cup of 0, and a Player of ahmad fouzee masuri, and a Total larger than 0? | CREATE TABLE table_name_25 (fa_cup INTEGER, total VARCHAR, malaysia_cup VARCHAR, player VARCHAR) | SELECT MAX(fa_cup) FROM table_name_25 WHERE malaysia_cup = 0 AND player = "ahmad fouzee masuri" AND total > 0 | ### Context: CREATE TABLE table_name_25 (fa_cup INTEGER, total VARCHAR, malaysia_cup VARCHAR, player VARCHAR) ### Question: Which FA Cup is the highest one that has a Malaysia Cup of 0, and a Player of ahmad fouzee masuri, and a Total larger than 0? ### Answer: SELECT MAX(fa_cup) FROM table_name_25 WHERE malaysia_cup = 0 AND player = "ahmad fouzee masuri" AND total > 0 |
How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0? | CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR) | SELECT COUNT(total) FROM table_name_37 WHERE player = "ahmad fouzee masuri" AND fa_cup > 0 | ### Context: CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR) ### Question: How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0? ### Answer: SELECT COUNT(total) FROM table_name_37 WHERE player = "ahmad fouzee masuri" AND fa_cup > 0 |
Which FA Cup has a Player of khairan ezuan razali, and a Total smaller than 0? | CREATE TABLE table_name_62 (fa_cup INTEGER, player VARCHAR, total VARCHAR) | SELECT AVG(fa_cup) FROM table_name_62 WHERE player = "khairan ezuan razali" AND total < 0 | ### Context: CREATE TABLE table_name_62 (fa_cup INTEGER, player VARCHAR, total VARCHAR) ### Question: Which FA Cup has a Player of khairan ezuan razali, and a Total smaller than 0? ### Answer: SELECT AVG(fa_cup) FROM table_name_62 WHERE player = "khairan ezuan razali" AND total < 0 |
How many Malaysia Cups have a Total larger than 3, and a Player of ivan yusoff, and a League smaller than 2? | CREATE TABLE table_name_8 (malaysia_cup VARCHAR, league VARCHAR, total VARCHAR, player VARCHAR) | SELECT COUNT(malaysia_cup) FROM table_name_8 WHERE total > 3 AND player = "ivan yusoff" AND league < 2 | ### Context: CREATE TABLE table_name_8 (malaysia_cup VARCHAR, league VARCHAR, total VARCHAR, player VARCHAR) ### Question: How many Malaysia Cups have a Total larger than 3, and a Player of ivan yusoff, and a League smaller than 2? ### Answer: SELECT COUNT(malaysia_cup) FROM table_name_8 WHERE total > 3 AND player = "ivan yusoff" AND league < 2 |
Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8? | CREATE TABLE table_name_44 (fa_cup INTEGER, malaysia_cup VARCHAR, total VARCHAR) | SELECT SUM(fa_cup) FROM table_name_44 WHERE malaysia_cup > 0 AND total = 8 | ### Context: CREATE TABLE table_name_44 (fa_cup INTEGER, malaysia_cup VARCHAR, total VARCHAR) ### Question: Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8? ### Answer: SELECT SUM(fa_cup) FROM table_name_44 WHERE malaysia_cup > 0 AND total = 8 |
Which Year is the highest one that has a Venue of edmonton, canada? | CREATE TABLE table_name_50 (year INTEGER, venue VARCHAR) | SELECT MAX(year) FROM table_name_50 WHERE venue = "edmonton, canada" | ### Context: CREATE TABLE table_name_50 (year INTEGER, venue VARCHAR) ### Question: Which Year is the highest one that has a Venue of edmonton, canada? ### Answer: SELECT MAX(year) FROM table_name_50 WHERE venue = "edmonton, canada" |
Which Position has a Competition of world championships, and a Year larger than 1997? | CREATE TABLE table_name_27 (position VARCHAR, competition VARCHAR, year VARCHAR) | SELECT position FROM table_name_27 WHERE competition = "world championships" AND year > 1997 | ### Context: CREATE TABLE table_name_27 (position VARCHAR, competition VARCHAR, year VARCHAR) ### Question: Which Position has a Competition of world championships, and a Year larger than 1997? ### Answer: SELECT position FROM table_name_27 WHERE competition = "world championships" AND year > 1997 |
Which Venue has a Notes of heptathlon, and a Year of 1991? | CREATE TABLE table_name_20 (venue VARCHAR, notes VARCHAR, year VARCHAR) | SELECT venue FROM table_name_20 WHERE notes = "heptathlon" AND year = 1991 | ### Context: CREATE TABLE table_name_20 (venue VARCHAR, notes VARCHAR, year VARCHAR) ### Question: Which Venue has a Notes of heptathlon, and a Year of 1991? ### Answer: SELECT venue FROM table_name_20 WHERE notes = "heptathlon" AND year = 1991 |
What days held has noiz as the wrestler? | CREATE TABLE table_name_95 (days_held VARCHAR, wrestler VARCHAR) | SELECT days_held FROM table_name_95 WHERE wrestler = "noiz" | ### Context: CREATE TABLE table_name_95 (days_held VARCHAR, wrestler VARCHAR) ### Question: What days held has noiz as the wrestler? ### Answer: SELECT days_held FROM table_name_95 WHERE wrestler = "noiz" |
What location has tatsuhito takaiwa as the wrestler? | CREATE TABLE table_name_14 (location VARCHAR, wrestler VARCHAR) | SELECT location FROM table_name_14 WHERE wrestler = "tatsuhito takaiwa" | ### Context: CREATE TABLE table_name_14 (location VARCHAR, wrestler VARCHAR) ### Question: What location has tatsuhito takaiwa as the wrestler? ### Answer: SELECT location FROM table_name_14 WHERE wrestler = "tatsuhito takaiwa" |
What event has 8 as the days held? | CREATE TABLE table_name_33 (event VARCHAR, days_held VARCHAR) | SELECT event FROM table_name_33 WHERE days_held = "8" | ### Context: CREATE TABLE table_name_33 (event VARCHAR, days_held VARCHAR) ### Question: What event has 8 as the days held? ### Answer: SELECT event FROM table_name_33 WHERE days_held = "8" |
What event has unknown as the days held.? | CREATE TABLE table_name_98 (event VARCHAR, days_held VARCHAR) | SELECT event FROM table_name_98 WHERE days_held = "unknown" | ### Context: CREATE TABLE table_name_98 (event VARCHAR, days_held VARCHAR) ### Question: What event has unknown as the days held.? ### Answer: SELECT event FROM table_name_98 WHERE days_held = "unknown" |
What is the Displacement of the Iveco F1CE3481E Engine? | CREATE TABLE table_name_87 (displacement VARCHAR, engine VARCHAR) | SELECT displacement FROM table_name_87 WHERE engine = "iveco f1ce3481e" | ### Context: CREATE TABLE table_name_87 (displacement VARCHAR, engine VARCHAR) ### Question: What is the Displacement of the Iveco F1CE3481E Engine? ### Answer: SELECT displacement FROM table_name_87 WHERE engine = "iveco f1ce3481e" |
What is the Displacement of the 180 Multijet Power/3.0 HDI Model? | CREATE TABLE table_name_68 (displacement VARCHAR, model VARCHAR) | SELECT displacement FROM table_name_68 WHERE model = "180 multijet power/3.0 hdi" | ### Context: CREATE TABLE table_name_68 (displacement VARCHAR, model VARCHAR) ### Question: What is the Displacement of the 180 Multijet Power/3.0 HDI Model? ### Answer: SELECT displacement FROM table_name_68 WHERE model = "180 multijet power/3.0 hdi" |
What is the Valvetrain of the Diesel Engines Model? | CREATE TABLE table_name_12 (valvetrain VARCHAR, model VARCHAR) | SELECT valvetrain FROM table_name_12 WHERE model = "diesel engines" | ### Context: CREATE TABLE table_name_12 (valvetrain VARCHAR, model VARCHAR) ### Question: What is the Valvetrain of the Diesel Engines Model? ### Answer: SELECT valvetrain FROM table_name_12 WHERE model = "diesel engines" |
Year(s) won of 1994 , 1997 has what average total? | CREATE TABLE table_name_6 (total INTEGER, year_s__won VARCHAR) | SELECT AVG(total) FROM table_name_6 WHERE year_s__won = "1994 , 1997" | ### Context: CREATE TABLE table_name_6 (total INTEGER, year_s__won VARCHAR) ### Question: Year(s) won of 1994 , 1997 has what average total? ### Answer: SELECT AVG(total) FROM table_name_6 WHERE year_s__won = "1994 , 1997" |
Player of corey pavin, and a To par larger than 5 has what average total? | CREATE TABLE table_name_41 (total INTEGER, player VARCHAR, to_par VARCHAR) | SELECT AVG(total) FROM table_name_41 WHERE player = "corey pavin" AND to_par > 5 | ### Context: CREATE TABLE table_name_41 (total INTEGER, player VARCHAR, to_par VARCHAR) ### Question: Player of corey pavin, and a To par larger than 5 has what average total? ### Answer: SELECT AVG(total) FROM table_name_41 WHERE player = "corey pavin" AND to_par > 5 |
Total smaller than 285, and a To par larger than 1 belongs to what player? | CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_29 WHERE total < 285 AND to_par > 1 | ### Context: CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR) ### Question: Total smaller than 285, and a To par larger than 1 belongs to what player? ### Answer: SELECT player FROM table_name_29 WHERE total < 285 AND to_par > 1 |
Total larger than 285, and a Finish of t30 belongs to what player? | CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, finish VARCHAR) | SELECT player FROM table_name_83 WHERE total > 285 AND finish = "t30" | ### Context: CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, finish VARCHAR) ### Question: Total larger than 285, and a Finish of t30 belongs to what player? ### Answer: SELECT player FROM table_name_83 WHERE total > 285 AND finish = "t30" |
Which player for a team with an 18-20 record had the most rebounds in a game? | CREATE TABLE table_name_38 (high_rebounds VARCHAR, record VARCHAR) | SELECT high_rebounds FROM table_name_38 WHERE record = "18-20" | ### Context: CREATE TABLE table_name_38 (high_rebounds VARCHAR, record VARCHAR) ### Question: Which player for a team with an 18-20 record had the most rebounds in a game? ### Answer: SELECT high_rebounds FROM table_name_38 WHERE record = "18-20" |
Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74 | CREATE TABLE table_name_54 (frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR, call_sign VARCHAR) | SELECT COUNT(frequency_mhz) FROM table_name_54 WHERE class = "d" AND call_sign = "k201bm" AND erp_w < 74 | ### Context: CREATE TABLE table_name_54 (frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR, call_sign VARCHAR) ### Question: Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74 ### Answer: SELECT COUNT(frequency_mhz) FROM table_name_54 WHERE class = "d" AND call_sign = "k201bm" AND erp_w < 74 |
Name the least frequency Mhz with call sign of k202ag | CREATE TABLE table_name_24 (frequency_mhz INTEGER, call_sign VARCHAR) | SELECT MIN(frequency_mhz) FROM table_name_24 WHERE call_sign = "k202ag" | ### Context: CREATE TABLE table_name_24 (frequency_mhz INTEGER, call_sign VARCHAR) ### Question: Name the least frequency Mhz with call sign of k202ag ### Answer: SELECT MIN(frequency_mhz) FROM table_name_24 WHERE call_sign = "k202ag" |
Name the class with call sign of k220cp | CREATE TABLE table_name_2 (class VARCHAR, call_sign VARCHAR) | SELECT class FROM table_name_2 WHERE call_sign = "k220cp" | ### Context: CREATE TABLE table_name_2 (class VARCHAR, call_sign VARCHAR) ### Question: Name the class with call sign of k220cp ### Answer: SELECT class FROM table_name_2 WHERE call_sign = "k220cp" |
What is the Winnipeg Jets record? | CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_51 WHERE opponent = "winnipeg jets" | ### Context: CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR) ### Question: What is the Winnipeg Jets record? ### Answer: SELECT record FROM table_name_51 WHERE opponent = "winnipeg jets" |
What's the stadium on November 8? | CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_26 WHERE date = "november 8" | ### Context: CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR) ### Question: What's the stadium on November 8? ### Answer: SELECT home FROM table_name_26 WHERE date = "november 8" |
Who was the visitor on March 17? | CREATE TABLE table_name_53 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_53 WHERE date = "march 17" | ### Context: CREATE TABLE table_name_53 (visitor VARCHAR, date VARCHAR) ### Question: Who was the visitor on March 17? ### Answer: SELECT visitor FROM table_name_53 WHERE date = "march 17" |
What's the score for Toronto Maple Leafs on November 10? | CREATE TABLE table_name_49 (score VARCHAR, home VARCHAR, date VARCHAR) | SELECT score FROM table_name_49 WHERE home = "toronto maple leafs" AND date = "november 10" | ### Context: CREATE TABLE table_name_49 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: What's the score for Toronto Maple Leafs on November 10? ### Answer: SELECT score FROM table_name_49 WHERE home = "toronto maple leafs" AND date = "november 10" |
Who was the visitor on October 31? | CREATE TABLE table_name_75 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_75 WHERE date = "october 31" | ### Context: CREATE TABLE table_name_75 (visitor VARCHAR, date VARCHAR) ### Question: Who was the visitor on October 31? ### Answer: SELECT visitor FROM table_name_75 WHERE date = "october 31" |
What is the rank associated with 0 wins and a 350cc class? | CREATE TABLE table_name_42 (rank VARCHAR, wins VARCHAR, class VARCHAR) | SELECT rank FROM table_name_42 WHERE wins = 0 AND class = "350cc" | ### Context: CREATE TABLE table_name_42 (rank VARCHAR, wins VARCHAR, class VARCHAR) ### Question: What is the rank associated with 0 wins and a 350cc class? ### Answer: SELECT rank FROM table_name_42 WHERE wins = 0 AND class = "350cc" |
What is the run 2 of the athlete from Australia with a run 1 less than 53.75? | CREATE TABLE table_name_73 (run_2 VARCHAR, country VARCHAR, run_1 VARCHAR) | SELECT run_2 FROM table_name_73 WHERE country = "australia" AND run_1 < 53.75 | ### Context: CREATE TABLE table_name_73 (run_2 VARCHAR, country VARCHAR, run_1 VARCHAR) ### Question: What is the run 2 of the athlete from Australia with a run 1 less than 53.75? ### Answer: SELECT run_2 FROM table_name_73 WHERE country = "australia" AND run_1 < 53.75 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.