question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What's the record of Carlos Boozer (23) as the leading scorer?
CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR)
SELECT record FROM table_name_83 WHERE leading_scorer = "carlos boozer (23)"
### Context: CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR) ### Question: What's the record of Carlos Boozer (23) as the leading scorer? ### Answer: SELECT record FROM table_name_83 WHERE leading_scorer = "carlos boozer (23)"
What date was Carlos Boozer (23) the leading scorer?
CREATE TABLE table_name_50 (date VARCHAR, leading_scorer VARCHAR)
SELECT date FROM table_name_50 WHERE leading_scorer = "carlos boozer (23)"
### Context: CREATE TABLE table_name_50 (date VARCHAR, leading_scorer VARCHAR) ### Question: What date was Carlos Boozer (23) the leading scorer? ### Answer: SELECT date FROM table_name_50 WHERE leading_scorer = "carlos boozer (23)"
Who was the leading scorer on February 9?
CREATE TABLE table_name_96 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_name_96 WHERE date = "february 9"
### Context: CREATE TABLE table_name_96 (leading_scorer VARCHAR, date VARCHAR) ### Question: Who was the leading scorer on February 9? ### Answer: SELECT leading_scorer FROM table_name_96 WHERE date = "february 9"
While the Hornets were visiting, what date was Deron Williams (29) the leading scorer?
CREATE TABLE table_name_94 (date VARCHAR, leading_scorer VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_94 WHERE leading_scorer = "deron williams (29)" AND visitor = "hornets"
### Context: CREATE TABLE table_name_94 (date VARCHAR, leading_scorer VARCHAR, visitor VARCHAR) ### Question: While the Hornets were visiting, what date was Deron Williams (29) the leading scorer? ### Answer: SELECT date FROM table_name_94 WHERE leading_scorer = "deron williams (29)" AND visitor = "hornets"
Tell me the ships in classs for kuha class
CREATE TABLE table_name_52 (ships_in_class VARCHAR, class VARCHAR)
SELECT ships_in_class FROM table_name_52 WHERE class = "kuha class"
### Context: CREATE TABLE table_name_52 (ships_in_class VARCHAR, class VARCHAR) ### Question: Tell me the ships in classs for kuha class ### Answer: SELECT ships_in_class FROM table_name_52 WHERE class = "kuha class"
How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes?
CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR, constructor VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_20 WHERE constructor = "talbot-lago - talbot" AND laps < 83 AND driver = "johnny claes"
### Context: CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR, constructor VARCHAR, laps VARCHAR) ### Question: How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes? ### Answer: SELECT COUNT(grid) FROM table_name_20 WHERE constructor = "talbot-lago - talbot" AND laps < 83 AND driver = "johnny claes"
When the away team is Geelong, what is the highest crowd count?
CREATE TABLE table_name_86 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_86 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_86 (crowd INTEGER, away_team VARCHAR) ### Question: When the away team is Geelong, what is the highest crowd count? ### Answer: SELECT MAX(crowd) FROM table_name_86 WHERE away_team = "geelong"
What is the total crowd count for the venue Princes Park?
CREATE TABLE table_name_23 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_23 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_23 (crowd INTEGER, venue VARCHAR) ### Question: What is the total crowd count for the venue Princes Park? ### Answer: SELECT SUM(crowd) FROM table_name_23 WHERE venue = "princes park"
What is the home port of m40?
CREATE TABLE table_name_62 (home_port VARCHAR, pennant VARCHAR)
SELECT home_port FROM table_name_62 WHERE pennant = "m40"
### Context: CREATE TABLE table_name_62 (home_port VARCHAR, pennant VARCHAR) ### Question: What is the home port of m40? ### Answer: SELECT home_port FROM table_name_62 WHERE pennant = "m40"
What is the navy for middleton with a home port of portsmouth after 1983?
CREATE TABLE table_name_84 (navy VARCHAR, name VARCHAR, home_port VARCHAR, commissioned VARCHAR)
SELECT navy FROM table_name_84 WHERE home_port = "portsmouth" AND commissioned > 1983 AND name = "middleton"
### Context: CREATE TABLE table_name_84 (navy VARCHAR, name VARCHAR, home_port VARCHAR, commissioned VARCHAR) ### Question: What is the navy for middleton with a home port of portsmouth after 1983? ### Answer: SELECT navy FROM table_name_84 WHERE home_port = "portsmouth" AND commissioned > 1983 AND name = "middleton"
When did Charles III die?
CREATE TABLE table_name_4 (date_of_death VARCHAR, name VARCHAR)
SELECT date_of_death FROM table_name_4 WHERE name = "charles iii"
### Context: CREATE TABLE table_name_4 (date_of_death VARCHAR, name VARCHAR) ### Question: When did Charles III die? ### Answer: SELECT date_of_death FROM table_name_4 WHERE name = "charles iii"
What is the fastest lap of the race where Giuseppe Farina was the winning driver?
CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT fastest_lap FROM table_name_76 WHERE winning_driver = "giuseppe farina"
### Context: CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_driver VARCHAR) ### Question: What is the fastest lap of the race where Giuseppe Farina was the winning driver? ### Answer: SELECT fastest_lap FROM table_name_76 WHERE winning_driver = "giuseppe farina"
What is the report status of the race with Ferrari as the constructor and a monza circuit?
CREATE TABLE table_name_92 (report VARCHAR, constructor VARCHAR, circuit VARCHAR)
SELECT report FROM table_name_92 WHERE constructor = "ferrari" AND circuit = "monza"
### Context: CREATE TABLE table_name_92 (report VARCHAR, constructor VARCHAR, circuit VARCHAR) ### Question: What is the report status of the race with Ferrari as the constructor and a monza circuit? ### Answer: SELECT report FROM table_name_92 WHERE constructor = "ferrari" AND circuit = "monza"
What is the constructor of the race with Juan Manuel Fangio as the fastest lap and Giuseppe Farina as the winning driver?
CREATE TABLE table_name_26 (constructor VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT constructor FROM table_name_26 WHERE fastest_lap = "juan manuel fangio" AND winning_driver = "giuseppe farina"
### Context: CREATE TABLE table_name_26 (constructor VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR) ### Question: What is the constructor of the race with Juan Manuel Fangio as the fastest lap and Giuseppe Farina as the winning driver? ### Answer: SELECT constructor FROM table_name_26 WHERE fastest_lap = "juan manuel fangio" AND winning_driver = "giuseppe farina"
Who was the winning driver of the British Grand Prix where Giuseppe Farina had the fastest lap?
CREATE TABLE table_name_21 (winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR)
SELECT winning_driver FROM table_name_21 WHERE fastest_lap = "giuseppe farina" AND race = "british grand prix"
### Context: CREATE TABLE table_name_21 (winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR) ### Question: Who was the winning driver of the British Grand Prix where Giuseppe Farina had the fastest lap? ### Answer: SELECT winning_driver FROM table_name_21 WHERE fastest_lap = "giuseppe farina" AND race = "british grand prix"
What is the race that had a tyre of p and Juan Manuel Fangio as the winning driver?
CREATE TABLE table_name_99 (race VARCHAR, tyre VARCHAR, winning_driver VARCHAR)
SELECT race FROM table_name_99 WHERE tyre = "p" AND winning_driver = "juan manuel fangio"
### Context: CREATE TABLE table_name_99 (race VARCHAR, tyre VARCHAR, winning_driver VARCHAR) ### Question: What is the race that had a tyre of p and Juan Manuel Fangio as the winning driver? ### Answer: SELECT race FROM table_name_99 WHERE tyre = "p" AND winning_driver = "juan manuel fangio"
What is the Quantity of Type 2-4-2t?
CREATE TABLE table_name_76 (quantity INTEGER, type VARCHAR)
SELECT SUM(quantity) FROM table_name_76 WHERE type = "2-4-2t"
### Context: CREATE TABLE table_name_76 (quantity INTEGER, type VARCHAR) ### Question: What is the Quantity of Type 2-4-2t? ### Answer: SELECT SUM(quantity) FROM table_name_76 WHERE type = "2-4-2t"
What was the Quantity on Date 1900?
CREATE TABLE table_name_71 (quantity INTEGER, date VARCHAR)
SELECT SUM(quantity) FROM table_name_71 WHERE date = "1900"
### Context: CREATE TABLE table_name_71 (quantity INTEGER, date VARCHAR) ### Question: What was the Quantity on Date 1900? ### Answer: SELECT SUM(quantity) FROM table_name_71 WHERE date = "1900"
What is the Quantity of type 2-4-2t?
CREATE TABLE table_name_59 (quantity VARCHAR, type VARCHAR)
SELECT COUNT(quantity) FROM table_name_59 WHERE type = "2-4-2t"
### Context: CREATE TABLE table_name_59 (quantity VARCHAR, type VARCHAR) ### Question: What is the Quantity of type 2-4-2t? ### Answer: SELECT COUNT(quantity) FROM table_name_59 WHERE type = "2-4-2t"
What is the smallest grid with a Time/Retired of engine, and a qual of less than 138.75?
CREATE TABLE table_name_70 (grid INTEGER, time_retired VARCHAR, qual VARCHAR)
SELECT MIN(grid) FROM table_name_70 WHERE time_retired = "engine" AND qual < 138.75
### Context: CREATE TABLE table_name_70 (grid INTEGER, time_retired VARCHAR, qual VARCHAR) ### Question: What is the smallest grid with a Time/Retired of engine, and a qual of less than 138.75? ### Answer: SELECT MIN(grid) FROM table_name_70 WHERE time_retired = "engine" AND qual < 138.75
What laps have a rank larger than 13 and the Time/Retired is accident, and a Qual smaller than 136.98?
CREATE TABLE table_name_40 (laps VARCHAR, qual VARCHAR, rank VARCHAR, time_retired VARCHAR)
SELECT laps FROM table_name_40 WHERE rank > 13 AND time_retired = "accident" AND qual < 136.98
### Context: CREATE TABLE table_name_40 (laps VARCHAR, qual VARCHAR, rank VARCHAR, time_retired VARCHAR) ### Question: What laps have a rank larger than 13 and the Time/Retired is accident, and a Qual smaller than 136.98? ### Answer: SELECT laps FROM table_name_40 WHERE rank > 13 AND time_retired = "accident" AND qual < 136.98
What position is Sal Martinez?
CREATE TABLE table_name_32 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_32 WHERE player = "sal martinez"
### Context: CREATE TABLE table_name_32 (position VARCHAR, player VARCHAR) ### Question: What position is Sal Martinez? ### Answer: SELECT position FROM table_name_32 WHERE player = "sal martinez"
Who constructed the car that has a Time/Retired of +2:06.0?
CREATE TABLE table_name_67 (constructor VARCHAR, time_retired VARCHAR)
SELECT constructor FROM table_name_67 WHERE time_retired = "+2:06.0"
### Context: CREATE TABLE table_name_67 (constructor VARCHAR, time_retired VARCHAR) ### Question: Who constructed the car that has a Time/Retired of +2:06.0? ### Answer: SELECT constructor FROM table_name_67 WHERE time_retired = "+2:06.0"
What is the lap total for the grid under 15 that retired due to transmission?
CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
SELECT SUM(laps) FROM table_name_65 WHERE grid < 15 AND time_retired = "transmission"
### Context: CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) ### Question: What is the lap total for the grid under 15 that retired due to transmission? ### Answer: SELECT SUM(laps) FROM table_name_65 WHERE grid < 15 AND time_retired = "transmission"
Who constructed juan manuel fangio's car with over 76 laps and a grid under 10?
CREATE TABLE table_name_47 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT constructor FROM table_name_47 WHERE grid < 10 AND laps > 76 AND driver = "juan manuel fangio"
### Context: CREATE TABLE table_name_47 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR) ### Question: Who constructed juan manuel fangio's car with over 76 laps and a grid under 10? ### Answer: SELECT constructor FROM table_name_47 WHERE grid < 10 AND laps > 76 AND driver = "juan manuel fangio"
what is the sum of laps when grid is less than 20 and johnny herbert is driving?
CREATE TABLE table_name_29 (laps INTEGER, grid VARCHAR, driver VARCHAR)
SELECT SUM(laps) FROM table_name_29 WHERE grid < 20 AND driver = "johnny herbert"
### Context: CREATE TABLE table_name_29 (laps INTEGER, grid VARCHAR, driver VARCHAR) ### Question: what is the sum of laps when grid is less than 20 and johnny herbert is driving? ### Answer: SELECT SUM(laps) FROM table_name_29 WHERE grid < 20 AND driver = "johnny herbert"
who is the driver for the car constructed by ferrari with a time/retired of +1:06.683?
CREATE TABLE table_name_43 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_43 WHERE constructor = "ferrari" AND time_retired = "+1:06.683"
### Context: CREATE TABLE table_name_43 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR) ### Question: who is the driver for the car constructed by ferrari with a time/retired of +1:06.683? ### Answer: SELECT driver FROM table_name_43 WHERE constructor = "ferrari" AND time_retired = "+1:06.683"
who is the driver when grid is 11?
CREATE TABLE table_name_81 (driver VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_81 WHERE grid = 11
### Context: CREATE TABLE table_name_81 (driver VARCHAR, grid VARCHAR) ### Question: who is the driver when grid is 11? ### Answer: SELECT driver FROM table_name_81 WHERE grid = 11
Who was the opponent with a score of 30-12?
CREATE TABLE table_name_72 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_72 WHERE result = "30-12"
### Context: CREATE TABLE table_name_72 (opponent VARCHAR, result VARCHAR) ### Question: Who was the opponent with a score of 30-12? ### Answer: SELECT opponent FROM table_name_72 WHERE result = "30-12"
Who was the opponent with a score of 40-20?
CREATE TABLE table_name_89 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_89 WHERE result = "40-20"
### Context: CREATE TABLE table_name_89 (opponent VARCHAR, result VARCHAR) ### Question: Who was the opponent with a score of 40-20? ### Answer: SELECT opponent FROM table_name_89 WHERE result = "40-20"
When did Geelong play as the away team?
CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_31 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR) ### Question: When did Geelong play as the away team? ### Answer: SELECT date FROM table_name_31 WHERE away_team = "geelong"
What is the total capacity (MW) of the farm that is noted as being under construction?
CREATE TABLE table_name_17 (capacity__mw_ VARCHAR, notes VARCHAR)
SELECT COUNT(capacity__mw_) FROM table_name_17 WHERE notes = "under construction"
### Context: CREATE TABLE table_name_17 (capacity__mw_ VARCHAR, notes VARCHAR) ### Question: What is the total capacity (MW) of the farm that is noted as being under construction? ### Answer: SELECT COUNT(capacity__mw_) FROM table_name_17 WHERE notes = "under construction"
Which state is Tehachapi Pass Wind Farm located in?
CREATE TABLE table_name_72 (state_province VARCHAR, wind_farm VARCHAR)
SELECT state_province FROM table_name_72 WHERE wind_farm = "tehachapi pass wind farm"
### Context: CREATE TABLE table_name_72 (state_province VARCHAR, wind_farm VARCHAR) ### Question: Which state is Tehachapi Pass Wind Farm located in? ### Answer: SELECT state_province FROM table_name_72 WHERE wind_farm = "tehachapi pass wind farm"
Which wind farm is in the USA and is noted as having multiple farms?
CREATE TABLE table_name_58 (wind_farm VARCHAR, country VARCHAR, notes VARCHAR)
SELECT wind_farm FROM table_name_58 WHERE country = "usa" AND notes = "multiple farms"
### Context: CREATE TABLE table_name_58 (wind_farm VARCHAR, country VARCHAR, notes VARCHAR) ### Question: Which wind farm is in the USA and is noted as having multiple farms? ### Answer: SELECT wind_farm FROM table_name_58 WHERE country = "usa" AND notes = "multiple farms"
What special notes are included for the windfarm with a capacity (MW) of 343?
CREATE TABLE table_name_86 (notes VARCHAR, capacity__mw_ VARCHAR)
SELECT notes FROM table_name_86 WHERE capacity__mw_ = 343
### Context: CREATE TABLE table_name_86 (notes VARCHAR, capacity__mw_ VARCHAR) ### Question: What special notes are included for the windfarm with a capacity (MW) of 343? ### Answer: SELECT notes FROM table_name_86 WHERE capacity__mw_ = 343
What is the total capacity (MW) of the windfarm located in the state/province of Gansu?
CREATE TABLE table_name_72 (capacity__mw_ INTEGER, state_province VARCHAR)
SELECT SUM(capacity__mw_) FROM table_name_72 WHERE state_province = "gansu"
### Context: CREATE TABLE table_name_72 (capacity__mw_ INTEGER, state_province VARCHAR) ### Question: What is the total capacity (MW) of the windfarm located in the state/province of Gansu? ### Answer: SELECT SUM(capacity__mw_) FROM table_name_72 WHERE state_province = "gansu"
In the game held at Arden Street Oval, what was the score of the home team?
CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_23 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR) ### Question: In the game held at Arden Street Oval, what was the score of the home team? ### Answer: SELECT home_team AS score FROM table_name_23 WHERE venue = "arden street oval"
How many people in total have attended games at Kardinia Park?
CREATE TABLE table_name_93 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_93 WHERE venue = "kardinia park"
### Context: CREATE TABLE table_name_93 (crowd INTEGER, venue VARCHAR) ### Question: How many people in total have attended games at Kardinia Park? ### Answer: SELECT SUM(crowd) FROM table_name_93 WHERE venue = "kardinia park"
Which game at Arden Street Oval had the lowest attendance?
CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR)
SELECT MIN(crowd) FROM table_name_96 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR) ### Question: Which game at Arden Street Oval had the lowest attendance? ### Answer: SELECT MIN(crowd) FROM table_name_96 WHERE venue = "arden street oval"
Where was the game against the away team Footscray held?
CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_49 WHERE away_team = "footscray"
### Context: CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR) ### Question: Where was the game against the away team Footscray held? ### Answer: SELECT venue FROM table_name_49 WHERE away_team = "footscray"
What is the average number of points for clubs that have played more than 42 times?
CREATE TABLE table_name_96 (points INTEGER, played INTEGER)
SELECT AVG(points) FROM table_name_96 WHERE played > 42
### Context: CREATE TABLE table_name_96 (points INTEGER, played INTEGER) ### Question: What is the average number of points for clubs that have played more than 42 times? ### Answer: SELECT AVG(points) FROM table_name_96 WHERE played > 42
What is the total number of goals scored against clubs that have played more than 42 times?
CREATE TABLE table_name_68 (goals_against VARCHAR, played INTEGER)
SELECT COUNT(goals_against) FROM table_name_68 WHERE played > 42
### Context: CREATE TABLE table_name_68 (goals_against VARCHAR, played INTEGER) ### Question: What is the total number of goals scored against clubs that have played more than 42 times? ### Answer: SELECT COUNT(goals_against) FROM table_name_68 WHERE played > 42
On which date did Geelong play at home?
CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_74 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR) ### Question: On which date did Geelong play at home? ### Answer: SELECT date FROM table_name_74 WHERE home_team = "geelong"
Which home team has a venue of windy hill?
CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_32 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR) ### Question: Which home team has a venue of windy hill? ### Answer: SELECT home_team FROM table_name_32 WHERE venue = "windy hill"
If essendon is the home team, what venue did they play at?
CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_87 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR) ### Question: If essendon is the home team, what venue did they play at? ### Answer: SELECT venue FROM table_name_87 WHERE home_team = "essendon"
When the home team is richmond, what was the away team playing?
CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_3 WHERE home_team = "richmond"
### Context: CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR) ### Question: When the home team is richmond, what was the away team playing? ### Answer: SELECT away_team FROM table_name_3 WHERE home_team = "richmond"
When was the lock with 10 caps born?
CREATE TABLE table_name_20 (date_of_birth__age_ VARCHAR, position VARCHAR, caps VARCHAR)
SELECT date_of_birth__age_ FROM table_name_20 WHERE position = "lock" AND caps = 10
### Context: CREATE TABLE table_name_20 (date_of_birth__age_ VARCHAR, position VARCHAR, caps VARCHAR) ### Question: When was the lock with 10 caps born? ### Answer: SELECT date_of_birth__age_ FROM table_name_20 WHERE position = "lock" AND caps = 10
What were the laps of driver Jean-Christophe Boullion?
CREATE TABLE table_name_41 (laps VARCHAR, driver VARCHAR)
SELECT laps FROM table_name_41 WHERE driver = "jean-christophe boullion"
### Context: CREATE TABLE table_name_41 (laps VARCHAR, driver VARCHAR) ### Question: What were the laps of driver Jean-Christophe Boullion? ### Answer: SELECT laps FROM table_name_41 WHERE driver = "jean-christophe boullion"
What Playoffs were held during the years of 2007-08?
CREATE TABLE table_name_70 (playoffs VARCHAR, year VARCHAR)
SELECT playoffs FROM table_name_70 WHERE year = "2007-08"
### Context: CREATE TABLE table_name_70 (playoffs VARCHAR, year VARCHAR) ### Question: What Playoffs were held during the years of 2007-08? ### Answer: SELECT playoffs FROM table_name_70 WHERE year = "2007-08"
On which date did Richmond play as an away team?
CREATE TABLE table_name_4 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_4 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_4 (date VARCHAR, away_team VARCHAR) ### Question: On which date did Richmond play as an away team? ### Answer: SELECT date FROM table_name_4 WHERE away_team = "richmond"
What away team did Melbourne play as the home team?
CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_61 WHERE home_team = "melbourne"
### Context: CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR) ### Question: What away team did Melbourne play as the home team? ### Answer: SELECT away_team FROM table_name_61 WHERE home_team = "melbourne"
Which chapter was founded later than 2012?
CREATE TABLE table_name_14 (chapter VARCHAR, founding_date INTEGER)
SELECT chapter FROM table_name_14 WHERE founding_date > 2012
### Context: CREATE TABLE table_name_14 (chapter VARCHAR, founding_date INTEGER) ### Question: Which chapter was founded later than 2012? ### Answer: SELECT chapter FROM table_name_14 WHERE founding_date > 2012
What is the chapter in Lubbock?
CREATE TABLE table_name_65 (chapter VARCHAR, city VARCHAR)
SELECT chapter FROM table_name_65 WHERE city = "lubbock"
### Context: CREATE TABLE table_name_65 (chapter VARCHAR, city VARCHAR) ### Question: What is the chapter in Lubbock? ### Answer: SELECT chapter FROM table_name_65 WHERE city = "lubbock"
What was the highest Interview score from a contestant who had a swimsuit score of 8.857 and an Average score over 9.097?
CREATE TABLE table_name_66 (interview INTEGER, swimsuit VARCHAR, average VARCHAR)
SELECT MAX(interview) FROM table_name_66 WHERE swimsuit = 8.857 AND average > 9.097
### Context: CREATE TABLE table_name_66 (interview INTEGER, swimsuit VARCHAR, average VARCHAR) ### Question: What was the highest Interview score from a contestant who had a swimsuit score of 8.857 and an Average score over 9.097? ### Answer: SELECT MAX(interview) FROM table_name_66 WHERE swimsuit = 8.857 AND average > 9.097
What year has a Top 25 of 0, and a Earnings ($) larger than 0?
CREATE TABLE table_name_26 (year VARCHAR, top_25 VARCHAR, earnings__$_ VARCHAR)
SELECT year FROM table_name_26 WHERE top_25 = 0 AND earnings__$_ > 0
### Context: CREATE TABLE table_name_26 (year VARCHAR, top_25 VARCHAR, earnings__$_ VARCHAR) ### Question: What year has a Top 25 of 0, and a Earnings ($) larger than 0? ### Answer: SELECT year FROM table_name_26 WHERE top_25 = 0 AND earnings__$_ > 0
What is the highest Top 25 with a Money list rank of 232 and Cuts smaller than 2?
CREATE TABLE table_name_53 (top_25 INTEGER, money_list_rank VARCHAR, cuts_made VARCHAR)
SELECT MAX(top_25) FROM table_name_53 WHERE money_list_rank = "232" AND cuts_made < 2
### Context: CREATE TABLE table_name_53 (top_25 INTEGER, money_list_rank VARCHAR, cuts_made VARCHAR) ### Question: What is the highest Top 25 with a Money list rank of 232 and Cuts smaller than 2? ### Answer: SELECT MAX(top_25) FROM table_name_53 WHERE money_list_rank = "232" AND cuts_made < 2
What is the smallest Earnings that has a Money list rank of 6 and Starts smaller than 22?
CREATE TABLE table_name_93 (earnings__ INTEGER, money_list_rank VARCHAR, starts VARCHAR)
SELECT MIN(earnings__) AS $_ FROM table_name_93 WHERE money_list_rank = "6" AND starts < 22
### Context: CREATE TABLE table_name_93 (earnings__ INTEGER, money_list_rank VARCHAR, starts VARCHAR) ### Question: What is the smallest Earnings that has a Money list rank of 6 and Starts smaller than 22? ### Answer: SELECT MIN(earnings__) AS $_ FROM table_name_93 WHERE money_list_rank = "6" AND starts < 22
What is the highest number of Cuts made that has a Top 10 smaller than 8 and Wins larger than 0?
CREATE TABLE table_name_47 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR)
SELECT MAX(cuts_made) FROM table_name_47 WHERE top_10 < 8 AND wins > 0
### Context: CREATE TABLE table_name_47 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR) ### Question: What is the highest number of Cuts made that has a Top 10 smaller than 8 and Wins larger than 0? ### Answer: SELECT MAX(cuts_made) FROM table_name_47 WHERE top_10 < 8 AND wins > 0
How many Starts that have Cuts made of 2, Top 25 larger than 0, and Earnings ($) smaller than 338,067?
CREATE TABLE table_name_66 (starts VARCHAR, earnings__$_ VARCHAR, cuts_made VARCHAR, top_25 VARCHAR)
SELECT COUNT(starts) FROM table_name_66 WHERE cuts_made = 2 AND top_25 > 0 AND earnings__$_ < 338 OFFSET 067
### Context: CREATE TABLE table_name_66 (starts VARCHAR, earnings__$_ VARCHAR, cuts_made VARCHAR, top_25 VARCHAR) ### Question: How many Starts that have Cuts made of 2, Top 25 larger than 0, and Earnings ($) smaller than 338,067? ### Answer: SELECT COUNT(starts) FROM table_name_66 WHERE cuts_made = 2 AND top_25 > 0 AND earnings__$_ < 338 OFFSET 067
Which event was in round 1, resulted in a win, and a record of 15-4?
CREATE TABLE table_name_70 (event VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR)
SELECT event FROM table_name_70 WHERE round = 1 AND res = "win" AND record = "15-4"
### Context: CREATE TABLE table_name_70 (event VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR) ### Question: Which event was in round 1, resulted in a win, and a record of 15-4? ### Answer: SELECT event FROM table_name_70 WHERE round = 1 AND res = "win" AND record = "15-4"
What is the result when the time was 5:00 and a record of 14-4?
CREATE TABLE table_name_43 (res VARCHAR, time VARCHAR, record VARCHAR)
SELECT res FROM table_name_43 WHERE time = "5:00" AND record = "14-4"
### Context: CREATE TABLE table_name_43 (res VARCHAR, time VARCHAR, record VARCHAR) ### Question: What is the result when the time was 5:00 and a record of 14-4? ### Answer: SELECT res FROM table_name_43 WHERE time = "5:00" AND record = "14-4"
How many wins did Ayr United have?
CREATE TABLE table_name_79 (wins VARCHAR, club VARCHAR)
SELECT wins FROM table_name_79 WHERE club = "ayr united"
### Context: CREATE TABLE table_name_79 (wins VARCHAR, club VARCHAR) ### Question: How many wins did Ayr United have? ### Answer: SELECT wins FROM table_name_79 WHERE club = "ayr united"
When was the final loss of the club last won in 2001 and has a total of 3 wins?
CREATE TABLE table_name_84 (last_final_lost VARCHAR, wins VARCHAR, last_win VARCHAR)
SELECT last_final_lost FROM table_name_84 WHERE wins = "3" AND last_win = "2001"
### Context: CREATE TABLE table_name_84 (last_final_lost VARCHAR, wins VARCHAR, last_win VARCHAR) ### Question: When was the final loss of the club last won in 2001 and has a total of 3 wins? ### Answer: SELECT last_final_lost FROM table_name_84 WHERE wins = "3" AND last_win = "2001"
When was the last win for the club that had a final loss in 2011?
CREATE TABLE table_name_34 (last_win VARCHAR, last_final_lost VARCHAR)
SELECT last_win FROM table_name_34 WHERE last_final_lost = "2011"
### Context: CREATE TABLE table_name_34 (last_win VARCHAR, last_final_lost VARCHAR) ### Question: When was the last win for the club that had a final loss in 2011? ### Answer: SELECT last_win FROM table_name_34 WHERE last_final_lost = "2011"
How many wins did the 8 time runner-up have?
CREATE TABLE table_name_33 (wins VARCHAR, runners_up VARCHAR)
SELECT wins FROM table_name_33 WHERE runners_up = "8"
### Context: CREATE TABLE table_name_33 (wins VARCHAR, runners_up VARCHAR) ### Question: How many wins did the 8 time runner-up have? ### Answer: SELECT wins FROM table_name_33 WHERE runners_up = "8"
How many wins did the club have with the last win in 2000?
CREATE TABLE table_name_42 (wins VARCHAR, last_win VARCHAR)
SELECT wins FROM table_name_42 WHERE last_win = "2000"
### Context: CREATE TABLE table_name_42 (wins VARCHAR, last_win VARCHAR) ### Question: How many wins did the club have with the last win in 2000? ### Answer: SELECT wins FROM table_name_42 WHERE last_win = "2000"
What are the carries of the player Jeremiah Pope?
CREATE TABLE table_name_83 (car INTEGER, player VARCHAR)
SELECT SUM(car) FROM table_name_83 WHERE player = "jeremiah pope"
### Context: CREATE TABLE table_name_83 (car INTEGER, player VARCHAR) ### Question: What are the carries of the player Jeremiah Pope? ### Answer: SELECT SUM(car) FROM table_name_83 WHERE player = "jeremiah pope"
What was the largest crowd that was in attendance for fitzroy?
CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)
SELECT MAX(crowd) FROM table_name_58 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR) ### Question: What was the largest crowd that was in attendance for fitzroy? ### Answer: SELECT MAX(crowd) FROM table_name_58 WHERE home_team = "fitzroy"
Who plays g position for the st. louis bombers?
CREATE TABLE table_name_69 (player VARCHAR, team VARCHAR, position VARCHAR)
SELECT player FROM table_name_69 WHERE team = "st. louis bombers" AND position = "g"
### Context: CREATE TABLE table_name_69 (player VARCHAR, team VARCHAR, position VARCHAR) ### Question: Who plays g position for the st. louis bombers? ### Answer: SELECT player FROM table_name_69 WHERE team = "st. louis bombers" AND position = "g"
Who plays f position for depauw?
CREATE TABLE table_name_15 (player VARCHAR, position VARCHAR, college VARCHAR)
SELECT player FROM table_name_15 WHERE position = "f" AND college = "depauw"
### Context: CREATE TABLE table_name_15 (player VARCHAR, position VARCHAR, college VARCHAR) ### Question: Who plays f position for depauw? ### Answer: SELECT player FROM table_name_15 WHERE position = "f" AND college = "depauw"
What position does the saint louis player play?
CREATE TABLE table_name_39 (position VARCHAR, college VARCHAR)
SELECT position FROM table_name_39 WHERE college = "saint louis"
### Context: CREATE TABLE table_name_39 (position VARCHAR, college VARCHAR) ### Question: What position does the saint louis player play? ### Answer: SELECT position FROM table_name_39 WHERE college = "saint louis"
Who plays for sam houston state?
CREATE TABLE table_name_79 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_79 WHERE college = "sam houston state"
### Context: CREATE TABLE table_name_79 (player VARCHAR, college VARCHAR) ### Question: Who plays for sam houston state? ### Answer: SELECT player FROM table_name_79 WHERE college = "sam houston state"
How many positions have Points of 30-8 and more than 25 goals?
CREATE TABLE table_name_73 (position VARCHAR, points VARCHAR, goals_for VARCHAR)
SELECT COUNT(position) FROM table_name_73 WHERE points = "30-8" AND goals_for > 25
### Context: CREATE TABLE table_name_73 (position VARCHAR, points VARCHAR, goals_for VARCHAR) ### Question: How many positions have Points of 30-8 and more than 25 goals? ### Answer: SELECT COUNT(position) FROM table_name_73 WHERE points = "30-8" AND goals_for > 25
What is the lowest play with ue figueres club and a goal difference more than 16?
CREATE TABLE table_name_41 (played INTEGER, club VARCHAR, goal_difference VARCHAR)
SELECT MIN(played) FROM table_name_41 WHERE club = "ue figueres" AND goal_difference > 16
### Context: CREATE TABLE table_name_41 (played INTEGER, club VARCHAR, goal_difference VARCHAR) ### Question: What is the lowest play with ue figueres club and a goal difference more than 16? ### Answer: SELECT MIN(played) FROM table_name_41 WHERE club = "ue figueres" AND goal_difference > 16
How many played have 8 wins and more than 58 goals against?
CREATE TABLE table_name_20 (played VARCHAR, wins VARCHAR, goals_against VARCHAR)
SELECT COUNT(played) FROM table_name_20 WHERE wins = 8 AND goals_against > 58
### Context: CREATE TABLE table_name_20 (played VARCHAR, wins VARCHAR, goals_against VARCHAR) ### Question: How many played have 8 wins and more than 58 goals against? ### Answer: SELECT COUNT(played) FROM table_name_20 WHERE wins = 8 AND goals_against > 58
What is withdrawn with a GSR Class of 296?
CREATE TABLE table_name_72 (withdrawn VARCHAR, gsr_class VARCHAR)
SELECT withdrawn FROM table_name_72 WHERE gsr_class = "296"
### Context: CREATE TABLE table_name_72 (withdrawn VARCHAR, gsr_class VARCHAR) ### Question: What is withdrawn with a GSR Class of 296? ### Answer: SELECT withdrawn FROM table_name_72 WHERE gsr_class = "296"
What Inchicore Class has a GSR Class of 235?
CREATE TABLE table_name_4 (inchicore_class VARCHAR, gsr_class VARCHAR)
SELECT inchicore_class FROM table_name_4 WHERE gsr_class = "235"
### Context: CREATE TABLE table_name_4 (inchicore_class VARCHAR, gsr_class VARCHAR) ### Question: What Inchicore Class has a GSR Class of 235? ### Answer: SELECT inchicore_class FROM table_name_4 WHERE gsr_class = "235"
What Inchicore Class has a GSWR Class smaller than 268, and a Type of 0-4-2t?
CREATE TABLE table_name_60 (inchicore_class VARCHAR, gswr_class VARCHAR, type VARCHAR)
SELECT inchicore_class FROM table_name_60 WHERE gswr_class < 268 AND type = "0-4-2t"
### Context: CREATE TABLE table_name_60 (inchicore_class VARCHAR, gswr_class VARCHAR, type VARCHAR) ### Question: What Inchicore Class has a GSWR Class smaller than 268, and a Type of 0-4-2t? ### Answer: SELECT inchicore_class FROM table_name_60 WHERE gswr_class < 268 AND type = "0-4-2t"
Which GSWR Class is from 1893?
CREATE TABLE table_name_80 (gswr_class VARCHAR, year VARCHAR)
SELECT gswr_class FROM table_name_80 WHERE year = "1893"
### Context: CREATE TABLE table_name_80 (gswr_class VARCHAR, year VARCHAR) ### Question: Which GSWR Class is from 1893? ### Answer: SELECT gswr_class FROM table_name_80 WHERE year = "1893"
On the episode that had a run time of 24:57, how many million viewers were there?
CREATE TABLE table_name_5 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
SELECT viewers__in_millions_ FROM table_name_5 WHERE run_time = "24:57"
### Context: CREATE TABLE table_name_5 (viewers__in_millions_ VARCHAR, run_time VARCHAR) ### Question: On the episode that had a run time of 24:57, how many million viewers were there? ### Answer: SELECT viewers__in_millions_ FROM table_name_5 WHERE run_time = "24:57"
What year had a record of 4-21?
CREATE TABLE table_name_32 (year VARCHAR, record VARCHAR)
SELECT year FROM table_name_32 WHERE record = "4-21"
### Context: CREATE TABLE table_name_32 (year VARCHAR, record VARCHAR) ### Question: What year had a record of 4-21? ### Answer: SELECT year FROM table_name_32 WHERE record = "4-21"
What regular season had a record of 16-12?
CREATE TABLE table_name_7 (reg_season VARCHAR, record VARCHAR)
SELECT reg_season FROM table_name_7 WHERE record = "16-12"
### Context: CREATE TABLE table_name_7 (reg_season VARCHAR, record VARCHAR) ### Question: What regular season had a record of 16-12? ### Answer: SELECT reg_season FROM table_name_7 WHERE record = "16-12"
What is the regular season info that had a record of 20-10?
CREATE TABLE table_name_87 (reg_season VARCHAR, record VARCHAR)
SELECT reg_season FROM table_name_87 WHERE record = "20-10"
### Context: CREATE TABLE table_name_87 (reg_season VARCHAR, record VARCHAR) ### Question: What is the regular season info that had a record of 20-10? ### Answer: SELECT reg_season FROM table_name_87 WHERE record = "20-10"
Tell me the 1st leg for asfa rabat
CREATE TABLE table_name_9 (team__number1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_9 WHERE team__number1 = "asfa rabat"
### Context: CREATE TABLE table_name_9 (team__number1 VARCHAR) ### Question: Tell me the 1st leg for asfa rabat ### Answer: SELECT 1 AS st_leg FROM table_name_9 WHERE team__number1 = "asfa rabat"
Tell me the 2nd leg for alemannia aachen
CREATE TABLE table_name_61 (team__number1 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_61 WHERE team__number1 = "alemannia aachen"
### Context: CREATE TABLE table_name_61 (team__number1 VARCHAR) ### Question: Tell me the 2nd leg for alemannia aachen ### Answer: SELECT 2 AS nd_leg FROM table_name_61 WHERE team__number1 = "alemannia aachen"
Tell me the 1st leg for antwerp bc
CREATE TABLE table_name_10 (team__number2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_10 WHERE team__number2 = "antwerp bc"
### Context: CREATE TABLE table_name_10 (team__number2 VARCHAR) ### Question: Tell me the 1st leg for antwerp bc ### Answer: SELECT 1 AS st_leg FROM table_name_10 WHERE team__number2 = "antwerp bc"
Tell me the team 2 for handelsministerium vienna
CREATE TABLE table_name_78 (team__number2 VARCHAR, team__number1 VARCHAR)
SELECT team__number2 FROM table_name_78 WHERE team__number1 = "handelsministerium vienna"
### Context: CREATE TABLE table_name_78 (team__number2 VARCHAR, team__number1 VARCHAR) ### Question: Tell me the team 2 for handelsministerium vienna ### Answer: SELECT team__number2 FROM table_name_78 WHERE team__number1 = "handelsministerium vienna"
On what date did the away team Melbourne play?
CREATE TABLE table_name_83 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_83 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_83 (date VARCHAR, away_team VARCHAR) ### Question: On what date did the away team Melbourne play? ### Answer: SELECT date FROM table_name_83 WHERE away_team = "melbourne"
What home team played the away team South Melbourne?
CREATE TABLE table_name_56 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_56 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_56 (home_team VARCHAR, away_team VARCHAR) ### Question: What home team played the away team South Melbourne? ### Answer: SELECT home_team FROM table_name_56 WHERE away_team = "south melbourne"
Which is the largest area in Greenville County, by square mile?
CREATE TABLE table_name_88 (area__sq_mi_ INTEGER, county VARCHAR)
SELECT MAX(area__sq_mi_) FROM table_name_88 WHERE county = "greenville county"
### Context: CREATE TABLE table_name_88 (area__sq_mi_ INTEGER, county VARCHAR) ### Question: Which is the largest area in Greenville County, by square mile? ### Answer: SELECT MAX(area__sq_mi_) FROM table_name_88 WHERE county = "greenville county"
Which is the total number in the 2010 Census in Oconee County where the area in square miles was less than 674?
CREATE TABLE table_name_9 (county VARCHAR, area__sq_mi_ VARCHAR)
SELECT SUM(2010 AS _census_population) FROM table_name_9 WHERE county = "oconee county" AND area__sq_mi_ < 674
### Context: CREATE TABLE table_name_9 (county VARCHAR, area__sq_mi_ VARCHAR) ### Question: Which is the total number in the 2010 Census in Oconee County where the area in square miles was less than 674? ### Answer: SELECT SUM(2010 AS _census_population) FROM table_name_9 WHERE county = "oconee county" AND area__sq_mi_ < 674
Which Particle has a Rest mass MeV/c 2 of 1192.642(24)?
CREATE TABLE table_name_61 (particle VARCHAR, rest_mass_mev___c_2 VARCHAR)
SELECT particle FROM table_name_61 WHERE rest_mass_mev___c_2 = "1192.642(24)"
### Context: CREATE TABLE table_name_61 (particle VARCHAR, rest_mass_mev___c_2 VARCHAR) ### Question: Which Particle has a Rest mass MeV/c 2 of 1192.642(24)? ### Answer: SELECT particle FROM table_name_61 WHERE rest_mass_mev___c_2 = "1192.642(24)"
Which Particle has an Isospin I of 1 and Commonly decays to p + + π 0 or n 0 + π +?
CREATE TABLE table_name_41 (particle VARCHAR, isospin_i VARCHAR, commonly_decays_to VARCHAR)
SELECT particle FROM table_name_41 WHERE isospin_i = "1" AND commonly_decays_to = "p + + π 0 or n 0 + π +"
### Context: CREATE TABLE table_name_41 (particle VARCHAR, isospin_i VARCHAR, commonly_decays_to VARCHAR) ### Question: Which Particle has an Isospin I of 1 and Commonly decays to p + + π 0 or n 0 + π +? ### Answer: SELECT particle FROM table_name_41 WHERE isospin_i = "1" AND commonly_decays_to = "p + + π 0 or n 0 + π +"
When the Makeup is u s s and the Spin (Parity) J P of 3⁄2 +, what is the Rest mass MeV/C2?
CREATE TABLE table_name_58 (rest_mass_mev___c_2 VARCHAR, makeup VARCHAR, spin___parity___j_p VARCHAR)
SELECT rest_mass_mev___c_2 FROM table_name_58 WHERE makeup = "u s s" AND spin___parity___j_p = "3⁄2 +"
### Context: CREATE TABLE table_name_58 (rest_mass_mev___c_2 VARCHAR, makeup VARCHAR, spin___parity___j_p VARCHAR) ### Question: When the Makeup is u s s and the Spin (Parity) J P of 3⁄2 +, what is the Rest mass MeV/C2? ### Answer: SELECT rest_mass_mev___c_2 FROM table_name_58 WHERE makeup = "u s s" AND spin___parity___j_p = "3⁄2 +"
Which Particle has an Isospin I of 1⁄2, and a Symbol of ξ ∗0 (1530)?
CREATE TABLE table_name_37 (particle VARCHAR, isospin_i VARCHAR, symbol VARCHAR)
SELECT particle FROM table_name_37 WHERE isospin_i = "1⁄2" AND symbol = "ξ ∗0 (1530)"
### Context: CREATE TABLE table_name_37 (particle VARCHAR, isospin_i VARCHAR, symbol VARCHAR) ### Question: Which Particle has an Isospin I of 1⁄2, and a Symbol of ξ ∗0 (1530)? ### Answer: SELECT particle FROM table_name_37 WHERE isospin_i = "1⁄2" AND symbol = "ξ ∗0 (1530)"
Which Particle has a Makeup of d s s and a Spin (Parity) J P of 3⁄2 +?
CREATE TABLE table_name_85 (particle VARCHAR, makeup VARCHAR, spin___parity___j_p VARCHAR)
SELECT particle FROM table_name_85 WHERE makeup = "d s s" AND spin___parity___j_p = "3⁄2 +"
### Context: CREATE TABLE table_name_85 (particle VARCHAR, makeup VARCHAR, spin___parity___j_p VARCHAR) ### Question: Which Particle has a Makeup of d s s and a Spin (Parity) J P of 3⁄2 +? ### Answer: SELECT particle FROM table_name_85 WHERE makeup = "d s s" AND spin___parity___j_p = "3⁄2 +"
Which Particle has a Rest mass MeV/c 2 of 1383.7±1.0?
CREATE TABLE table_name_11 (particle VARCHAR, rest_mass_mev___c_2 VARCHAR)
SELECT particle FROM table_name_11 WHERE rest_mass_mev___c_2 = "1383.7±1.0"
### Context: CREATE TABLE table_name_11 (particle VARCHAR, rest_mass_mev___c_2 VARCHAR) ### Question: Which Particle has a Rest mass MeV/c 2 of 1383.7±1.0? ### Answer: SELECT particle FROM table_name_11 WHERE rest_mass_mev___c_2 = "1383.7±1.0"
What was the title of Ashanti's 2003 rap song?
CREATE TABLE table_name_83 (title VARCHAR, year VARCHAR, genre VARCHAR)
SELECT title FROM table_name_83 WHERE year = 2003 AND genre = "rap"
### Context: CREATE TABLE table_name_83 (title VARCHAR, year VARCHAR, genre VARCHAR) ### Question: What was the title of Ashanti's 2003 rap song? ### Answer: SELECT title FROM table_name_83 WHERE year = 2003 AND genre = "rap"
How many tries did the player Paul Sykes take when he earned 0 points?
CREATE TABLE table_name_49 (tries INTEGER, player VARCHAR, points VARCHAR)
SELECT MAX(tries) FROM table_name_49 WHERE player = "paul sykes" AND points > 0
### Context: CREATE TABLE table_name_49 (tries INTEGER, player VARCHAR, points VARCHAR) ### Question: How many tries did the player Paul Sykes take when he earned 0 points? ### Answer: SELECT MAX(tries) FROM table_name_49 WHERE player = "paul sykes" AND points > 0
Mike Forshaw had 0 goals and 28 points. What is his position?
CREATE TABLE table_name_74 (position VARCHAR, player VARCHAR, goals VARCHAR, points VARCHAR)
SELECT position FROM table_name_74 WHERE goals = 0 AND points = 28 AND player = "mike forshaw"
### Context: CREATE TABLE table_name_74 (position VARCHAR, player VARCHAR, goals VARCHAR, points VARCHAR) ### Question: Mike Forshaw had 0 goals and 28 points. What is his position? ### Answer: SELECT position FROM table_name_74 WHERE goals = 0 AND points = 28 AND player = "mike forshaw"