question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many days did Hawthorn play as a home team? | CREATE TABLE table_16388230_1 (date VARCHAR, home_team VARCHAR) | SELECT COUNT(date) FROM table_16388230_1 WHERE home_team = "Hawthorn" | ### Context: CREATE TABLE table_16388230_1 (date VARCHAR, home_team VARCHAR) ### Question: How many days did Hawthorn play as a home team? ### Answer: SELECT COUNT(date) FROM table_16388230_1 WHERE home_team = "Hawthorn" |
The away team of Richmond played on what grounds? | CREATE TABLE table_16388230_1 (ground VARCHAR, away_team VARCHAR) | SELECT ground FROM table_16388230_1 WHERE away_team = "Richmond" | ### Context: CREATE TABLE table_16388230_1 (ground VARCHAR, away_team VARCHAR) ### Question: The away team of Richmond played on what grounds? ### Answer: SELECT ground FROM table_16388230_1 WHERE away_team = "Richmond" |
What was the away team's score at the venue football park? | CREATE TABLE table_16387953_1 (away_team VARCHAR, ground VARCHAR) | SELECT away_team AS score FROM table_16387953_1 WHERE ground = "Football Park" | ### Context: CREATE TABLE table_16387953_1 (away_team VARCHAR, ground VARCHAR) ### Question: What was the away team's score at the venue football park? ### Answer: SELECT away_team AS score FROM table_16387953_1 WHERE ground = "Football Park" |
What are the scores for games where the home team is Adelaide? | CREATE TABLE table_16387953_1 (home_team VARCHAR) | SELECT home_team AS score FROM table_16387953_1 WHERE home_team = "Adelaide" | ### Context: CREATE TABLE table_16387953_1 (home_team VARCHAR) ### Question: What are the scores for games where the home team is Adelaide? ### Answer: SELECT home_team AS score FROM table_16387953_1 WHERE home_team = "Adelaide" |
On what dates where games played at Football Park? | CREATE TABLE table_16387953_1 (date VARCHAR, ground VARCHAR) | SELECT date FROM table_16387953_1 WHERE ground = "Football Park" | ### Context: CREATE TABLE table_16387953_1 (date VARCHAR, ground VARCHAR) ### Question: On what dates where games played at Football Park? ### Answer: SELECT date FROM table_16387953_1 WHERE ground = "Football Park" |
What was the home team score against Collingwood? | CREATE TABLE table_16387653_1 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_16387653_1 WHERE away_team = "Collingwood" | ### Context: CREATE TABLE table_16387653_1 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team score against Collingwood? ### Answer: SELECT home_team AS score FROM table_16387653_1 WHERE away_team = "Collingwood" |
Who was the away team playing at Carlton? | CREATE TABLE table_16387653_1 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_16387653_1 WHERE home_team = "Carlton" | ### Context: CREATE TABLE table_16387653_1 (away_team VARCHAR, home_team VARCHAR) ### Question: Who was the away team playing at Carlton? ### Answer: SELECT away_team FROM table_16387653_1 WHERE home_team = "Carlton" |
What did the home team score against Richmond? | CREATE TABLE table_16387653_1 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_16387653_1 WHERE away_team = "Richmond" | ### Context: CREATE TABLE table_16387653_1 (home_team VARCHAR, away_team VARCHAR) ### Question: What did the home team score against Richmond? ### Answer: SELECT home_team AS score FROM table_16387653_1 WHERE away_team = "Richmond" |
What was the maximum crowd size against St Kilda? | CREATE TABLE table_16387653_1 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_16387653_1 WHERE away_team = "St Kilda" | ### Context: CREATE TABLE table_16387653_1 (crowd INTEGER, away_team VARCHAR) ### Question: What was the maximum crowd size against St Kilda? ### Answer: SELECT MAX(crowd) FROM table_16387653_1 WHERE away_team = "St Kilda" |
What to Footscray score at home? | CREATE TABLE table_16387653_1 (home_team VARCHAR) | SELECT home_team AS score FROM table_16387653_1 WHERE home_team = "Footscray" | ### Context: CREATE TABLE table_16387653_1 (home_team VARCHAR) ### Question: What to Footscray score at home? ### Answer: SELECT home_team AS score FROM table_16387653_1 WHERE home_team = "Footscray" |
Name the date for bundaberg rum stadium | CREATE TABLE table_16388439_3 (date VARCHAR, ground VARCHAR) | SELECT date FROM table_16388439_3 WHERE ground = "Bundaberg Rum Stadium" | ### Context: CREATE TABLE table_16388439_3 (date VARCHAR, ground VARCHAR) ### Question: Name the date for bundaberg rum stadium ### Answer: SELECT date FROM table_16388439_3 WHERE ground = "Bundaberg Rum Stadium" |
Name the home team score for brisbane lions | CREATE TABLE table_16388439_3 (home_team VARCHAR) | SELECT home_team AS score FROM table_16388439_3 WHERE home_team = "Brisbane Lions" | ### Context: CREATE TABLE table_16388439_3 (home_team VARCHAR) ### Question: Name the home team score for brisbane lions ### Answer: SELECT home_team AS score FROM table_16388439_3 WHERE home_team = "Brisbane Lions" |
Name the home team for football park | CREATE TABLE table_16388439_3 (home_team VARCHAR, ground VARCHAR) | SELECT home_team FROM table_16388439_3 WHERE ground = "Football Park" | ### Context: CREATE TABLE table_16388439_3 (home_team VARCHAR, ground VARCHAR) ### Question: Name the home team for football park ### Answer: SELECT home_team FROM table_16388439_3 WHERE ground = "Football Park" |
Name the away team score for carlton | CREATE TABLE table_16388439_3 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_16388439_3 WHERE home_team = "Carlton" | ### Context: CREATE TABLE table_16388439_3 (away_team VARCHAR, home_team VARCHAR) ### Question: Name the away team score for carlton ### Answer: SELECT away_team AS score FROM table_16388439_3 WHERE home_team = "Carlton" |
Name the date for adelaide for westpac stadium | CREATE TABLE table_16388439_3 (date VARCHAR, home_team VARCHAR, ground VARCHAR) | SELECT date FROM table_16388439_3 WHERE home_team = "Adelaide" AND ground = "Westpac Stadium" | ### Context: CREATE TABLE table_16388439_3 (date VARCHAR, home_team VARCHAR, ground VARCHAR) ### Question: Name the date for adelaide for westpac stadium ### Answer: SELECT date FROM table_16388439_3 WHERE home_team = "Adelaide" AND ground = "Westpac Stadium" |
Name the total number of ground for essendon | CREATE TABLE table_16388439_1 (ground VARCHAR, home_team VARCHAR) | SELECT COUNT(ground) FROM table_16388439_1 WHERE home_team = "Essendon" | ### Context: CREATE TABLE table_16388439_1 (ground VARCHAR, home_team VARCHAR) ### Question: Name the total number of ground for essendon ### Answer: SELECT COUNT(ground) FROM table_16388439_1 WHERE home_team = "Essendon" |
Name the most crowd for essendon | CREATE TABLE table_16388439_1 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_16388439_1 WHERE away_team = "Essendon" | ### Context: CREATE TABLE table_16388439_1 (crowd INTEGER, away_team VARCHAR) ### Question: Name the most crowd for essendon ### Answer: SELECT MAX(crowd) FROM table_16388439_1 WHERE away_team = "Essendon" |
When ground is manuka oval what is the home team score? | CREATE TABLE table_16388439_2 (home_team VARCHAR, ground VARCHAR) | SELECT COUNT(home_team) AS score FROM table_16388439_2 WHERE ground = "Manuka Oval" | ### Context: CREATE TABLE table_16388439_2 (home_team VARCHAR, ground VARCHAR) ### Question: When ground is manuka oval what is the home team score? ### Answer: SELECT COUNT(home_team) AS score FROM table_16388439_2 WHERE ground = "Manuka Oval" |
When the crowd was 8642 what was the away team's score? | CREATE TABLE table_16388439_2 (away_team VARCHAR, crowd VARCHAR) | SELECT away_team AS score FROM table_16388439_2 WHERE crowd = 8642 | ### Context: CREATE TABLE table_16388439_2 (away_team VARCHAR, crowd VARCHAR) ### Question: When the crowd was 8642 what was the away team's score? ### Answer: SELECT away_team AS score FROM table_16388439_2 WHERE crowd = 8642 |
Which location had an attendance of 22537? | CREATE TABLE table_16388545_1 (ground VARCHAR, crowd VARCHAR) | SELECT ground FROM table_16388545_1 WHERE crowd = 22537 | ### Context: CREATE TABLE table_16388545_1 (ground VARCHAR, crowd VARCHAR) ### Question: Which location had an attendance of 22537? ### Answer: SELECT ground FROM table_16388545_1 WHERE crowd = 22537 |
What was the away team's score of at the game of telstra stadium? | CREATE TABLE table_16388545_1 (away_team VARCHAR, ground VARCHAR) | SELECT away_team AS score FROM table_16388545_1 WHERE ground = "Telstra Stadium" | ### Context: CREATE TABLE table_16388545_1 (away_team VARCHAR, ground VARCHAR) ### Question: What was the away team's score of at the game of telstra stadium? ### Answer: SELECT away_team AS score FROM table_16388545_1 WHERE ground = "Telstra Stadium" |
When the away team was Carlton, who was the home team? | CREATE TABLE table_16388545_1 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_16388545_1 WHERE away_team = "Carlton" | ### Context: CREATE TABLE table_16388545_1 (home_team VARCHAR, away_team VARCHAR) ### Question: When the away team was Carlton, who was the home team? ### Answer: SELECT home_team FROM table_16388545_1 WHERE away_team = "Carlton" |
What was the average for contestants with a swimsuit score of 8.266? | CREATE TABLE table_16390001_2 (average VARCHAR, swimsuit VARCHAR) | SELECT average FROM table_16390001_2 WHERE swimsuit = "8.266" | ### Context: CREATE TABLE table_16390001_2 (average VARCHAR, swimsuit VARCHAR) ### Question: What was the average for contestants with a swimsuit score of 8.266? ### Answer: SELECT average FROM table_16390001_2 WHERE swimsuit = "8.266" |
What are the interview scores for contestants whose average is 9.090? | CREATE TABLE table_16390001_2 (interview VARCHAR, average VARCHAR) | SELECT interview FROM table_16390001_2 WHERE average = "9.090" | ### Context: CREATE TABLE table_16390001_2 (interview VARCHAR, average VARCHAR) ### Question: What are the interview scores for contestants whose average is 9.090? ### Answer: SELECT interview FROM table_16390001_2 WHERE average = "9.090" |
What are the average scores of contestants whose home state is Pennsylvania? | CREATE TABLE table_16390001_2 (average VARCHAR, country VARCHAR) | SELECT average FROM table_16390001_2 WHERE country = "Pennsylvania" | ### Context: CREATE TABLE table_16390001_2 (average VARCHAR, country VARCHAR) ### Question: What are the average scores of contestants whose home state is Pennsylvania? ### Answer: SELECT average FROM table_16390001_2 WHERE country = "Pennsylvania" |
What are the evening gown scores of contestants whose average is 9.266? | CREATE TABLE table_16390001_2 (evening_gown VARCHAR, average VARCHAR) | SELECT evening_gown FROM table_16390001_2 WHERE average = "9.266" | ### Context: CREATE TABLE table_16390001_2 (evening_gown VARCHAR, average VARCHAR) ### Question: What are the evening gown scores of contestants whose average is 9.266? ### Answer: SELECT evening_gown FROM table_16390001_2 WHERE average = "9.266" |
What are the average scores of contestants whose interview score is 8.011? | CREATE TABLE table_16390001_2 (average VARCHAR, interview VARCHAR) | SELECT average FROM table_16390001_2 WHERE interview = "8.011" | ### Context: CREATE TABLE table_16390001_2 (average VARCHAR, interview VARCHAR) ### Question: What are the average scores of contestants whose interview score is 8.011? ### Answer: SELECT average FROM table_16390001_2 WHERE interview = "8.011" |
What are the home team scores when richmond is the home team? | CREATE TABLE table_16388506_1 (home_team VARCHAR) | SELECT home_team AS score FROM table_16388506_1 WHERE home_team = "Richmond" | ### Context: CREATE TABLE table_16388506_1 (home_team VARCHAR) ### Question: What are the home team scores when richmond is the home team? ### Answer: SELECT home_team AS score FROM table_16388506_1 WHERE home_team = "Richmond" |
What are the home team scores when fremantle is the away team? | CREATE TABLE table_16388506_1 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_16388506_1 WHERE away_team = "Fremantle" | ### Context: CREATE TABLE table_16388506_1 (home_team VARCHAR, away_team VARCHAR) ### Question: What are the home team scores when fremantle is the away team? ### Answer: SELECT home_team AS score FROM table_16388506_1 WHERE away_team = "Fremantle" |
What is the largest crowd when essendon is the home team? | CREATE TABLE table_16388506_1 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_16388506_1 WHERE home_team = "Essendon" | ### Context: CREATE TABLE table_16388506_1 (crowd INTEGER, home_team VARCHAR) ### Question: What is the largest crowd when essendon is the home team? ### Answer: SELECT MAX(crowd) FROM table_16388506_1 WHERE home_team = "Essendon" |
Who are the away teams when subiaco oval was the grounds? | CREATE TABLE table_16388506_1 (away_team VARCHAR, ground VARCHAR) | SELECT away_team FROM table_16388506_1 WHERE ground = "Subiaco Oval" | ### Context: CREATE TABLE table_16388506_1 (away_team VARCHAR, ground VARCHAR) ### Question: Who are the away teams when subiaco oval was the grounds? ### Answer: SELECT away_team FROM table_16388506_1 WHERE ground = "Subiaco Oval" |
Who was the home team when the away team is Carlton? | CREATE TABLE table_16388478_4 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_16388478_4 WHERE away_team = "Carlton" | ### Context: CREATE TABLE table_16388478_4 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team when the away team is Carlton? ### Answer: SELECT home_team FROM table_16388478_4 WHERE away_team = "Carlton" |
What is the home team score where the home team is Fremantle? | CREATE TABLE table_16388478_4 (home_team VARCHAR) | SELECT home_team AS score FROM table_16388478_4 WHERE home_team = "Fremantle" | ### Context: CREATE TABLE table_16388478_4 (home_team VARCHAR) ### Question: What is the home team score where the home team is Fremantle? ### Answer: SELECT home_team AS score FROM table_16388478_4 WHERE home_team = "Fremantle" |
What was the away team score for the game with a crowd of 5391? | CREATE TABLE table_16388478_4 (away_team VARCHAR, crowd VARCHAR) | SELECT away_team AS score FROM table_16388478_4 WHERE crowd = 5391 | ### Context: CREATE TABLE table_16388478_4 (away_team VARCHAR, crowd VARCHAR) ### Question: What was the away team score for the game with a crowd of 5391? ### Answer: SELECT away_team AS score FROM table_16388478_4 WHERE crowd = 5391 |
What date was Adelaide the home team? | CREATE TABLE table_16388478_4 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_16388478_4 WHERE home_team = "Adelaide" | ### Context: CREATE TABLE table_16388478_4 (date VARCHAR, home_team VARCHAR) ### Question: What date was Adelaide the home team? ### Answer: SELECT date FROM table_16388478_4 WHERE home_team = "Adelaide" |
How many locations does Elon University have? | CREATE TABLE table_16403890_1 (location VARCHAR, institution VARCHAR) | SELECT COUNT(location) FROM table_16403890_1 WHERE institution = "Elon University" | ### Context: CREATE TABLE table_16403890_1 (location VARCHAR, institution VARCHAR) ### Question: How many locations does Elon University have? ### Answer: SELECT COUNT(location) FROM table_16403890_1 WHERE institution = "Elon University" |
Private/Catholic school's minimum enrollment is? | CREATE TABLE table_16403890_1 (enrollment INTEGER, affiliation VARCHAR) | SELECT MIN(enrollment) FROM table_16403890_1 WHERE affiliation = "Private/Catholic" | ### Context: CREATE TABLE table_16403890_1 (enrollment INTEGER, affiliation VARCHAR) ### Question: Private/Catholic school's minimum enrollment is? ### Answer: SELECT MIN(enrollment) FROM table_16403890_1 WHERE affiliation = "Private/Catholic" |
Which school has the mascot of the Colonials? | CREATE TABLE table_16403890_1 (institution VARCHAR, team_nickname VARCHAR) | SELECT institution FROM table_16403890_1 WHERE team_nickname = "Colonials" | ### Context: CREATE TABLE table_16403890_1 (institution VARCHAR, team_nickname VARCHAR) ### Question: Which school has the mascot of the Colonials? ### Answer: SELECT institution FROM table_16403890_1 WHERE team_nickname = "Colonials" |
What is the socket location for sSPEC number sl3f7(kc0)sl3fj(kc0)? | CREATE TABLE table_16400024_1 (socket VARCHAR, sspec_number VARCHAR) | SELECT socket FROM table_16400024_1 WHERE sspec_number = "SL3F7(kC0)SL3FJ(kC0)" | ### Context: CREATE TABLE table_16400024_1 (socket VARCHAR, sspec_number VARCHAR) ### Question: What is the socket location for sSPEC number sl3f7(kc0)sl3fj(kc0)? ### Answer: SELECT socket FROM table_16400024_1 WHERE sspec_number = "SL3F7(kC0)SL3FJ(kC0)" |
What is the release date of part 80525py500512bx80525u500512bx80525u500512e? | CREATE TABLE table_16400024_1 (release_date VARCHAR, part_number_s_ VARCHAR) | SELECT release_date FROM table_16400024_1 WHERE part_number_s_ = "80525PY500512BX80525U500512BX80525U500512E" | ### Context: CREATE TABLE table_16400024_1 (release_date VARCHAR, part_number_s_ VARCHAR) ### Question: What is the release date of part 80525py500512bx80525u500512bx80525u500512e? ### Answer: SELECT release_date FROM table_16400024_1 WHERE part_number_s_ = "80525PY500512BX80525U500512BX80525U500512E" |
How many release prices are there for the Pentium iii 550? | CREATE TABLE table_16400024_1 (release_price___usd__ VARCHAR, model_number VARCHAR) | SELECT COUNT(release_price___usd__) FROM table_16400024_1 WHERE model_number = "Pentium III 550" | ### Context: CREATE TABLE table_16400024_1 (release_price___usd__ VARCHAR, model_number VARCHAR) ### Question: How many release prices are there for the Pentium iii 550? ### Answer: SELECT COUNT(release_price___usd__) FROM table_16400024_1 WHERE model_number = "Pentium III 550" |
What is the model number with a release price of $496? | CREATE TABLE table_16400024_1 (model_number VARCHAR, release_price___usd__ VARCHAR) | SELECT model_number FROM table_16400024_1 WHERE release_price___usd__ = "$496" | ### Context: CREATE TABLE table_16400024_1 (model_number VARCHAR, release_price___usd__ VARCHAR) ### Question: What is the model number with a release price of $496? ### Answer: SELECT model_number FROM table_16400024_1 WHERE release_price___usd__ = "$496" |
What is the l2 cache for the model with a release price of $669? | CREATE TABLE table_16400024_1 (l2_cache VARCHAR, release_price___usd__ VARCHAR) | SELECT l2_cache FROM table_16400024_1 WHERE release_price___usd__ = "$669" | ### Context: CREATE TABLE table_16400024_1 (l2_cache VARCHAR, release_price___usd__ VARCHAR) ### Question: What is the l2 cache for the model with a release price of $669? ### Answer: SELECT l2_cache FROM table_16400024_1 WHERE release_price___usd__ = "$669" |
What day(s) did they play on week 2? | CREATE TABLE table_1639689_2 (date VARCHAR, week VARCHAR) | SELECT date FROM table_1639689_2 WHERE week = 2 | ### Context: CREATE TABLE table_1639689_2 (date VARCHAR, week VARCHAR) ### Question: What day(s) did they play on week 2? ### Answer: SELECT date FROM table_1639689_2 WHERE week = 2 |
What was the kickoff time on monday, may 13? | CREATE TABLE table_1639689_2 (kickoff VARCHAR, date VARCHAR) | SELECT kickoff FROM table_1639689_2 WHERE date = "Monday, May 13" | ### Context: CREATE TABLE table_1639689_2 (kickoff VARCHAR, date VARCHAR) ### Question: What was the kickoff time on monday, may 13? ### Answer: SELECT kickoff FROM table_1639689_2 WHERE date = "Monday, May 13" |
what is the latest episode in season 2 directed by jamie babbit? | CREATE TABLE table_16390576_3 (no_in_season INTEGER, directed_by VARCHAR) | SELECT MAX(no_in_season) FROM table_16390576_3 WHERE directed_by = "Jamie Babbit" | ### Context: CREATE TABLE table_16390576_3 (no_in_season INTEGER, directed_by VARCHAR) ### Question: what is the latest episode in season 2 directed by jamie babbit? ### Answer: SELECT MAX(no_in_season) FROM table_16390576_3 WHERE directed_by = "Jamie Babbit" |
what are the air dates for episodes with the production code 08-02-214 | CREATE TABLE table_16390576_3 (original_air_date VARCHAR, production_code VARCHAR) | SELECT original_air_date FROM table_16390576_3 WHERE production_code = "08-02-214" | ### Context: CREATE TABLE table_16390576_3 (original_air_date VARCHAR, production_code VARCHAR) ### Question: what are the air dates for episodes with the production code 08-02-214 ### Answer: SELECT original_air_date FROM table_16390576_3 WHERE production_code = "08-02-214" |
what is the title of episode 28 | CREATE TABLE table_16390576_3 (title VARCHAR, no_in_series VARCHAR) | SELECT title FROM table_16390576_3 WHERE no_in_series = 28 | ### Context: CREATE TABLE table_16390576_3 (title VARCHAR, no_in_series VARCHAR) ### Question: what is the title of episode 28 ### Answer: SELECT title FROM table_16390576_3 WHERE no_in_series = 28 |
What is the dpi of a scanner with the mm dimensions 280 x 95 x 40? | CREATE TABLE table_16409745_1 (dpi VARCHAR, dimensions__mm_ VARCHAR) | SELECT dpi FROM table_16409745_1 WHERE dimensions__mm_ = "280 x 95 x 40" | ### Context: CREATE TABLE table_16409745_1 (dpi VARCHAR, dimensions__mm_ VARCHAR) ### Question: What is the dpi of a scanner with the mm dimensions 280 x 95 x 40? ### Answer: SELECT dpi FROM table_16409745_1 WHERE dimensions__mm_ = "280 x 95 x 40" |
What is the maximum pages per minute for the Xerox Travel Scanner 100? | CREATE TABLE table_16409745_1 (pages_per_minute__color_ INTEGER, product VARCHAR) | SELECT MAX(pages_per_minute__color_) FROM table_16409745_1 WHERE product = "Xerox Travel Scanner 100" | ### Context: CREATE TABLE table_16409745_1 (pages_per_minute__color_ INTEGER, product VARCHAR) ### Question: What is the maximum pages per minute for the Xerox Travel Scanner 100? ### Answer: SELECT MAX(pages_per_minute__color_) FROM table_16409745_1 WHERE product = "Xerox Travel Scanner 100" |
What interface is used on the scanner that has a 36 pages per minute? | CREATE TABLE table_16409745_1 (interface VARCHAR, pages_per_minute__color_ VARCHAR) | SELECT interface FROM table_16409745_1 WHERE pages_per_minute__color_ = 36 | ### Context: CREATE TABLE table_16409745_1 (interface VARCHAR, pages_per_minute__color_ VARCHAR) ### Question: What interface is used on the scanner that has a 36 pages per minute? ### Answer: SELECT interface FROM table_16409745_1 WHERE pages_per_minute__color_ = 36 |
What are the mm dimensions of the Plustek Mobileoffice D28 Corporate? | CREATE TABLE table_16409745_1 (dimensions__mm_ VARCHAR, product VARCHAR) | SELECT dimensions__mm_ FROM table_16409745_1 WHERE product = "Plustek MobileOffice D28 Corporate" | ### Context: CREATE TABLE table_16409745_1 (dimensions__mm_ VARCHAR, product VARCHAR) ### Question: What are the mm dimensions of the Plustek Mobileoffice D28 Corporate? ### Answer: SELECT dimensions__mm_ FROM table_16409745_1 WHERE product = "Plustek MobileOffice D28 Corporate" |
What are the mm dimensions for the Fujitsu fi-6130 a4 Series Scanner? | CREATE TABLE table_16409745_1 (dimensions__mm_ VARCHAR, product VARCHAR) | SELECT dimensions__mm_ FROM table_16409745_1 WHERE product = "Fujitsu fi-6130 A4 Series Scanner" | ### Context: CREATE TABLE table_16409745_1 (dimensions__mm_ VARCHAR, product VARCHAR) ### Question: What are the mm dimensions for the Fujitsu fi-6130 a4 Series Scanner? ### Answer: SELECT dimensions__mm_ FROM table_16409745_1 WHERE product = "Fujitsu fi-6130 A4 Series Scanner" |
What is the dpi for the scanner with a max page size of 216mm x 355mm? | CREATE TABLE table_16409745_1 (dpi VARCHAR, max_page_size VARCHAR) | SELECT dpi FROM table_16409745_1 WHERE max_page_size = "216mm x 355mm" | ### Context: CREATE TABLE table_16409745_1 (dpi VARCHAR, max_page_size VARCHAR) ### Question: What is the dpi for the scanner with a max page size of 216mm x 355mm? ### Answer: SELECT dpi FROM table_16409745_1 WHERE max_page_size = "216mm x 355mm" |
which country won swimming track & field when lexington won swimming and madison won volleyball | CREATE TABLE table_16423070_4 (track_ VARCHAR, _field VARCHAR, swimming VARCHAR, volleyball VARCHAR) | SELECT track_ & _field FROM table_16423070_4 WHERE swimming = "Lexington" AND volleyball = "Madison" | ### Context: CREATE TABLE table_16423070_4 (track_ VARCHAR, _field VARCHAR, swimming VARCHAR, volleyball VARCHAR) ### Question: which country won swimming track & field when lexington won swimming and madison won volleyball ### Answer: SELECT track_ & _field FROM table_16423070_4 WHERE swimming = "Lexington" AND volley... |
how many teams won at golf when wooster won soccer | CREATE TABLE table_16423070_4 (golf VARCHAR, soccer VARCHAR) | SELECT COUNT(golf) FROM table_16423070_4 WHERE soccer = "Wooster" | ### Context: CREATE TABLE table_16423070_4 (golf VARCHAR, soccer VARCHAR) ### Question: how many teams won at golf when wooster won soccer ### Answer: SELECT COUNT(golf) FROM table_16423070_4 WHERE soccer = "Wooster" |
Who won soccer when madison won volleyball, lexington won cross country and orrville won softball | CREATE TABLE table_16423070_4 (soccer VARCHAR, softball VARCHAR, volleyball VARCHAR, cross_country VARCHAR) | SELECT soccer FROM table_16423070_4 WHERE volleyball = "Madison" AND cross_country = "Lexington" AND softball = "Orrville" | ### Context: CREATE TABLE table_16423070_4 (soccer VARCHAR, softball VARCHAR, volleyball VARCHAR, cross_country VARCHAR) ### Question: Who won soccer when madison won volleyball, lexington won cross country and orrville won softball ### Answer: SELECT soccer FROM table_16423070_4 WHERE volleyball = "Madison" AND cross... |
Who won volleyball when west holmes won basketball and wooster won swimming in 2011-12 | CREATE TABLE table_16423070_4 (volleyball VARCHAR, school_year VARCHAR, basketball VARCHAR, swimming VARCHAR) | SELECT volleyball FROM table_16423070_4 WHERE basketball = "West Holmes" AND swimming = "Wooster" AND school_year = "2011-12" | ### Context: CREATE TABLE table_16423070_4 (volleyball VARCHAR, school_year VARCHAR, basketball VARCHAR, swimming VARCHAR) ### Question: Who won volleyball when west holmes won basketball and wooster won swimming in 2011-12 ### Answer: SELECT volleyball FROM table_16423070_4 WHERE basketball = "West Holmes" AND swimmin... |
who won tennis when ashland won softball and wooster won volleybal | CREATE TABLE table_16423070_4 (tennis VARCHAR, softball VARCHAR, volleyball VARCHAR) | SELECT tennis FROM table_16423070_4 WHERE softball = "Ashland" AND volleyball = "Wooster" | ### Context: CREATE TABLE table_16423070_4 (tennis VARCHAR, softball VARCHAR, volleyball VARCHAR) ### Question: who won tennis when ashland won softball and wooster won volleybal ### Answer: SELECT tennis FROM table_16423070_4 WHERE softball = "Ashland" AND volleyball = "Wooster" |
who won basketball when ashland won track & field and cross country | CREATE TABLE table_16423070_4 (basketball VARCHAR, cross_country VARCHAR, track_ VARCHAR, _field VARCHAR) | SELECT basketball FROM table_16423070_4 WHERE track_ & _field = "Ashland" AND cross_country = "Ashland" | ### Context: CREATE TABLE table_16423070_4 (basketball VARCHAR, cross_country VARCHAR, track_ VARCHAR, _field VARCHAR) ### Question: who won basketball when ashland won track & field and cross country ### Answer: SELECT basketball FROM table_16423070_4 WHERE track_ & _field = "Ashland" AND cross_country = "Ashland" |
What is the location of the school established in 1923 | CREATE TABLE table_16432543_1 (location VARCHAR, established VARCHAR) | SELECT location FROM table_16432543_1 WHERE established = 1923 | ### Context: CREATE TABLE table_16432543_1 (location VARCHAR, established VARCHAR) ### Question: What is the location of the school established in 1923 ### Answer: SELECT location FROM table_16432543_1 WHERE established = 1923 |
Total enrollment at the school with the nickname Blue Hens | CREATE TABLE table_16432543_1 (enrollment VARCHAR, nickname VARCHAR) | SELECT COUNT(enrollment) FROM table_16432543_1 WHERE nickname = "Blue Hens" | ### Context: CREATE TABLE table_16432543_1 (enrollment VARCHAR, nickname VARCHAR) ### Question: Total enrollment at the school with the nickname Blue Hens ### Answer: SELECT COUNT(enrollment) FROM table_16432543_1 WHERE nickname = "Blue Hens" |
Nickname of the school established in 1773 | CREATE TABLE table_16432543_1 (nickname VARCHAR, established VARCHAR) | SELECT nickname FROM table_16432543_1 WHERE established = 1773 | ### Context: CREATE TABLE table_16432543_1 (nickname VARCHAR, established VARCHAR) ### Question: Nickname of the school established in 1773 ### Answer: SELECT nickname FROM table_16432543_1 WHERE established = 1773 |
What is the year Rowan University was established | CREATE TABLE table_16432543_1 (established VARCHAR, institution VARCHAR) | SELECT established FROM table_16432543_1 WHERE institution = "Rowan University" | ### Context: CREATE TABLE table_16432543_1 (established VARCHAR, institution VARCHAR) ### Question: What is the year Rowan University was established ### Answer: SELECT established FROM table_16432543_1 WHERE institution = "Rowan University" |
How many nicknames does the school in Newark, DE have | CREATE TABLE table_16432543_1 (nickname VARCHAR, location VARCHAR) | SELECT COUNT(nickname) FROM table_16432543_1 WHERE location = "Newark, DE" | ### Context: CREATE TABLE table_16432543_1 (nickname VARCHAR, location VARCHAR) ### Question: How many nicknames does the school in Newark, DE have ### Answer: SELECT COUNT(nickname) FROM table_16432543_1 WHERE location = "Newark, DE" |
Location of the school with the nickname Mountaineers | CREATE TABLE table_16432543_1 (location VARCHAR, nickname VARCHAR) | SELECT location FROM table_16432543_1 WHERE nickname = "Mountaineers" | ### Context: CREATE TABLE table_16432543_1 (location VARCHAR, nickname VARCHAR) ### Question: Location of the school with the nickname Mountaineers ### Answer: SELECT location FROM table_16432543_1 WHERE nickname = "Mountaineers" |
Who wrote the episode with the production code of 942A? | CREATE TABLE table_16432167_1 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_16432167_1 WHERE production_code = "942A" | ### Context: CREATE TABLE table_16432167_1 (written_by VARCHAR, production_code VARCHAR) ### Question: Who wrote the episode with the production code of 942A? ### Answer: SELECT written_by FROM table_16432167_1 WHERE production_code = "942A" |
What is the English title for the official number 22 episode? | CREATE TABLE table_16425614_3 (english_title VARCHAR, official__number VARCHAR) | SELECT english_title FROM table_16425614_3 WHERE official__number = 22 | ### Context: CREATE TABLE table_16425614_3 (english_title VARCHAR, official__number VARCHAR) ### Question: What is the English title for the official number 22 episode? ### Answer: SELECT english_title FROM table_16425614_3 WHERE official__number = 22 |
Which CFL team did the player from British Columbia get drafted to | CREATE TABLE table_16441561_5 (cfl_team VARCHAR, college VARCHAR) | SELECT cfl_team FROM table_16441561_5 WHERE college = "British Columbia" | ### Context: CREATE TABLE table_16441561_5 (cfl_team VARCHAR, college VARCHAR) ### Question: Which CFL team did the player from British Columbia get drafted to ### Answer: SELECT cfl_team FROM table_16441561_5 WHERE college = "British Columbia" |
Which positions had players from Laval college | CREATE TABLE table_16441561_5 (position VARCHAR, college VARCHAR) | SELECT position FROM table_16441561_5 WHERE college = "Laval" | ### Context: CREATE TABLE table_16441561_5 (position VARCHAR, college VARCHAR) ### Question: Which positions had players from Laval college ### Answer: SELECT position FROM table_16441561_5 WHERE college = "Laval" |
What position did Gene Stahl play | CREATE TABLE table_16441561_5 (position VARCHAR, player VARCHAR) | SELECT position FROM table_16441561_5 WHERE player = "Gene Stahl" | ### Context: CREATE TABLE table_16441561_5 (position VARCHAR, player VARCHAR) ### Question: What position did Gene Stahl play ### Answer: SELECT position FROM table_16441561_5 WHERE player = "Gene Stahl" |
Which player played DB | CREATE TABLE table_16441561_5 (player VARCHAR, position VARCHAR) | SELECT player FROM table_16441561_5 WHERE position = "DB" | ### Context: CREATE TABLE table_16441561_5 (player VARCHAR, position VARCHAR) ### Question: Which player played DB ### Answer: SELECT player FROM table_16441561_5 WHERE position = "DB" |
Who was the lowest picked LB | CREATE TABLE table_16441561_5 (pick__number INTEGER, position VARCHAR) | SELECT MIN(pick__number) FROM table_16441561_5 WHERE position = "LB" | ### Context: CREATE TABLE table_16441561_5 (pick__number INTEGER, position VARCHAR) ### Question: Who was the lowest picked LB ### Answer: SELECT MIN(pick__number) FROM table_16441561_5 WHERE position = "LB" |
How many players named Jeff Brown were drafted | CREATE TABLE table_16441561_5 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_16441561_5 WHERE player = "Jeff Brown" | ### Context: CREATE TABLE table_16441561_5 (position VARCHAR, player VARCHAR) ### Question: How many players named Jeff Brown were drafted ### Answer: SELECT COUNT(position) FROM table_16441561_5 WHERE player = "Jeff Brown" |
How many feet per second does a shell move where the height range is 23500? | CREATE TABLE table_16439764_1 (m_v_ft_s INTEGER, max_height__ft_ VARCHAR) | SELECT MIN(m_v_ft_s) FROM table_16439764_1 WHERE max_height__ft_ = 23500 | ### Context: CREATE TABLE table_16439764_1 (m_v_ft_s INTEGER, max_height__ft_ VARCHAR) ### Question: How many feet per second does a shell move where the height range is 23500? ### Answer: SELECT MIN(m_v_ft_s) FROM table_16439764_1 WHERE max_height__ft_ = 23500 |
If the gun used is the qf 12 pdr 12 cwt, what is the shell weight? | CREATE TABLE table_16439764_1 (shell__lb_ VARCHAR, gun VARCHAR) | SELECT shell__lb_ FROM table_16439764_1 WHERE gun = "QF 12 pdr 12 cwt" | ### Context: CREATE TABLE table_16439764_1 (shell__lb_ VARCHAR, gun VARCHAR) ### Question: If the gun used is the qf 12 pdr 12 cwt, what is the shell weight? ### Answer: SELECT shell__lb_ FROM table_16439764_1 WHERE gun = "QF 12 pdr 12 cwt" |
Where the height range is higher than 20000.0 and the shell weight is 12.5, what is the time to feet ratio at 25 degrees? | CREATE TABLE table_16439764_1 (time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR, max_height__ft_ VARCHAR) | SELECT time_to_ft__m__at_25°__seconds_ FROM table_16439764_1 WHERE shell__lb_ = "12.5" AND max_height__ft_ > 20000.0 | ### Context: CREATE TABLE table_16439764_1 (time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR, max_height__ft_ VARCHAR) ### Question: Where the height range is higher than 20000.0 and the shell weight is 12.5, what is the time to feet ratio at 25 degrees? ### Answer: SELECT time_to_ft__m__at_25°__seconds_ FRO... |
What gun has a time to feet ratio of 18.8 at 55 degrees? | CREATE TABLE table_16439764_1 (gun VARCHAR, time_to_ft__m__at_55°__seconds_ VARCHAR) | SELECT gun FROM table_16439764_1 WHERE time_to_ft__m__at_55°__seconds_ = "18.8" | ### Context: CREATE TABLE table_16439764_1 (gun VARCHAR, time_to_ft__m__at_55°__seconds_ VARCHAR) ### Question: What gun has a time to feet ratio of 18.8 at 55 degrees? ### Answer: SELECT gun FROM table_16439764_1 WHERE time_to_ft__m__at_55°__seconds_ = "18.8" |
What is the maximum foot per second speed where time to feet ratio is 22.1 at 55 degrees? | CREATE TABLE table_16439764_1 (m_v_ft_s INTEGER, time_to_ft__m__at_55°__seconds_ VARCHAR) | SELECT MAX(m_v_ft_s) FROM table_16439764_1 WHERE time_to_ft__m__at_55°__seconds_ = "22.1" | ### Context: CREATE TABLE table_16439764_1 (m_v_ft_s INTEGER, time_to_ft__m__at_55°__seconds_ VARCHAR) ### Question: What is the maximum foot per second speed where time to feet ratio is 22.1 at 55 degrees? ### Answer: SELECT MAX(m_v_ft_s) FROM table_16439764_1 WHERE time_to_ft__m__at_55°__seconds_ = "22.1" |
What is the foot per second speed where time to feet ratio is 9.2 at 25 degrees? | CREATE TABLE table_16439764_1 (m_v_ft_s VARCHAR, time_to_ft__m__at_25°__seconds_ VARCHAR) | SELECT m_v_ft_s FROM table_16439764_1 WHERE time_to_ft__m__at_25°__seconds_ = "9.2" | ### Context: CREATE TABLE table_16439764_1 (m_v_ft_s VARCHAR, time_to_ft__m__at_25°__seconds_ VARCHAR) ### Question: What is the foot per second speed where time to feet ratio is 9.2 at 25 degrees? ### Answer: SELECT m_v_ft_s FROM table_16439764_1 WHERE time_to_ft__m__at_25°__seconds_ = "9.2" |
Who was skip for the country whose points for (PF) was 73? | CREATE TABLE table_1644857_2 (skip VARCHAR, pf VARCHAR) | SELECT skip FROM table_1644857_2 WHERE pf = 73 | ### Context: CREATE TABLE table_1644857_2 (skip VARCHAR, pf VARCHAR) ### Question: Who was skip for the country whose points for (PF) was 73? ### Answer: SELECT skip FROM table_1644857_2 WHERE pf = 73 |
How many times is a score for stolen ends recorded for France? | CREATE TABLE table_1644857_2 (stolen_ends VARCHAR, country VARCHAR, France VARCHAR) | SELECT COUNT(stolen_ends) FROM table_1644857_2 WHERE country = France | ### Context: CREATE TABLE table_1644857_2 (stolen_ends VARCHAR, country VARCHAR, France VARCHAR) ### Question: How many times is a score for stolen ends recorded for France? ### Answer: SELECT COUNT(stolen_ends) FROM table_1644857_2 WHERE country = France |
How many ends were lost by the country whose points for (PF) was 87? | CREATE TABLE table_1644857_2 (Ends INTEGER, pf VARCHAR) | SELECT MAX(Ends) AS lost FROM table_1644857_2 WHERE pf = 87 | ### Context: CREATE TABLE table_1644857_2 (Ends INTEGER, pf VARCHAR) ### Question: How many ends were lost by the country whose points for (PF) was 87? ### Answer: SELECT MAX(Ends) AS lost FROM table_1644857_2 WHERE pf = 87 |
How many seasons was Dave Reid treasurer? | CREATE TABLE table_16446652_1 (season VARCHAR, treasurer VARCHAR) | SELECT COUNT(season) FROM table_16446652_1 WHERE treasurer = "Dave Reid" | ### Context: CREATE TABLE table_16446652_1 (season VARCHAR, treasurer VARCHAR) ### Question: How many seasons was Dave Reid treasurer? ### Answer: SELECT COUNT(season) FROM table_16446652_1 WHERE treasurer = "Dave Reid" |
When was Jonny Leadbeater President? | CREATE TABLE table_16446652_1 (season VARCHAR, president VARCHAR) | SELECT season FROM table_16446652_1 WHERE president = "Jonny Leadbeater" | ### Context: CREATE TABLE table_16446652_1 (season VARCHAR, president VARCHAR) ### Question: When was Jonny Leadbeater President? ### Answer: SELECT season FROM table_16446652_1 WHERE president = "Jonny Leadbeater" |
Who was the skip with 14 stolen ends? | CREATE TABLE table_1644876_2 (skip VARCHAR, stolen_ends VARCHAR) | SELECT skip FROM table_1644876_2 WHERE stolen_ends = 14 | ### Context: CREATE TABLE table_1644876_2 (skip VARCHAR, stolen_ends VARCHAR) ### Question: Who was the skip with 14 stolen ends? ### Answer: SELECT skip FROM table_1644876_2 WHERE stolen_ends = 14 |
What is the fewest number of losses? | CREATE TABLE table_1644876_2 (l INTEGER) | SELECT MIN(l) FROM table_1644876_2 | ### Context: CREATE TABLE table_1644876_2 (l INTEGER) ### Question: What is the fewest number of losses? ### Answer: SELECT MIN(l) FROM table_1644876_2 |
What are the shot percentages for teams that played in switzerland? | CREATE TABLE table_1644876_2 (shot__percentage VARCHAR, locale VARCHAR, Switzerland VARCHAR) | SELECT shot__percentage FROM table_1644876_2 WHERE locale = Switzerland | ### Context: CREATE TABLE table_1644876_2 (shot__percentage VARCHAR, locale VARCHAR, Switzerland VARCHAR) ### Question: What are the shot percentages for teams that played in switzerland? ### Answer: SELECT shot__percentage FROM table_1644876_2 WHERE locale = Switzerland |
what is the minimum of 60 -64? | CREATE TABLE table_16457934_4 (Id VARCHAR) | SELECT MIN(60 AS _to_64) FROM table_16457934_4 | ### Context: CREATE TABLE table_16457934_4 (Id VARCHAR) ### Question: what is the minimum of 60 -64? ### Answer: SELECT MIN(60 AS _to_64) FROM table_16457934_4 |
What province has the Chinese translation 重庆? | CREATE TABLE table_16489766_2 (province VARCHAR, chinese VARCHAR) | SELECT COUNT(province) FROM table_16489766_2 WHERE chinese = "重庆" | ### Context: CREATE TABLE table_16489766_2 (province VARCHAR, chinese VARCHAR) ### Question: What province has the Chinese translation 重庆? ### Answer: SELECT COUNT(province) FROM table_16489766_2 WHERE chinese = "重庆" |
What is the total administrative population of Shanghai? | CREATE TABLE table_16489766_2 (administrative_population__2010_ VARCHAR, city VARCHAR) | SELECT COUNT(administrative_population__2010_) FROM table_16489766_2 WHERE city = "Shanghai" | ### Context: CREATE TABLE table_16489766_2 (administrative_population__2010_ VARCHAR, city VARCHAR) ### Question: What is the total administrative population of Shanghai? ### Answer: SELECT COUNT(administrative_population__2010_) FROM table_16489766_2 WHERE city = "Shanghai" |
What is the maximum administrative population of the city with Chinese translation 昆明? | CREATE TABLE table_16489766_2 (administrative_population__2010_ INTEGER, chinese VARCHAR) | SELECT MAX(administrative_population__2010_) FROM table_16489766_2 WHERE chinese = "昆明" | ### Context: CREATE TABLE table_16489766_2 (administrative_population__2010_ INTEGER, chinese VARCHAR) ### Question: What is the maximum administrative population of the city with Chinese translation 昆明? ### Answer: SELECT MAX(administrative_population__2010_) FROM table_16489766_2 WHERE chinese = "昆明" |
What is the total urban population of the city with the pinyin translation chángchūn? | CREATE TABLE table_16489766_2 (urban_population__2010_ VARCHAR, pinyin VARCHAR) | SELECT COUNT(urban_population__2010_) FROM table_16489766_2 WHERE pinyin = "Chángchūn" | ### Context: CREATE TABLE table_16489766_2 (urban_population__2010_ VARCHAR, pinyin VARCHAR) ### Question: What is the total urban population of the city with the pinyin translation chángchūn? ### Answer: SELECT COUNT(urban_population__2010_) FROM table_16489766_2 WHERE pinyin = "Chángchūn" |
What player was on the Grizzlies from 2009-2013? | CREATE TABLE table_16494599_1 (player VARCHAR, years_for_grizzlies VARCHAR) | SELECT player FROM table_16494599_1 WHERE years_for_grizzlies = "2009-2013" | ### Context: CREATE TABLE table_16494599_1 (player VARCHAR, years_for_grizzlies VARCHAR) ### Question: What player was on the Grizzlies from 2009-2013? ### Answer: SELECT player FROM table_16494599_1 WHERE years_for_grizzlies = "2009-2013" |
What nationality is the player who went to school at South Florida? | CREATE TABLE table_16494599_1 (nationality VARCHAR, school_club_team VARCHAR) | SELECT nationality FROM table_16494599_1 WHERE school_club_team = "South Florida" | ### Context: CREATE TABLE table_16494599_1 (nationality VARCHAR, school_club_team VARCHAR) ### Question: What nationality is the player who went to school at South Florida? ### Answer: SELECT nationality FROM table_16494599_1 WHERE school_club_team = "South Florida" |
What position is the player who was on the Grizzlies from 1995-1996? | CREATE TABLE table_16494599_1 (position VARCHAR, years_for_grizzlies VARCHAR) | SELECT position FROM table_16494599_1 WHERE years_for_grizzlies = "1995-1996" | ### Context: CREATE TABLE table_16494599_1 (position VARCHAR, years_for_grizzlies VARCHAR) ### Question: What position is the player who was on the Grizzlies from 1995-1996? ### Answer: SELECT position FROM table_16494599_1 WHERE years_for_grizzlies = "1995-1996" |
How may players played for the Grizzlies from 2000-2002? | CREATE TABLE table_16494599_1 (no VARCHAR, years_for_grizzlies VARCHAR) | SELECT COUNT(no) FROM table_16494599_1 WHERE years_for_grizzlies = "2000-2002" | ### Context: CREATE TABLE table_16494599_1 (no VARCHAR, years_for_grizzlies VARCHAR) ### Question: How may players played for the Grizzlies from 2000-2002? ### Answer: SELECT COUNT(no) FROM table_16494599_1 WHERE years_for_grizzlies = "2000-2002" |
Name the miles for june 7 | CREATE TABLE table_16493961_1 (miles__km_ VARCHAR, date VARCHAR) | SELECT miles__km_ FROM table_16493961_1 WHERE date = "June 7" | ### Context: CREATE TABLE table_16493961_1 (miles__km_ VARCHAR, date VARCHAR) ### Question: Name the miles for june 7 ### Answer: SELECT miles__km_ FROM table_16493961_1 WHERE date = "June 7" |
Name the driver for race time being 2:34:21 | CREATE TABLE table_16493961_1 (driver VARCHAR, race_time VARCHAR) | SELECT driver FROM table_16493961_1 WHERE race_time = "2:34:21" | ### Context: CREATE TABLE table_16493961_1 (driver VARCHAR, race_time VARCHAR) ### Question: Name the driver for race time being 2:34:21 ### Answer: SELECT driver FROM table_16493961_1 WHERE race_time = "2:34:21" |
Name the driver for june 23 and team of penske racing | CREATE TABLE table_16493961_1 (driver VARCHAR, date VARCHAR, team VARCHAR) | SELECT driver FROM table_16493961_1 WHERE date = "June 23" AND team = "Penske Racing" | ### Context: CREATE TABLE table_16493961_1 (driver VARCHAR, date VARCHAR, team VARCHAR) ### Question: Name the driver for june 23 and team of penske racing ### Answer: SELECT driver FROM table_16493961_1 WHERE date = "June 23" AND team = "Penske Racing" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.