question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
In italy, when the stolen ends were 10 and blank ends were under 14, what's the lowest ends won? | CREATE TABLE table_name_45 (ends_won INTEGER, blank_ends VARCHAR, stolen_ends VARCHAR, locale VARCHAR) | SELECT MIN(ends_won) FROM table_name_45 WHERE stolen_ends = 10 AND locale = "italy" AND blank_ends < 14 | ### Context: CREATE TABLE table_name_45 (ends_won INTEGER, blank_ends VARCHAR, stolen_ends VARCHAR, locale VARCHAR) ### Question: In italy, when the stolen ends were 10 and blank ends were under 14, what's the lowest ends won? ### Answer: SELECT MIN(ends_won) FROM table_name_45 WHERE stolen_ends = 10 AND locale = "italy" AND blank_ends < 14 |
When ends won were below 57 but stolen ends are more than 14, what's the highest blank ends found? | CREATE TABLE table_name_53 (blank_ends INTEGER, stolen_ends VARCHAR, ends_won VARCHAR) | SELECT MAX(blank_ends) FROM table_name_53 WHERE stolen_ends > 14 AND ends_won < 57 | ### Context: CREATE TABLE table_name_53 (blank_ends INTEGER, stolen_ends VARCHAR, ends_won VARCHAR) ### Question: When ends won were below 57 but stolen ends are more than 14, what's the highest blank ends found? ### Answer: SELECT MAX(blank_ends) FROM table_name_53 WHERE stolen_ends > 14 AND ends_won < 57 |
What was the attendance record for Leicester City? | CREATE TABLE table_name_17 (attendance VARCHAR, home_team VARCHAR) | SELECT attendance FROM table_name_17 WHERE home_team = "leicester city" | ### Context: CREATE TABLE table_name_17 (attendance VARCHAR, home_team VARCHAR) ### Question: What was the attendance record for Leicester City? ### Answer: SELECT attendance FROM table_name_17 WHERE home_team = "leicester city" |
What was the attendance for Arsenal? | CREATE TABLE table_name_11 (attendance VARCHAR, home_team VARCHAR) | SELECT attendance FROM table_name_11 WHERE home_team = "arsenal" | ### Context: CREATE TABLE table_name_11 (attendance VARCHAR, home_team VARCHAR) ### Question: What was the attendance for Arsenal? ### Answer: SELECT attendance FROM table_name_11 WHERE home_team = "arsenal" |
Who was the home team against the Bolton Wanderers? | CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_13 WHERE away_team = "bolton wanderers" | ### Context: CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team against the Bolton Wanderers? ### Answer: SELECT home_team FROM table_name_13 WHERE away_team = "bolton wanderers" |
Who was the opponent of the match in South Dakota, United States which has 2 rounds? | CREATE TABLE table_name_63 (opponent VARCHAR, round VARCHAR, location VARCHAR) | SELECT opponent FROM table_name_63 WHERE round = 2 AND location = "south dakota, united states" | ### Context: CREATE TABLE table_name_63 (opponent VARCHAR, round VARCHAR, location VARCHAR) ### Question: Who was the opponent of the match in South Dakota, United States which has 2 rounds? ### Answer: SELECT opponent FROM table_name_63 WHERE round = 2 AND location = "south dakota, united states" |
What is the total ATMs with off-site ATMs greater than 3672, and less than 1685 as the number of branches? | CREATE TABLE table_name_32 (total_atms VARCHAR, off_site_atms VARCHAR, number_of_branches VARCHAR) | SELECT COUNT(total_atms) FROM table_name_32 WHERE off_site_atms > 3672 AND number_of_branches < 1685 | ### Context: CREATE TABLE table_name_32 (total_atms VARCHAR, off_site_atms VARCHAR, number_of_branches VARCHAR) ### Question: What is the total ATMs with off-site ATMs greater than 3672, and less than 1685 as the number of branches? ### Answer: SELECT COUNT(total_atms) FROM table_name_32 WHERE off_site_atms > 3672 AND number_of_branches < 1685 |
What is the total number of branches when the on-site ATMS is 1548, and the off-site ATMs is bigger than 3672? | CREATE TABLE table_name_84 (number_of_branches INTEGER, on_site_atms VARCHAR, off_site_atms VARCHAR) | SELECT SUM(number_of_branches) FROM table_name_84 WHERE on_site_atms = 1548 AND off_site_atms > 3672 | ### Context: CREATE TABLE table_name_84 (number_of_branches INTEGER, on_site_atms VARCHAR, off_site_atms VARCHAR) ### Question: What is the total number of branches when the on-site ATMS is 1548, and the off-site ATMs is bigger than 3672? ### Answer: SELECT SUM(number_of_branches) FROM table_name_84 WHERE on_site_atms = 1548 AND off_site_atms > 3672 |
What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883? | CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR) | SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = "new private sector banks" AND on_site_atms > 1883 | ### Context: CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR) ### Question: What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883? ### Answer: SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = "new private sector banks" AND on_site_atms > 1883 |
What is the mean on-site ATMS that have off-site ATMs of 1567, and the total number of ATMs less than 4772? | CREATE TABLE table_name_20 (on_site_atms INTEGER, off_site_atms VARCHAR, total_atms VARCHAR) | SELECT AVG(on_site_atms) FROM table_name_20 WHERE off_site_atms = 1567 AND total_atms < 4772 | ### Context: CREATE TABLE table_name_20 (on_site_atms INTEGER, off_site_atms VARCHAR, total_atms VARCHAR) ### Question: What is the mean on-site ATMS that have off-site ATMs of 1567, and the total number of ATMs less than 4772? ### Answer: SELECT AVG(on_site_atms) FROM table_name_20 WHERE off_site_atms = 1567 AND total_atms < 4772 |
With foreign banks as the bank type, and on-site ATMS less than 218, what is the average off-site ATMs? | CREATE TABLE table_name_66 (off_site_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR) | SELECT AVG(off_site_atms) FROM table_name_66 WHERE bank_type = "foreign banks" AND on_site_atms < 218 | ### Context: CREATE TABLE table_name_66 (off_site_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR) ### Question: With foreign banks as the bank type, and on-site ATMS less than 218, what is the average off-site ATMs? ### Answer: SELECT AVG(off_site_atms) FROM table_name_66 WHERE bank_type = "foreign banks" AND on_site_atms < 218 |
What is Effect, when Weapon is "35mm/Small arms fire"? | CREATE TABLE table_name_53 (effect VARCHAR, weapon VARCHAR) | SELECT effect FROM table_name_53 WHERE weapon = "35mm/small arms fire" | ### Context: CREATE TABLE table_name_53 (effect VARCHAR, weapon VARCHAR) ### Question: What is Effect, when Weapon is "35mm/Small arms fire"? ### Answer: SELECT effect FROM table_name_53 WHERE weapon = "35mm/small arms fire" |
What is Date, when Effect is "Shot Down", and when Place is "South of Stanley Airport"? | CREATE TABLE table_name_82 (date VARCHAR, effect VARCHAR, place VARCHAR) | SELECT date FROM table_name_82 WHERE effect = "shot down" AND place = "south of stanley airport" | ### Context: CREATE TABLE table_name_82 (date VARCHAR, effect VARCHAR, place VARCHAR) ### Question: What is Date, when Effect is "Shot Down", and when Place is "South of Stanley Airport"? ### Answer: SELECT date FROM table_name_82 WHERE effect = "shot down" AND place = "south of stanley airport" |
What is Place, when Weapon is "35mm fire", and when Date is "27 May 1982"? | CREATE TABLE table_name_15 (place VARCHAR, weapon VARCHAR, date VARCHAR) | SELECT place FROM table_name_15 WHERE weapon = "35mm fire" AND date = "27 may 1982" | ### Context: CREATE TABLE table_name_15 (place VARCHAR, weapon VARCHAR, date VARCHAR) ### Question: What is Place, when Weapon is "35mm fire", and when Date is "27 May 1982"? ### Answer: SELECT place FROM table_name_15 WHERE weapon = "35mm fire" AND date = "27 may 1982" |
What is Pilot, when Place is "Goose Green", and when Date is "27 May 1982"? | CREATE TABLE table_name_8 (pilot VARCHAR, place VARCHAR, date VARCHAR) | SELECT pilot FROM table_name_8 WHERE place = "goose green" AND date = "27 may 1982" | ### Context: CREATE TABLE table_name_8 (pilot VARCHAR, place VARCHAR, date VARCHAR) ### Question: What is Pilot, when Place is "Goose Green", and when Date is "27 May 1982"? ### Answer: SELECT pilot FROM table_name_8 WHERE place = "goose green" AND date = "27 may 1982" |
What is Place, when Weapon is "35mm/Small arms fire"? | CREATE TABLE table_name_6 (place VARCHAR, weapon VARCHAR) | SELECT place FROM table_name_6 WHERE weapon = "35mm/small arms fire" | ### Context: CREATE TABLE table_name_6 (place VARCHAR, weapon VARCHAR) ### Question: What is Place, when Weapon is "35mm/Small arms fire"? ### Answer: SELECT place FROM table_name_6 WHERE weapon = "35mm/small arms fire" |
What is Pilot, when Weapon is "35mm fire", and when Date is "4 May 1982"? | CREATE TABLE table_name_48 (pilot VARCHAR, weapon VARCHAR, date VARCHAR) | SELECT pilot FROM table_name_48 WHERE weapon = "35mm fire" AND date = "4 may 1982" | ### Context: CREATE TABLE table_name_48 (pilot VARCHAR, weapon VARCHAR, date VARCHAR) ### Question: What is Pilot, when Weapon is "35mm fire", and when Date is "4 May 1982"? ### Answer: SELECT pilot FROM table_name_48 WHERE weapon = "35mm fire" AND date = "4 may 1982" |
Who is the player with a Jersey Number(s) greater than 30? | CREATE TABLE table_name_22 (player VARCHAR, jersey_number_s_ INTEGER) | SELECT player FROM table_name_22 WHERE jersey_number_s_ > 30 | ### Context: CREATE TABLE table_name_22 (player VARCHAR, jersey_number_s_ INTEGER) ### Question: Who is the player with a Jersey Number(s) greater than 30? ### Answer: SELECT player FROM table_name_22 WHERE jersey_number_s_ > 30 |
What is the Years of the player with Jersey Number(s) of 44? | CREATE TABLE table_name_73 (years VARCHAR, jersey_number_s_ VARCHAR) | SELECT years FROM table_name_73 WHERE jersey_number_s_ = 44 | ### Context: CREATE TABLE table_name_73 (years VARCHAR, jersey_number_s_ VARCHAR) ### Question: What is the Years of the player with Jersey Number(s) of 44? ### Answer: SELECT years FROM table_name_73 WHERE jersey_number_s_ = 44 |
What was the population in North Jeolla? | CREATE TABLE table_name_63 (population__2010_ VARCHAR, province VARCHAR) | SELECT population__2010_ FROM table_name_63 WHERE province = "north jeolla" | ### Context: CREATE TABLE table_name_63 (population__2010_ VARCHAR, province VARCHAR) ### Question: What was the population in North Jeolla? ### Answer: SELECT population__2010_ FROM table_name_63 WHERE province = "north jeolla" |
What's Korean for εζ₯ε· Hanja? | CREATE TABLE table_name_46 (korean VARCHAR, hanja VARCHAR) | SELECT korean FROM table_name_46 WHERE hanja = "εζ₯ε·" | ### Context: CREATE TABLE table_name_46 (korean VARCHAR, hanja VARCHAR) ### Question: What's Korean for εζ₯ε· Hanja? ### Answer: SELECT korean FROM table_name_46 WHERE hanja = "εζ₯ε·" |
What's the Korean word for Pohang? | CREATE TABLE table_name_89 (korean VARCHAR, city VARCHAR) | SELECT korean FROM table_name_89 WHERE city = "pohang" | ### Context: CREATE TABLE table_name_89 (korean VARCHAR, city VARCHAR) ### Question: What's the Korean word for Pohang? ### Answer: SELECT korean FROM table_name_89 WHERE city = "pohang" |
What's the team nickname of the private/catholic school whose enrollment is larger than 3,490? | CREATE TABLE table_name_25 (team_nickname VARCHAR, affiliation VARCHAR, enrollment VARCHAR) | SELECT team_nickname FROM table_name_25 WHERE affiliation = "private/catholic" AND enrollment > 3 OFFSET 490 | ### Context: CREATE TABLE table_name_25 (team_nickname VARCHAR, affiliation VARCHAR, enrollment VARCHAR) ### Question: What's the team nickname of the private/catholic school whose enrollment is larger than 3,490? ### Answer: SELECT team_nickname FROM table_name_25 WHERE affiliation = "private/catholic" AND enrollment > 3 OFFSET 490 |
What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846? | CREATE TABLE table_name_62 (enrollment INTEGER, founded VARCHAR, location VARCHAR, affiliation VARCHAR) | SELECT SUM(enrollment) FROM table_name_62 WHERE location = "buffalo, new york" AND affiliation = "public" AND founded > 1846 | ### Context: CREATE TABLE table_name_62 (enrollment INTEGER, founded VARCHAR, location VARCHAR, affiliation VARCHAR) ### Question: What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846? ### Answer: SELECT SUM(enrollment) FROM table_name_62 WHERE location = "buffalo, new york" AND affiliation = "public" AND founded > 1846 |
What year did Bangkok University and Chunnam Dragons have a score of 0-0? | CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VARCHAR) | SELECT SUM(season) FROM table_name_31 WHERE team_1 = "bangkok university" AND score = "0-0" AND team_2 = "chunnam dragons" | ### Context: CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VARCHAR) ### Question: What year did Bangkok University and Chunnam Dragons have a score of 0-0? ### Answer: SELECT SUM(season) FROM table_name_31 WHERE team_1 = "bangkok university" AND score = "0-0" AND team_2 = "chunnam dragons" |
What is the transfer window for Christian Nerlinger? | CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR) | SELECT transfer_window FROM table_name_23 WHERE name = "christian nerlinger" | ### Context: CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR) ### Question: What is the transfer window for Christian Nerlinger? ### Answer: SELECT transfer_window FROM table_name_23 WHERE name = "christian nerlinger" |
What is the name for the end of contract because they're moving to Falkirk? | CREATE TABLE table_name_63 (name VARCHAR, type VARCHAR, moving_to VARCHAR) | SELECT name FROM table_name_63 WHERE type = "end of contract" AND moving_to = "falkirk" | ### Context: CREATE TABLE table_name_63 (name VARCHAR, type VARCHAR, moving_to VARCHAR) ### Question: What is the name for the end of contract because they're moving to Falkirk? ### Answer: SELECT name FROM table_name_63 WHERE type = "end of contract" AND moving_to = "falkirk" |
What type of transfer window is winter in Ita? | CREATE TABLE table_name_8 (type VARCHAR, transfer_window VARCHAR, nat VARCHAR) | SELECT type FROM table_name_8 WHERE transfer_window = "winter" AND nat = "ita" | ### Context: CREATE TABLE table_name_8 (type VARCHAR, transfer_window VARCHAR, nat VARCHAR) ### Question: What type of transfer window is winter in Ita? ### Answer: SELECT type FROM table_name_8 WHERE transfer_window = "winter" AND nat = "ita" |
What is the type of loan and the transfer fee loan? | CREATE TABLE table_name_32 (nat VARCHAR, type VARCHAR, transfer_fee VARCHAR) | SELECT nat FROM table_name_32 WHERE type = "loan" AND transfer_fee = "loan" | ### Context: CREATE TABLE table_name_32 (nat VARCHAR, type VARCHAR, transfer_fee VARCHAR) ### Question: What is the type of loan and the transfer fee loan? ### Answer: SELECT nat FROM table_name_32 WHERE type = "loan" AND transfer_fee = "loan" |
On what date did a streak start on November 14? | CREATE TABLE table_name_30 (streak VARCHAR, date VARCHAR) | SELECT streak FROM table_name_30 WHERE date = "november 14" | ### Context: CREATE TABLE table_name_30 (streak VARCHAR, date VARCHAR) ### Question: On what date did a streak start on November 14? ### Answer: SELECT streak FROM table_name_30 WHERE date = "november 14" |
What was the score of game 36? | CREATE TABLE table_name_97 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_97 WHERE game = 36 | ### Context: CREATE TABLE table_name_97 (score VARCHAR, game VARCHAR) ### Question: What was the score of game 36? ### Answer: SELECT score FROM table_name_97 WHERE game = 36 |
Where was the third bridge over panama canal? | CREATE TABLE table_name_83 (location VARCHAR, name VARCHAR) | SELECT location FROM table_name_83 WHERE name = "third bridge over panama canal" | ### Context: CREATE TABLE table_name_83 (location VARCHAR, name VARCHAR) ### Question: Where was the third bridge over panama canal? ### Answer: SELECT location FROM table_name_83 WHERE name = "third bridge over panama canal" |
Name the Comp which has a Name of smith? | CREATE TABLE table_name_71 (comp VARCHAR, name VARCHAR) | SELECT comp FROM table_name_71 WHERE name = "smith" | ### Context: CREATE TABLE table_name_71 (comp VARCHAR, name VARCHAR) ### Question: Name the Comp which has a Name of smith? ### Answer: SELECT comp FROM table_name_71 WHERE name = "smith" |
Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100? | CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR) | SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = "brytus" AND rating < 100 | ### Context: CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR) ### Question: Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100? ### Answer: SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = "brytus" AND rating < 100 |
Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77? | CREATE TABLE table_name_19 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR) | SELECT MAX(comp) FROM table_name_19 WHERE yds_game > 0 AND name = "bostick" AND rating < 91.77 | ### Context: CREATE TABLE table_name_19 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR) ### Question: Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77? ### Answer: SELECT MAX(comp) FROM table_name_19 WHERE yds_game > 0 AND name = "bostick" AND rating < 91.77 |
Can you tell me the sum of Score that has the Place of t5, and the Country of united states, and the Player of jeff maggert? | CREATE TABLE table_name_27 (score INTEGER, player VARCHAR, place VARCHAR, country VARCHAR) | SELECT SUM(score) FROM table_name_27 WHERE place = "t5" AND country = "united states" AND player = "jeff maggert" | ### Context: CREATE TABLE table_name_27 (score INTEGER, player VARCHAR, place VARCHAR, country VARCHAR) ### Question: Can you tell me the sum of Score that has the Place of t5, and the Country of united states, and the Player of jeff maggert? ### Answer: SELECT SUM(score) FROM table_name_27 WHERE place = "t5" AND country = "united states" AND player = "jeff maggert" |
Which event had a decision method? | CREATE TABLE table_name_12 (event VARCHAR, method VARCHAR) | SELECT event FROM table_name_12 WHERE method = "decision" | ### Context: CREATE TABLE table_name_12 (event VARCHAR, method VARCHAR) ### Question: Which event had a decision method? ### Answer: SELECT event FROM table_name_12 WHERE method = "decision" |
Where was the method of tko? | CREATE TABLE table_name_34 (location VARCHAR, method VARCHAR) | SELECT location FROM table_name_34 WHERE method = "tko" | ### Context: CREATE TABLE table_name_34 (location VARCHAR, method VARCHAR) ### Question: Where was the method of tko? ### Answer: SELECT location FROM table_name_34 WHERE method = "tko" |
What is the time of kenya, which is ranked 2? | CREATE TABLE table_name_30 (time VARCHAR, nation VARCHAR, rank VARCHAR) | SELECT time FROM table_name_30 WHERE nation = "kenya" AND rank = "2" | ### Context: CREATE TABLE table_name_30 (time VARCHAR, nation VARCHAR, rank VARCHAR) ### Question: What is the time of kenya, which is ranked 2? ### Answer: SELECT time FROM table_name_30 WHERE nation = "kenya" AND rank = "2" |
What race is on 26 June 2011? | CREATE TABLE table_name_18 (race VARCHAR, date VARCHAR) | SELECT race FROM table_name_18 WHERE date = "26 june 2011" | ### Context: CREATE TABLE table_name_18 (race VARCHAR, date VARCHAR) ### Question: What race is on 26 June 2011? ### Answer: SELECT race FROM table_name_18 WHERE date = "26 june 2011" |
What is the time of the peachtree road race in kenya? | CREATE TABLE table_name_57 (time VARCHAR, nation VARCHAR, race VARCHAR) | SELECT time FROM table_name_57 WHERE nation = "kenya" AND race = "peachtree road race" | ### Context: CREATE TABLE table_name_57 (time VARCHAR, nation VARCHAR, race VARCHAR) ### Question: What is the time of the peachtree road race in kenya? ### Answer: SELECT time FROM table_name_57 WHERE nation = "kenya" AND race = "peachtree road race" |
What is the score of team chicago? | CREATE TABLE table_name_64 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_64 WHERE team = "chicago" | ### Context: CREATE TABLE table_name_64 (score VARCHAR, team VARCHAR) ### Question: What is the score of team chicago? ### Answer: SELECT score FROM table_name_64 WHERE team = "chicago" |
What is the record of team utah? | CREATE TABLE table_name_61 (record VARCHAR, team VARCHAR) | SELECT record FROM table_name_61 WHERE team = "utah" | ### Context: CREATE TABLE table_name_61 (record VARCHAR, team VARCHAR) ### Question: What is the record of team utah? ### Answer: SELECT record FROM table_name_61 WHERE team = "utah" |
What is the location and attendance of game 63? | CREATE TABLE table_name_29 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_name_29 WHERE game = 63 | ### Context: CREATE TABLE table_name_29 (location_attendance VARCHAR, game VARCHAR) ### Question: What is the location and attendance of game 63? ### Answer: SELECT location_attendance FROM table_name_29 WHERE game = 63 |
What is the nationality of the person who played small forward? | CREATE TABLE table_name_82 (nationality VARCHAR, position VARCHAR) | SELECT nationality FROM table_name_82 WHERE position = "small forward" | ### Context: CREATE TABLE table_name_82 (nationality VARCHAR, position VARCHAR) ### Question: What is the nationality of the person who played small forward? ### Answer: SELECT nationality FROM table_name_82 WHERE position = "small forward" |
What position did Rich Manning play? | CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_87 WHERE player = "rich manning" | ### Context: CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR) ### Question: What position did Rich Manning play? ### Answer: SELECT position FROM table_name_87 WHERE player = "rich manning" |
What position did the player who was with the grizzlies from 2007-2009 play? | CREATE TABLE table_name_89 (position VARCHAR, years_for_grizzlies VARCHAR) | SELECT position FROM table_name_89 WHERE years_for_grizzlies = "2007-2009" | ### Context: CREATE TABLE table_name_89 (position VARCHAR, years_for_grizzlies VARCHAR) ### Question: What position did the player who was with the grizzlies from 2007-2009 play? ### Answer: SELECT position FROM table_name_89 WHERE years_for_grizzlies = "2007-2009" |
Who is the player in the 2008 draft with a pick greater than 5? | CREATE TABLE table_name_26 (player VARCHAR, draft VARCHAR, pick VARCHAR) | SELECT player FROM table_name_26 WHERE draft = 2008 AND pick > 5 | ### Context: CREATE TABLE table_name_26 (player VARCHAR, draft VARCHAR, pick VARCHAR) ### Question: Who is the player in the 2008 draft with a pick greater than 5? ### Answer: SELECT player FROM table_name_26 WHERE draft = 2008 AND pick > 5 |
What is the total pick number of the player from a round greater than 1, a draft before 2002, and with the college/high school/club of western kentucky? | CREATE TABLE table_name_51 (pick VARCHAR, college_high_school_club VARCHAR, round VARCHAR, draft VARCHAR) | SELECT COUNT(pick) FROM table_name_51 WHERE round > 1 AND draft < 2002 AND college_high_school_club = "western kentucky" | ### Context: CREATE TABLE table_name_51 (pick VARCHAR, college_high_school_club VARCHAR, round VARCHAR, draft VARCHAR) ### Question: What is the total pick number of the player from a round greater than 1, a draft before 2002, and with the college/high school/club of western kentucky? ### Answer: SELECT COUNT(pick) FROM table_name_51 WHERE round > 1 AND draft < 2002 AND college_high_school_club = "western kentucky" |
What is the lowest draft number with a 48 pick? | CREATE TABLE table_name_94 (draft INTEGER, pick VARCHAR) | SELECT MIN(draft) FROM table_name_94 WHERE pick = 48 | ### Context: CREATE TABLE table_name_94 (draft INTEGER, pick VARCHAR) ### Question: What is the lowest draft number with a 48 pick? ### Answer: SELECT MIN(draft) FROM table_name_94 WHERE pick = 48 |
Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m? | CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc_team VARCHAR, position VARCHAR) | SELECT name FROM table_name_70 WHERE aafc_team = "los angeles dons" AND position = "fb" AND college = "oklahoma a&m" | ### Context: CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc_team VARCHAR, position VARCHAR) ### Question: Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m? ### Answer: SELECT name FROM table_name_70 WHERE aafc_team = "los angeles dons" AND position = "fb" AND college = "oklahoma a&m" |
Which Round has a College of tulsa, and a Pick larger than 61? | CREATE TABLE table_name_78 (round INTEGER, college VARCHAR, pick VARCHAR) | SELECT AVG(round) FROM table_name_78 WHERE college = "tulsa" AND pick > 61 | ### Context: CREATE TABLE table_name_78 (round INTEGER, college VARCHAR, pick VARCHAR) ### Question: Which Round has a College of tulsa, and a Pick larger than 61? ### Answer: SELECT AVG(round) FROM table_name_78 WHERE college = "tulsa" AND pick > 61 |
Which Position has a Round smaller than 5, and a Pick of 5? | CREATE TABLE table_name_75 (position VARCHAR, round VARCHAR, pick VARCHAR) | SELECT position FROM table_name_75 WHERE round < 5 AND pick = 5 | ### Context: CREATE TABLE table_name_75 (position VARCHAR, round VARCHAR, pick VARCHAR) ### Question: Which Position has a Round smaller than 5, and a Pick of 5? ### Answer: SELECT position FROM table_name_75 WHERE round < 5 AND pick = 5 |
Which College has a Name of hardy brown? | CREATE TABLE table_name_93 (college VARCHAR, name VARCHAR) | SELECT college FROM table_name_93 WHERE name = "hardy brown" | ### Context: CREATE TABLE table_name_93 (college VARCHAR, name VARCHAR) ### Question: Which College has a Name of hardy brown? ### Answer: SELECT college FROM table_name_93 WHERE name = "hardy brown" |
Who was the winner for Peter Jackson Racing at Mallala Motor Sport Park? | CREATE TABLE table_name_9 (winner VARCHAR, team VARCHAR, circuit VARCHAR) | SELECT winner FROM table_name_9 WHERE team = "peter jackson racing" AND circuit = "mallala motor sport park" | ### Context: CREATE TABLE table_name_9 (winner VARCHAR, team VARCHAR, circuit VARCHAR) ### Question: Who was the winner for Peter Jackson Racing at Mallala Motor Sport Park? ### Answer: SELECT winner FROM table_name_9 WHERE team = "peter jackson racing" AND circuit = "mallala motor sport park" |
What city had a series of atcc round 1? | CREATE TABLE table_name_96 (city___state VARCHAR, series VARCHAR) | SELECT city___state FROM table_name_96 WHERE series = "atcc round 1" | ### Context: CREATE TABLE table_name_96 (city___state VARCHAR, series VARCHAR) ### Question: What city had a series of atcc round 1? ### Answer: SELECT city___state FROM table_name_96 WHERE series = "atcc round 1" |
Who was the winner for ASTC round 8? | CREATE TABLE table_name_63 (winner VARCHAR, series VARCHAR) | SELECT winner FROM table_name_63 WHERE series = "astc round 8" | ### Context: CREATE TABLE table_name_63 (winner VARCHAR, series VARCHAR) ### Question: Who was the winner for ASTC round 8? ### Answer: SELECT winner FROM table_name_63 WHERE series = "astc round 8" |
Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)? | CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) | SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)" | ### Context: CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)? ### Answer: SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)" |
Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw? | CREATE TABLE table_name_63 (round INTEGER, college_junior_club_team__league_ VARCHAR, position VARCHAR) | SELECT AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = "hamilton red wings (oha)" AND position = "rw" | ### Context: CREATE TABLE table_name_63 (round INTEGER, college_junior_club_team__league_ VARCHAR, position VARCHAR) ### Question: Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw? ### Answer: SELECT AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = "hamilton red wings (oha)" AND position = "rw" |
Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)? | CREATE TABLE table_name_11 (round INTEGER, position VARCHAR, college_junior_club_team__league_ VARCHAR) | SELECT AVG(round) FROM table_name_11 WHERE position = "lw" AND college_junior_club_team__league_ = "swift current broncos (wchl)" | ### Context: CREATE TABLE table_name_11 (round INTEGER, position VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)? ### Answer: SELECT AVG(round) FROM table_name_11 WHERE position = "lw" AND college_junior_club_team__league_ = "swift current broncos (wchl)" |
What is round 10's nationality? | CREATE TABLE table_name_55 (nationality VARCHAR, round VARCHAR) | SELECT nationality FROM table_name_55 WHERE round = 10 | ### Context: CREATE TABLE table_name_55 (nationality VARCHAR, round VARCHAR) ### Question: What is round 10's nationality? ### Answer: SELECT nationality FROM table_name_55 WHERE round = 10 |
Which driver was in 8 rounds with a chassis of dallara f306? | CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR) | SELECT driver FROM table_name_57 WHERE chassis = "dallara f306" AND rounds = "8" | ### Context: CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR) ### Question: Which driver was in 8 rounds with a chassis of dallara f306? ### Answer: SELECT driver FROM table_name_57 WHERE chassis = "dallara f306" AND rounds = "8" |
How many rounds did Nil Montserrat drive in? | CREATE TABLE table_name_94 (rounds VARCHAR, driver VARCHAR) | SELECT rounds FROM table_name_94 WHERE driver = "nil montserrat" | ### Context: CREATE TABLE table_name_94 (rounds VARCHAR, driver VARCHAR) ### Question: How many rounds did Nil Montserrat drive in? ### Answer: SELECT rounds FROM table_name_94 WHERE driver = "nil montserrat" |
How many rounds did germΓ‘n sΓ‘nchez drive in where the chassis was dallara f308? | CREATE TABLE table_name_34 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR) | SELECT rounds FROM table_name_34 WHERE chassis = "dallara f308" AND driver = "germΓ‘n sΓ‘nchez" | ### Context: CREATE TABLE table_name_34 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR) ### Question: How many rounds did germΓ‘n sΓ‘nchez drive in where the chassis was dallara f308? ### Answer: SELECT rounds FROM table_name_34 WHERE chassis = "dallara f308" AND driver = "germΓ‘n sΓ‘nchez" |
What is the chassis for Augusto Scalbi on Team RP Motorsport? | CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR) | SELECT chassis FROM table_name_34 WHERE team = "rp motorsport" AND driver = "augusto scalbi" | ### Context: CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR) ### Question: What is the chassis for Augusto Scalbi on Team RP Motorsport? ### Answer: SELECT chassis FROM table_name_34 WHERE team = "rp motorsport" AND driver = "augusto scalbi" |
In what Week was the Result W 24-17? | CREATE TABLE table_name_65 (week INTEGER, result VARCHAR) | SELECT MAX(week) FROM table_name_65 WHERE result = "w 24-17" | ### Context: CREATE TABLE table_name_65 (week INTEGER, result VARCHAR) ### Question: In what Week was the Result W 24-17? ### Answer: SELECT MAX(week) FROM table_name_65 WHERE result = "w 24-17" |
What was the Week number on November 20, 1977? | CREATE TABLE table_name_54 (week INTEGER, date VARCHAR) | SELECT SUM(week) FROM table_name_54 WHERE date = "november 20, 1977" | ### Context: CREATE TABLE table_name_54 (week INTEGER, date VARCHAR) ### Question: What was the Week number on November 20, 1977? ### Answer: SELECT SUM(week) FROM table_name_54 WHERE date = "november 20, 1977" |
Who played hte home team when the score was 2:1? | CREATE TABLE table_name_45 (home VARCHAR, score VARCHAR) | SELECT home FROM table_name_45 WHERE score = "2:1" | ### Context: CREATE TABLE table_name_45 (home VARCHAR, score VARCHAR) ### Question: Who played hte home team when the score was 2:1? ### Answer: SELECT home FROM table_name_45 WHERE score = "2:1" |
Who was the home team when real juventud was the away team when there were more than 1189 in attendance? | CREATE TABLE table_name_4 (home VARCHAR, attendance VARCHAR, away VARCHAR) | SELECT home FROM table_name_4 WHERE attendance > 1189 AND away = "real juventud" | ### Context: CREATE TABLE table_name_4 (home VARCHAR, attendance VARCHAR, away VARCHAR) ### Question: Who was the home team when real juventud was the away team when there were more than 1189 in attendance? ### Answer: SELECT home FROM table_name_4 WHERE attendance > 1189 AND away = "real juventud" |
What was the average attendance when marathon was the away team? | CREATE TABLE table_name_6 (attendance INTEGER, away VARCHAR) | SELECT AVG(attendance) FROM table_name_6 WHERE away = "marathon" | ### Context: CREATE TABLE table_name_6 (attendance INTEGER, away VARCHAR) ### Question: What was the average attendance when marathon was the away team? ### Answer: SELECT AVG(attendance) FROM table_name_6 WHERE away = "marathon" |
Who was the home team when the score was 0:1? | CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR) | SELECT home FROM table_name_90 WHERE score = "0:1" | ### Context: CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR) ### Question: Who was the home team when the score was 0:1? ### Answer: SELECT home FROM table_name_90 WHERE score = "0:1" |
Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28? | CREATE TABLE table_name_86 (company VARCHAR, profits__billion_$_ VARCHAR, industry VARCHAR, assets__billion_$_ VARCHAR, sales__billion_$_ VARCHAR) | SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = "oil and gas" AND profits__billion_$_ = 19.28 | ### Context: CREATE TABLE table_name_86 (company VARCHAR, profits__billion_$_ VARCHAR, industry VARCHAR, assets__billion_$_ VARCHAR, sales__billion_$_ VARCHAR) ### Question: Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28? ### Answer: SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = "oil and gas" AND profits__billion_$_ = 19.28 |
How many profits is the company that is headquartered in the USA, in the banking industry, and has sales (billion $) less than 98.64 bringing in? | CREATE TABLE table_name_54 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, headquarters VARCHAR, industry VARCHAR) | SELECT SUM(profits__billion_) AS $_ FROM table_name_54 WHERE headquarters = "usa" AND industry = "banking" AND sales__billion_$_ < 98.64 | ### Context: CREATE TABLE table_name_54 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, headquarters VARCHAR, industry VARCHAR) ### Question: How many profits is the company that is headquartered in the USA, in the banking industry, and has sales (billion $) less than 98.64 bringing in? ### Answer: SELECT SUM(profits__billion_) AS $_ FROM table_name_54 WHERE headquarters = "usa" AND industry = "banking" AND sales__billion_$_ < 98.64 |
What test had 49,608 students? | CREATE TABLE table_name_86 (test VARCHAR, number_of_students VARCHAR) | SELECT test FROM table_name_86 WHERE number_of_students = "49,608" | ### Context: CREATE TABLE table_name_86 (test VARCHAR, number_of_students VARCHAR) ### Question: What test had 49,608 students? ### Answer: SELECT test FROM table_name_86 WHERE number_of_students = "49,608" |
What was the Tie no when the Home team was Ramsgate? | CREATE TABLE table_name_20 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_20 WHERE home_team = "ramsgate" | ### Context: CREATE TABLE table_name_20 (tie_no VARCHAR, home_team VARCHAR) ### Question: What was the Tie no when the Home team was Ramsgate? ### Answer: SELECT tie_no FROM table_name_20 WHERE home_team = "ramsgate" |
What was the Tie no when the Home team was carshalton athletic? | CREATE TABLE table_name_50 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_50 WHERE home_team = "carshalton athletic" | ### Context: CREATE TABLE table_name_50 (tie_no VARCHAR, home_team VARCHAR) ### Question: What was the Tie no when the Home team was carshalton athletic? ### Answer: SELECT tie_no FROM table_name_50 WHERE home_team = "carshalton athletic" |
Who was the away team when the home team was Ramsgate? | CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_30 WHERE home_team = "ramsgate" | ### Context: CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR) ### Question: Who was the away team when the home team was Ramsgate? ### Answer: SELECT away_team FROM table_name_30 WHERE home_team = "ramsgate" |
What was the home team when the Tie no was 60? | CREATE TABLE table_name_31 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_31 WHERE tie_no = "60" | ### Context: CREATE TABLE table_name_31 (home_team VARCHAR, tie_no VARCHAR) ### Question: What was the home team when the Tie no was 60? ### Answer: SELECT home_team FROM table_name_31 WHERE tie_no = "60" |
What was the Tie no when the Home team was wealdstone? | CREATE TABLE table_name_34 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_34 WHERE home_team = "wealdstone" | ### Context: CREATE TABLE table_name_34 (tie_no VARCHAR, home_team VARCHAR) ### Question: What was the Tie no when the Home team was wealdstone? ### Answer: SELECT tie_no FROM table_name_34 WHERE home_team = "wealdstone" |
Which format has january 21, 2002 as the date? | CREATE TABLE table_name_11 (format VARCHAR, date VARCHAR) | SELECT format FROM table_name_11 WHERE date = "january 21, 2002" | ### Context: CREATE TABLE table_name_11 (format VARCHAR, date VARCHAR) ### Question: Which format has january 21, 2002 as the date? ### Answer: SELECT format FROM table_name_11 WHERE date = "january 21, 2002" |
What format has France as the region, with Universal Licensing Music (ulm) as the label? | CREATE TABLE table_name_72 (format VARCHAR, region VARCHAR, label VARCHAR) | SELECT format FROM table_name_72 WHERE region = "france" AND label = "universal licensing music (ulm)" | ### Context: CREATE TABLE table_name_72 (format VARCHAR, region VARCHAR, label VARCHAR) ### Question: What format has France as the region, with Universal Licensing Music (ulm) as the label? ### Answer: SELECT format FROM table_name_72 WHERE region = "france" AND label = "universal licensing music (ulm)" |
What label has the netherlands as the region, and magik muzik 802-1 as the catalog? | CREATE TABLE table_name_83 (label VARCHAR, region VARCHAR, catalog VARCHAR) | SELECT label FROM table_name_83 WHERE region = "netherlands" AND catalog = "magik muzik 802-1" | ### Context: CREATE TABLE table_name_83 (label VARCHAR, region VARCHAR, catalog VARCHAR) ### Question: What label has the netherlands as the region, and magik muzik 802-1 as the catalog? ### Answer: SELECT label FROM table_name_83 WHERE region = "netherlands" AND catalog = "magik muzik 802-1" |
What is the record at 3:00? | CREATE TABLE table_name_71 (record VARCHAR, time VARCHAR) | SELECT record FROM table_name_71 WHERE time = "3:00" | ### Context: CREATE TABLE table_name_71 (record VARCHAR, time VARCHAR) ### Question: What is the record at 3:00? ### Answer: SELECT record FROM table_name_71 WHERE time = "3:00" |
What opponent used the Ko method, and a 6-0 record? | CREATE TABLE table_name_12 (opponent VARCHAR, method VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_12 WHERE method = "ko" AND record = "6-0" | ### Context: CREATE TABLE table_name_12 (opponent VARCHAR, method VARCHAR, record VARCHAR) ### Question: What opponent used the Ko method, and a 6-0 record? ### Answer: SELECT opponent FROM table_name_12 WHERE method = "ko" AND record = "6-0" |
What is the ground of the game where the home team was Adelaide? | CREATE TABLE table_name_88 (ground VARCHAR, home_team VARCHAR) | SELECT ground FROM table_name_88 WHERE home_team = "adelaide" | ### Context: CREATE TABLE table_name_88 (ground VARCHAR, home_team VARCHAR) ### Question: What is the ground of the game where the home team was Adelaide? ### Answer: SELECT ground FROM table_name_88 WHERE home_team = "adelaide" |
What is Manufacturer, when Quantity Made is 2, and when Year Made is 1884? | CREATE TABLE table_name_25 (manufacturer VARCHAR, quantity_made VARCHAR, year_made VARCHAR) | SELECT manufacturer FROM table_name_25 WHERE quantity_made = "2" AND year_made = "1884" | ### Context: CREATE TABLE table_name_25 (manufacturer VARCHAR, quantity_made VARCHAR, year_made VARCHAR) ### Question: What is Manufacturer, when Quantity Made is 2, and when Year Made is 1884? ### Answer: SELECT manufacturer FROM table_name_25 WHERE quantity_made = "2" AND year_made = "1884" |
What is Quantity Made, when Manufacturer is "Baldwin"? | CREATE TABLE table_name_3 (quantity_made VARCHAR, manufacturer VARCHAR) | SELECT quantity_made FROM table_name_3 WHERE manufacturer = "baldwin" | ### Context: CREATE TABLE table_name_3 (quantity_made VARCHAR, manufacturer VARCHAR) ### Question: What is Quantity Made, when Manufacturer is "Baldwin"? ### Answer: SELECT quantity_made FROM table_name_3 WHERE manufacturer = "baldwin" |
What is Wheel Arrangement, when Manufacturer is "Baldwin", and when Quantity Made is 12? | CREATE TABLE table_name_52 (wheel_arrangement VARCHAR, manufacturer VARCHAR, quantity_made VARCHAR) | SELECT wheel_arrangement FROM table_name_52 WHERE manufacturer = "baldwin" AND quantity_made = "12" | ### Context: CREATE TABLE table_name_52 (wheel_arrangement VARCHAR, manufacturer VARCHAR, quantity_made VARCHAR) ### Question: What is Wheel Arrangement, when Manufacturer is "Baldwin", and when Quantity Made is 12? ### Answer: SELECT wheel_arrangement FROM table_name_52 WHERE manufacturer = "baldwin" AND quantity_made = "12" |
What is Quantity Made, when Year Made is "4-4-0 β oooo β american"? | CREATE TABLE table_name_65 (quantity_made VARCHAR, year_made VARCHAR) | SELECT quantity_made FROM table_name_65 WHERE year_made = "4-4-0 β oooo β american" | ### Context: CREATE TABLE table_name_65 (quantity_made VARCHAR, year_made VARCHAR) ### Question: What is Quantity Made, when Year Made is "4-4-0 β oooo β american"? ### Answer: SELECT quantity_made FROM table_name_65 WHERE year_made = "4-4-0 β oooo β american" |
What is Wheel Arrangement, when Quantity Made is 44? | CREATE TABLE table_name_8 (wheel_arrangement VARCHAR, quantity_made VARCHAR) | SELECT wheel_arrangement FROM table_name_8 WHERE quantity_made = "44" | ### Context: CREATE TABLE table_name_8 (wheel_arrangement VARCHAR, quantity_made VARCHAR) ### Question: What is Wheel Arrangement, when Quantity Made is 44? ### Answer: SELECT wheel_arrangement FROM table_name_8 WHERE quantity_made = "44" |
What is Quantitiy Made, when Quantity Preserved is "4-4-0 β oooo β american"? | CREATE TABLE table_name_23 (quantity_made VARCHAR, quantity_preserved VARCHAR) | SELECT quantity_made FROM table_name_23 WHERE quantity_preserved = "4-4-0 β oooo β american" | ### Context: CREATE TABLE table_name_23 (quantity_made VARCHAR, quantity_preserved VARCHAR) ### Question: What is Quantitiy Made, when Quantity Preserved is "4-4-0 β oooo β american"? ### Answer: SELECT quantity_made FROM table_name_23 WHERE quantity_preserved = "4-4-0 β oooo β american" |
What's the highest game found when the record is 2-1? | CREATE TABLE table_name_10 (game INTEGER, record VARCHAR) | SELECT MAX(game) FROM table_name_10 WHERE record = "2-1" | ### Context: CREATE TABLE table_name_10 (game INTEGER, record VARCHAR) ### Question: What's the highest game found when the record is 2-1? ### Answer: SELECT MAX(game) FROM table_name_10 WHERE record = "2-1" |
What was the game date when the opponent was Houston? | CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_8 WHERE opponent = "houston" | ### Context: CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR) ### Question: What was the game date when the opponent was Houston? ### Answer: SELECT date FROM table_name_8 WHERE opponent = "houston" |
Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory? | CREATE TABLE table_name_8 (season INTEGER, home_team VARCHAR, away_team VARCHAR) | SELECT MAX(season) FROM table_name_8 WHERE home_team = "chonburi" AND away_team = "melbourne victory" | ### Context: CREATE TABLE table_name_8 (season INTEGER, home_team VARCHAR, away_team VARCHAR) ### Question: Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory? ### Answer: SELECT MAX(season) FROM table_name_8 WHERE home_team = "chonburi" AND away_team = "melbourne victory" |
Can you tell me the Season that has the Score of 1-0? | CREATE TABLE table_name_34 (season VARCHAR, score VARCHAR) | SELECT season FROM table_name_34 WHERE score = "1-0" | ### Context: CREATE TABLE table_name_34 (season VARCHAR, score VARCHAR) ### Question: Can you tell me the Season that has the Score of 1-0? ### Answer: SELECT season FROM table_name_34 WHERE score = "1-0" |
WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100? | CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR) | SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100 | ### Context: CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR) ### Question: WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100? ### Answer: SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100 |
WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250? | CREATE TABLE table_name_57 (MIN VARCHAR, $10___1_10_oz VARCHAR) | SELECT MIN AS $25___1_4_oz FROM table_name_57 WHERE $10___1_10_oz = "70,250" | ### Context: CREATE TABLE table_name_57 (MIN VARCHAR, $10___1_10_oz VARCHAR) ### Question: WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250? ### Answer: SELECT MIN AS $25___1_4_oz FROM table_name_57 WHERE $10___1_10_oz = "70,250" |
What is the model number for the GPU and 320 mhz? | CREATE TABLE table_name_98 (model_number VARCHAR, gpu_frequency VARCHAR) | SELECT model_number FROM table_name_98 WHERE gpu_frequency = "320 mhz" | ### Context: CREATE TABLE table_name_98 (model_number VARCHAR, gpu_frequency VARCHAR) ### Question: What is the model number for the GPU and 320 mhz? ### Answer: SELECT model_number FROM table_name_98 WHERE gpu_frequency = "320 mhz" |
What is the socket of the model atom e680t? | CREATE TABLE table_name_55 (socket VARCHAR, model_number VARCHAR) | SELECT socket FROM table_name_55 WHERE model_number = "atom e680t" | ### Context: CREATE TABLE table_name_55 (socket VARCHAR, model_number VARCHAR) ### Question: What is the socket of the model atom e680t? ### Answer: SELECT socket FROM table_name_55 WHERE model_number = "atom e680t" |
What is the memory for ct80618005844ab? | CREATE TABLE table_name_78 (memory VARCHAR, part_number_s_ VARCHAR) | SELECT memory FROM table_name_78 WHERE part_number_s_ = "ct80618005844ab" | ### Context: CREATE TABLE table_name_78 (memory VARCHAR, part_number_s_ VARCHAR) ### Question: What is the memory for ct80618005844ab? ### Answer: SELECT memory FROM table_name_78 WHERE part_number_s_ = "ct80618005844ab" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.