question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who are the writers of the episodes directed by Justin Hartley?
CREATE TABLE table_26464364_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_26464364_1 WHERE directed_by = "Justin Hartley"
### Context: CREATE TABLE table_26464364_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: Who are the writers of the episodes directed by Justin Hartley? ### Answer: SELECT written_by FROM table_26464364_1 WHERE directed_by = "Justin Hartley"
On which date did episode # 18 air in the U.S.?
CREATE TABLE table_26464364_1 (us_air_date VARCHAR, _number VARCHAR)
SELECT us_air_date FROM table_26464364_1 WHERE _number = 18
### Context: CREATE TABLE table_26464364_1 (us_air_date VARCHAR, _number VARCHAR) ### Question: On which date did episode # 18 air in the U.S.? ### Answer: SELECT us_air_date FROM table_26464364_1 WHERE _number = 18
How many million U.S. viewers watched the episode with the production code 3x6004?
CREATE TABLE table_26464364_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__million_ FROM table_26464364_1 WHERE production_code = "3X6004"
### Context: CREATE TABLE table_26464364_1 (us_viewers__million_ VARCHAR, production_code VARCHAR) ### Question: How many million U.S. viewers watched the episode with the production code 3x6004? ### Answer: SELECT us_viewers__million_ FROM table_26464364_1 WHERE production_code = "3X6004"
List the titles of episodes written by Anne Cofell Saunders.
CREATE TABLE table_26464364_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_26464364_1 WHERE written_by = "Anne Cofell Saunders"
### Context: CREATE TABLE table_26464364_1 (title VARCHAR, written_by VARCHAR) ### Question: List the titles of episodes written by Anne Cofell Saunders. ### Answer: SELECT title FROM table_26464364_1 WHERE written_by = "Anne Cofell Saunders"
What is the title of the episode directed by Christopher Petry with the production cod 3x6006?
CREATE TABLE table_26464364_1 (title VARCHAR, directed_by VARCHAR, production_code VARCHAR)
SELECT title FROM table_26464364_1 WHERE directed_by = "Christopher Petry" AND production_code = "3X6006"
### Context: CREATE TABLE table_26464364_1 (title VARCHAR, directed_by VARCHAR, production_code VARCHAR) ### Question: What is the title of the episode directed by Christopher Petry with the production cod 3x6006? ### Answer: SELECT title FROM table_26464364_1 WHERE directed_by = "Christopher Petry" AND production_code = "3X6006"
Who was the incumbent in the Ohio 10 district?
CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 10"
### Context: CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the incumbent in the Ohio 10 district? ### Answer: SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 10"
Who was the incumbent in the Ohio 5 district?
CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 5"
### Context: CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the incumbent in the Ohio 5 district? ### Answer: SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 5"
Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss?
CREATE TABLE table_2646656_3 (candidates VARCHAR, result VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_2646656_3 WHERE result = "Retired Republican hold" AND incumbent = "Philemon Bliss"
### Context: CREATE TABLE table_2646656_3 (candidates VARCHAR, result VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss? ### Answer: SELECT candidates FROM table_2646656_3 WHERE result = "Retired Republican hold" AND incumbent = "Philemon Bliss"
How many new conferences are in the NCLL deep south conference?
CREATE TABLE table_26476336_2 (new_conference VARCHAR, new_classification VARCHAR)
SELECT COUNT(new_conference) FROM table_26476336_2 WHERE new_classification = "NCLL Deep South Conference"
### Context: CREATE TABLE table_26476336_2 (new_conference VARCHAR, new_classification VARCHAR) ### Question: How many new conferences are in the NCLL deep south conference? ### Answer: SELECT COUNT(new_conference) FROM table_26476336_2 WHERE new_classification = "NCLL Deep South Conference"
What is the nickname at the University of Nebraska at Omaha?
CREATE TABLE table_26476336_2 (team_nickname VARCHAR, institution VARCHAR)
SELECT team_nickname FROM table_26476336_2 WHERE institution = "University of Nebraska at Omaha"
### Context: CREATE TABLE table_26476336_2 (team_nickname VARCHAR, institution VARCHAR) ### Question: What is the nickname at the University of Nebraska at Omaha? ### Answer: SELECT team_nickname FROM table_26476336_2 WHERE institution = "University of Nebraska at Omaha"
What location is listed from 2005-2010?
CREATE TABLE table_26476336_2 (location VARCHAR, years VARCHAR)
SELECT location FROM table_26476336_2 WHERE years = "2005-2010"
### Context: CREATE TABLE table_26476336_2 (location VARCHAR, years VARCHAR) ### Question: What location is listed from 2005-2010? ### Answer: SELECT location FROM table_26476336_2 WHERE years = "2005-2010"
Where is the nickname the Red Raiders?
CREATE TABLE table_26476336_2 (location VARCHAR, team_nickname VARCHAR)
SELECT location FROM table_26476336_2 WHERE team_nickname = "Red Raiders"
### Context: CREATE TABLE table_26476336_2 (location VARCHAR, team_nickname VARCHAR) ### Question: Where is the nickname the Red Raiders? ### Answer: SELECT location FROM table_26476336_2 WHERE team_nickname = "Red Raiders"
What school has the new conference as SELC?
CREATE TABLE table_26476336_2 (institution VARCHAR, new_conference VARCHAR)
SELECT institution FROM table_26476336_2 WHERE new_conference = "SELC"
### Context: CREATE TABLE table_26476336_2 (institution VARCHAR, new_conference VARCHAR) ### Question: What school has the new conference as SELC? ### Answer: SELECT institution FROM table_26476336_2 WHERE new_conference = "SELC"
What are the years that the new classification was MCLA division i?
CREATE TABLE table_26476336_2 (years VARCHAR, new_classification VARCHAR)
SELECT years FROM table_26476336_2 WHERE new_classification = "MCLA Division I"
### Context: CREATE TABLE table_26476336_2 (years VARCHAR, new_classification VARCHAR) ### Question: What are the years that the new classification was MCLA division i? ### Answer: SELECT years FROM table_26476336_2 WHERE new_classification = "MCLA Division I"
Name the colors for north canton
CREATE TABLE table_26466528_1 (colors VARCHAR, location VARCHAR)
SELECT colors FROM table_26466528_1 WHERE location = "North Canton"
### Context: CREATE TABLE table_26466528_1 (colors VARCHAR, location VARCHAR) ### Question: Name the colors for north canton ### Answer: SELECT colors FROM table_26466528_1 WHERE location = "North Canton"
Name the most join date
CREATE TABLE table_26466528_1 (join_date INTEGER)
SELECT MAX(join_date) FROM table_26466528_1
### Context: CREATE TABLE table_26466528_1 (join_date INTEGER) ### Question: Name the most join date ### Answer: SELECT MAX(join_date) FROM table_26466528_1
Name the least join date
CREATE TABLE table_26466528_1 (join_date INTEGER)
SELECT MIN(join_date) FROM table_26466528_1
### Context: CREATE TABLE table_26466528_1 (join_date INTEGER) ### Question: Name the least join date ### Answer: SELECT MIN(join_date) FROM table_26466528_1
Name the location for black, orange
CREATE TABLE table_26466528_1 (location VARCHAR, colors VARCHAR)
SELECT location FROM table_26466528_1 WHERE colors = "Black, Orange"
### Context: CREATE TABLE table_26466528_1 (location VARCHAR, colors VARCHAR) ### Question: Name the location for black, orange ### Answer: SELECT location FROM table_26466528_1 WHERE colors = "Black, Orange"
Name when north canton joined
CREATE TABLE table_26466528_1 (join_date VARCHAR, location VARCHAR)
SELECT join_date FROM table_26466528_1 WHERE location = "North Canton"
### Context: CREATE TABLE table_26466528_1 (join_date VARCHAR, location VARCHAR) ### Question: Name when north canton joined ### Answer: SELECT join_date FROM table_26466528_1 WHERE location = "North Canton"
How many "series" were in the 12th "position?
CREATE TABLE table_26473176_1 (series VARCHAR, position VARCHAR)
SELECT COUNT(series) FROM table_26473176_1 WHERE position = "12th"
### Context: CREATE TABLE table_26473176_1 (series VARCHAR, position VARCHAR) ### Question: How many "series" were in the 12th "position? ### Answer: SELECT COUNT(series) FROM table_26473176_1 WHERE position = "12th"
How many teams were at 10 points?
CREATE TABLE table_26473176_1 (team VARCHAR, points VARCHAR)
SELECT COUNT(team) FROM table_26473176_1 WHERE points = 10
### Context: CREATE TABLE table_26473176_1 (team VARCHAR, points VARCHAR) ### Question: How many teams were at 10 points? ### Answer: SELECT COUNT(team) FROM table_26473176_1 WHERE points = 10
What was the number of podiums in 12th position?
CREATE TABLE table_26473176_1 (podiums VARCHAR, position VARCHAR)
SELECT podiums FROM table_26473176_1 WHERE position = "12th"
### Context: CREATE TABLE table_26473176_1 (podiums VARCHAR, position VARCHAR) ### Question: What was the number of podiums in 12th position? ### Answer: SELECT podiums FROM table_26473176_1 WHERE position = "12th"
Where did he finish when he started at 21.6?
CREATE TABLE table_2649597_1 (finish VARCHAR, start VARCHAR)
SELECT COUNT(finish) FROM table_2649597_1 WHERE start = "21.6"
### Context: CREATE TABLE table_2649597_1 (finish VARCHAR, start VARCHAR) ### Question: Where did he finish when he started at 21.6? ### Answer: SELECT COUNT(finish) FROM table_2649597_1 WHERE start = "21.6"
What teams started at 39.1?
CREATE TABLE table_2649597_1 (team_s_ VARCHAR, start VARCHAR)
SELECT team_s_ FROM table_2649597_1 WHERE start = "39.1"
### Context: CREATE TABLE table_2649597_1 (team_s_ VARCHAR, start VARCHAR) ### Question: What teams started at 39.1? ### Answer: SELECT team_s_ FROM table_2649597_1 WHERE start = "39.1"
Where did they finish in the season when when they won $491,977?
CREATE TABLE table_2649597_1 (season_rank VARCHAR, winnings VARCHAR)
SELECT season_rank FROM table_2649597_1 WHERE winnings = "$491,977"
### Context: CREATE TABLE table_2649597_1 (season_rank VARCHAR, winnings VARCHAR) ### Question: Where did they finish in the season when when they won $491,977? ### Answer: SELECT season_rank FROM table_2649597_1 WHERE winnings = "$491,977"
How many different genres appear for the Jimi Hendrix Experience?
CREATE TABLE table_26488540_1 (genre VARCHAR, artist VARCHAR)
SELECT COUNT(genre) FROM table_26488540_1 WHERE artist = "The Jimi Hendrix Experience"
### Context: CREATE TABLE table_26488540_1 (genre VARCHAR, artist VARCHAR) ### Question: How many different genres appear for the Jimi Hendrix Experience? ### Answer: SELECT COUNT(genre) FROM table_26488540_1 WHERE artist = "The Jimi Hendrix Experience"
Name the title for total viewers on fx+ being 483,000
CREATE TABLE table_26493520_3 (title VARCHAR, total_viewers_on_fx VARCHAR)
SELECT title FROM table_26493520_3 WHERE total_viewers_on_fx = "483,000"
### Context: CREATE TABLE table_26493520_3 (title VARCHAR, total_viewers_on_fx VARCHAR) ### Question: Name the title for total viewers on fx+ being 483,000 ### Answer: SELECT title FROM table_26493520_3 WHERE total_viewers_on_fx = "483,000"
Name the rank on channel for january 21, 2011
CREATE TABLE table_26493520_3 (rank_on_channel VARCHAR, original_air_date VARCHAR)
SELECT rank_on_channel FROM table_26493520_3 WHERE original_air_date = "January 21, 2011"
### Context: CREATE TABLE table_26493520_3 (rank_on_channel VARCHAR, original_air_date VARCHAR) ### Question: Name the rank on channel for january 21, 2011 ### Answer: SELECT rank_on_channel FROM table_26493520_3 WHERE original_air_date = "January 21, 2011"
How many episodes were written by Alexander Woo and directed by Scott Winant?
CREATE TABLE table_26493520_1 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(title) FROM table_26493520_1 WHERE written_by = "Alexander Woo" AND directed_by = "Scott Winant"
### Context: CREATE TABLE table_26493520_1 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR) ### Question: How many episodes were written by Alexander Woo and directed by Scott Winant? ### Answer: SELECT COUNT(title) FROM table_26493520_1 WHERE written_by = "Alexander Woo" AND directed_by = "Scott Winant"
Name the most round for jordan cameron
CREATE TABLE table_26533354_8 (round INTEGER, player VARCHAR)
SELECT MAX(round) FROM table_26533354_8 WHERE player = "Jordan Cameron"
### Context: CREATE TABLE table_26533354_8 (round INTEGER, player VARCHAR) ### Question: Name the most round for jordan cameron ### Answer: SELECT MAX(round) FROM table_26533354_8 WHERE player = "Jordan Cameron"
Name the position for jordan cameron
CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR)
SELECT position FROM table_26533354_8 WHERE player = "Jordan Cameron"
### Context: CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR) ### Question: Name the position for jordan cameron ### Answer: SELECT position FROM table_26533354_8 WHERE player = "Jordan Cameron"
Name the position for stanley havili
CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR)
SELECT position FROM table_26533354_8 WHERE player = "Stanley Havili"
### Context: CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR) ### Question: Name the position for stanley havili ### Answer: SELECT position FROM table_26533354_8 WHERE player = "Stanley Havili"
Name the college for david carter
CREATE TABLE table_26533354_8 (college VARCHAR, player VARCHAR)
SELECT college FROM table_26533354_8 WHERE player = "David Carter"
### Context: CREATE TABLE table_26533354_8 (college VARCHAR, player VARCHAR) ### Question: Name the college for david carter ### Answer: SELECT college FROM table_26533354_8 WHERE player = "David Carter"
What is the democratic coalation when together we can do more is sergio castro ( pc )?
CREATE TABLE table_2651755_1 (democratic_coalition VARCHAR, together_we_can_do_more VARCHAR)
SELECT democratic_coalition FROM table_2651755_1 WHERE together_we_can_do_more = "Sergio Castro ( PC )"
### Context: CREATE TABLE table_2651755_1 (democratic_coalition VARCHAR, together_we_can_do_more VARCHAR) ### Question: What is the democratic coalation when together we can do more is sergio castro ( pc )? ### Answer: SELECT democratic_coalition FROM table_2651755_1 WHERE together_we_can_do_more = "Sergio Castro ( PC )"
What is the independent regional force when alliance is (r) iván norambuena ( udi )?
CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, alliance VARCHAR)
SELECT independent_regional_force FROM table_2651755_1 WHERE alliance = "(R) Iván Norambuena ( UDI )"
### Context: CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, alliance VARCHAR) ### Question: What is the independent regional force when alliance is (r) iván norambuena ( udi )? ### Answer: SELECT independent_regional_force FROM table_2651755_1 WHERE alliance = "(R) Iván Norambuena ( UDI )"
Who is the together we can do more when democratic coalition is rené alinco ( ppd )?
CREATE TABLE table_2651755_1 (together_we_can_do_more VARCHAR, democratic_coalition VARCHAR)
SELECT together_we_can_do_more FROM table_2651755_1 WHERE democratic_coalition = "René Alinco ( PPD )"
### Context: CREATE TABLE table_2651755_1 (together_we_can_do_more VARCHAR, democratic_coalition VARCHAR) ### Question: Who is the together we can do more when democratic coalition is rené alinco ( ppd )? ### Answer: SELECT together_we_can_do_more FROM table_2651755_1 WHERE democratic_coalition = "René Alinco ( PPD )"
Who is the independent regional force when democratic coalition is (r) jorge tarud ( ppd )?
CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, democratic_coalition VARCHAR)
SELECT independent_regional_force FROM table_2651755_1 WHERE democratic_coalition = "(R) Jorge Tarud ( PPD )"
### Context: CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, democratic_coalition VARCHAR) ### Question: Who is the independent regional force when democratic coalition is (r) jorge tarud ( ppd )? ### Answer: SELECT independent_regional_force FROM table_2651755_1 WHERE democratic_coalition = "(R) Jorge Tarud ( PPD )"
where together we can do more is gloria mujica ( ph ) what are all the cons.
CREATE TABLE table_2651755_2 (cons VARCHAR, together_we_can_do_more VARCHAR)
SELECT cons FROM table_2651755_2 WHERE together_we_can_do_more = "Gloria Mujica ( PH )"
### Context: CREATE TABLE table_2651755_2 (cons VARCHAR, together_we_can_do_more VARCHAR) ### Question: where together we can do more is gloria mujica ( ph ) what are all the cons. ### Answer: SELECT cons FROM table_2651755_2 WHERE together_we_can_do_more = "Gloria Mujica ( PH )"
where democratic coalition is eduardo frei ( pdc ) what are all the alliance
CREATE TABLE table_2651755_2 (alliance VARCHAR, democratic_coalition VARCHAR)
SELECT alliance FROM table_2651755_2 WHERE democratic_coalition = "Eduardo Frei ( PDC )"
### Context: CREATE TABLE table_2651755_2 (alliance VARCHAR, democratic_coalition VARCHAR) ### Question: where democratic coalition is eduardo frei ( pdc ) what are all the alliance ### Answer: SELECT alliance FROM table_2651755_2 WHERE democratic_coalition = "Eduardo Frei ( PDC )"
What's the name of the episode associated with Nick production number 342?
CREATE TABLE table_2655016_4 (episode_title VARCHAR, nick_prod__number VARCHAR)
SELECT episode_title FROM table_2655016_4 WHERE nick_prod__number = 342
### Context: CREATE TABLE table_2655016_4 (episode_title VARCHAR, nick_prod__number VARCHAR) ### Question: What's the name of the episode associated with Nick production number 342? ### Answer: SELECT episode_title FROM table_2655016_4 WHERE nick_prod__number = 342
What date did season 12 premiere?
CREATE TABLE table_2655016_4 (original_air_date VARCHAR, season__number VARCHAR)
SELECT original_air_date FROM table_2655016_4 WHERE season__number = 12
### Context: CREATE TABLE table_2655016_4 (original_air_date VARCHAR, season__number VARCHAR) ### Question: What date did season 12 premiere? ### Answer: SELECT original_air_date FROM table_2655016_4 WHERE season__number = 12
What is the lowest Nick production number?
CREATE TABLE table_2655016_4 (nick_prod__number INTEGER)
SELECT MIN(nick_prod__number) FROM table_2655016_4
### Context: CREATE TABLE table_2655016_4 (nick_prod__number INTEGER) ### Question: What is the lowest Nick production number? ### Answer: SELECT MIN(nick_prod__number) FROM table_2655016_4
When did the episode originally air with a nick production number of 945?
CREATE TABLE table_2655016_10 (original_air_date VARCHAR, nick_prod__number VARCHAR)
SELECT original_air_date FROM table_2655016_10 WHERE nick_prod__number = 945
### Context: CREATE TABLE table_2655016_10 (original_air_date VARCHAR, nick_prod__number VARCHAR) ### Question: When did the episode originally air with a nick production number of 945? ### Answer: SELECT original_air_date FROM table_2655016_10 WHERE nick_prod__number = 945
What was the latest season with a nick production number of 942?
CREATE TABLE table_2655016_10 (season__number INTEGER, nick_prod__number VARCHAR)
SELECT MAX(season__number) FROM table_2655016_10 WHERE nick_prod__number = 942
### Context: CREATE TABLE table_2655016_10 (season__number INTEGER, nick_prod__number VARCHAR) ### Question: What was the latest season with a nick production number of 942? ### Answer: SELECT MAX(season__number) FROM table_2655016_10 WHERE nick_prod__number = 942
Name the metrical equivalence for linha
CREATE TABLE table_26538461_2 (metrical_equivalence VARCHAR, portuguese_name VARCHAR)
SELECT metrical_equivalence FROM table_26538461_2 WHERE portuguese_name = "Linha"
### Context: CREATE TABLE table_26538461_2 (metrical_equivalence VARCHAR, portuguese_name VARCHAR) ### Question: Name the metrical equivalence for linha ### Answer: SELECT metrical_equivalence FROM table_26538461_2 WHERE portuguese_name = "Linha"
Name the equivalence for varas for geometrical pace
CREATE TABLE table_26538461_2 (equivalence_in_varas VARCHAR, english_name VARCHAR)
SELECT equivalence_in_varas FROM table_26538461_2 WHERE english_name = "Geometrical pace"
### Context: CREATE TABLE table_26538461_2 (equivalence_in_varas VARCHAR, english_name VARCHAR) ### Question: Name the equivalence for varas for geometrical pace ### Answer: SELECT equivalence_in_varas FROM table_26538461_2 WHERE english_name = "Geometrical pace"
Name the subdivides in equivalence for varas 1/5
CREATE TABLE table_26538461_2 (subdivides_in VARCHAR, equivalence_in_varas VARCHAR)
SELECT subdivides_in FROM table_26538461_2 WHERE equivalence_in_varas = "1/5"
### Context: CREATE TABLE table_26538461_2 (subdivides_in VARCHAR, equivalence_in_varas VARCHAR) ### Question: Name the subdivides in equivalence for varas 1/5 ### Answer: SELECT subdivides_in FROM table_26538461_2 WHERE equivalence_in_varas = "1/5"
When موسم زيتون is the arabic title when is the year (ceremony)?
CREATE TABLE table_26555737_1 (year__ceremony_ VARCHAR, arabic_title VARCHAR)
SELECT year__ceremony_ FROM table_26555737_1 WHERE arabic_title = "موسم زيتون"
### Context: CREATE TABLE table_26555737_1 (year__ceremony_ VARCHAR, arabic_title VARCHAR) ### Question: When موسم زيتون is the arabic title when is the year (ceremony)? ### Answer: SELECT year__ceremony_ FROM table_26555737_1 WHERE arabic_title = "موسم زيتون"
When ملح هذا البحر is the arabic title what is the english title?
CREATE TABLE table_26555737_1 (english_title VARCHAR, arabic_title VARCHAR)
SELECT english_title FROM table_26555737_1 WHERE arabic_title = "ملح هذا البحر"
### Context: CREATE TABLE table_26555737_1 (english_title VARCHAR, arabic_title VARCHAR) ### Question: When ملح هذا البحر is the arabic title what is the english title? ### Answer: SELECT english_title FROM table_26555737_1 WHERE arabic_title = "ملح هذا البحر"
When nominee is the result who is the director?
CREATE TABLE table_26555737_1 (director VARCHAR, result VARCHAR)
SELECT director FROM table_26555737_1 WHERE result = "Nominee"
### Context: CREATE TABLE table_26555737_1 (director VARCHAR, result VARCHAR) ### Question: When nominee is the result who is the director? ### Answer: SELECT director FROM table_26555737_1 WHERE result = "Nominee"
When hany abu-assad category:articles with hcards is the director what is the result?
CREATE TABLE table_26555737_1 (result VARCHAR, director VARCHAR)
SELECT result FROM table_26555737_1 WHERE director = "Hany Abu-Assad Category:Articles with hCards"
### Context: CREATE TABLE table_26555737_1 (result VARCHAR, director VARCHAR) ### Question: When hany abu-assad category:articles with hcards is the director what is the result? ### Answer: SELECT result FROM table_26555737_1 WHERE director = "Hany Abu-Assad Category:Articles with hCards"
When 2012 (85th) is the year (ceremony) how many results?
CREATE TABLE table_26555737_1 (result VARCHAR, year__ceremony_ VARCHAR)
SELECT COUNT(result) FROM table_26555737_1 WHERE year__ceremony_ = "2012 (85th)"
### Context: CREATE TABLE table_26555737_1 (result VARCHAR, year__ceremony_ VARCHAR) ### Question: When 2012 (85th) is the year (ceremony) how many results? ### Answer: SELECT COUNT(result) FROM table_26555737_1 WHERE year__ceremony_ = "2012 (85th)"
When salt of this sea is the english title who is the director?
CREATE TABLE table_26555737_1 (director VARCHAR, english_title VARCHAR)
SELECT director FROM table_26555737_1 WHERE english_title = "Salt of this Sea"
### Context: CREATE TABLE table_26555737_1 (director VARCHAR, english_title VARCHAR) ### Question: When salt of this sea is the english title who is the director? ### Answer: SELECT director FROM table_26555737_1 WHERE english_title = "Salt of this Sea"
What was the record lowest temperature with a precipitation of 1.71 in.?
CREATE TABLE table_26558_1 (record_low VARCHAR, precip VARCHAR)
SELECT record_low FROM table_26558_1 WHERE precip = "1.71 in."
### Context: CREATE TABLE table_26558_1 (record_low VARCHAR, precip VARCHAR) ### Question: What was the record lowest temperature with a precipitation of 1.71 in.? ### Answer: SELECT record_low FROM table_26558_1 WHERE precip = "1.71 in."
who directed and produced 176452?
CREATE TABLE table_26561498_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_26561498_1 WHERE production_code = 176452
### Context: CREATE TABLE table_26561498_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: who directed and produced 176452? ### Answer: SELECT directed_by FROM table_26561498_1 WHERE production_code = 176452
what is the original air date for julie warner?
CREATE TABLE table_26561498_1 (original_air_date VARCHAR, patient_portrayer VARCHAR)
SELECT original_air_date FROM table_26561498_1 WHERE patient_portrayer = "Julie Warner"
### Context: CREATE TABLE table_26561498_1 (original_air_date VARCHAR, patient_portrayer VARCHAR) ### Question: what is the original air date for julie warner? ### Answer: SELECT original_air_date FROM table_26561498_1 WHERE patient_portrayer = "Julie Warner"
what was written by alex carter?
CREATE TABLE table_26561498_1 (written_by VARCHAR, patient_portrayer VARCHAR)
SELECT written_by FROM table_26561498_1 WHERE patient_portrayer = "Alex Carter"
### Context: CREATE TABLE table_26561498_1 (written_by VARCHAR, patient_portrayer VARCHAR) ### Question: what was written by alex carter? ### Answer: SELECT written_by FROM table_26561498_1 WHERE patient_portrayer = "Alex Carter"
Who is the patient portrayer of the episode with the production code 3T5004?
CREATE TABLE table_26561509_1 (patient_portrayer VARCHAR, production_code VARCHAR)
SELECT patient_portrayer FROM table_26561509_1 WHERE production_code = "3T5004"
### Context: CREATE TABLE table_26561509_1 (patient_portrayer VARCHAR, production_code VARCHAR) ### Question: Who is the patient portrayer of the episode with the production code 3T5004? ### Answer: SELECT patient_portrayer FROM table_26561509_1 WHERE production_code = "3T5004"
The episode with the no. 54, directed by Charles Haid, is written by who?
CREATE TABLE table_26561509_1 (written_by VARCHAR, directed_by VARCHAR, no VARCHAR)
SELECT written_by FROM table_26561509_1 WHERE directed_by = "Charles Haid" AND no = 54
### Context: CREATE TABLE table_26561509_1 (written_by VARCHAR, directed_by VARCHAR, no VARCHAR) ### Question: The episode with the no. 54, directed by Charles Haid, is written by who? ### Answer: SELECT written_by FROM table_26561509_1 WHERE directed_by = "Charles Haid" AND no = 54
How many are directed by episodes with the production code 3T5009?
CREATE TABLE table_26561509_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT COUNT(directed_by) FROM table_26561509_1 WHERE production_code = "3T5009"
### Context: CREATE TABLE table_26561509_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: How many are directed by episodes with the production code 3T5009? ### Answer: SELECT COUNT(directed_by) FROM table_26561509_1 WHERE production_code = "3T5009"
When was the first UK broadcast for episode 9?
CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, episode VARCHAR)
SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE episode = 9
### Context: CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, episode VARCHAR) ### Question: When was the first UK broadcast for episode 9? ### Answer: SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE episode = 9
When was the first UK broadcast for the episode with an official TNS Gallup rating of 1575000?
CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_tns_gallup_ratings VARCHAR)
SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE official_tns_gallup_ratings = 1575000
### Context: CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_tns_gallup_ratings VARCHAR) ### Question: When was the first UK broadcast for the episode with an official TNS Gallup rating of 1575000? ### Answer: SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE official_tns_gallup_ratings = 1575000
When was the first UK broadcast when the official Barb ratings was 1085000?
CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_barb_ratings VARCHAR)
SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE official_barb_ratings = 1085000
### Context: CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_barb_ratings VARCHAR) ### Question: When was the first UK broadcast when the official Barb ratings was 1085000? ### Answer: SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE official_barb_ratings = 1085000
Who is the writer with the ratings 14.8?
CREATE TABLE table_26591434_1 (writer VARCHAR, ratings__kanto_ VARCHAR)
SELECT writer FROM table_26591434_1 WHERE ratings__kanto_ = "14.8"
### Context: CREATE TABLE table_26591434_1 (writer VARCHAR, ratings__kanto_ VARCHAR) ### Question: Who is the writer with the ratings 14.8? ### Answer: SELECT writer FROM table_26591434_1 WHERE ratings__kanto_ = "14.8"
What is the original air date for the writer tanaka shinichi?
CREATE TABLE table_26591434_1 (original_airdate VARCHAR, writer VARCHAR)
SELECT original_airdate FROM table_26591434_1 WHERE writer = "Tanaka Shinichi"
### Context: CREATE TABLE table_26591434_1 (original_airdate VARCHAR, writer VARCHAR) ### Question: What is the original air date for the writer tanaka shinichi? ### Answer: SELECT original_airdate FROM table_26591434_1 WHERE writer = "Tanaka Shinichi"
What is the ratings for the original air date may 25, 2010 22.00 - 22.54?
CREATE TABLE table_26591434_1 (ratings__kansai_ VARCHAR, original_airdate VARCHAR)
SELECT ratings__kansai_ FROM table_26591434_1 WHERE original_airdate = "May 25, 2010 22.00 - 22.54"
### Context: CREATE TABLE table_26591434_1 (ratings__kansai_ VARCHAR, original_airdate VARCHAR) ### Question: What is the ratings for the original air date may 25, 2010 22.00 - 22.54? ### Answer: SELECT ratings__kansai_ FROM table_26591434_1 WHERE original_airdate = "May 25, 2010 22.00 - 22.54"
What was the ratings for episode 11?
CREATE TABLE table_26591434_1 (ratings__kanto_ VARCHAR, episode VARCHAR)
SELECT ratings__kanto_ FROM table_26591434_1 WHERE episode = 11
### Context: CREATE TABLE table_26591434_1 (ratings__kanto_ VARCHAR, episode VARCHAR) ### Question: What was the ratings for episode 11? ### Answer: SELECT ratings__kanto_ FROM table_26591434_1 WHERE episode = 11
Who was the outgoing manager of the team whose incoming manager was Dougie Freedman?
CREATE TABLE table_26593762_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR)
SELECT outgoing_manager FROM table_26593762_3 WHERE incoming_manager = "Dougie Freedman"
### Context: CREATE TABLE table_26593762_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR) ### Question: Who was the outgoing manager of the team whose incoming manager was Dougie Freedman? ### Answer: SELECT outgoing_manager FROM table_26593762_3 WHERE incoming_manager = "Dougie Freedman"
What was the table position for the team whose outgoing manager was Brian Laws?
CREATE TABLE table_26593762_3 (position_in_table VARCHAR, outgoing_manager VARCHAR)
SELECT position_in_table FROM table_26593762_3 WHERE outgoing_manager = "Brian Laws"
### Context: CREATE TABLE table_26593762_3 (position_in_table VARCHAR, outgoing_manager VARCHAR) ### Question: What was the table position for the team whose outgoing manager was Brian Laws? ### Answer: SELECT position_in_table FROM table_26593762_3 WHERE outgoing_manager = "Brian Laws"
How many incoming managers did Burnley have?
CREATE TABLE table_26593762_3 (incoming_manager VARCHAR, team VARCHAR)
SELECT COUNT(incoming_manager) FROM table_26593762_3 WHERE team = "Burnley"
### Context: CREATE TABLE table_26593762_3 (incoming_manager VARCHAR, team VARCHAR) ### Question: How many incoming managers did Burnley have? ### Answer: SELECT COUNT(incoming_manager) FROM table_26593762_3 WHERE team = "Burnley"
What was the manner of departure for the team whose incoming manager was George Burley?
CREATE TABLE table_26593762_3 (manner_of_departure VARCHAR, incoming_manager VARCHAR)
SELECT manner_of_departure FROM table_26593762_3 WHERE incoming_manager = "George Burley"
### Context: CREATE TABLE table_26593762_3 (manner_of_departure VARCHAR, incoming_manager VARCHAR) ### Question: What was the manner of departure for the team whose incoming manager was George Burley? ### Answer: SELECT manner_of_departure FROM table_26593762_3 WHERE incoming_manager = "George Burley"
What is the Galician (reintegrationist) word of the Galician (Official) is bo día / bos días?
CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR)
SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___official__ = "Bo día / Bos días"
### Context: CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR) ### Question: What is the Galician (reintegrationist) word of the Galician (Official) is bo día / bos días? ### Answer: SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___official__ = "Bo día / Bos días"
What is the Galician (reintegrationist) word of the Galician (Official) is adeus*?
CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR)
SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___official__ = "Adeus*"
### Context: CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR) ### Question: What is the Galician (reintegrationist) word of the Galician (Official) is adeus*? ### Answer: SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___official__ = "Adeus*"
What is the Portuguese word for the English word 'grandfather'?
CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR)
SELECT portuguese FROM table_26614365_5 WHERE english = "Grandfather"
### Context: CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR) ### Question: What is the Portuguese word for the English word 'grandfather'? ### Answer: SELECT portuguese FROM table_26614365_5 WHERE english = "Grandfather"
How many Spanish word is there for the Portuguese bem-vindo?
CREATE TABLE table_26614365_5 (spanish VARCHAR, portuguese VARCHAR)
SELECT COUNT(spanish) FROM table_26614365_5 WHERE portuguese = "Bem-vindo"
### Context: CREATE TABLE table_26614365_5 (spanish VARCHAR, portuguese VARCHAR) ### Question: How many Spanish word is there for the Portuguese bem-vindo? ### Answer: SELECT COUNT(spanish) FROM table_26614365_5 WHERE portuguese = "Bem-vindo"
What is the Portuguese word for the English word 'welcome'?
CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR)
SELECT portuguese FROM table_26614365_5 WHERE english = "Welcome"
### Context: CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR) ### Question: What is the Portuguese word for the English word 'welcome'? ### Answer: SELECT portuguese FROM table_26614365_5 WHERE english = "Welcome"
what gender has an asian black bear?
CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)
SELECT gender FROM table_26615633_3 WHERE species = "Asian black bear"
### Context: CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR) ### Question: what gender has an asian black bear? ### Answer: SELECT gender FROM table_26615633_3 WHERE species = "Asian black bear"
what is the sweet for voice actor saki fujita?
CREATE TABLE table_26615633_3 (sweet VARCHAR, voice_actor VARCHAR)
SELECT sweet FROM table_26615633_3 WHERE voice_actor = "Saki Fujita"
### Context: CREATE TABLE table_26615633_3 (sweet VARCHAR, voice_actor VARCHAR) ### Question: what is the sweet for voice actor saki fujita? ### Answer: SELECT sweet FROM table_26615633_3 WHERE voice_actor = "Saki Fujita"
whatis the gender wher ethe species is holland lop?
CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)
SELECT gender FROM table_26615633_3 WHERE species = "Holland Lop"
### Context: CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR) ### Question: whatis the gender wher ethe species is holland lop? ### Answer: SELECT gender FROM table_26615633_3 WHERE species = "Holland Lop"
what is the media debut for the asian black bear?
CREATE TABLE table_26615633_3 (media_debut VARCHAR, species VARCHAR)
SELECT media_debut FROM table_26615633_3 WHERE species = "Asian black bear"
### Context: CREATE TABLE table_26615633_3 (media_debut VARCHAR, species VARCHAR) ### Question: what is the media debut for the asian black bear? ### Answer: SELECT media_debut FROM table_26615633_3 WHERE species = "Asian black bear"
What is the Spanish word for cas [ˈkas]?
CREATE TABLE table_26614365_1 (spanish VARCHAR, central VARCHAR)
SELECT spanish FROM table_26614365_1 WHERE central = "cas [ˈkas]"
### Context: CREATE TABLE table_26614365_1 (spanish VARCHAR, central VARCHAR) ### Question: What is the Spanish word for cas [ˈkas]? ### Answer: SELECT spanish FROM table_26614365_1 WHERE central = "cas [ˈkas]"
What is the eastern word for "light"?
CREATE TABLE table_26614365_1 (eastern VARCHAR, english VARCHAR)
SELECT eastern FROM table_26614365_1 WHERE english = "light"
### Context: CREATE TABLE table_26614365_1 (eastern VARCHAR, english VARCHAR) ### Question: What is the eastern word for "light"? ### Answer: SELECT eastern FROM table_26614365_1 WHERE english = "light"
What is the central word for "robbers"?
CREATE TABLE table_26614365_1 (central VARCHAR, english VARCHAR)
SELECT central FROM table_26614365_1 WHERE english = "robbers"
### Context: CREATE TABLE table_26614365_1 (central VARCHAR, english VARCHAR) ### Question: What is the central word for "robbers"? ### Answer: SELECT central FROM table_26614365_1 WHERE english = "robbers"
What is the Latin for "you sang"?
CREATE TABLE table_26614365_1 (latin VARCHAR, english VARCHAR)
SELECT latin FROM table_26614365_1 WHERE english = "you sang"
### Context: CREATE TABLE table_26614365_1 (latin VARCHAR, english VARCHAR) ### Question: What is the Latin for "you sang"? ### Answer: SELECT latin FROM table_26614365_1 WHERE english = "you sang"
What is the western word for "latrones" in Latin?
CREATE TABLE table_26614365_1 (western VARCHAR, latin VARCHAR)
SELECT western FROM table_26614365_1 WHERE latin = "latrones"
### Context: CREATE TABLE table_26614365_1 (western VARCHAR, latin VARCHAR) ### Question: What is the western word for "latrones" in Latin? ### Answer: SELECT western FROM table_26614365_1 WHERE latin = "latrones"
What is the Old Galician for cantaste in Portuguese?
CREATE TABLE table_26614365_1 (old_galician__13th_15th_c_ VARCHAR, portuguese VARCHAR)
SELECT old_galician__13th_15th_c_ FROM table_26614365_1 WHERE portuguese = "cantaste"
### Context: CREATE TABLE table_26614365_1 (old_galician__13th_15th_c_ VARCHAR, portuguese VARCHAR) ### Question: What is the Old Galician for cantaste in Portuguese? ### Answer: SELECT old_galician__13th_15th_c_ FROM table_26614365_1 WHERE portuguese = "cantaste"
What is the lowest overall amount of rainfall totals (million m 3)?
CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ INTEGER)
SELECT MIN(rainfall_totals__million_m_3__) FROM table_26609958_1
### Context: CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ INTEGER) ### Question: What is the lowest overall amount of rainfall totals (million m 3)? ### Answer: SELECT MIN(rainfall_totals__million_m_3__) FROM table_26609958_1
When cabarita river is the hydrographic basin what is the lowest groundwater discharge (million m 3)?
CREATE TABLE table_26609958_1 (groundwater_discharge__million_m_3__ INTEGER, hydrographic_basin VARCHAR)
SELECT MIN(groundwater_discharge__million_m_3__) FROM table_26609958_1 WHERE hydrographic_basin = "Cabarita River"
### Context: CREATE TABLE table_26609958_1 (groundwater_discharge__million_m_3__ INTEGER, hydrographic_basin VARCHAR) ### Question: When cabarita river is the hydrographic basin what is the lowest groundwater discharge (million m 3)? ### Answer: SELECT MIN(groundwater_discharge__million_m_3__) FROM table_26609958_1 WHERE hydrographic_basin = "Cabarita River"
When martha brae, river is the hydrographic basin what is the rainfall totals (million m 3)?
CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ VARCHAR, hydrographic_basin VARCHAR)
SELECT rainfall_totals__million_m_3__ FROM table_26609958_1 WHERE hydrographic_basin = "Martha Brae, River"
### Context: CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ VARCHAR, hydrographic_basin VARCHAR) ### Question: When martha brae, river is the hydrographic basin what is the rainfall totals (million m 3)? ### Answer: SELECT rainfall_totals__million_m_3__ FROM table_26609958_1 WHERE hydrographic_basin = "Martha Brae, River"
Name the average for assists per game
CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR)
SELECT average FROM table_26611679_3 WHERE category = "Assists per game"
### Context: CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR) ### Question: Name the average for assists per game ### Answer: SELECT average FROM table_26611679_3 WHERE category = "Assists per game"
Name the average for 23 games played
CREATE TABLE table_26611679_3 (average VARCHAR, games_played VARCHAR)
SELECT average FROM table_26611679_3 WHERE games_played = 23
### Context: CREATE TABLE table_26611679_3 (average VARCHAR, games_played VARCHAR) ### Question: Name the average for 23 games played ### Answer: SELECT average FROM table_26611679_3 WHERE games_played = 23
Name the category for 50 totals
CREATE TABLE table_26611679_3 (category VARCHAR, totals VARCHAR)
SELECT category FROM table_26611679_3 WHERE totals = "50"
### Context: CREATE TABLE table_26611679_3 (category VARCHAR, totals VARCHAR) ### Question: Name the category for 50 totals ### Answer: SELECT category FROM table_26611679_3 WHERE totals = "50"
Name the number of average for steals per game
CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR)
SELECT COUNT(average) FROM table_26611679_3 WHERE category = "Steals per game"
### Context: CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR) ### Question: Name the number of average for steals per game ### Answer: SELECT COUNT(average) FROM table_26611679_3 WHERE category = "Steals per game"
who was the voice actor when the species is hedgehog?
CREATE TABLE table_26615633_1 (voice_actor VARCHAR, species VARCHAR)
SELECT voice_actor FROM table_26615633_1 WHERE species = "Hedgehog"
### Context: CREATE TABLE table_26615633_1 (voice_actor VARCHAR, species VARCHAR) ### Question: who was the voice actor when the species is hedgehog? ### Answer: SELECT voice_actor FROM table_26615633_1 WHERE species = "Hedgehog"
who is the voice actor with the birthday march 26?
CREATE TABLE table_26615633_1 (voice_actor VARCHAR, birthday VARCHAR)
SELECT voice_actor FROM table_26615633_1 WHERE birthday = "March 26"
### Context: CREATE TABLE table_26615633_1 (voice_actor VARCHAR, birthday VARCHAR) ### Question: who is the voice actor with the birthday march 26? ### Answer: SELECT voice_actor FROM table_26615633_1 WHERE birthday = "March 26"
what is the jewel power when the media debut is ep 17?
CREATE TABLE table_26615633_1 (jewel VARCHAR, media_debut VARCHAR)
SELECT jewel AS Power FROM table_26615633_1 WHERE media_debut = "EP 17"
### Context: CREATE TABLE table_26615633_1 (jewel VARCHAR, media_debut VARCHAR) ### Question: what is the jewel power when the media debut is ep 17? ### Answer: SELECT jewel AS Power FROM table_26615633_1 WHERE media_debut = "EP 17"
how many times is the jewel malachite?
CREATE TABLE table_26615633_1 (birthday VARCHAR, jewel VARCHAR)
SELECT COUNT(birthday) FROM table_26615633_1 WHERE jewel = "Malachite"
### Context: CREATE TABLE table_26615633_1 (birthday VARCHAR, jewel VARCHAR) ### Question: how many times is the jewel malachite? ### Answer: SELECT COUNT(birthday) FROM table_26615633_1 WHERE jewel = "Malachite"
What is the species when jewel is coal?
CREATE TABLE table_26615633_1 (species VARCHAR, jewel VARCHAR)
SELECT species FROM table_26615633_1 WHERE jewel = "Coal"
### Context: CREATE TABLE table_26615633_1 (species VARCHAR, jewel VARCHAR) ### Question: What is the species when jewel is coal? ### Answer: SELECT species FROM table_26615633_1 WHERE jewel = "Coal"
Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports?
CREATE TABLE table_26638600_3 (lites_2_race_two_winning_team VARCHAR, lites_1_race_one_winning_team VARCHAR)
SELECT lites_2_race_two_winning_team FROM table_26638600_3 WHERE lites_1_race_one_winning_team = "#13 Inspire Motorsports"
### Context: CREATE TABLE table_26638600_3 (lites_2_race_two_winning_team VARCHAR, lites_1_race_one_winning_team VARCHAR) ### Question: Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports? ### Answer: SELECT lites_2_race_two_winning_team FROM table_26638600_3 WHERE lites_1_race_one_winning_team = "#13 Inspire Motorsports"
How many different circuits had Gary Gibson has the Lites 1 race two winning team?
CREATE TABLE table_26638600_3 (lites_2_race_one_winning_team VARCHAR, lites_1_race_two_winning_team VARCHAR)
SELECT COUNT(lites_2_race_one_winning_team) FROM table_26638600_3 WHERE lites_1_race_two_winning_team = "Gary Gibson"
### Context: CREATE TABLE table_26638600_3 (lites_2_race_one_winning_team VARCHAR, lites_1_race_two_winning_team VARCHAR) ### Question: How many different circuits had Gary Gibson has the Lites 1 race two winning team? ### Answer: SELECT COUNT(lites_2_race_one_winning_team) FROM table_26638600_3 WHERE lites_1_race_two_winning_team = "Gary Gibson"