question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
what is the maximum year with registration of a minor child being 281 | CREATE TABLE table_11214212_1 (year INTEGER, registration_of_a_minor_child VARCHAR) | SELECT MAX(year) FROM table_11214212_1 WHERE registration_of_a_minor_child = 281 | ### Context: CREATE TABLE table_11214212_1 (year INTEGER, registration_of_a_minor_child VARCHAR) ### Question: what is the maximum year with registration of a minor child being 281 ### Answer: SELECT MAX(year) FROM table_11214212_1 WHERE registration_of_a_minor_child = 281 |
How many episodes had their first air date on March 6, 2008? | CREATE TABLE table_11220799_2 (episode_titles VARCHAR, first_air_date VARCHAR) | SELECT COUNT(episode_titles) FROM table_11220799_2 WHERE first_air_date = "March 6, 2008" | ### Context: CREATE TABLE table_11220799_2 (episode_titles VARCHAR, first_air_date VARCHAR) ### Question: How many episodes had their first air date on March 6, 2008? ### Answer: SELECT COUNT(episode_titles) FROM table_11220799_2 WHERE first_air_date = "March 6, 2008" |
What were the results of episodes with the first air date of March 6, 2008? | CREATE TABLE table_11220799_2 (finish VARCHAR, first_air_date VARCHAR) | SELECT finish FROM table_11220799_2 WHERE first_air_date = "March 6, 2008" | ### Context: CREATE TABLE table_11220799_2 (finish VARCHAR, first_air_date VARCHAR) ### Question: What were the results of episodes with the first air date of March 6, 2008? ### Answer: SELECT finish FROM table_11220799_2 WHERE first_air_date = "March 6, 2008" |
How many millions of viewers watched episode 15? | CREATE TABLE table_11230937_2 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) | SELECT us_viewers__millions_ FROM table_11230937_2 WHERE no_in_season = 15 | ### Context: CREATE TABLE table_11230937_2 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) ### Question: How many millions of viewers watched episode 15? ### Answer: SELECT us_viewers__millions_ FROM table_11230937_2 WHERE no_in_season = 15 |
How many millions of viewers watched the episode directed by Anthony Hemingway? | CREATE TABLE table_11230937_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR) | SELECT us_viewers__millions_ FROM table_11230937_2 WHERE directed_by = "Anthony Hemingway" | ### Context: CREATE TABLE table_11230937_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR) ### Question: How many millions of viewers watched the episode directed by Anthony Hemingway? ### Answer: SELECT us_viewers__millions_ FROM table_11230937_2 WHERE directed_by = "Anthony Hemingway" |
The Catalog number is 80809 what is the title? | CREATE TABLE table_11222744_2 (title VARCHAR, catalog_number VARCHAR) | SELECT title FROM table_11222744_2 WHERE catalog_number = "80809" | ### Context: CREATE TABLE table_11222744_2 (title VARCHAR, catalog_number VARCHAR) ### Question: The Catalog number is 80809 what is the title? ### Answer: SELECT title FROM table_11222744_2 WHERE catalog_number = "80809" |
where title is beginning callanetics , what is the total of format ? | CREATE TABLE table_11222744_2 (format VARCHAR, title VARCHAR) | SELECT COUNT(format) FROM table_11222744_2 WHERE title = "Beginning Callanetics" | ### Context: CREATE TABLE table_11222744_2 (format VARCHAR, title VARCHAR) ### Question: where title is beginning callanetics , what is the total of format ? ### Answer: SELECT COUNT(format) FROM table_11222744_2 WHERE title = "Beginning Callanetics" |
where catalog number is 81258 , what are all the studio ? | CREATE TABLE table_11222744_2 (studio VARCHAR, catalog_number VARCHAR) | SELECT studio FROM table_11222744_2 WHERE catalog_number = "81258" | ### Context: CREATE TABLE table_11222744_2 (studio VARCHAR, catalog_number VARCHAR) ### Question: where catalog number is 81258 , what are all the studio ? ### Answer: SELECT studio FROM table_11222744_2 WHERE catalog_number = "81258" |
where title is am/pm callanetics , what are all the copyright information? | CREATE TABLE table_11222744_2 (copyright_information VARCHAR, title VARCHAR) | SELECT copyright_information FROM table_11222744_2 WHERE title = "AM/PM Callanetics" | ### Context: CREATE TABLE table_11222744_2 (copyright_information VARCHAR, title VARCHAR) ### Question: where title is am/pm callanetics , what are all the copyright information? ### Answer: SELECT copyright_information FROM table_11222744_2 WHERE title = "AM/PM Callanetics" |
What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)? | CREATE TABLE table_11236195_2 (gf_attendance VARCHAR, location VARCHAR) | SELECT COUNT(gf_attendance) FROM table_11236195_2 WHERE location = "Sydney Football Stadium, Sydney (6)" | ### Context: CREATE TABLE table_11236195_2 (gf_attendance VARCHAR, location VARCHAR) ### Question: What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)? ### Answer: SELECT COUNT(gf_attendance) FROM table_11236195_2 WHERE location = "Sydney Football Stadium, Sydney (6)" |
Which losing team had a score of 24-12? | CREATE TABLE table_11236195_2 (losingteam VARCHAR, score VARCHAR) | SELECT losingteam FROM table_11236195_2 WHERE score = "24-12" | ### Context: CREATE TABLE table_11236195_2 (losingteam VARCHAR, score VARCHAR) ### Question: Which losing team had a score of 24-12? ### Answer: SELECT losingteam FROM table_11236195_2 WHERE score = "24-12" |
What was the losing team in the 1993 season? | CREATE TABLE table_11236195_2 (losingteam VARCHAR, season VARCHAR) | SELECT losingteam FROM table_11236195_2 WHERE season = 1993 | ### Context: CREATE TABLE table_11236195_2 (losingteam VARCHAR, season VARCHAR) ### Question: What was the losing team in the 1993 season? ### Answer: SELECT losingteam FROM table_11236195_2 WHERE season = 1993 |
What was the compression ration when the engine was Wasp Jr. T1B2? | CREATE TABLE table_1123802_1 (compression_ratio VARCHAR, engine VARCHAR) | SELECT compression_ratio FROM table_1123802_1 WHERE engine = "Wasp Jr. T1B2" | ### Context: CREATE TABLE table_1123802_1 (compression_ratio VARCHAR, engine VARCHAR) ### Question: What was the compression ration when the engine was Wasp Jr. T1B2? ### Answer: SELECT compression_ratio FROM table_1123802_1 WHERE engine = "Wasp Jr. T1B2" |
When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power? | CREATE TABLE table_1123802_1 (_takeoff VARCHAR, power VARCHAR, engine VARCHAR) | SELECT COUNT(power), _takeoff FROM table_1123802_1 WHERE engine = "Wasp Jr. T1B2" | ### Context: CREATE TABLE table_1123802_1 (_takeoff VARCHAR, power VARCHAR, engine VARCHAR) ### Question: When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power? ### Answer: SELECT COUNT(power), _takeoff FROM table_1123802_1 WHERE engine = "Wasp Jr. T1B2" |
How many episodes aired on october 27, 2008 | CREATE TABLE table_11235334_2 (episode VARCHAR, air_date VARCHAR) | SELECT COUNT(episode) FROM table_11235334_2 WHERE air_date = "October 27, 2008" | ### Context: CREATE TABLE table_11235334_2 (episode VARCHAR, air_date VARCHAR) ### Question: How many episodes aired on october 27, 2008 ### Answer: SELECT COUNT(episode) FROM table_11235334_2 WHERE air_date = "October 27, 2008" |
what is the most # that aired on september 29, 2008? | CREATE TABLE table_11235334_2 (_number INTEGER, air_date VARCHAR) | SELECT MAX(_number) FROM table_11235334_2 WHERE air_date = "September 29, 2008" | ### Context: CREATE TABLE table_11235334_2 (_number INTEGER, air_date VARCHAR) ### Question: what is the most # that aired on september 29, 2008? ### Answer: SELECT MAX(_number) FROM table_11235334_2 WHERE air_date = "September 29, 2008" |
How many seasons did the canterbury bulldogs (8) win? | CREATE TABLE table_11236195_5 (season VARCHAR, winningteam VARCHAR) | SELECT COUNT(season) FROM table_11236195_5 WHERE winningteam = "Canterbury Bulldogs (8)" | ### Context: CREATE TABLE table_11236195_5 (season VARCHAR, winningteam VARCHAR) ### Question: How many seasons did the canterbury bulldogs (8) win? ### Answer: SELECT COUNT(season) FROM table_11236195_5 WHERE winningteam = "Canterbury Bulldogs (8)" |
How many teams lost at the sydney football stadium, sydney (11)? | CREATE TABLE table_11236195_5 (losingteam VARCHAR, location VARCHAR) | SELECT COUNT(losingteam) FROM table_11236195_5 WHERE location = "Sydney Football Stadium, Sydney (11)" | ### Context: CREATE TABLE table_11236195_5 (losingteam VARCHAR, location VARCHAR) ### Question: How many teams lost at the sydney football stadium, sydney (11)? ### Answer: SELECT COUNT(losingteam) FROM table_11236195_5 WHERE location = "Sydney Football Stadium, Sydney (11)" |
What was the date that the st. george-illawarra dragons lost? | CREATE TABLE table_11236195_5 (grand_finaldate VARCHAR, losingteam VARCHAR) | SELECT grand_finaldate FROM table_11236195_5 WHERE losingteam = "St. George-Illawarra Dragons" | ### Context: CREATE TABLE table_11236195_5 (grand_finaldate VARCHAR, losingteam VARCHAR) ### Question: What was the date that the st. george-illawarra dragons lost? ### Answer: SELECT grand_finaldate FROM table_11236195_5 WHERE losingteam = "St. George-Illawarra Dragons" |
Brett kimmorley, who was chosen for the clive churchill medal belonged to what team? | CREATE TABLE table_11236195_5 (winningteam VARCHAR, clive_churchill_medal VARCHAR) | SELECT winningteam FROM table_11236195_5 WHERE clive_churchill_medal = "Brett Kimmorley" | ### Context: CREATE TABLE table_11236195_5 (winningteam VARCHAR, clive_churchill_medal VARCHAR) ### Question: Brett kimmorley, who was chosen for the clive churchill medal belonged to what team? ### Answer: SELECT winningteam FROM table_11236195_5 WHERE clive_churchill_medal = "Brett Kimmorley" |
What time slots have a 6.3 rating | CREATE TABLE table_11244302_1 (time_slot__est_ VARCHAR, rating VARCHAR) | SELECT time_slot__est_ FROM table_11244302_1 WHERE rating = "6.3" | ### Context: CREATE TABLE table_11244302_1 (time_slot__est_ VARCHAR, rating VARCHAR) ### Question: What time slots have a 6.3 rating ### Answer: SELECT time_slot__est_ FROM table_11244302_1 WHERE rating = "6.3" |
Which air date had an 11 share | CREATE TABLE table_11244302_1 (air_date VARCHAR, share VARCHAR) | SELECT air_date FROM table_11244302_1 WHERE share = 11 | ### Context: CREATE TABLE table_11244302_1 (air_date VARCHAR, share VARCHAR) ### Question: Which air date had an 11 share ### Answer: SELECT air_date FROM table_11244302_1 WHERE share = 11 |
What episode had the last appearances of the late wife of mac taylor? | CREATE TABLE table_11240028_3 (last_appearance VARCHAR, relationship VARCHAR) | SELECT last_appearance FROM table_11240028_3 WHERE relationship = "Late wife of Mac Taylor" | ### Context: CREATE TABLE table_11240028_3 (last_appearance VARCHAR, relationship VARCHAR) ### Question: What episode had the last appearances of the late wife of mac taylor? ### Answer: SELECT last_appearance FROM table_11240028_3 WHERE relationship = "Late wife of Mac Taylor" |
Which characters were portrayed by reed garrett? | CREATE TABLE table_11240028_3 (portrayed_by VARCHAR, character VARCHAR) | SELECT portrayed_by FROM table_11240028_3 WHERE character = "Reed Garrett" | ### Context: CREATE TABLE table_11240028_3 (portrayed_by VARCHAR, character VARCHAR) ### Question: Which characters were portrayed by reed garrett? ### Answer: SELECT portrayed_by FROM table_11240028_3 WHERE character = "Reed Garrett" |
How many characters were portrayed by the informant of don flack? | CREATE TABLE table_11240028_3 (portrayed_by VARCHAR, relationship VARCHAR) | SELECT COUNT(portrayed_by) FROM table_11240028_3 WHERE relationship = "Informant of Don Flack" | ### Context: CREATE TABLE table_11240028_3 (portrayed_by VARCHAR, relationship VARCHAR) ### Question: How many characters were portrayed by the informant of don flack? ### Answer: SELECT COUNT(portrayed_by) FROM table_11240028_3 WHERE relationship = "Informant of Don Flack" |
What episode was the last appearance of the character, rikki sandoval? | CREATE TABLE table_11240028_3 (last_appearance VARCHAR, character VARCHAR) | SELECT last_appearance FROM table_11240028_3 WHERE character = "Rikki Sandoval" | ### Context: CREATE TABLE table_11240028_3 (last_appearance VARCHAR, character VARCHAR) ### Question: What episode was the last appearance of the character, rikki sandoval? ### Answer: SELECT last_appearance FROM table_11240028_3 WHERE character = "Rikki Sandoval" |
On which episode did actress Sela Ward make her last appearance? | CREATE TABLE table_11240028_1 (last_appearance VARCHAR, portrayed_by VARCHAR) | SELECT last_appearance FROM table_11240028_1 WHERE portrayed_by = "Sela Ward" | ### Context: CREATE TABLE table_11240028_1 (last_appearance VARCHAR, portrayed_by VARCHAR) ### Question: On which episode did actress Sela Ward make her last appearance? ### Answer: SELECT last_appearance FROM table_11240028_1 WHERE portrayed_by = "Sela Ward" |
How many episodes did actress Vanessa Ferlito appear in? | CREATE TABLE table_11240028_1 (episodes VARCHAR, portrayed_by VARCHAR) | SELECT episodes FROM table_11240028_1 WHERE portrayed_by = "Vanessa Ferlito" | ### Context: CREATE TABLE table_11240028_1 (episodes VARCHAR, portrayed_by VARCHAR) ### Question: How many episodes did actress Vanessa Ferlito appear in? ### Answer: SELECT episodes FROM table_11240028_1 WHERE portrayed_by = "Vanessa Ferlito" |
What was the duration of Robert Joy's portrayal? | CREATE TABLE table_11240028_1 (duration VARCHAR, portrayed_by VARCHAR) | SELECT COUNT(duration) FROM table_11240028_1 WHERE portrayed_by = "Robert Joy" | ### Context: CREATE TABLE table_11240028_1 (duration VARCHAR, portrayed_by VARCHAR) ### Question: What was the duration of Robert Joy's portrayal? ### Answer: SELECT COUNT(duration) FROM table_11240028_1 WHERE portrayed_by = "Robert Joy" |
Which episode did actor A. J. Buckley last appear in? | CREATE TABLE table_11240028_1 (last_appearance VARCHAR, portrayed_by VARCHAR) | SELECT last_appearance FROM table_11240028_1 WHERE portrayed_by = "A. J. Buckley" | ### Context: CREATE TABLE table_11240028_1 (last_appearance VARCHAR, portrayed_by VARCHAR) ### Question: Which episode did actor A. J. Buckley last appear in? ### Answer: SELECT last_appearance FROM table_11240028_1 WHERE portrayed_by = "A. J. Buckley" |
What is the least top division titles? | CREATE TABLE table_11250_4 (top_division_titles INTEGER) | SELECT MIN(top_division_titles) FROM table_11250_4 | ### Context: CREATE TABLE table_11250_4 (top_division_titles INTEGER) ### Question: What is the least top division titles? ### Answer: SELECT MIN(top_division_titles) FROM table_11250_4 |
What is the least number of seasons in top division? | CREATE TABLE table_11250_4 (number_of_seasons_in_top_division INTEGER) | SELECT MIN(number_of_seasons_in_top_division) FROM table_11250_4 | ### Context: CREATE TABLE table_11250_4 (number_of_seasons_in_top_division INTEGER) ### Question: What is the least number of seasons in top division? ### Answer: SELECT MIN(number_of_seasons_in_top_division) FROM table_11250_4 |
How many viewers (millions) were there for rank (week) 20? | CREATE TABLE table_11253290_2 (viewers__millions_ VARCHAR, rank__week_ VARCHAR) | SELECT COUNT(viewers__millions_) FROM table_11253290_2 WHERE rank__week_ = "20" | ### Context: CREATE TABLE table_11253290_2 (viewers__millions_ VARCHAR, rank__week_ VARCHAR) ### Question: How many viewers (millions) were there for rank (week) 20? ### Answer: SELECT COUNT(viewers__millions_) FROM table_11253290_2 WHERE rank__week_ = "20" |
What is the lowest rank (night) for having viewers (millions) 5.25? | CREATE TABLE table_11253290_2 (rank__night_ INTEGER, viewers__millions_ VARCHAR) | SELECT MIN(rank__night_) FROM table_11253290_2 WHERE viewers__millions_ = "5.25" | ### Context: CREATE TABLE table_11253290_2 (rank__night_ INTEGER, viewers__millions_ VARCHAR) ### Question: What is the lowest rank (night) for having viewers (millions) 5.25? ### Answer: SELECT MIN(rank__night_) FROM table_11253290_2 WHERE viewers__millions_ = "5.25" |
How many times was the rank (night) 11? | CREATE TABLE table_11253290_2 (viewers__millions_ VARCHAR, rank__night_ VARCHAR) | SELECT COUNT(viewers__millions_) FROM table_11253290_2 WHERE rank__night_ = 11 | ### Context: CREATE TABLE table_11253290_2 (viewers__millions_ VARCHAR, rank__night_ VARCHAR) ### Question: How many times was the rank (night) 11? ### Answer: SELECT COUNT(viewers__millions_) FROM table_11253290_2 WHERE rank__night_ = 11 |
WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7? | CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR) | SELECT carbon_dioxide_emissions_per_year__10_6_tons___2006_ FROM table_11251601_2 WHERE carbon_dioxide_emissions_per_year__tons_per_person___2007_ = "1.4" | ### Context: CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR) ### Question: WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7?... |
HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006? | CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ INTEGER, country VARCHAR) | SELECT MAX(carbon_dioxide_emissions_per_year__10_6_tons___2006_) FROM table_11251601_2 WHERE country = "Russia" | ### Context: CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ INTEGER, country VARCHAR) ### Question: HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006? ### Answer: SELECT MAX(carbon_dioxide_emissions_per_year__10_6_tons___2006_) FROM table_11251601_2 WHERE country = "Russia" |
WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE? | CREATE TABLE table_11251601_2 (percentage_of_global_total VARCHAR, country VARCHAR) | SELECT percentage_of_global_total FROM table_11251601_2 WHERE country = "India" | ### Context: CREATE TABLE table_11251601_2 (percentage_of_global_total VARCHAR, country VARCHAR) ### Question: WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE? ### Answer: SELECT percentage_of_global_total FROM table_11251601_2 WHERE country = "India" |
HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007? | CREATE TABLE table_11251601_2 (percentage_of_global_total VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR) | SELECT percentage_of_global_total FROM table_11251601_2 WHERE carbon_dioxide_emissions_per_year__tons_per_person___2007_ = "4.9" | ### Context: CREATE TABLE table_11251601_2 (percentage_of_global_total VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR) ### Question: HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007? ### Answer: SELECT percentage_of_global_total F... |
WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA? | CREATE TABLE table_11251601_2 (avg_emission_per_km_2_of_its_land__tons_ INTEGER, country VARCHAR) | SELECT MAX(avg_emission_per_km_2_of_its_land__tons_) FROM table_11251601_2 WHERE country = "India" | ### Context: CREATE TABLE table_11251601_2 (avg_emission_per_km_2_of_its_land__tons_ INTEGER, country VARCHAR) ### Question: WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA? ### Answer: SELECT MAX(avg_emission_per_km_2_of_its_land__tons_) FROM table_11251601_2 WHERE country = "India" |
What is the rank number that aired october 26, 2007? | CREATE TABLE table_11251109_3 (_number VARCHAR, air_date VARCHAR) | SELECT RANK(_number) FROM table_11251109_3 WHERE air_date = "October 26, 2007" | ### Context: CREATE TABLE table_11251109_3 (_number VARCHAR, air_date VARCHAR) ### Question: What is the rank number that aired october 26, 2007? ### Answer: SELECT RANK(_number) FROM table_11251109_3 WHERE air_date = "October 26, 2007" |
What is the number of rank with the viewership of 5.96 million? | CREATE TABLE table_11251109_3 (Rank VARCHAR, viewers__m_ VARCHAR) | SELECT COUNT(Rank) AS (_number) FROM table_11251109_3 WHERE viewers__m_ = "5.96" | ### Context: CREATE TABLE table_11251109_3 (Rank VARCHAR, viewers__m_ VARCHAR) ### Question: What is the number of rank with the viewership of 5.96 million? ### Answer: SELECT COUNT(Rank) AS (_number) FROM table_11251109_3 WHERE viewers__m_ = "5.96" |
What is the viewership on november 9, 2007? | CREATE TABLE table_11251109_3 (viewers__m_ VARCHAR, air_date VARCHAR) | SELECT viewers__m_ FROM table_11251109_3 WHERE air_date = "November 9, 2007" | ### Context: CREATE TABLE table_11251109_3 (viewers__m_ VARCHAR, air_date VARCHAR) ### Question: What is the viewership on november 9, 2007? ### Answer: SELECT viewers__m_ FROM table_11251109_3 WHERE air_date = "November 9, 2007" |
How many platinum points were awarded when 6 gold points were awarded? | CREATE TABLE table_11254821_2 (points_awarded__platinum_ INTEGER, points_awarded__gold_ VARCHAR) | SELECT MAX(points_awarded__platinum_) FROM table_11254821_2 WHERE points_awarded__gold_ = 6 | ### Context: CREATE TABLE table_11254821_2 (points_awarded__platinum_ INTEGER, points_awarded__gold_ VARCHAR) ### Question: How many platinum points were awarded when 6 gold points were awarded? ### Answer: SELECT MAX(points_awarded__platinum_) FROM table_11254821_2 WHERE points_awarded__gold_ = 6 |
What was the range of finishing position for 15 awarded platinum points? | CREATE TABLE table_11254821_2 (finishing_position VARCHAR, points_awarded__platinum_ VARCHAR) | SELECT finishing_position FROM table_11254821_2 WHERE points_awarded__platinum_ = 15 | ### Context: CREATE TABLE table_11254821_2 (finishing_position VARCHAR, points_awarded__platinum_ VARCHAR) ### Question: What was the range of finishing position for 15 awarded platinum points? ### Answer: SELECT finishing_position FROM table_11254821_2 WHERE points_awarded__platinum_ = 15 |
How many platinum points were awarded for 5th place? | CREATE TABLE table_11254821_2 (points_awarded__platinum_ INTEGER, finishing_position VARCHAR) | SELECT MAX(points_awarded__platinum_) FROM table_11254821_2 WHERE finishing_position = "5th" | ### Context: CREATE TABLE table_11254821_2 (points_awarded__platinum_ INTEGER, finishing_position VARCHAR) ### Question: How many platinum points were awarded for 5th place? ### Answer: SELECT MAX(points_awarded__platinum_) FROM table_11254821_2 WHERE finishing_position = "5th" |
How many platinum points were awarded when 70 silver points were awarded? | CREATE TABLE table_11254821_2 (points_awarded__platinum_ VARCHAR, points_awarded__silver_ VARCHAR) | SELECT points_awarded__platinum_ FROM table_11254821_2 WHERE points_awarded__silver_ = 70 | ### Context: CREATE TABLE table_11254821_2 (points_awarded__platinum_ VARCHAR, points_awarded__silver_ VARCHAR) ### Question: How many platinum points were awarded when 70 silver points were awarded? ### Answer: SELECT points_awarded__platinum_ FROM table_11254821_2 WHERE points_awarded__silver_ = 70 |
How many platinum points were awarded when 9 gold points were awarded? | CREATE TABLE table_11254821_2 (points_awarded__platinum_ VARCHAR, points_awarded__gold_ VARCHAR) | SELECT points_awarded__platinum_ FROM table_11254821_2 WHERE points_awarded__gold_ = 9 | ### Context: CREATE TABLE table_11254821_2 (points_awarded__platinum_ VARCHAR, points_awarded__gold_ VARCHAR) ### Question: How many platinum points were awarded when 9 gold points were awarded? ### Answer: SELECT points_awarded__platinum_ FROM table_11254821_2 WHERE points_awarded__gold_ = 9 |
How did the episode rank that had 2.65 million viewers? | CREATE TABLE table_11274401_2 (rank___number_ VARCHAR, viewers__m_ VARCHAR) | SELECT rank___number_ FROM table_11274401_2 WHERE viewers__m_ = "2.65" | ### Context: CREATE TABLE table_11274401_2 (rank___number_ VARCHAR, viewers__m_ VARCHAR) ### Question: How did the episode rank that had 2.65 million viewers? ### Answer: SELECT rank___number_ FROM table_11274401_2 WHERE viewers__m_ = "2.65" |
What was the share for the first episode that ranked 85? | CREATE TABLE table_11274401_2 (share INTEGER, rank___number_ VARCHAR) | SELECT MIN(share) FROM table_11274401_2 WHERE rank___number_ = "85" | ### Context: CREATE TABLE table_11274401_2 (share INTEGER, rank___number_ VARCHAR) ### Question: What was the share for the first episode that ranked 85? ### Answer: SELECT MIN(share) FROM table_11274401_2 WHERE rank___number_ = "85" |
Which timeslot did episode no. 15 hold? | CREATE TABLE table_11274401_2 (timeslot VARCHAR, no VARCHAR) | SELECT timeslot FROM table_11274401_2 WHERE no = 15 | ### Context: CREATE TABLE table_11274401_2 (timeslot VARCHAR, no VARCHAR) ### Question: Which timeslot did episode no. 15 hold? ### Answer: SELECT timeslot FROM table_11274401_2 WHERE no = 15 |
What was the timeslot for the episode that aired on May 12, 2009? | CREATE TABLE table_11274401_3 (timeslot VARCHAR, air_date VARCHAR) | SELECT timeslot FROM table_11274401_3 WHERE air_date = "May 12, 2009" | ### Context: CREATE TABLE table_11274401_3 (timeslot VARCHAR, air_date VARCHAR) ### Question: What was the timeslot for the episode that aired on May 12, 2009? ### Answer: SELECT timeslot FROM table_11274401_3 WHERE air_date = "May 12, 2009" |
What's the total number of episodes whose original airings were viewed by 1.82 million viewers? | CREATE TABLE table_11274401_3 (air_date VARCHAR, viewers__m_ VARCHAR) | SELECT COUNT(air_date) FROM table_11274401_3 WHERE viewers__m_ = "1.82" | ### Context: CREATE TABLE table_11274401_3 (air_date VARCHAR, viewers__m_ VARCHAR) ### Question: What's the total number of episodes whose original airings were viewed by 1.82 million viewers? ### Answer: SELECT COUNT(air_date) FROM table_11274401_3 WHERE viewers__m_ = "1.82" |
What's the rating of the episode originally aired on May 5, 2009? | CREATE TABLE table_11274401_3 (rating VARCHAR, air_date VARCHAR) | SELECT rating FROM table_11274401_3 WHERE air_date = "May 5, 2009" | ### Context: CREATE TABLE table_11274401_3 (rating VARCHAR, air_date VARCHAR) ### Question: What's the rating of the episode originally aired on May 5, 2009? ### Answer: SELECT rating FROM table_11274401_3 WHERE air_date = "May 5, 2009" |
What episode was seen by 2.05 million viewers? | CREATE TABLE table_11274401_3 (episode VARCHAR, viewers__m_ VARCHAR) | SELECT episode FROM table_11274401_3 WHERE viewers__m_ = "2.05" | ### Context: CREATE TABLE table_11274401_3 (episode VARCHAR, viewers__m_ VARCHAR) ### Question: What episode was seen by 2.05 million viewers? ### Answer: SELECT episode FROM table_11274401_3 WHERE viewers__m_ = "2.05" |
what's the extroverted, relationship-oriented where moderate is introverted sanguine | CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, moderate VARCHAR) | SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE moderate = "Introverted Sanguine" | ### Context: CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, moderate VARCHAR) ### Question: what's the extroverted, relationship-oriented where moderate is introverted sanguine ### Answer: SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE moderate = "Introverte... |
what's the founder where moderate is ether | CREATE TABLE table_11256021_1 (founder VARCHAR, moderate VARCHAR) | SELECT founder FROM table_11256021_1 WHERE moderate = "ether" | ### Context: CREATE TABLE table_11256021_1 (founder VARCHAR, moderate VARCHAR) ### Question: what's the founder where moderate is ether ### Answer: SELECT founder FROM table_11256021_1 WHERE moderate = "ether" |
what's the extroverted, relationship-oriented where date is c. 1928 | CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, date VARCHAR) | SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE date = "c. 1928" | ### Context: CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, date VARCHAR) ### Question: what's the extroverted, relationship-oriented where date is c. 1928 ### Answer: SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE date = "c. 1928" |
who is the founder where date is c. 1900 | CREATE TABLE table_11256021_1 (founder VARCHAR, date VARCHAR) | SELECT founder FROM table_11256021_1 WHERE date = "c. 1900" | ### Context: CREATE TABLE table_11256021_1 (founder VARCHAR, date VARCHAR) ### Question: who is the founder where date is c. 1900 ### Answer: SELECT founder FROM table_11256021_1 WHERE date = "c. 1900" |
What is the batting team where the runs are 276? | CREATE TABLE table_11303072_5 (batting_team VARCHAR, runs VARCHAR) | SELECT batting_team FROM table_11303072_5 WHERE runs = "276" | ### Context: CREATE TABLE table_11303072_5 (batting_team VARCHAR, runs VARCHAR) ### Question: What is the batting team where the runs are 276? ### Answer: SELECT batting_team FROM table_11303072_5 WHERE runs = "276" |
Name the batting team at Durham | CREATE TABLE table_11303072_5 (batting_team VARCHAR, fielding_team VARCHAR) | SELECT batting_team FROM table_11303072_5 WHERE fielding_team = "Durham" | ### Context: CREATE TABLE table_11303072_5 (batting_team VARCHAR, fielding_team VARCHAR) ### Question: Name the batting team at Durham ### Answer: SELECT batting_team FROM table_11303072_5 WHERE fielding_team = "Durham" |
What is the batting team with the batting partnets of thilina kandamby and rangana herath? | CREATE TABLE table_11303072_5 (batting_team VARCHAR, batting_partners VARCHAR) | SELECT batting_team FROM table_11303072_5 WHERE batting_partners = "Thilina Kandamby and Rangana Herath" | ### Context: CREATE TABLE table_11303072_5 (batting_team VARCHAR, batting_partners VARCHAR) ### Question: What is the batting team with the batting partnets of thilina kandamby and rangana herath? ### Answer: SELECT batting_team FROM table_11303072_5 WHERE batting_partners = "Thilina Kandamby and Rangana Herath" |
What is the fielding team with 155 runs? | CREATE TABLE table_11303072_5 (fielding_team VARCHAR, runs VARCHAR) | SELECT fielding_team FROM table_11303072_5 WHERE runs = "155" | ### Context: CREATE TABLE table_11303072_5 (fielding_team VARCHAR, runs VARCHAR) ### Question: What is the fielding team with 155 runs? ### Answer: SELECT fielding_team FROM table_11303072_5 WHERE runs = "155" |
What is the batting partners with runs of 226? | CREATE TABLE table_11303072_5 (batting_partners VARCHAR, runs VARCHAR) | SELECT batting_partners FROM table_11303072_5 WHERE runs = "226" | ### Context: CREATE TABLE table_11303072_5 (batting_partners VARCHAR, runs VARCHAR) ### Question: What is the batting partners with runs of 226? ### Answer: SELECT batting_partners FROM table_11303072_5 WHERE runs = "226" |
What is the nationality of David Bairstow? | CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_11303072_9 WHERE player = "David Bairstow" | ### Context: CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR) ### Question: What is the nationality of David Bairstow? ### Answer: SELECT nationality FROM table_11303072_9 WHERE player = "David Bairstow" |
What are the players whose rank is 2? | CREATE TABLE table_11303072_9 (player VARCHAR, rank VARCHAR) | SELECT player FROM table_11303072_9 WHERE rank = 2 | ### Context: CREATE TABLE table_11303072_9 (player VARCHAR, rank VARCHAR) ### Question: What are the players whose rank is 2? ### Answer: SELECT player FROM table_11303072_9 WHERE rank = 2 |
How many stumpings has Paul Nixon in his career? | CREATE TABLE table_11303072_9 (stumpings VARCHAR, player VARCHAR) | SELECT stumpings FROM table_11303072_9 WHERE player = "Paul Nixon" | ### Context: CREATE TABLE table_11303072_9 (stumpings VARCHAR, player VARCHAR) ### Question: How many stumpings has Paul Nixon in his career? ### Answer: SELECT stumpings FROM table_11303072_9 WHERE player = "Paul Nixon" |
Where is Adam Gilchrist from? | CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_11303072_9 WHERE player = "Adam Gilchrist" | ### Context: CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR) ### Question: Where is Adam Gilchrist from? ### Answer: SELECT nationality FROM table_11303072_9 WHERE player = "Adam Gilchrist" |
What are the title that have 19.48 million u.s. viewers? | CREATE TABLE table_1130632_1 (title VARCHAR, us_viewers__million_ VARCHAR) | SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = "19.48" | ### Context: CREATE TABLE table_1130632_1 (title VARCHAR, us_viewers__million_ VARCHAR) ### Question: What are the title that have 19.48 million u.s. viewers? ### Answer: SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = "19.48" |
Which titles have 18.73 u.s. viewers. | CREATE TABLE table_1130632_1 (title VARCHAR, us_viewers__million_ VARCHAR) | SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = "18.73" | ### Context: CREATE TABLE table_1130632_1 (title VARCHAR, us_viewers__million_ VARCHAR) ### Question: Which titles have 18.73 u.s. viewers. ### Answer: SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = "18.73" |
Who wrote all the shows with 18.73 u.s. viewers? | CREATE TABLE table_1130632_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT written_by FROM table_1130632_1 WHERE us_viewers__million_ = "18.73" | ### Context: CREATE TABLE table_1130632_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who wrote all the shows with 18.73 u.s. viewers? ### Answer: SELECT written_by FROM table_1130632_1 WHERE us_viewers__million_ = "18.73" |
What is the rank where the area is Los Angeles? | CREATE TABLE table_1131183_2 (rank___wjc__ VARCHAR, metro_area VARCHAR) | SELECT rank___wjc__ FROM table_1131183_2 WHERE metro_area = "Los Angeles" | ### Context: CREATE TABLE table_1131183_2 (rank___wjc__ VARCHAR, metro_area VARCHAR) ### Question: What is the rank where the area is Los Angeles? ### Answer: SELECT rank___wjc__ FROM table_1131183_2 WHERE metro_area = "Los Angeles" |
What is the number of jews where the rank is 1? | CREATE TABLE table_1131183_2 (number_of_jews__wjc_ VARCHAR, rank__arda_ VARCHAR) | SELECT COUNT(number_of_jews__wjc_) FROM table_1131183_2 WHERE rank__arda_ = 1 | ### Context: CREATE TABLE table_1131183_2 (number_of_jews__wjc_ VARCHAR, rank__arda_ VARCHAR) ### Question: What is the number of jews where the rank is 1? ### Answer: SELECT COUNT(number_of_jews__wjc_) FROM table_1131183_2 WHERE rank__arda_ = 1 |
What is the number of jews asarb where the metro area is philadelphia? | CREATE TABLE table_1131183_2 (number_of_jews__asarb_ VARCHAR, metro_area VARCHAR) | SELECT number_of_jews__asarb_ FROM table_1131183_2 WHERE metro_area = "Philadelphia" | ### Context: CREATE TABLE table_1131183_2 (number_of_jews__asarb_ VARCHAR, metro_area VARCHAR) ### Question: What is the number of jews asarb where the metro area is philadelphia? ### Answer: SELECT number_of_jews__asarb_ FROM table_1131183_2 WHERE metro_area = "Philadelphia" |
what are all the open 1st viii with u15 6th iv being bgs | CREATE TABLE table_11318462_5 (open_1st_viii VARCHAR, u15_6th_iv VARCHAR) | SELECT open_1st_viii FROM table_11318462_5 WHERE u15_6th_iv = "BGS" | ### Context: CREATE TABLE table_11318462_5 (open_1st_viii VARCHAR, u15_6th_iv VARCHAR) ### Question: what are all the open 1st viii with u15 6th iv being bgs ### Answer: SELECT open_1st_viii FROM table_11318462_5 WHERE u15_6th_iv = "BGS" |
what are all the u16 2nd viii with u15 3rd iv being bbc | CREATE TABLE table_11318462_5 (u16_2nd_viii VARCHAR, u15_3rd_iv VARCHAR) | SELECT u16_2nd_viii FROM table_11318462_5 WHERE u15_3rd_iv = "BBC" | ### Context: CREATE TABLE table_11318462_5 (u16_2nd_viii VARCHAR, u15_3rd_iv VARCHAR) ### Question: what are all the u16 2nd viii with u15 3rd iv being bbc ### Answer: SELECT u16_2nd_viii FROM table_11318462_5 WHERE u15_3rd_iv = "BBC" |
what are all the open 1st viii with u15 4th iv being gt | CREATE TABLE table_11318462_5 (open_1st_viii VARCHAR, u15_4th_iv VARCHAR) | SELECT open_1st_viii FROM table_11318462_5 WHERE u15_4th_iv = "GT" | ### Context: CREATE TABLE table_11318462_5 (open_1st_viii VARCHAR, u15_4th_iv VARCHAR) ### Question: what are all the open 1st viii with u15 4th iv being gt ### Answer: SELECT open_1st_viii FROM table_11318462_5 WHERE u15_4th_iv = "GT" |
how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs | CREATE TABLE table_11318462_5 (crew VARCHAR, open_1st_viii VARCHAR, u15_3rd_iv VARCHAR, u15_1st_iv VARCHAR) | SELECT COUNT(crew) FROM table_11318462_5 WHERE u15_3rd_iv = "BGS" AND u15_1st_iv = "ACGS" AND open_1st_viii = "ACGS" | ### Context: CREATE TABLE table_11318462_5 (crew VARCHAR, open_1st_viii VARCHAR, u15_3rd_iv VARCHAR, u15_1st_iv VARCHAR) ### Question: how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs ### Answer: SELECT COUNT(crew) FROM table_11318462_5 WHERE u15_3rd_iv = "BGS" AND u15_1st_i... |
what are all the u15 3rd iv with u15 4th iv being bbc | CREATE TABLE table_11318462_5 (u15_3rd_iv VARCHAR, u15_4th_iv VARCHAR) | SELECT u15_3rd_iv FROM table_11318462_5 WHERE u15_4th_iv = "BBC" | ### Context: CREATE TABLE table_11318462_5 (u15_3rd_iv VARCHAR, u15_4th_iv VARCHAR) ### Question: what are all the u15 3rd iv with u15 4th iv being bbc ### Answer: SELECT u15_3rd_iv FROM table_11318462_5 WHERE u15_4th_iv = "BBC" |
how many open 2nd viii had u15 3rd iv being gt | CREATE TABLE table_11318462_5 (open_2nd_viii VARCHAR, u15_3rd_iv VARCHAR) | SELECT COUNT(open_2nd_viii) FROM table_11318462_5 WHERE u15_3rd_iv = "GT" | ### Context: CREATE TABLE table_11318462_5 (open_2nd_viii VARCHAR, u15_3rd_iv VARCHAR) ### Question: how many open 2nd viii had u15 3rd iv being gt ### Answer: SELECT COUNT(open_2nd_viii) FROM table_11318462_5 WHERE u15_3rd_iv = "GT" |
How many schools have an enrollment of 850? | CREATE TABLE table_11318462_29 (founded VARCHAR, enrolment VARCHAR) | SELECT COUNT(founded) FROM table_11318462_29 WHERE enrolment = 850 | ### Context: CREATE TABLE table_11318462_29 (founded VARCHAR, enrolment VARCHAR) ### Question: How many schools have an enrollment of 850? ### Answer: SELECT COUNT(founded) FROM table_11318462_29 WHERE enrolment = 850 |
What is the location of the school named Brisbane Girls' Grammar School? | CREATE TABLE table_11318462_29 (location VARCHAR, school VARCHAR) | SELECT location FROM table_11318462_29 WHERE school = "Brisbane Girls' Grammar school" | ### Context: CREATE TABLE table_11318462_29 (location VARCHAR, school VARCHAR) ### Question: What is the location of the school named Brisbane Girls' Grammar School? ### Answer: SELECT location FROM table_11318462_29 WHERE school = "Brisbane Girls' Grammar school" |
How many schools are located in South Brisbane? | CREATE TABLE table_11318462_29 (school VARCHAR, location VARCHAR) | SELECT COUNT(school) FROM table_11318462_29 WHERE location = "South Brisbane" | ### Context: CREATE TABLE table_11318462_29 (school VARCHAR, location VARCHAR) ### Question: How many schools are located in South Brisbane? ### Answer: SELECT COUNT(school) FROM table_11318462_29 WHERE location = "South Brisbane" |
When was SPLC founded? | CREATE TABLE table_11318462_29 (founded INTEGER, abbreviation VARCHAR) | SELECT MIN(founded) FROM table_11318462_29 WHERE abbreviation = "SPLC" | ### Context: CREATE TABLE table_11318462_29 (founded INTEGER, abbreviation VARCHAR) ### Question: When was SPLC founded? ### Answer: SELECT MIN(founded) FROM table_11318462_29 WHERE abbreviation = "SPLC" |
What is the enrollment of STM which has been in competition since 1990? | CREATE TABLE table_11318462_29 (enrolment VARCHAR, in_competition_since VARCHAR, abbreviation VARCHAR) | SELECT COUNT(enrolment) FROM table_11318462_29 WHERE in_competition_since = 1990 AND abbreviation = "STM" | ### Context: CREATE TABLE table_11318462_29 (enrolment VARCHAR, in_competition_since VARCHAR, abbreviation VARCHAR) ### Question: What is the enrollment of STM which has been in competition since 1990? ### Answer: SELECT COUNT(enrolment) FROM table_11318462_29 WHERE in_competition_since = 1990 AND abbreviation = "STM" |
What number is the Monaco Grand Prix? | CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR) | SELECT rd FROM table_1132568_3 WHERE grand_prix = "Monaco grand_prix" | ### Context: CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR) ### Question: What number is the Monaco Grand Prix? ### Answer: SELECT rd FROM table_1132568_3 WHERE grand_prix = "Monaco grand_prix" |
Who is in the pole position for the French Grand Prix? | CREATE TABLE table_1132568_3 (pole_position VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_1132568_3 WHERE grand_prix = "French grand_prix" | ### Context: CREATE TABLE table_1132568_3 (pole_position VARCHAR, grand_prix VARCHAR) ### Question: Who is in the pole position for the French Grand Prix? ### Answer: SELECT pole_position FROM table_1132568_3 WHERE grand_prix = "French grand_prix" |
What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position? | CREATE TABLE table_1132568_3 (rd VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR) | SELECT rd FROM table_1132568_3 WHERE fastest_lap = "Michael Schumacher" AND constructor = "Ferrari" AND pole_position = "Michael Schumacher" | ### Context: CREATE TABLE table_1132568_3 (rd VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR) ### Question: What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position? ### Answer: SELECT rd FROM table_1132568_3 WHERE... |
How many on the list are called the Austrian Grand Prix? | CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR) | SELECT COUNT(rd) FROM table_1132568_3 WHERE grand_prix = "Austrian grand_prix" | ### Context: CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR) ### Question: How many on the list are called the Austrian Grand Prix? ### Answer: SELECT COUNT(rd) FROM table_1132568_3 WHERE grand_prix = "Austrian grand_prix" |
What number is the Canadian Grand Prix on the list? | CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR) | SELECT rd FROM table_1132568_3 WHERE grand_prix = "Canadian grand_prix" | ### Context: CREATE TABLE table_1132568_3 (rd VARCHAR, grand_prix VARCHAR) ### Question: What number is the Canadian Grand Prix on the list? ### Answer: SELECT rd FROM table_1132568_3 WHERE grand_prix = "Canadian grand_prix" |
What is the rd for the canadian grand prix? | CREATE TABLE table_1132588_3 (rd VARCHAR, grand_prix VARCHAR) | SELECT rd FROM table_1132588_3 WHERE grand_prix = "Canadian grand_prix" | ### Context: CREATE TABLE table_1132588_3 (rd VARCHAR, grand_prix VARCHAR) ### Question: What is the rd for the canadian grand prix? ### Answer: SELECT rd FROM table_1132588_3 WHERE grand_prix = "Canadian grand_prix" |
What is the fastest lap for the european grand prix? | CREATE TABLE table_1132588_3 (fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT fastest_lap FROM table_1132588_3 WHERE grand_prix = "European grand_prix" | ### Context: CREATE TABLE table_1132588_3 (fastest_lap VARCHAR, grand_prix VARCHAR) ### Question: What is the fastest lap for the european grand prix? ### Answer: SELECT fastest_lap FROM table_1132588_3 WHERE grand_prix = "European grand_prix" |
What is the pole position for the ferrari at the austrian grand prix? | CREATE TABLE table_1132588_3 (pole_position VARCHAR, constructor VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_1132588_3 WHERE constructor = "Ferrari" AND grand_prix = "Austrian grand_prix" | ### Context: CREATE TABLE table_1132588_3 (pole_position VARCHAR, constructor VARCHAR, grand_prix VARCHAR) ### Question: What is the pole position for the ferrari at the austrian grand prix? ### Answer: SELECT pole_position FROM table_1132588_3 WHERE constructor = "Ferrari" AND grand_prix = "Austrian grand_prix" |
What was the result of round 2r? | CREATE TABLE table_11326124_3 (outcome VARCHAR, round VARCHAR) | SELECT outcome FROM table_11326124_3 WHERE round = "2R" | ### Context: CREATE TABLE table_11326124_3 (outcome VARCHAR, round VARCHAR) ### Question: What was the result of round 2r? ### Answer: SELECT outcome FROM table_11326124_3 WHERE round = "2R" |
Who did Tina Pisnik verse? | CREATE TABLE table_11326124_3 (against VARCHAR, opponent VARCHAR) | SELECT against FROM table_11326124_3 WHERE opponent = "Tina Pisnik" | ### Context: CREATE TABLE table_11326124_3 (against VARCHAR, opponent VARCHAR) ### Question: Who did Tina Pisnik verse? ### Answer: SELECT against FROM table_11326124_3 WHERE opponent = "Tina Pisnik" |
How many rounds were 2r? | CREATE TABLE table_11326124_3 (result VARCHAR, round VARCHAR) | SELECT COUNT(result) FROM table_11326124_3 WHERE round = "2R" | ### Context: CREATE TABLE table_11326124_3 (result VARCHAR, round VARCHAR) ### Question: How many rounds were 2r? ### Answer: SELECT COUNT(result) FROM table_11326124_3 WHERE round = "2R" |
what's the night rank with viewers (m) of 6.63 | CREATE TABLE table_11354111_3 (night_rank VARCHAR, viewers__m_ VARCHAR) | SELECT night_rank FROM table_11354111_3 WHERE viewers__m_ = "6.63" | ### Context: CREATE TABLE table_11354111_3 (night_rank VARCHAR, viewers__m_ VARCHAR) ### Question: what's the night rank with viewers (m) of 6.63 ### Answer: SELECT night_rank FROM table_11354111_3 WHERE viewers__m_ = "6.63" |
what's the overall rank with viewers (m) of 7.44 | CREATE TABLE table_11354111_3 (overall_rank VARCHAR, viewers__m_ VARCHAR) | SELECT overall_rank FROM table_11354111_3 WHERE viewers__m_ = "7.44" | ### Context: CREATE TABLE table_11354111_3 (overall_rank VARCHAR, viewers__m_ VARCHAR) ### Question: what's the overall rank with viewers (m) of 7.44 ### Answer: SELECT overall_rank FROM table_11354111_3 WHERE viewers__m_ = "7.44" |
what's the night rank with rating of 6.2 | CREATE TABLE table_11354111_3 (night_rank VARCHAR, rating VARCHAR) | SELECT night_rank FROM table_11354111_3 WHERE rating = "6.2" | ### Context: CREATE TABLE table_11354111_3 (night_rank VARCHAR, rating VARCHAR) ### Question: what's the night rank with rating of 6.2 ### Answer: SELECT night_rank FROM table_11354111_3 WHERE rating = "6.2" |
What is the number of group b winner for francavilla? | CREATE TABLE table_1137142_1 (group_b_winner VARCHAR, group_c_winner VARCHAR) | SELECT COUNT(group_b_winner) FROM table_1137142_1 WHERE group_c_winner = "Francavilla" | ### Context: CREATE TABLE table_1137142_1 (group_b_winner VARCHAR, group_c_winner VARCHAR) ### Question: What is the number of group b winner for francavilla? ### Answer: SELECT COUNT(group_b_winner) FROM table_1137142_1 WHERE group_c_winner = "Francavilla" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.