question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which position has a club of Meralomas and a player named David Biddle? | CREATE TABLE table_name_59 (position VARCHAR, club_province VARCHAR, player VARCHAR) | SELECT position FROM table_name_59 WHERE club_province = "meralomas" AND player = "david biddle" | ### Context: CREATE TABLE table_name_59 (position VARCHAR, club_province VARCHAR, player VARCHAR) ### Question: Which position has a club of Meralomas and a player named David Biddle? ### Answer: SELECT position FROM table_name_59 WHERE club_province = "meralomas" AND player = "david biddle" |
What is the average number of caps for Meralomas with positions of centre? | CREATE TABLE table_name_75 (caps INTEGER, club_province VARCHAR, position VARCHAR) | SELECT AVG(caps) FROM table_name_75 WHERE club_province = "meralomas" AND position = "centre" | ### Context: CREATE TABLE table_name_75 (caps INTEGER, club_province VARCHAR, position VARCHAR) ### Question: What is the average number of caps for Meralomas with positions of centre? ### Answer: SELECT AVG(caps) FROM table_name_75 WHERE club_province = "meralomas" AND position = "centre" |
Who are the scorers when the score is 9-2? | CREATE TABLE table_name_4 (scorers VARCHAR, score VARCHAR) | SELECT scorers FROM table_name_4 WHERE score = "9-2" | ### Context: CREATE TABLE table_name_4 (scorers VARCHAR, score VARCHAR) ### Question: Who are the scorers when the score is 9-2? ### Answer: SELECT scorers FROM table_name_4 WHERE score = "9-2" |
What is the smallest population in a region greater than 9? | CREATE TABLE table_name_94 (population INTEGER, region INTEGER) | SELECT MIN(population) FROM table_name_94 WHERE region > 9 | ### Context: CREATE TABLE table_name_94 (population INTEGER, region INTEGER) ### Question: What is the smallest population in a region greater than 9? ### Answer: SELECT MIN(population) FROM table_name_94 WHERE region > 9 |
What is the average area for code 98030 with population over 312? | CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR) | SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312 | ### Context: CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR) ### Question: What is the average area for code 98030 with population over 312? ### Answer: SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312 |
What is the attendance on may 28? | CREATE TABLE table_name_62 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_62 WHERE date = "may 28" | ### Context: CREATE TABLE table_name_62 (attendance VARCHAR, date VARCHAR) ### Question: What is the attendance on may 28? ### Answer: SELECT attendance FROM table_name_62 WHERE date = "may 28" |
On the Date of 4 Oct 2009, who was the Runner(s)-up? | CREATE TABLE table_name_83 (runner_s__up VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_83 WHERE date = "4 oct 2009" | ### Context: CREATE TABLE table_name_83 (runner_s__up VARCHAR, date VARCHAR) ### Question: On the Date of 4 Oct 2009, who was the Runner(s)-up? ### Answer: SELECT runner_s__up FROM table_name_83 WHERE date = "4 oct 2009" |
On the Date of 2 Aug 2009, who was the Runner(s)-up? | CREATE TABLE table_name_52 (runner_s__up VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_52 WHERE date = "2 aug 2009" | ### Context: CREATE TABLE table_name_52 (runner_s__up VARCHAR, date VARCHAR) ### Question: On the Date of 2 Aug 2009, who was the Runner(s)-up? ### Answer: SELECT runner_s__up FROM table_name_52 WHERE date = "2 aug 2009" |
Which Tournament was on the Date 6 Sep 2009? | CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_23 WHERE date = "6 sep 2009" | ### Context: CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR) ### Question: Which Tournament was on the Date 6 Sep 2009? ### Answer: SELECT tournament FROM table_name_23 WHERE date = "6 sep 2009" |
What was the Winning score for the Mynavi ABC Championship Tournament? | CREATE TABLE table_name_55 (winning_score VARCHAR, tournament VARCHAR) | SELECT winning_score FROM table_name_55 WHERE tournament = "mynavi abc championship" | ### Context: CREATE TABLE table_name_55 (winning_score VARCHAR, tournament VARCHAR) ### Question: What was the Winning score for the Mynavi ABC Championship Tournament? ### Answer: SELECT winning_score FROM table_name_55 WHERE tournament = "mynavi abc championship" |
What was the Winning score when the Margin of victory is 5 strokes and the Date was 6 Sep 2009? | CREATE TABLE table_name_29 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR) | SELECT winning_score FROM table_name_29 WHERE margin_of_victory = "5 strokes" AND date = "6 sep 2009" | ### Context: CREATE TABLE table_name_29 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR) ### Question: What was the Winning score when the Margin of victory is 5 strokes and the Date was 6 Sep 2009? ### Answer: SELECT winning_score FROM table_name_29 WHERE margin_of_victory = "5 strokes" AND date = "6 sep 2009" |
Who was the Runner(s)-up on the Date 4 Oct 2009? | CREATE TABLE table_name_66 (runner_s__up VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_66 WHERE date = "4 oct 2009" | ### Context: CREATE TABLE table_name_66 (runner_s__up VARCHAR, date VARCHAR) ### Question: Who was the Runner(s)-up on the Date 4 Oct 2009? ### Answer: SELECT runner_s__up FROM table_name_66 WHERE date = "4 oct 2009" |
What is the score with third place of stefan edberg? | CREATE TABLE table_name_33 (score VARCHAR, third_place VARCHAR) | SELECT score FROM table_name_33 WHERE third_place = "stefan edberg" | ### Context: CREATE TABLE table_name_33 (score VARCHAR, third_place VARCHAR) ### Question: What is the score with third place of stefan edberg? ### Answer: SELECT score FROM table_name_33 WHERE third_place = "stefan edberg" |
Name the runner-up for algarve tournament | CREATE TABLE table_name_40 (runner_up VARCHAR, tournament VARCHAR) | SELECT runner_up FROM table_name_40 WHERE tournament = "algarve" | ### Context: CREATE TABLE table_name_40 (runner_up VARCHAR, tournament VARCHAR) ### Question: Name the runner-up for algarve tournament ### Answer: SELECT runner_up FROM table_name_40 WHERE tournament = "algarve" |
I want to know the tournament that has a third place of magnus gustafsson | CREATE TABLE table_name_25 (tournament VARCHAR, third_place VARCHAR) | SELECT tournament FROM table_name_25 WHERE third_place = "magnus gustafsson" | ### Context: CREATE TABLE table_name_25 (tournament VARCHAR, third_place VARCHAR) ### Question: I want to know the tournament that has a third place of magnus gustafsson ### Answer: SELECT tournament FROM table_name_25 WHERE third_place = "magnus gustafsson" |
Who was the winner when the third place was fernando meligeni? | CREATE TABLE table_name_11 (winner VARCHAR, third_place VARCHAR) | SELECT winner FROM table_name_11 WHERE third_place = "fernando meligeni" | ### Context: CREATE TABLE table_name_11 (winner VARCHAR, third_place VARCHAR) ### Question: Who was the winner when the third place was fernando meligeni? ### Answer: SELECT winner FROM table_name_11 WHERE third_place = "fernando meligeni" |
Name the tournament for patrick rafter winning | CREATE TABLE table_name_3 (tournament VARCHAR, winner VARCHAR) | SELECT tournament FROM table_name_3 WHERE winner = "patrick rafter" | ### Context: CREATE TABLE table_name_3 (tournament VARCHAR, winner VARCHAR) ### Question: Name the tournament for patrick rafter winning ### Answer: SELECT tournament FROM table_name_3 WHERE winner = "patrick rafter" |
Who was the owner in 1996 of trainer Nick Zito? | CREATE TABLE table_name_10 (owner VARCHAR, trainer VARCHAR, year VARCHAR) | SELECT owner FROM table_name_10 WHERE trainer = "nick zito" AND year = "1996" | ### Context: CREATE TABLE table_name_10 (owner VARCHAR, trainer VARCHAR, year VARCHAR) ### Question: Who was the owner in 1996 of trainer Nick Zito? ### Answer: SELECT owner FROM table_name_10 WHERE trainer = "nick zito" AND year = "1996" |
What year did jockey Ramon Dominguez have a distance of 1-1/16? | CREATE TABLE table_name_40 (year VARCHAR, distance VARCHAR, jockey VARCHAR) | SELECT year FROM table_name_40 WHERE distance = "1-1/16" AND jockey = "ramon dominguez" | ### Context: CREATE TABLE table_name_40 (year VARCHAR, distance VARCHAR, jockey VARCHAR) ### Question: What year did jockey Ramon Dominguez have a distance of 1-1/16? ### Answer: SELECT year FROM table_name_40 WHERE distance = "1-1/16" AND jockey = "ramon dominguez" |
Who was the owner of the trainer Steve Klesaris? | CREATE TABLE table_name_80 (owner VARCHAR, trainer VARCHAR) | SELECT owner FROM table_name_80 WHERE trainer = "steve klesaris" | ### Context: CREATE TABLE table_name_80 (owner VARCHAR, trainer VARCHAR) ### Question: Who was the owner of the trainer Steve Klesaris? ### Answer: SELECT owner FROM table_name_80 WHERE trainer = "steve klesaris" |
Who is the owner of the Raglan Road winner? | CREATE TABLE table_name_43 (owner VARCHAR, winner VARCHAR) | SELECT owner FROM table_name_43 WHERE winner = "raglan road" | ### Context: CREATE TABLE table_name_43 (owner VARCHAR, winner VARCHAR) ### Question: Who is the owner of the Raglan Road winner? ### Answer: SELECT owner FROM table_name_43 WHERE winner = "raglan road" |
What year was Burning Roma the winner? | CREATE TABLE table_name_2 (year VARCHAR, winner VARCHAR) | SELECT year FROM table_name_2 WHERE winner = "burning roma" | ### Context: CREATE TABLE table_name_2 (year VARCHAR, winner VARCHAR) ### Question: What year was Burning Roma the winner? ### Answer: SELECT year FROM table_name_2 WHERE winner = "burning roma" |
What is the win/loss of coach Peter German? | CREATE TABLE table_name_23 (win_loss VARCHAR, coach VARCHAR) | SELECT win_loss FROM table_name_23 WHERE coach = "peter german" | ### Context: CREATE TABLE table_name_23 (win_loss VARCHAR, coach VARCHAR) ### Question: What is the win/loss of coach Peter German? ### Answer: SELECT win_loss FROM table_name_23 WHERE coach = "peter german" |
Which tyre was before 1995 with 142 laps? | CREATE TABLE table_name_14 (tyres VARCHAR, year VARCHAR, laps VARCHAR) | SELECT tyres FROM table_name_14 WHERE year < 1995 AND laps = 142 | ### Context: CREATE TABLE table_name_14 (tyres VARCHAR, year VARCHAR, laps VARCHAR) ### Question: Which tyre was before 1995 with 142 laps? ### Answer: SELECT tyres FROM table_name_14 WHERE year < 1995 AND laps = 142 |
Which tyres has more than 5 laps with team nissan motorsports international? | CREATE TABLE table_name_89 (tyres VARCHAR, laps VARCHAR, team VARCHAR) | SELECT tyres FROM table_name_89 WHERE laps > 5 AND team = "nissan motorsports international" | ### Context: CREATE TABLE table_name_89 (tyres VARCHAR, laps VARCHAR, team VARCHAR) ### Question: Which tyres has more than 5 laps with team nissan motorsports international? ### Answer: SELECT tyres FROM table_name_89 WHERE laps > 5 AND team = "nissan motorsports international" |
What position that has m tyres and 352 or more laps? | CREATE TABLE table_name_56 (pos VARCHAR, tyres VARCHAR, laps VARCHAR) | SELECT pos FROM table_name_56 WHERE tyres = "m" AND laps > 352 | ### Context: CREATE TABLE table_name_56 (pos VARCHAR, tyres VARCHAR, laps VARCHAR) ### Question: What position that has m tyres and 352 or more laps? ### Answer: SELECT pos FROM table_name_56 WHERE tyres = "m" AND laps > 352 |
who is the team 2 when the team 1 is sestese(e16)? | CREATE TABLE table_name_29 (team_2 VARCHAR, team_1 VARCHAR) | SELECT team_2 FROM table_name_29 WHERE team_1 = "sestese(e16)" | ### Context: CREATE TABLE table_name_29 (team_2 VARCHAR, team_1 VARCHAR) ### Question: who is the team 2 when the team 1 is sestese(e16)? ### Answer: SELECT team_2 FROM table_name_29 WHERE team_1 = "sestese(e16)" |
What is the largest base pair with a Strain of unspecified? | CREATE TABLE table_name_2 (base_pairs INTEGER, strain VARCHAR) | SELECT MAX(base_pairs) FROM table_name_2 WHERE strain = "unspecified" | ### Context: CREATE TABLE table_name_2 (base_pairs INTEGER, strain VARCHAR) ### Question: What is the largest base pair with a Strain of unspecified? ### Answer: SELECT MAX(base_pairs) FROM table_name_2 WHERE strain = "unspecified" |
What is the lowst base pair with a Species of borrelia garinii, and a Genes larger than 832? | CREATE TABLE table_name_21 (base_pairs INTEGER, species VARCHAR, genes VARCHAR) | SELECT MIN(base_pairs) FROM table_name_21 WHERE species = "borrelia garinii" AND genes > 832 | ### Context: CREATE TABLE table_name_21 (base_pairs INTEGER, species VARCHAR, genes VARCHAR) ### Question: What is the lowst base pair with a Species of borrelia garinii, and a Genes larger than 832? ### Answer: SELECT MIN(base_pairs) FROM table_name_21 WHERE species = "borrelia garinii" AND genes > 832 |
What type has an unspecified species and less than 367 genes? | CREATE TABLE table_name_65 (type VARCHAR, species VARCHAR, genes VARCHAR) | SELECT type FROM table_name_65 WHERE species = "unspecified" AND genes < 367 | ### Context: CREATE TABLE table_name_65 (type VARCHAR, species VARCHAR, genes VARCHAR) ### Question: What type has an unspecified species and less than 367 genes? ### Answer: SELECT type FROM table_name_65 WHERE species = "unspecified" AND genes < 367 |
What base pair has 832 genes? | CREATE TABLE table_name_79 (base_pairs VARCHAR, genes VARCHAR) | SELECT base_pairs FROM table_name_79 WHERE genes = 832 | ### Context: CREATE TABLE table_name_79 (base_pairs VARCHAR, genes VARCHAR) ### Question: What base pair has 832 genes? ### Answer: SELECT base_pairs FROM table_name_79 WHERE genes = 832 |
Which competition was ranked 9? | CREATE TABLE table_name_53 (competition VARCHAR, rank VARCHAR) | SELECT competition FROM table_name_53 WHERE rank = 9 | ### Context: CREATE TABLE table_name_53 (competition VARCHAR, rank VARCHAR) ### Question: Which competition was ranked 9? ### Answer: SELECT competition FROM table_name_53 WHERE rank = 9 |
What is the sum of draws with 274-357 goals? | CREATE TABLE table_name_94 (drawn INTEGER, goals VARCHAR) | SELECT SUM(drawn) FROM table_name_94 WHERE goals = "274-357" | ### Context: CREATE TABLE table_name_94 (drawn INTEGER, goals VARCHAR) ### Question: What is the sum of draws with 274-357 goals? ### Answer: SELECT SUM(drawn) FROM table_name_94 WHERE goals = "274-357" |
What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8? | CREATE TABLE table_name_65 (played_2 INTEGER, drawn VARCHAR, club_1 VARCHAR, lost VARCHAR, seasons VARCHAR) | SELECT MIN(played_2) FROM table_name_65 WHERE lost > 83 AND seasons = 8 AND club_1 = "chernomorets novorossiysk" AND drawn < 65 | ### Context: CREATE TABLE table_name_65 (played_2 INTEGER, drawn VARCHAR, club_1 VARCHAR, lost VARCHAR, seasons VARCHAR) ### Question: What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8? ### Answer: SELECT MIN(played_2) FROM table_name_65 WHERE lost > 83 AND seasons = 8 AND club_1 = "chernomorets novorossiysk" AND drawn < 65 |
What is the rank number with 562-506 goals before season 13? | CREATE TABLE table_name_88 (rank VARCHAR, goals VARCHAR, seasons VARCHAR) | SELECT COUNT(rank) FROM table_name_88 WHERE goals = "562-506" AND seasons < 13 | ### Context: CREATE TABLE table_name_88 (rank VARCHAR, goals VARCHAR, seasons VARCHAR) ### Question: What is the rank number with 562-506 goals before season 13? ### Answer: SELECT COUNT(rank) FROM table_name_88 WHERE goals = "562-506" AND seasons < 13 |
How many seasons have goals of 261-338 with more than 111 losses? | CREATE TABLE table_name_77 (seasons VARCHAR, goals VARCHAR, lost VARCHAR) | SELECT COUNT(seasons) FROM table_name_77 WHERE goals = "261-338" AND lost > 111 | ### Context: CREATE TABLE table_name_77 (seasons VARCHAR, goals VARCHAR, lost VARCHAR) ### Question: How many seasons have goals of 261-338 with more than 111 losses? ### Answer: SELECT COUNT(seasons) FROM table_name_77 WHERE goals = "261-338" AND lost > 111 |
What is the highest season number with 57 draws, rank 20, and more than 1 spell? | CREATE TABLE table_name_28 (seasons INTEGER, spells VARCHAR, drawn VARCHAR, rank VARCHAR) | SELECT MAX(seasons) FROM table_name_28 WHERE drawn = 57 AND rank = 20 AND spells > 1 | ### Context: CREATE TABLE table_name_28 (seasons INTEGER, spells VARCHAR, drawn VARCHAR, rank VARCHAR) ### Question: What is the highest season number with 57 draws, rank 20, and more than 1 spell? ### Answer: SELECT MAX(seasons) FROM table_name_28 WHERE drawn = 57 AND rank = 20 AND spells > 1 |
What was the results of the game at Doha? | CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_51 WHERE venue = "doha" | ### Context: CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR) ### Question: What was the results of the game at Doha? ### Answer: SELECT result FROM table_name_51 WHERE venue = "doha" |
What was the score during the competition of 1998 fifa world cup qualification? | CREATE TABLE table_name_42 (score VARCHAR, competition VARCHAR) | SELECT score FROM table_name_42 WHERE competition = "1998 fifa world cup qualification" | ### Context: CREATE TABLE table_name_42 (score VARCHAR, competition VARCHAR) ### Question: What was the score during the competition of 1998 fifa world cup qualification? ### Answer: SELECT score FROM table_name_42 WHERE competition = "1998 fifa world cup qualification" |
What is the competition that took place on October 1, 1994? | CREATE TABLE table_name_45 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_45 WHERE date = "october 1, 1994" | ### Context: CREATE TABLE table_name_45 (competition VARCHAR, date VARCHAR) ### Question: What is the competition that took place on October 1, 1994? ### Answer: SELECT competition FROM table_name_45 WHERE date = "october 1, 1994" |
What is the competition that had a 2-2 result? | CREATE TABLE table_name_58 (competition VARCHAR, result VARCHAR) | SELECT competition FROM table_name_58 WHERE result = "2-2" | ### Context: CREATE TABLE table_name_58 (competition VARCHAR, result VARCHAR) ### Question: What is the competition that had a 2-2 result? ### Answer: SELECT competition FROM table_name_58 WHERE result = "2-2" |
Where did the competition take place that had a 4-2 result? | CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR) | SELECT venue FROM table_name_46 WHERE result = "4-2" | ### Context: CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR) ### Question: Where did the competition take place that had a 4-2 result? ### Answer: SELECT venue FROM table_name_46 WHERE result = "4-2" |
Where was the competition that took place that had a 5-1 result? | CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR) | SELECT venue FROM table_name_7 WHERE result = "5-1" | ### Context: CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR) ### Question: Where was the competition that took place that had a 5-1 result? ### Answer: SELECT venue FROM table_name_7 WHERE result = "5-1" |
Tell me the highest goals with tries less than 1 and fullback position | CREATE TABLE table_name_5 (goals INTEGER, tries VARCHAR, position VARCHAR) | SELECT MAX(goals) FROM table_name_5 WHERE tries < 1 AND position = "fullback" | ### Context: CREATE TABLE table_name_5 (goals INTEGER, tries VARCHAR, position VARCHAR) ### Question: Tell me the highest goals with tries less than 1 and fullback position ### Answer: SELECT MAX(goals) FROM table_name_5 WHERE tries < 1 AND position = "fullback" |
Tell me the lowest tries for goals more than 0 with centre position and points less than 54 | CREATE TABLE table_name_40 (tries INTEGER, points VARCHAR, goals VARCHAR, position VARCHAR) | SELECT MIN(tries) FROM table_name_40 WHERE goals > 0 AND position = "centre" AND points < 54 | ### Context: CREATE TABLE table_name_40 (tries INTEGER, points VARCHAR, goals VARCHAR, position VARCHAR) ### Question: Tell me the lowest tries for goals more than 0 with centre position and points less than 54 ### Answer: SELECT MIN(tries) FROM table_name_40 WHERE goals > 0 AND position = "centre" AND points < 54 |
I want to know the player with tries more than 1 and position of hooker with points less than 54 | CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR, tries VARCHAR, points VARCHAR) | SELECT player FROM table_name_18 WHERE tries > 1 AND points < 54 AND position = "hooker" | ### Context: CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR, tries VARCHAR, points VARCHAR) ### Question: I want to know the player with tries more than 1 and position of hooker with points less than 54 ### Answer: SELECT player FROM table_name_18 WHERE tries > 1 AND points < 54 AND position = "hooker" |
Tell me the player with points larger than 36 and goals more than 0 with tries of 12 | CREATE TABLE table_name_56 (player VARCHAR, tries VARCHAR, points VARCHAR, goals VARCHAR) | SELECT player FROM table_name_56 WHERE points > 36 AND goals > 0 AND tries = 12 | ### Context: CREATE TABLE table_name_56 (player VARCHAR, tries VARCHAR, points VARCHAR, goals VARCHAR) ### Question: Tell me the player with points larger than 36 and goals more than 0 with tries of 12 ### Answer: SELECT player FROM table_name_56 WHERE points > 36 AND goals > 0 AND tries = 12 |
What Tournament was the 2010 Olympic Games? | CREATE TABLE table_name_58 (tournament VARCHAR) | SELECT tournament FROM table_name_58 WHERE 2010 = "olympic games" | ### Context: CREATE TABLE table_name_58 (tournament VARCHAR) ### Question: What Tournament was the 2010 Olympic Games? ### Answer: SELECT tournament FROM table_name_58 WHERE 2010 = "olympic games" |
Which width had an entered service year of 2010? | CREATE TABLE table_name_3 (width VARCHAR, entered_service VARCHAR) | SELECT width FROM table_name_3 WHERE entered_service = 2010 | ### Context: CREATE TABLE table_name_3 (width VARCHAR, entered_service VARCHAR) ### Question: Which width had an entered service year of 2010? ### Answer: SELECT width FROM table_name_3 WHERE entered_service = 2010 |
What is the most recent built year when the year of entering service was more recent than 2003, and the knots is less than 27? | CREATE TABLE table_name_44 (built INTEGER, entered_service VARCHAR, knots VARCHAR) | SELECT MAX(built) FROM table_name_44 WHERE entered_service > 2003 AND knots < 27 | ### Context: CREATE TABLE table_name_44 (built INTEGER, entered_service VARCHAR, knots VARCHAR) ### Question: What is the most recent built year when the year of entering service was more recent than 2003, and the knots is less than 27? ### Answer: SELECT MAX(built) FROM table_name_44 WHERE entered_service > 2003 AND knots < 27 |
How many knots did the Ms Moby Vincent have when passengers was less than 1.6? | CREATE TABLE table_name_11 (knots VARCHAR, ship VARCHAR, passengers VARCHAR) | SELECT COUNT(knots) FROM table_name_11 WHERE ship = "ms moby vincent" AND passengers < 1.6 | ### Context: CREATE TABLE table_name_11 (knots VARCHAR, ship VARCHAR, passengers VARCHAR) ### Question: How many knots did the Ms Moby Vincent have when passengers was less than 1.6? ### Answer: SELECT COUNT(knots) FROM table_name_11 WHERE ship = "ms moby vincent" AND passengers < 1.6 |
Where did Richmond play as the away team? | CREATE TABLE table_name_51 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_51 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_51 (venue VARCHAR, away_team VARCHAR) ### Question: Where did Richmond play as the away team? ### Answer: SELECT venue FROM table_name_51 WHERE away_team = "richmond" |
When the phillies 1:15 pm played on April 9, what was the attendance? | CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_21 WHERE opponent = "phillies 1:15 pm" AND date = "april 9" | ### Context: CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: When the phillies 1:15 pm played on April 9, what was the attendance? ### Answer: SELECT attendance FROM table_name_21 WHERE opponent = "phillies 1:15 pm" AND date = "april 9" |
When was there a score of 5-1? | CREATE TABLE table_name_42 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_42 WHERE score = "5-1" | ### Context: CREATE TABLE table_name_42 (date VARCHAR, score VARCHAR) ### Question: When was there a score of 5-1? ### Answer: SELECT date FROM table_name_42 WHERE score = "5-1" |
What is the average number of silvers for nations with over 1 bronze medal? | CREATE TABLE table_name_62 (silver INTEGER, bronze INTEGER) | SELECT AVG(silver) FROM table_name_62 WHERE bronze > 1 | ### Context: CREATE TABLE table_name_62 (silver INTEGER, bronze INTEGER) ### Question: What is the average number of silvers for nations with over 1 bronze medal? ### Answer: SELECT AVG(silver) FROM table_name_62 WHERE bronze > 1 |
What is the Interregnum ended for Count Palatine of Saxony of frederick augustus i, elector of saxony? | CREATE TABLE table_name_37 (interregnum_ended VARCHAR, count_palatine_of_saxony VARCHAR) | SELECT interregnum_ended FROM table_name_37 WHERE count_palatine_of_saxony = "frederick augustus i, elector of saxony" | ### Context: CREATE TABLE table_name_37 (interregnum_ended VARCHAR, count_palatine_of_saxony VARCHAR) ### Question: What is the Interregnum ended for Count Palatine of Saxony of frederick augustus i, elector of saxony? ### Answer: SELECT interregnum_ended FROM table_name_37 WHERE count_palatine_of_saxony = "frederick augustus i, elector of saxony" |
What is the Interregnum ended for Count Palatine of Saxony of john george ii, elector of saxony? | CREATE TABLE table_name_69 (interregnum_ended VARCHAR, count_palatine_of_saxony VARCHAR) | SELECT interregnum_ended FROM table_name_69 WHERE count_palatine_of_saxony = "john george ii, elector of saxony" | ### Context: CREATE TABLE table_name_69 (interregnum_ended VARCHAR, count_palatine_of_saxony VARCHAR) ### Question: What is the Interregnum ended for Count Palatine of Saxony of john george ii, elector of saxony? ### Answer: SELECT interregnum_ended FROM table_name_69 WHERE count_palatine_of_saxony = "john george ii, elector of saxony" |
What is the duration for Count Palatine of the Rhine of charles albert, elector of bavaria? | CREATE TABLE table_name_53 (duration VARCHAR, count_palatine_of_the_rhine VARCHAR) | SELECT duration FROM table_name_53 WHERE count_palatine_of_the_rhine = "charles albert, elector of bavaria" | ### Context: CREATE TABLE table_name_53 (duration VARCHAR, count_palatine_of_the_rhine VARCHAR) ### Question: What is the duration for Count Palatine of the Rhine of charles albert, elector of bavaria? ### Answer: SELECT duration FROM table_name_53 WHERE count_palatine_of_the_rhine = "charles albert, elector of bavaria" |
What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii? | CREATE TABLE table_name_65 (count_palatine_of_the_rhine VARCHAR, interregnum_began VARCHAR) | SELECT count_palatine_of_the_rhine FROM table_name_65 WHERE interregnum_began = "2 april 1657 death of ferdinand iii" | ### Context: CREATE TABLE table_name_65 (count_palatine_of_the_rhine VARCHAR, interregnum_began VARCHAR) ### Question: What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii? ### Answer: SELECT count_palatine_of_the_rhine FROM table_name_65 WHERE interregnum_began = "2 april 1657 death of ferdinand iii" |
What is the Interregnum ended for the person with a Duration of 3 months, 6 days? | CREATE TABLE table_name_78 (interregnum_ended VARCHAR, duration VARCHAR) | SELECT interregnum_ended FROM table_name_78 WHERE duration = "3 months, 6 days" | ### Context: CREATE TABLE table_name_78 (interregnum_ended VARCHAR, duration VARCHAR) ### Question: What is the Interregnum ended for the person with a Duration of 3 months, 6 days? ### Answer: SELECT interregnum_ended FROM table_name_78 WHERE duration = "3 months, 6 days" |
What was the crowd size when the home team was Hawthorn? | CREATE TABLE table_name_53 (crowd VARCHAR, home_team VARCHAR) | SELECT crowd FROM table_name_53 WHERE home_team = "hawthorn" | ### Context: CREATE TABLE table_name_53 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the crowd size when the home team was Hawthorn? ### Answer: SELECT crowd FROM table_name_53 WHERE home_team = "hawthorn" |
What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65? | CREATE TABLE table_name_25 (share INTEGER, rank__overall_ VARCHAR, timeslot VARCHAR, air_date VARCHAR) | SELECT SUM(share) FROM table_name_25 WHERE timeslot = "8:30 p.m." AND air_date = "march 27, 2008" AND rank__overall_ > 65 | ### Context: CREATE TABLE table_name_25 (share INTEGER, rank__overall_ VARCHAR, timeslot VARCHAR, air_date VARCHAR) ### Question: What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65? ### Answer: SELECT SUM(share) FROM table_name_25 WHERE timeslot = "8:30 p.m." AND air_date = "march 27, 2008" AND rank__overall_ > 65 |
What is the total number of Viewers with a Rank (Night) of n/a, and a Timeslot of 8:30 p.m.? | CREATE TABLE table_name_80 (viewers__m_ VARCHAR, rank__night_ VARCHAR, timeslot VARCHAR) | SELECT COUNT(viewers__m_) FROM table_name_80 WHERE rank__night_ = "n/a" AND timeslot = "8:30 p.m." | ### Context: CREATE TABLE table_name_80 (viewers__m_ VARCHAR, rank__night_ VARCHAR, timeslot VARCHAR) ### Question: What is the total number of Viewers with a Rank (Night) of n/a, and a Timeslot of 8:30 p.m.? ### Answer: SELECT COUNT(viewers__m_) FROM table_name_80 WHERE rank__night_ = "n/a" AND timeslot = "8:30 p.m." |
How many people attended the game when Calgary was the home team and the decision was McLean? | CREATE TABLE table_name_11 (attendance VARCHAR, decision VARCHAR, home VARCHAR) | SELECT COUNT(attendance) FROM table_name_11 WHERE decision = "mclean" AND home = "calgary" | ### Context: CREATE TABLE table_name_11 (attendance VARCHAR, decision VARCHAR, home VARCHAR) ### Question: How many people attended the game when Calgary was the home team and the decision was McLean? ### Answer: SELECT COUNT(attendance) FROM table_name_11 WHERE decision = "mclean" AND home = "calgary" |
What is the record of the game when Los Angeles was the home team? | CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_38 WHERE home = "los angeles" | ### Context: CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR) ### Question: What is the record of the game when Los Angeles was the home team? ### Answer: SELECT record FROM table_name_38 WHERE home = "los angeles" |
What is the record of the game with a score of 1 – 5? | CREATE TABLE table_name_39 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_39 WHERE score = "1 – 5" | ### Context: CREATE TABLE table_name_39 (record VARCHAR, score VARCHAR) ### Question: What is the record of the game with a score of 1 – 5? ### Answer: SELECT record FROM table_name_39 WHERE score = "1 – 5" |
What is the least number of people to attend a game when Los Angeles was the home team? | CREATE TABLE table_name_97 (attendance INTEGER, home VARCHAR) | SELECT MIN(attendance) FROM table_name_97 WHERE home = "los angeles" | ### Context: CREATE TABLE table_name_97 (attendance INTEGER, home VARCHAR) ### Question: What is the least number of people to attend a game when Los Angeles was the home team? ### Answer: SELECT MIN(attendance) FROM table_name_97 WHERE home = "los angeles" |
who is the runner- up when the tournament is santiago? | CREATE TABLE table_name_96 (runner_up VARCHAR, tournament VARCHAR) | SELECT runner_up FROM table_name_96 WHERE tournament = "santiago" | ### Context: CREATE TABLE table_name_96 (runner_up VARCHAR, tournament VARCHAR) ### Question: who is the runner- up when the tournament is santiago? ### Answer: SELECT runner_up FROM table_name_96 WHERE tournament = "santiago" |
what is the score when the runner-up is richard krajicek? | CREATE TABLE table_name_54 (score VARCHAR, runner_up VARCHAR) | SELECT score FROM table_name_54 WHERE runner_up = "richard krajicek" | ### Context: CREATE TABLE table_name_54 (score VARCHAR, runner_up VARCHAR) ### Question: what is the score when the runner-up is richard krajicek? ### Answer: SELECT score FROM table_name_54 WHERE runner_up = "richard krajicek" |
what is the tournament when the score is 7-6(0), 6-3? | CREATE TABLE table_name_48 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_48 WHERE score = "7-6(0), 6-3" | ### Context: CREATE TABLE table_name_48 (tournament VARCHAR, score VARCHAR) ### Question: what is the tournament when the score is 7-6(0), 6-3? ### Answer: SELECT tournament FROM table_name_48 WHERE score = "7-6(0), 6-3" |
who is third place when the tournament is delray beach? | CREATE TABLE table_name_77 (third_place VARCHAR, tournament VARCHAR) | SELECT third_place FROM table_name_77 WHERE tournament = "delray beach" | ### Context: CREATE TABLE table_name_77 (third_place VARCHAR, tournament VARCHAR) ### Question: who is third place when the tournament is delray beach? ### Answer: SELECT third_place FROM table_name_77 WHERE tournament = "delray beach" |
What was the score in the Continental Qualifier on February 23, 2003? | CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR, date VARCHAR) | SELECT score FROM table_name_63 WHERE competition = "continental qualifier" AND date = "february 23, 2003" | ### Context: CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR, date VARCHAR) ### Question: What was the score in the Continental Qualifier on February 23, 2003? ### Answer: SELECT score FROM table_name_63 WHERE competition = "continental qualifier" AND date = "february 23, 2003" |
What was the score for the World Cup Qualifier? | CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR) | SELECT score FROM table_name_72 WHERE competition = "world cup qualifier" | ### Context: CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR) ### Question: What was the score for the World Cup Qualifier? ### Answer: SELECT score FROM table_name_72 WHERE competition = "world cup qualifier" |
What was the result on February 18, 2003? | CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_61 WHERE date = "february 18, 2003" | ### Context: CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) ### Question: What was the result on February 18, 2003? ### Answer: SELECT result FROM table_name_61 WHERE date = "february 18, 2003" |
When was the ship that had a fate of 'converted to laker, 1961; still in service' commissioned? | CREATE TABLE table_name_14 (commissioned VARCHAR, fate VARCHAR) | SELECT commissioned FROM table_name_14 WHERE fate = "converted to laker, 1961; still in service" | ### Context: CREATE TABLE table_name_14 (commissioned VARCHAR, fate VARCHAR) ### Question: When was the ship that had a fate of 'converted to laker, 1961; still in service' commissioned? ### Answer: SELECT commissioned FROM table_name_14 WHERE fate = "converted to laker, 1961; still in service" |
When was the ship originally named sachem finally decommissioned? | CREATE TABLE table_name_94 (final_decommission VARCHAR, original_name VARCHAR) | SELECT final_decommission FROM table_name_94 WHERE original_name = "sachem" | ### Context: CREATE TABLE table_name_94 (final_decommission VARCHAR, original_name VARCHAR) ### Question: When was the ship originally named sachem finally decommissioned? ### Answer: SELECT final_decommission FROM table_name_94 WHERE original_name = "sachem" |
What did the away team score in the game against Richmond? | CREATE TABLE table_name_69 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_69 WHERE home_team = "richmond" | ### Context: CREATE TABLE table_name_69 (away_team VARCHAR, home_team VARCHAR) ### Question: What did the away team score in the game against Richmond? ### Answer: SELECT away_team AS score FROM table_name_69 WHERE home_team = "richmond" |
Which player has no 0 results and multiples ties? | CREATE TABLE table_name_41 (player VARCHAR, no_result VARCHAR, tied VARCHAR) | SELECT player FROM table_name_41 WHERE no_result = 0 AND tied > 0 | ### Context: CREATE TABLE table_name_41 (player VARCHAR, no_result VARCHAR, tied VARCHAR) ### Question: Which player has no 0 results and multiples ties? ### Answer: SELECT player FROM table_name_41 WHERE no_result = 0 AND tied > 0 |
What is the low no result with more than 5 loss and a win ration lesser than 58.06? | CREATE TABLE table_name_80 (no_result INTEGER, lost VARCHAR, _percentage_win_ VARCHAR, a_ VARCHAR) | SELECT MIN(no_result) FROM table_name_80 WHERE lost > 5 AND _percentage_win_[a_] < 58.06 | ### Context: CREATE TABLE table_name_80 (no_result INTEGER, lost VARCHAR, _percentage_win_ VARCHAR, a_ VARCHAR) ### Question: What is the low no result with more than 5 loss and a win ration lesser than 58.06? ### Answer: SELECT MIN(no_result) FROM table_name_80 WHERE lost > 5 AND _percentage_win_[a_] < 58.06 |
Name the opponent for may 12 | CREATE TABLE table_name_73 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_73 WHERE date = "may 12" | ### Context: CREATE TABLE table_name_73 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent for may 12 ### Answer: SELECT opponent FROM table_name_73 WHERE date = "may 12" |
Name the date for Loss of schilling (5–2) | CREATE TABLE table_name_31 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_31 WHERE loss = "schilling (5–2)" | ### Context: CREATE TABLE table_name_31 (date VARCHAR, loss VARCHAR) ### Question: Name the date for Loss of schilling (5–2) ### Answer: SELECT date FROM table_name_31 WHERE loss = "schilling (5–2)" |
Name the record for may 31 | CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_64 WHERE date = "may 31" | ### Context: CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR) ### Question: Name the record for may 31 ### Answer: SELECT record FROM table_name_64 WHERE date = "may 31" |
What was the highest average for the contestant having an interview score of 8.46? | CREATE TABLE table_name_84 (average INTEGER, interview VARCHAR) | SELECT MAX(average) FROM table_name_84 WHERE interview = 8.46 | ### Context: CREATE TABLE table_name_84 (average INTEGER, interview VARCHAR) ### Question: What was the highest average for the contestant having an interview score of 8.46? ### Answer: SELECT MAX(average) FROM table_name_84 WHERE interview = 8.46 |
What day had a time of 29.816? | CREATE TABLE table_name_45 (date VARCHAR, time VARCHAR) | SELECT date FROM table_name_45 WHERE time = "29.816" | ### Context: CREATE TABLE table_name_45 (date VARCHAR, time VARCHAR) ### Question: What day had a time of 29.816? ### Answer: SELECT date FROM table_name_45 WHERE time = "29.816" |
What kind of car has the NASCAR Camping World Truck Series record? | CREATE TABLE table_name_7 (car_make VARCHAR, record VARCHAR) | SELECT car_make FROM table_name_7 WHERE record = "nascar camping world truck series" | ### Context: CREATE TABLE table_name_7 (car_make VARCHAR, record VARCHAR) ### Question: What kind of car has the NASCAR Camping World Truck Series record? ### Answer: SELECT car_make FROM table_name_7 WHERE record = "nascar camping world truck series" |
Was it a home game on the date of April 6? | CREATE TABLE table_name_6 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_6 WHERE date = "april 6" | ### Context: CREATE TABLE table_name_6 (home VARCHAR, date VARCHAR) ### Question: Was it a home game on the date of April 6? ### Answer: SELECT home FROM table_name_6 WHERE date = "april 6" |
What was the date when the home team was Dallas? | CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_28 WHERE home = "dallas" | ### Context: CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR) ### Question: What was the date when the home team was Dallas? ### Answer: SELECT date FROM table_name_28 WHERE home = "dallas" |
What is Rhett Mclane's highest pick number? | CREATE TABLE table_name_94 (pick__number INTEGER, player VARCHAR) | SELECT MAX(pick__number) FROM table_name_94 WHERE player = "rhett mclane" | ### Context: CREATE TABLE table_name_94 (pick__number INTEGER, player VARCHAR) ### Question: What is Rhett Mclane's highest pick number? ### Answer: SELECT MAX(pick__number) FROM table_name_94 WHERE player = "rhett mclane" |
What is Colorado College's lowest pick number? | CREATE TABLE table_name_9 (pick__number INTEGER, college VARCHAR) | SELECT MIN(pick__number) FROM table_name_9 WHERE college = "colorado" | ### Context: CREATE TABLE table_name_9 (pick__number INTEGER, college VARCHAR) ### Question: What is Colorado College's lowest pick number? ### Answer: SELECT MIN(pick__number) FROM table_name_9 WHERE college = "colorado" |
What player belongs to Northwestern College? | CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_34 WHERE college = "northwestern" | ### Context: CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR) ### Question: What player belongs to Northwestern College? ### Answer: SELECT player FROM table_name_34 WHERE college = "northwestern" |
What CFL Team is Pascal Masson on? | CREATE TABLE table_name_76 (cfl_team VARCHAR, player VARCHAR) | SELECT cfl_team FROM table_name_76 WHERE player = "pascal masson" | ### Context: CREATE TABLE table_name_76 (cfl_team VARCHAR, player VARCHAR) ### Question: What CFL Team is Pascal Masson on? ### Answer: SELECT cfl_team FROM table_name_76 WHERE player = "pascal masson" |
What's the number & name for the date after 1954? | CREATE TABLE table_name_28 (number_ VARCHAR, _name VARCHAR, date INTEGER) | SELECT number_ & _name FROM table_name_28 WHERE date > 1954 | ### Context: CREATE TABLE table_name_28 (number_ VARCHAR, _name VARCHAR, date INTEGER) ### Question: What's the number & name for the date after 1954? ### Answer: SELECT number_ & _name FROM table_name_28 WHERE date > 1954 |
What's the date for princess royal class locomotive trust? | CREATE TABLE table_name_77 (date VARCHAR, owner_s_ VARCHAR) | SELECT date FROM table_name_77 WHERE owner_s_ = "princess royal class locomotive trust" | ### Context: CREATE TABLE table_name_77 (date VARCHAR, owner_s_ VARCHAR) ### Question: What's the date for princess royal class locomotive trust? ### Answer: SELECT date FROM table_name_77 WHERE owner_s_ = "princess royal class locomotive trust" |
What's the number & name for the description peckett 0-4-0st? | CREATE TABLE table_name_72 (number_ VARCHAR, _name VARCHAR, description VARCHAR) | SELECT number_ & _name FROM table_name_72 WHERE description = "peckett 0-4-0st" | ### Context: CREATE TABLE table_name_72 (number_ VARCHAR, _name VARCHAR, description VARCHAR) ### Question: What's the number & name for the description peckett 0-4-0st? ### Answer: SELECT number_ & _name FROM table_name_72 WHERE description = "peckett 0-4-0st" |
What's the number & name for a description of lms fowler class 3f 0-6-0t? | CREATE TABLE table_name_10 (number_ VARCHAR, _name VARCHAR, description VARCHAR) | SELECT number_ & _name FROM table_name_10 WHERE description = "lms fowler class 3f 0-6-0t" | ### Context: CREATE TABLE table_name_10 (number_ VARCHAR, _name VARCHAR, description VARCHAR) ### Question: What's the number & name for a description of lms fowler class 3f 0-6-0t? ### Answer: SELECT number_ & _name FROM table_name_10 WHERE description = "lms fowler class 3f 0-6-0t" |
Who drive 74 laps in a grid larger than 9? | CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_25 WHERE laps = 74 AND grid > 9 | ### Context: CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Who drive 74 laps in a grid larger than 9? ### Answer: SELECT driver FROM table_name_25 WHERE laps = 74 AND grid > 9 |
Who is the player for St. Mary's team? | CREATE TABLE table_name_48 (player VARCHAR, school_club_team_country VARCHAR) | SELECT player FROM table_name_48 WHERE school_club_team_country = "st. mary's" | ### Context: CREATE TABLE table_name_48 (player VARCHAR, school_club_team_country VARCHAR) ### Question: Who is the player for St. Mary's team? ### Answer: SELECT player FROM table_name_48 WHERE school_club_team_country = "st. mary's" |
How tall is the player from Mississippi | CREATE TABLE table_name_15 (height_in_ft VARCHAR, school_club_team_country VARCHAR) | SELECT height_in_ft FROM table_name_15 WHERE school_club_team_country = "mississippi" | ### Context: CREATE TABLE table_name_15 (height_in_ft VARCHAR, school_club_team_country VARCHAR) ### Question: How tall is the player from Mississippi ### Answer: SELECT height_in_ft FROM table_name_15 WHERE school_club_team_country = "mississippi" |
What is the player number for the player from Centenary? | CREATE TABLE table_name_66 (no_s_ VARCHAR, school_club_team_country VARCHAR) | SELECT no_s_ FROM table_name_66 WHERE school_club_team_country = "centenary" | ### Context: CREATE TABLE table_name_66 (no_s_ VARCHAR, school_club_team_country VARCHAR) ### Question: What is the player number for the player from Centenary? ### Answer: SELECT no_s_ FROM table_name_66 WHERE school_club_team_country = "centenary" |
How tall is player 42 from Long Beach State? | CREATE TABLE table_name_69 (height_in_ft VARCHAR, no_s_ VARCHAR, school_club_team_country VARCHAR) | SELECT height_in_ft FROM table_name_69 WHERE no_s_ = "42" AND school_club_team_country = "long beach state" | ### Context: CREATE TABLE table_name_69 (height_in_ft VARCHAR, no_s_ VARCHAR, school_club_team_country VARCHAR) ### Question: How tall is player 42 from Long Beach State? ### Answer: SELECT height_in_ft FROM table_name_69 WHERE no_s_ = "42" AND school_club_team_country = "long beach state" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.