question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
When was the Carysfort launched? | CREATE TABLE table_24496403_1 (launched VARCHAR, ship VARCHAR) | SELECT launched FROM table_24496403_1 WHERE ship = "Carysfort" | ### Context: CREATE TABLE table_24496403_1 (launched VARCHAR, ship VARCHAR) ### Question: When was the Carysfort launched? ### Answer: SELECT launched FROM table_24496403_1 WHERE ship = "Carysfort" |
When was the stokers' training ship launched? | CREATE TABLE table_24496403_1 (launched VARCHAR, disposition VARCHAR) | SELECT launched FROM table_24496403_1 WHERE disposition = "Stokers' training ship" | ### Context: CREATE TABLE table_24496403_1 (launched VARCHAR, disposition VARCHAR) ### Question: When was the stokers' training ship launched? ### Answer: SELECT launched FROM table_24496403_1 WHERE disposition = "Stokers' training ship" |
How many ships were named Carysfort? | CREATE TABLE table_24496403_1 (completed VARCHAR, ship VARCHAR) | SELECT COUNT(completed) FROM table_24496403_1 WHERE ship = "Carysfort" | ### Context: CREATE TABLE table_24496403_1 (completed VARCHAR, ship VARCHAR) ### Question: How many ships were named Carysfort? ### Answer: SELECT COUNT(completed) FROM table_24496403_1 WHERE ship = "Carysfort" |
What is the background of the person fired in week 5? | CREATE TABLE table_24501530_1 (background VARCHAR, result VARCHAR) | SELECT background FROM table_24501530_1 WHERE result = "Fired in week 5" | ### Context: CREATE TABLE table_24501530_1 (background VARCHAR, result VARCHAR) ### Question: What is the background of the person fired in week 5? ### Answer: SELECT background FROM table_24501530_1 WHERE result = "Fired in week 5" |
What was the result of the player from Maylands, Western Australia? | CREATE TABLE table_24501530_1 (result VARCHAR, hometown VARCHAR) | SELECT result FROM table_24501530_1 WHERE hometown = "Maylands, Western Australia" | ### Context: CREATE TABLE table_24501530_1 (result VARCHAR, hometown VARCHAR) ### Question: What was the result of the player from Maylands, Western Australia? ### Answer: SELECT result FROM table_24501530_1 WHERE hometown = "Maylands, Western Australia" |
How many ages for player Amy Cato? | CREATE TABLE table_24501530_1 (age VARCHAR, candidate VARCHAR) | SELECT COUNT(age) FROM table_24501530_1 WHERE candidate = "Amy Cato" | ### Context: CREATE TABLE table_24501530_1 (age VARCHAR, candidate VARCHAR) ### Question: How many ages for player Amy Cato? ### Answer: SELECT COUNT(age) FROM table_24501530_1 WHERE candidate = "Amy Cato" |
What is the name of the player from Maylands, Western Australia? | CREATE TABLE table_24501530_1 (candidate VARCHAR, hometown VARCHAR) | SELECT candidate FROM table_24501530_1 WHERE hometown = "Maylands, Western Australia" | ### Context: CREATE TABLE table_24501530_1 (candidate VARCHAR, hometown VARCHAR) ### Question: What is the name of the player from Maylands, Western Australia? ### Answer: SELECT candidate FROM table_24501530_1 WHERE hometown = "Maylands, Western Australia" |
How many age figures for the player fired in week 6? | CREATE TABLE table_24501530_1 (age VARCHAR, result VARCHAR) | SELECT COUNT(age) FROM table_24501530_1 WHERE result = "Fired in week 6" | ### Context: CREATE TABLE table_24501530_1 (age VARCHAR, result VARCHAR) ### Question: How many age figures for the player fired in week 6? ### Answer: SELECT COUNT(age) FROM table_24501530_1 WHERE result = "Fired in week 6" |
What was the latitude that had a UTC time of 18:19:36? | CREATE TABLE table_24518475_1 (latitude VARCHAR, time__utc_ VARCHAR) | SELECT latitude FROM table_24518475_1 WHERE time__utc_ = "18:19:36" | ### Context: CREATE TABLE table_24518475_1 (latitude VARCHAR, time__utc_ VARCHAR) ### Question: What was the latitude that had a UTC time of 18:19:36? ### Answer: SELECT latitude FROM table_24518475_1 WHERE time__utc_ = "18:19:36" |
What is the depth of the aftershock at 18:00:22? | CREATE TABLE table_24518475_1 (depth VARCHAR, time__utc_ VARCHAR) | SELECT depth FROM table_24518475_1 WHERE time__utc_ = "18:00:22" | ### Context: CREATE TABLE table_24518475_1 (depth VARCHAR, time__utc_ VARCHAR) ### Question: What is the depth of the aftershock at 18:00:22? ### Answer: SELECT depth FROM table_24518475_1 WHERE time__utc_ = "18:00:22" |
Name the team for susan bates | CREATE TABLE table_24535095_2 (team VARCHAR, listed_owner_s_ VARCHAR) | SELECT team FROM table_24535095_2 WHERE listed_owner_s_ = "Susan Bates" | ### Context: CREATE TABLE table_24535095_2 (team VARCHAR, listed_owner_s_ VARCHAR) ### Question: Name the team for susan bates ### Answer: SELECT team FROM table_24535095_2 WHERE listed_owner_s_ = "Susan Bates" |
Name the truck for eric phillips | CREATE TABLE table_24535095_2 (truck_s_ VARCHAR, crew_chief VARCHAR) | SELECT truck_s_ FROM table_24535095_2 WHERE crew_chief = "Eric Phillips" | ### Context: CREATE TABLE table_24535095_2 (truck_s_ VARCHAR, crew_chief VARCHAR) ### Question: Name the truck for eric phillips ### Answer: SELECT truck_s_ FROM table_24535095_2 WHERE crew_chief = "Eric Phillips" |
Name the listed owner for mike garvey | CREATE TABLE table_24535095_2 (listed_owner_s_ VARCHAR, crew_chief VARCHAR) | SELECT listed_owner_s_ FROM table_24535095_2 WHERE crew_chief = "Mike Garvey" | ### Context: CREATE TABLE table_24535095_2 (listed_owner_s_ VARCHAR, crew_chief VARCHAR) ### Question: Name the listed owner for mike garvey ### Answer: SELECT listed_owner_s_ FROM table_24535095_2 WHERE crew_chief = "Mike Garvey" |
Name the least listed owner for pete raymer | CREATE TABLE table_24535095_2 (_number INTEGER, listed_owner_s_ VARCHAR) | SELECT MIN(_number) FROM table_24535095_2 WHERE listed_owner_s_ = "Pete Raymer" | ### Context: CREATE TABLE table_24535095_2 (_number INTEGER, listed_owner_s_ VARCHAR) ### Question: Name the least listed owner for pete raymer ### Answer: SELECT MIN(_number) FROM table_24535095_2 WHERE listed_owner_s_ = "Pete Raymer" |
Name the crew chief for rhonda thorson | CREATE TABLE table_24535095_2 (crew_chief VARCHAR, listed_owner_s_ VARCHAR) | SELECT crew_chief FROM table_24535095_2 WHERE listed_owner_s_ = "Rhonda Thorson" | ### Context: CREATE TABLE table_24535095_2 (crew_chief VARCHAR, listed_owner_s_ VARCHAR) ### Question: Name the crew chief for rhonda thorson ### Answer: SELECT crew_chief FROM table_24535095_2 WHERE listed_owner_s_ = "Rhonda Thorson" |
What is the production code for episode 3 in the season? | CREATE TABLE table_2453243_3 (production_code INTEGER, no_in_season VARCHAR) | SELECT MAX(production_code) FROM table_2453243_3 WHERE no_in_season = 3 | ### Context: CREATE TABLE table_2453243_3 (production_code INTEGER, no_in_season VARCHAR) ### Question: What is the production code for episode 3 in the season? ### Answer: SELECT MAX(production_code) FROM table_2453243_3 WHERE no_in_season = 3 |
What is the lowest score of all games for match 2? | CREATE TABLE table_24538140_2 (match2 INTEGER) | SELECT MIN(match2) FROM table_24538140_2 | ### Context: CREATE TABLE table_24538140_2 (match2 INTEGER) ### Question: What is the lowest score of all games for match 2? ### Answer: SELECT MIN(match2) FROM table_24538140_2 |
What is the highest score for match 2 where the score for match 4 is 0 and the total score is 5? | CREATE TABLE table_24538140_2 (match2 INTEGER, match4 VARCHAR, total VARCHAR) | SELECT MAX(match2) FROM table_24538140_2 WHERE match4 = 0 AND total = 5 | ### Context: CREATE TABLE table_24538140_2 (match2 INTEGER, match4 VARCHAR, total VARCHAR) ### Question: What is the highest score for match 2 where the score for match 4 is 0 and the total score is 5? ### Answer: SELECT MAX(match2) FROM table_24538140_2 WHERE match4 = 0 AND total = 5 |
What is the score for match 1 for the team Eastern Tigers? | CREATE TABLE table_24538140_2 (match1 VARCHAR, team VARCHAR) | SELECT match1 FROM table_24538140_2 WHERE team = "Eastern Tigers" | ### Context: CREATE TABLE table_24538140_2 (match1 VARCHAR, team VARCHAR) ### Question: What is the score for match 1 for the team Eastern Tigers? ### Answer: SELECT match1 FROM table_24538140_2 WHERE team = "Eastern Tigers" |
How many sockets are listed that have a brand name of "Core i3-2xx7m"? | CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR) | SELECT COUNT(socket) FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-2xx7M" | ### Context: CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR) ### Question: How many sockets are listed that have a brand name of "Core i3-2xx7m"? ### Answer: SELECT COUNT(socket) FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-2xx7M" |
What is the i/o bus for the brand name Core i3-21xx? | CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR) | SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-21xx" | ### Context: CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR) ### Question: What is the i/o bus for the brand name Core i3-21xx? ### Answer: SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-21xx" |
What i/o buses are associated with the brand name Core i3-21xxt? | CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR) | SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-21xxT" | ### Context: CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR) ### Question: What i/o buses are associated with the brand name Core i3-21xxt? ### Answer: SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-21xxT" |
What is the codename for the Core i3-32xxt? | CREATE TABLE table_24538587_11 (codename__main_article_ VARCHAR, brand_name__list_ VARCHAR) | SELECT codename__main_article_ FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-32xxT" | ### Context: CREATE TABLE table_24538587_11 (codename__main_article_ VARCHAR, brand_name__list_ VARCHAR) ### Question: What is the codename for the Core i3-32xxt? ### Answer: SELECT codename__main_article_ FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-32xxT" |
What i/o buses are associated with the LGA 1155 socket, a code name of Sandy Bridge (desktop) and a brand name of Core i3-21xx? | CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR, socket VARCHAR, codename__main_article_ VARCHAR) | SELECT i_o_bus FROM table_24538587_11 WHERE socket = "LGA 1155" AND codename__main_article_ = "Sandy Bridge (Desktop)" AND brand_name__list_ = "Core i3-21xx" | ### Context: CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR, socket VARCHAR, codename__main_article_ VARCHAR) ### Question: What i/o buses are associated with the LGA 1155 socket, a code name of Sandy Bridge (desktop) and a brand name of Core i3-21xx? ### Answer: SELECT i_o_bus FROM table_24... |
What is the sockets associated with a brand name of Core i3-3xx0m? | CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR) | SELECT socket FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-3xx0M" | ### Context: CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR) ### Question: What is the sockets associated with a brand name of Core i3-3xx0m? ### Answer: SELECT socket FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-3xx0M" |
Who was drafted by the calgary stampeders? | CREATE TABLE table_24540893_6 (player VARCHAR, cfl_team VARCHAR) | SELECT player FROM table_24540893_6 WHERE cfl_team = "Calgary Stampeders" | ### Context: CREATE TABLE table_24540893_6 (player VARCHAR, cfl_team VARCHAR) ### Question: Who was drafted by the calgary stampeders? ### Answer: SELECT player FROM table_24540893_6 WHERE cfl_team = "Calgary Stampeders" |
Where was the player from se missouri state drafted? | CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR) | SELECT COUNT(pick__number) FROM table_24540893_6 WHERE school = "SE Missouri State" | ### Context: CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR) ### Question: Where was the player from se missouri state drafted? ### Answer: SELECT COUNT(pick__number) FROM table_24540893_6 WHERE school = "SE Missouri State" |
What position does the player from kent state play? | CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR) | SELECT position FROM table_24540893_6 WHERE school = "Kent State" | ### Context: CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR) ### Question: What position does the player from kent state play? ### Answer: SELECT position FROM table_24540893_6 WHERE school = "Kent State" |
What school did the rb drafted attend? | CREATE TABLE table_24540893_6 (school VARCHAR, position VARCHAR) | SELECT school FROM table_24540893_6 WHERE position = "RB" | ### Context: CREATE TABLE table_24540893_6 (school VARCHAR, position VARCHAR) ### Question: What school did the rb drafted attend? ### Answer: SELECT school FROM table_24540893_6 WHERE position = "RB" |
What numbered pick attended western ontario and is an OL? | CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR, position VARCHAR) | SELECT pick__number FROM table_24540893_6 WHERE school = "Western Ontario" AND position = "OL" | ### Context: CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR, position VARCHAR) ### Question: What numbered pick attended western ontario and is an OL? ### Answer: SELECT pick__number FROM table_24540893_6 WHERE school = "Western Ontario" AND position = "OL" |
How many players attended SE missouri state? | CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR) | SELECT COUNT(position) FROM table_24540893_6 WHERE school = "SE Missouri State" | ### Context: CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR) ### Question: How many players attended SE missouri state? ### Answer: SELECT COUNT(position) FROM table_24540893_6 WHERE school = "SE Missouri State" |
Who was in the pole position for knockhill? | CREATE TABLE table_24547593_1 (pole_position VARCHAR, circuit VARCHAR) | SELECT pole_position FROM table_24547593_1 WHERE circuit = "Knockhill" | ### Context: CREATE TABLE table_24547593_1 (pole_position VARCHAR, circuit VARCHAR) ### Question: Who was in the pole position for knockhill? ### Answer: SELECT pole_position FROM table_24547593_1 WHERE circuit = "Knockhill" |
How many dates was knockhill? | CREATE TABLE table_24547593_1 (date VARCHAR, circuit VARCHAR) | SELECT COUNT(date) FROM table_24547593_1 WHERE circuit = "Knockhill" | ### Context: CREATE TABLE table_24547593_1 (date VARCHAR, circuit VARCHAR) ### Question: How many dates was knockhill? ### Answer: SELECT COUNT(date) FROM table_24547593_1 WHERE circuit = "Knockhill" |
Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm | CREATE TABLE table_24538587_13 (l3_cache VARCHAR, brand_name__list_ VARCHAR) | SELECT l3_cache FROM table_24538587_13 WHERE brand_name__list_ = "Core i7-2xxxQE, i7-26xxQM, i7-27xxQM" | ### Context: CREATE TABLE table_24538587_13 (l3_cache VARCHAR, brand_name__list_ VARCHAR) ### Question: Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm ### Answer: SELECT l3_cache FROM table_24538587_13 WHERE brand_name__list_ = "Core i7-2xxxQE, i7-26xxQM, i7-27xxQM" |
Who had most laps led at Chicagoland speedway? | CREATE TABLE table_2454550_1 (most_laps_led VARCHAR, track VARCHAR) | SELECT most_laps_led FROM table_2454550_1 WHERE track = "Chicagoland Speedway" | ### Context: CREATE TABLE table_2454550_1 (most_laps_led VARCHAR, track VARCHAR) ### Question: Who had most laps led at Chicagoland speedway? ### Answer: SELECT most_laps_led FROM table_2454550_1 WHERE track = "Chicagoland Speedway" |
In what race did Buddy Rice hav fastest lap? | CREATE TABLE table_2454550_1 (race_name VARCHAR, fastest_lap VARCHAR) | SELECT race_name FROM table_2454550_1 WHERE fastest_lap = "Buddy Rice" | ### Context: CREATE TABLE table_2454550_1 (race_name VARCHAR, fastest_lap VARCHAR) ### Question: In what race did Buddy Rice hav fastest lap? ### Answer: SELECT race_name FROM table_2454550_1 WHERE fastest_lap = "Buddy Rice" |
On what tra k was the march 19 race held? | CREATE TABLE table_2454550_1 (track VARCHAR, date VARCHAR) | SELECT track FROM table_2454550_1 WHERE date = "March 19" | ### Context: CREATE TABLE table_2454550_1 (track VARCHAR, date VARCHAR) ### Question: On what tra k was the march 19 race held? ### Answer: SELECT track FROM table_2454550_1 WHERE date = "March 19" |
On what track is the Argent mortgage Indy 300 held? | CREATE TABLE table_2454550_1 (track VARCHAR, race_name VARCHAR) | SELECT track FROM table_2454550_1 WHERE race_name = "Argent Mortgage Indy 300" | ### Context: CREATE TABLE table_2454550_1 (track VARCHAR, race_name VARCHAR) ### Question: On what track is the Argent mortgage Indy 300 held? ### Answer: SELECT track FROM table_2454550_1 WHERE race_name = "Argent Mortgage Indy 300" |
who held the fastes lap in Phoenix, Arizona? | CREATE TABLE table_2454550_1 (fastest_lap VARCHAR, location VARCHAR) | SELECT fastest_lap FROM table_2454550_1 WHERE location = "Phoenix, Arizona" | ### Context: CREATE TABLE table_2454550_1 (fastest_lap VARCHAR, location VARCHAR) ### Question: who held the fastes lap in Phoenix, Arizona? ### Answer: SELECT fastest_lap FROM table_2454550_1 WHERE location = "Phoenix, Arizona" |
How man players checked out at 84? | CREATE TABLE table_24549777_1 (player VARCHAR, high_checkout VARCHAR) | SELECT COUNT(player) FROM table_24549777_1 WHERE high_checkout = 84 | ### Context: CREATE TABLE table_24549777_1 (player VARCHAR, high_checkout VARCHAR) ### Question: How man players checked out at 84? ### Answer: SELECT COUNT(player) FROM table_24549777_1 WHERE high_checkout = 84 |
How man 3-dart averages did gary anderson have? | CREATE TABLE table_24549777_1 (player VARCHAR) | SELECT COUNT(3 AS _dart_average) FROM table_24549777_1 WHERE player = "Gary Anderson" | ### Context: CREATE TABLE table_24549777_1 (player VARCHAR) ### Question: How man 3-dart averages did gary anderson have? ### Answer: SELECT COUNT(3 AS _dart_average) FROM table_24549777_1 WHERE player = "Gary Anderson" |
List all results from the 3-3 scoring game. | CREATE TABLE table_24561550_1 (result VARCHAR, record VARCHAR) | SELECT result FROM table_24561550_1 WHERE record = "3-3" | ### Context: CREATE TABLE table_24561550_1 (result VARCHAR, record VARCHAR) ### Question: List all results from the 3-3 scoring game. ### Answer: SELECT result FROM table_24561550_1 WHERE record = "3-3" |
List all opponents from the 4-4 scoring game. | CREATE TABLE table_24561550_1 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_24561550_1 WHERE record = "4-4" | ### Context: CREATE TABLE table_24561550_1 (opponent VARCHAR, record VARCHAR) ### Question: List all opponents from the 4-4 scoring game. ### Answer: SELECT opponent FROM table_24561550_1 WHERE record = "4-4" |
List the record from the game where Wildcats had 48 points. | CREATE TABLE table_24561550_1 (record VARCHAR, wildcats_points VARCHAR) | SELECT record FROM table_24561550_1 WHERE wildcats_points = 48 | ### Context: CREATE TABLE table_24561550_1 (record VARCHAR, wildcats_points VARCHAR) ### Question: List the record from the game where Wildcats had 48 points. ### Answer: SELECT record FROM table_24561550_1 WHERE wildcats_points = 48 |
How many points did the Wildcats get when Baylor was an opponent? | CREATE TABLE table_24561550_1 (wildcats_points VARCHAR, opponent VARCHAR) | SELECT wildcats_points FROM table_24561550_1 WHERE opponent = "Baylor" | ### Context: CREATE TABLE table_24561550_1 (wildcats_points VARCHAR, opponent VARCHAR) ### Question: How many points did the Wildcats get when Baylor was an opponent? ### Answer: SELECT wildcats_points FROM table_24561550_1 WHERE opponent = "Baylor" |
Who was the opponent on Oct. 4? | CREATE TABLE table_24560733_1 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_24560733_1 WHERE date = "Oct. 4" | ### Context: CREATE TABLE table_24560733_1 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on Oct. 4? ### Answer: SELECT opponent FROM table_24560733_1 WHERE date = "Oct. 4" |
What was the minimum number for opponents? | CREATE TABLE table_24560733_1 (opponents INTEGER) | SELECT MIN(opponents) FROM table_24560733_1 | ### Context: CREATE TABLE table_24560733_1 (opponents INTEGER) ### Question: What was the minimum number for opponents? ### Answer: SELECT MIN(opponents) FROM table_24560733_1 |
What is the minimum number of opponents' points for the game at Michigan State? | CREATE TABLE table_24560733_1 (opponents INTEGER, opponent VARCHAR) | SELECT MIN(opponents) FROM table_24560733_1 WHERE opponent = "at Michigan State" | ### Context: CREATE TABLE table_24560733_1 (opponents INTEGER, opponent VARCHAR) ### Question: What is the minimum number of opponents' points for the game at Michigan State? ### Answer: SELECT MIN(opponents) FROM table_24560733_1 WHERE opponent = "at Michigan State" |
Which opponent led to a 5-2 record? | CREATE TABLE table_24560733_1 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_24560733_1 WHERE record = "5-2" | ### Context: CREATE TABLE table_24560733_1 (opponent VARCHAR, record VARCHAR) ### Question: Which opponent led to a 5-2 record? ### Answer: SELECT opponent FROM table_24560733_1 WHERE record = "5-2" |
How many opponents' points numbers are associated with the game at Ole Miss? | CREATE TABLE table_24560733_1 (opponents VARCHAR, opponent VARCHAR) | SELECT COUNT(opponents) FROM table_24560733_1 WHERE opponent = "at Ole Miss" | ### Context: CREATE TABLE table_24560733_1 (opponents VARCHAR, opponent VARCHAR) ### Question: How many opponents' points numbers are associated with the game at Ole Miss? ### Answer: SELECT COUNT(opponents) FROM table_24560733_1 WHERE opponent = "at Ole Miss" |
Name the total number of period for yvon le roux | CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR) | SELECT COUNT(period) FROM table_24565004_13 WHERE name = "Yvon Le Roux" | ### Context: CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR) ### Question: Name the total number of period for yvon le roux ### Answer: SELECT COUNT(period) FROM table_24565004_13 WHERE name = "Yvon Le Roux" |
Name the period for michel llodra | CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR) | SELECT period FROM table_24565004_13 WHERE name = "Michel Llodra" | ### Context: CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR) ### Question: Name the period for michel llodra ### Answer: SELECT period FROM table_24565004_13 WHERE name = "Michel Llodra" |
Name the number of position for democratic republic of the congo | CREATE TABLE table_24565004_13 (position VARCHAR, nationality² VARCHAR) | SELECT COUNT(position) FROM table_24565004_13 WHERE nationality² = "Democratic Republic of the Congo" | ### Context: CREATE TABLE table_24565004_13 (position VARCHAR, nationality² VARCHAR) ### Question: Name the number of position for democratic republic of the congo ### Answer: SELECT COUNT(position) FROM table_24565004_13 WHERE nationality² = "Democratic Republic of the Congo" |
How many names correspond to the value 101 for appearances? | CREATE TABLE table_24565004_14 (name VARCHAR, appearances¹ VARCHAR) | SELECT COUNT(name) FROM table_24565004_14 WHERE appearances¹ = 101 | ### Context: CREATE TABLE table_24565004_14 (name VARCHAR, appearances¹ VARCHAR) ### Question: How many names correspond to the value 101 for appearances? ### Answer: SELECT COUNT(name) FROM table_24565004_14 WHERE appearances¹ = 101 |
What positions correspond to the name Thierry Morin? | CREATE TABLE table_24565004_14 (position VARCHAR, name VARCHAR) | SELECT position FROM table_24565004_14 WHERE name = "Thierry Morin" | ### Context: CREATE TABLE table_24565004_14 (position VARCHAR, name VARCHAR) ### Question: What positions correspond to the name Thierry Morin? ### Answer: SELECT position FROM table_24565004_14 WHERE name = "Thierry Morin" |
What time period had appearances of 219? | CREATE TABLE table_24565004_11 (period VARCHAR, appearances¹ VARCHAR) | SELECT period FROM table_24565004_11 WHERE appearances¹ = 219 | ### Context: CREATE TABLE table_24565004_11 (period VARCHAR, appearances¹ VARCHAR) ### Question: What time period had appearances of 219? ### Answer: SELECT period FROM table_24565004_11 WHERE appearances¹ = 219 |
How many periods had 15 goals? | CREATE TABLE table_24565004_11 (period VARCHAR, goals¹ VARCHAR) | SELECT COUNT(period) FROM table_24565004_11 WHERE goals¹ = 15 | ### Context: CREATE TABLE table_24565004_11 (period VARCHAR, goals¹ VARCHAR) ### Question: How many periods had 15 goals? ### Answer: SELECT COUNT(period) FROM table_24565004_11 WHERE goals¹ = 15 |
at least how many times was Pierre Vermeulen at a game? | CREATE TABLE table_24565004_22 (appearances¹ INTEGER, name VARCHAR) | SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name = "Pierre Vermeulen" | ### Context: CREATE TABLE table_24565004_22 (appearances¹ INTEGER, name VARCHAR) ### Question: at least how many times was Pierre Vermeulen at a game? ### Answer: SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name = "Pierre Vermeulen" |
What country is Richard Vanquelef from? | CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR) | SELECT nationality² FROM table_24565004_22 WHERE name = "Richard Vanquelef" | ### Context: CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR) ### Question: What country is Richard Vanquelef from? ### Answer: SELECT nationality² FROM table_24565004_22 WHERE name = "Richard Vanquelef" |
What country is Pierre Vermeulen from? | CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR) | SELECT nationality² FROM table_24565004_22 WHERE name = "Pierre Vermeulen" | ### Context: CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR) ### Question: What country is Pierre Vermeulen from? ### Answer: SELECT nationality² FROM table_24565004_22 WHERE name = "Pierre Vermeulen" |
Name the number of appearances for yugoslavia | CREATE TABLE table_24565004_20 (appearances¹ VARCHAR, nationality² VARCHAR) | SELECT COUNT(appearances¹) FROM table_24565004_20 WHERE nationality² = "Yugoslavia" | ### Context: CREATE TABLE table_24565004_20 (appearances¹ VARCHAR, nationality² VARCHAR) ### Question: Name the number of appearances for yugoslavia ### Answer: SELECT COUNT(appearances¹) FROM table_24565004_20 WHERE nationality² = "Yugoslavia" |
Name the nationality for defender 201 | CREATE TABLE table_24565004_20 (nationality² VARCHAR, position VARCHAR, appearances¹ VARCHAR) | SELECT nationality² FROM table_24565004_20 WHERE position = "Defender" AND appearances¹ = 201 | ### Context: CREATE TABLE table_24565004_20 (nationality² VARCHAR, position VARCHAR, appearances¹ VARCHAR) ### Question: Name the nationality for defender 201 ### Answer: SELECT nationality² FROM table_24565004_20 WHERE position = "Defender" AND appearances¹ = 201 |
Name the goals for daniel sanchez | CREATE TABLE table_24565004_20 (goals¹ VARCHAR, name VARCHAR) | SELECT goals¹ FROM table_24565004_20 WHERE name = "Daniel Sanchez" | ### Context: CREATE TABLE table_24565004_20 (goals¹ VARCHAR, name VARCHAR) ### Question: Name the goals for daniel sanchez ### Answer: SELECT goals¹ FROM table_24565004_20 WHERE name = "Daniel Sanchez" |
Name the most goals for algeria | CREATE TABLE table_24565004_20 (goals¹ INTEGER, nationality² VARCHAR) | SELECT MIN(goals¹) FROM table_24565004_20 WHERE nationality² = "Algeria" | ### Context: CREATE TABLE table_24565004_20 (goals¹ INTEGER, nationality² VARCHAR) ### Question: Name the most goals for algeria ### Answer: SELECT MIN(goals¹) FROM table_24565004_20 WHERE nationality² = "Algeria" |
What was the lowest score. | CREATE TABLE table_24565004_21 (goals¹ INTEGER) | SELECT MIN(goals¹) FROM table_24565004_21 | ### Context: CREATE TABLE table_24565004_21 (goals¹ INTEGER) ### Question: What was the lowest score. ### Answer: SELECT MIN(goals¹) FROM table_24565004_21 |
List the minimum impressions for sammy traoré | CREATE TABLE table_24565004_21 (appearances¹ INTEGER, name VARCHAR) | SELECT MIN(appearances¹) FROM table_24565004_21 WHERE name = "Sammy Traoré" | ### Context: CREATE TABLE table_24565004_21 (appearances¹ INTEGER, name VARCHAR) ### Question: List the minimum impressions for sammy traoré ### Answer: SELECT MIN(appearances¹) FROM table_24565004_21 WHERE name = "Sammy Traoré" |
During what years did nabatingue toko play. | CREATE TABLE table_24565004_21 (period VARCHAR, name VARCHAR) | SELECT period FROM table_24565004_21 WHERE name = "Nabatingue Toko" | ### Context: CREATE TABLE table_24565004_21 (period VARCHAR, name VARCHAR) ### Question: During what years did nabatingue toko play. ### Answer: SELECT period FROM table_24565004_21 WHERE name = "Nabatingue Toko" |
Name the number of goals for mauricio pochettino | CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR) | SELECT COUNT(goals¹) FROM table_24565004_17 WHERE name = "Mauricio Pochettino" | ### Context: CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR) ### Question: Name the number of goals for mauricio pochettino ### Answer: SELECT COUNT(goals¹) FROM table_24565004_17 WHERE name = "Mauricio Pochettino" |
Name the period for michel prost | CREATE TABLE table_24565004_17 (period VARCHAR, name VARCHAR) | SELECT period FROM table_24565004_17 WHERE name = "Michel Prost" | ### Context: CREATE TABLE table_24565004_17 (period VARCHAR, name VARCHAR) ### Question: Name the period for michel prost ### Answer: SELECT period FROM table_24565004_17 WHERE name = "Michel Prost" |
Name the goals for mauricio pochettino | CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR) | SELECT goals¹ FROM table_24565004_17 WHERE name = "Mauricio Pochettino" | ### Context: CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR) ### Question: Name the goals for mauricio pochettino ### Answer: SELECT goals¹ FROM table_24565004_17 WHERE name = "Mauricio Pochettino" |
Name the period for appearances being 380 | CREATE TABLE table_24565004_2 (period VARCHAR, appearances¹ VARCHAR) | SELECT period FROM table_24565004_2 WHERE appearances¹ = 380 | ### Context: CREATE TABLE table_24565004_2 (period VARCHAR, appearances¹ VARCHAR) ### Question: Name the period for appearances being 380 ### Answer: SELECT period FROM table_24565004_2 WHERE appearances¹ = 380 |
Name the appearances for bernard allou | CREATE TABLE table_24565004_2 (appearances¹ VARCHAR, name VARCHAR) | SELECT appearances¹ FROM table_24565004_2 WHERE name = "Bernard Allou" | ### Context: CREATE TABLE table_24565004_2 (appearances¹ VARCHAR, name VARCHAR) ### Question: Name the appearances for bernard allou ### Answer: SELECT appearances¹ FROM table_24565004_2 WHERE name = "Bernard Allou" |
Name the most appearances for bernard allou | CREATE TABLE table_24565004_2 (appearances¹ INTEGER, name VARCHAR) | SELECT MAX(appearances¹) FROM table_24565004_2 WHERE name = "Bernard Allou" | ### Context: CREATE TABLE table_24565004_2 (appearances¹ INTEGER, name VARCHAR) ### Question: Name the most appearances for bernard allou ### Answer: SELECT MAX(appearances¹) FROM table_24565004_2 WHERE name = "Bernard Allou" |
What is the highest number of goals scored | CREATE TABLE table_24565004_7 (goals¹ INTEGER) | SELECT MAX(goals¹) FROM table_24565004_7 | ### Context: CREATE TABLE table_24565004_7 (goals¹ INTEGER) ### Question: What is the highest number of goals scored ### Answer: SELECT MAX(goals¹) FROM table_24565004_7 |
What is the lowest number of appearances a player had | CREATE TABLE table_24565004_7 (appearances¹ INTEGER) | SELECT MIN(appearances¹) FROM table_24565004_7 | ### Context: CREATE TABLE table_24565004_7 (appearances¹ INTEGER) ### Question: What is the lowest number of appearances a player had ### Answer: SELECT MIN(appearances¹) FROM table_24565004_7 |
What is the nationality of Louis floch | CREATE TABLE table_24565004_7 (nationality² VARCHAR, name VARCHAR) | SELECT nationality² FROM table_24565004_7 WHERE name = "Louis Floch" | ### Context: CREATE TABLE table_24565004_7 (nationality² VARCHAR, name VARCHAR) ### Question: What is the nationality of Louis floch ### Answer: SELECT nationality² FROM table_24565004_7 WHERE name = "Louis Floch" |
Which player had 252 appearances | CREATE TABLE table_24565004_7 (name VARCHAR, appearances¹ VARCHAR) | SELECT name FROM table_24565004_7 WHERE appearances¹ = 252 | ### Context: CREATE TABLE table_24565004_7 (name VARCHAR, appearances¹ VARCHAR) ### Question: Which player had 252 appearances ### Answer: SELECT name FROM table_24565004_7 WHERE appearances¹ = 252 |
What is the nationality of the player who scored 13 goals | CREATE TABLE table_24565004_7 (nationality² VARCHAR, goals¹ VARCHAR) | SELECT nationality² FROM table_24565004_7 WHERE goals¹ = 13 | ### Context: CREATE TABLE table_24565004_7 (nationality² VARCHAR, goals¹ VARCHAR) ### Question: What is the nationality of the player who scored 13 goals ### Answer: SELECT nationality² FROM table_24565004_7 WHERE goals¹ = 13 |
how many time is the final record is 9–16–5? | CREATE TABLE table_245711_2 (season VARCHAR, final_record VARCHAR) | SELECT COUNT(season) FROM table_245711_2 WHERE final_record = "9–16–5" | ### Context: CREATE TABLE table_245711_2 (season VARCHAR, final_record VARCHAR) ### Question: how many time is the final record is 9–16–5? ### Answer: SELECT COUNT(season) FROM table_245711_2 WHERE final_record = "9–16–5" |
What station was sent on flight up and was launched on 23 July 1980 18:33:03? | CREATE TABLE table_245800_2 (flight_up VARCHAR, launch_date VARCHAR) | SELECT flight_up FROM table_245800_2 WHERE launch_date = "23 July 1980 18:33:03" | ### Context: CREATE TABLE table_245800_2 (flight_up VARCHAR, launch_date VARCHAR) ### Question: What station was sent on flight up and was launched on 23 July 1980 18:33:03? ### Answer: SELECT flight_up FROM table_245800_2 WHERE launch_date = "23 July 1980 18:33:03" |
Who were the crews on the flight up of Soyuz T-3? | CREATE TABLE table_245800_2 (crew VARCHAR, flight_up VARCHAR) | SELECT crew FROM table_245800_2 WHERE flight_up = "Soyuz T-3" | ### Context: CREATE TABLE table_245800_2 (crew VARCHAR, flight_up VARCHAR) ### Question: Who were the crews on the flight up of Soyuz T-3? ### Answer: SELECT crew FROM table_245800_2 WHERE flight_up = "Soyuz T-3" |
How many days were the station of Soyuz 35 in flight down were in orbit? | CREATE TABLE table_245800_2 (duration__days_ VARCHAR, flight_down VARCHAR) | SELECT duration__days_ FROM table_245800_2 WHERE flight_down = "Soyuz 35" | ### Context: CREATE TABLE table_245800_2 (duration__days_ VARCHAR, flight_down VARCHAR) ### Question: How many days were the station of Soyuz 35 in flight down were in orbit? ### Answer: SELECT duration__days_ FROM table_245800_2 WHERE flight_down = "Soyuz 35" |
Name the number of gn divisions for mannar | CREATE TABLE table_24574438_1 (gn_divisions VARCHAR, ds_division VARCHAR) | SELECT COUNT(gn_divisions) FROM table_24574438_1 WHERE ds_division = "Mannar" | ### Context: CREATE TABLE table_24574438_1 (gn_divisions VARCHAR, ds_division VARCHAR) ### Question: Name the number of gn divisions for mannar ### Answer: SELECT COUNT(gn_divisions) FROM table_24574438_1 WHERE ds_division = "Mannar" |
Name the sinhalese for manthai west | CREATE TABLE table_24574438_1 (sinhalese INTEGER, ds_division VARCHAR) | SELECT MAX(sinhalese) FROM table_24574438_1 WHERE ds_division = "Manthai West" | ### Context: CREATE TABLE table_24574438_1 (sinhalese INTEGER, ds_division VARCHAR) ### Question: Name the sinhalese for manthai west ### Answer: SELECT MAX(sinhalese) FROM table_24574438_1 WHERE ds_division = "Manthai West" |
Name the least indian tamil for population density being 240 | CREATE TABLE table_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR) | SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240 | ### Context: CREATE TABLE table_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR) ### Question: Name the least indian tamil for population density being 240 ### Answer: SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240 |
Name the popultion density being manthai west | CREATE TABLE table_24574438_1 (population_density___km_2__ VARCHAR, ds_division VARCHAR) | SELECT population_density___km_2__ FROM table_24574438_1 WHERE ds_division = "Manthai West" | ### Context: CREATE TABLE table_24574438_1 (population_density___km_2__ VARCHAR, ds_division VARCHAR) ### Question: Name the popultion density being manthai west ### Answer: SELECT population_density___km_2__ FROM table_24574438_1 WHERE ds_division = "Manthai West" |
Name the total number of sinhalese for indian tamil being 177 | CREATE TABLE table_24574438_1 (sinhalese VARCHAR, indian_tamil VARCHAR) | SELECT COUNT(sinhalese) FROM table_24574438_1 WHERE indian_tamil = 177 | ### Context: CREATE TABLE table_24574438_1 (sinhalese VARCHAR, indian_tamil VARCHAR) ### Question: Name the total number of sinhalese for indian tamil being 177 ### Answer: SELECT COUNT(sinhalese) FROM table_24574438_1 WHERE indian_tamil = 177 |
Name the least area | CREATE TABLE table_24574438_1 (area__km_2__ INTEGER) | SELECT MIN(area__km_2__) FROM table_24574438_1 | ### Context: CREATE TABLE table_24574438_1 (area__km_2__ INTEGER) ### Question: Name the least area ### Answer: SELECT MIN(area__km_2__) FROM table_24574438_1 |
When westcott is in division one how many leagues are in division 5? | CREATE TABLE table_24575253_4 (division_five VARCHAR, division_one VARCHAR) | SELECT COUNT(division_five) FROM table_24575253_4 WHERE division_one = "Westcott" | ### Context: CREATE TABLE table_24575253_4 (division_five VARCHAR, division_one VARCHAR) ### Question: When westcott is in division one how many leagues are in division 5? ### Answer: SELECT COUNT(division_five) FROM table_24575253_4 WHERE division_one = "Westcott" |
When godstone is in division five who is in division four? | CREATE TABLE table_24575253_4 (division_four VARCHAR, division_five VARCHAR) | SELECT division_four FROM table_24575253_4 WHERE division_five = "Godstone" | ### Context: CREATE TABLE table_24575253_4 (division_four VARCHAR, division_five VARCHAR) ### Question: When godstone is in division five who is in division four? ### Answer: SELECT division_four FROM table_24575253_4 WHERE division_five = "Godstone" |
When the wallington new foresters are in division four what is the season? | CREATE TABLE table_24575253_4 (season VARCHAR, division_four VARCHAR) | SELECT season FROM table_24575253_4 WHERE division_four = "Wallington New Foresters" | ### Context: CREATE TABLE table_24575253_4 (season VARCHAR, division_four VARCHAR) ### Question: When the wallington new foresters are in division four what is the season? ### Answer: SELECT season FROM table_24575253_4 WHERE division_four = "Wallington New Foresters" |
When racing epsom is in division two how many seasons are there? | CREATE TABLE table_24575253_4 (season VARCHAR, division_two VARCHAR) | SELECT COUNT(season) FROM table_24575253_4 WHERE division_two = "Racing Epsom" | ### Context: CREATE TABLE table_24575253_4 (season VARCHAR, division_two VARCHAR) ### Question: When racing epsom is in division two how many seasons are there? ### Answer: SELECT COUNT(season) FROM table_24575253_4 WHERE division_two = "Racing Epsom" |
When westcott 1935 is in division two how many leagues are in division three? | CREATE TABLE table_24575253_4 (division_three VARCHAR, division_two VARCHAR) | SELECT COUNT(division_three) FROM table_24575253_4 WHERE division_two = "Westcott 1935" | ### Context: CREATE TABLE table_24575253_4 (division_three VARCHAR, division_two VARCHAR) ### Question: When westcott 1935 is in division two how many leagues are in division three? ### Answer: SELECT COUNT(division_three) FROM table_24575253_4 WHERE division_two = "Westcott 1935" |
When real holmesdale reserves is division four who is in division one? | CREATE TABLE table_24575253_4 (division_one VARCHAR, division_four VARCHAR) | SELECT division_one FROM table_24575253_4 WHERE division_four = "Real Holmesdale Reserves" | ### Context: CREATE TABLE table_24575253_4 (division_one VARCHAR, division_four VARCHAR) ### Question: When real holmesdale reserves is division four who is in division one? ### Answer: SELECT division_one FROM table_24575253_4 WHERE division_four = "Real Holmesdale Reserves" |
When salyut 7 – ve-4 – eva 1 is the spacecraft, what is the duration? | CREATE TABLE table_245801_2 (duration VARCHAR, spacecraft VARCHAR) | SELECT duration FROM table_245801_2 WHERE spacecraft = "Salyut 7 – VE-4 – EVA 1" | ### Context: CREATE TABLE table_245801_2 (duration VARCHAR, spacecraft VARCHAR) ### Question: When salyut 7 – ve-4 – eva 1 is the spacecraft, what is the duration? ### Answer: SELECT duration FROM table_245801_2 WHERE spacecraft = "Salyut 7 – VE-4 – EVA 1" |
When first woman eva is the comment what is the end -utc? | CREATE TABLE table_245801_2 (end___utc VARCHAR, comments VARCHAR) | SELECT end___utc FROM table_245801_2 WHERE comments = "First woman EVA" | ### Context: CREATE TABLE table_245801_2 (end___utc VARCHAR, comments VARCHAR) ### Question: When first woman eva is the comment what is the end -utc? ### Answer: SELECT end___utc FROM table_245801_2 WHERE comments = "First woman EVA" |
What series did the racer earn 68 points in? | CREATE TABLE table_24585157_1 (series VARCHAR, points VARCHAR) | SELECT series FROM table_24585157_1 WHERE points = "68" | ### Context: CREATE TABLE table_24585157_1 (series VARCHAR, points VARCHAR) ### Question: What series did the racer earn 68 points in? ### Answer: SELECT series FROM table_24585157_1 WHERE points = "68" |
Name the duration for georgi grechko | CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR) | SELECT duration__days_ FROM table_245801_1 WHERE crew = "Georgi Grechko" | ### Context: CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR) ### Question: Name the duration for georgi grechko ### Answer: SELECT duration__days_ FROM table_245801_1 WHERE crew = "Georgi Grechko" |
Name the flight up for 10 december 1982 19:02:36 utc | CREATE TABLE table_245801_1 (flight_up VARCHAR, landing_date VARCHAR) | SELECT flight_up FROM table_245801_1 WHERE landing_date = "10 December 1982 19:02:36 UTC" | ### Context: CREATE TABLE table_245801_1 (flight_up VARCHAR, landing_date VARCHAR) ### Question: Name the flight up for 10 december 1982 19:02:36 utc ### Answer: SELECT flight_up FROM table_245801_1 WHERE landing_date = "10 December 1982 19:02:36 UTC" |
Name the launch date for vladimir lyakhov , aleksandr pavlovich aleksandrov | CREATE TABLE table_245801_1 (launch_date VARCHAR, crew VARCHAR) | SELECT launch_date FROM table_245801_1 WHERE crew = "Vladimir Lyakhov , Aleksandr Pavlovich Aleksandrov" | ### Context: CREATE TABLE table_245801_1 (launch_date VARCHAR, crew VARCHAR) ### Question: Name the launch date for vladimir lyakhov , aleksandr pavlovich aleksandrov ### Answer: SELECT launch_date FROM table_245801_1 WHERE crew = "Vladimir Lyakhov , Aleksandr Pavlovich Aleksandrov" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.