question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
From brand Yes! FM 101.1, what was the frequency? | CREATE TABLE table_19874169_3 (frequency VARCHAR, branding VARCHAR) | SELECT frequency FROM table_19874169_3 WHERE branding = "YES! FM 101.1" | ### Context: CREATE TABLE table_19874169_3 (frequency VARCHAR, branding VARCHAR) ### Question: From brand Yes! FM 101.1, what was the frequency? ### Answer: SELECT frequency FROM table_19874169_3 WHERE branding = "YES! FM 101.1" |
If the branding is Yes! FM 91.1 Boracay, what is the power? | CREATE TABLE table_19874169_3 (power__kw_ VARCHAR, branding VARCHAR) | SELECT power__kw_ FROM table_19874169_3 WHERE branding = "YES! FM 91.1 Boracay" | ### Context: CREATE TABLE table_19874169_3 (power__kw_ VARCHAR, branding VARCHAR) ### Question: If the branding is Yes! FM 91.1 Boracay, what is the power? ### Answer: SELECT power__kw_ FROM table_19874169_3 WHERE branding = "YES! FM 91.1 Boracay" |
If the call sign is DXYR, what is the branding? | CREATE TABLE table_19874169_3 (branding VARCHAR, callsign VARCHAR) | SELECT branding FROM table_19874169_3 WHERE callsign = "DXYR" | ### Context: CREATE TABLE table_19874169_3 (branding VARCHAR, callsign VARCHAR) ### Question: If the call sign is DXYR, what is the branding? ### Answer: SELECT branding FROM table_19874169_3 WHERE callsign = "DXYR" |
When divisional semifinals are the playoffs what is the year? | CREATE TABLE table_1986692_1 (year VARCHAR, playoffs VARCHAR) | SELECT year FROM table_1986692_1 WHERE playoffs = "divisional Semifinals" | ### Context: CREATE TABLE table_1986692_1 (year VARCHAR, playoffs VARCHAR) ### Question: When divisional semifinals are the playoffs what is the year? ### Answer: SELECT year FROM table_1986692_1 WHERE playoffs = "divisional Semifinals" |
When divisional finals are the playoffs what is the regular season? | CREATE TABLE table_1986692_1 (regular_season VARCHAR, playoffs VARCHAR) | SELECT regular_season FROM table_1986692_1 WHERE playoffs = "divisional Finals" | ### Context: CREATE TABLE table_1986692_1 (regular_season VARCHAR, playoffs VARCHAR) ### Question: When divisional finals are the playoffs what is the regular season? ### Answer: SELECT regular_season FROM table_1986692_1 WHERE playoffs = "divisional Finals" |
When 1992 is the year how many divisions are there? | CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR) | SELECT COUNT(division) FROM table_1986692_1 WHERE year = "1992" | ### Context: CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR) ### Question: When 1992 is the year how many divisions are there? ### Answer: SELECT COUNT(division) FROM table_1986692_1 WHERE year = "1992" |
When final is the open cup what is the league? | CREATE TABLE table_1986692_1 (league VARCHAR, open_cup VARCHAR) | SELECT league FROM table_1986692_1 WHERE open_cup = "Final" | ### Context: CREATE TABLE table_1986692_1 (league VARCHAR, open_cup VARCHAR) ### Question: When final is the open cup what is the league? ### Answer: SELECT league FROM table_1986692_1 WHERE open_cup = "Final" |
When 1995 is the year what is the open cup? | CREATE TABLE table_1986692_1 (open_cup VARCHAR, year VARCHAR) | SELECT open_cup FROM table_1986692_1 WHERE year = "1995" | ### Context: CREATE TABLE table_1986692_1 (open_cup VARCHAR, year VARCHAR) ### Question: When 1995 is the year what is the open cup? ### Answer: SELECT open_cup FROM table_1986692_1 WHERE year = "1995" |
When 2008 is the year how many divisions are there? | CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR) | SELECT COUNT(division) FROM table_1986692_1 WHERE year = "2008" | ### Context: CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR) ### Question: When 2008 is the year how many divisions are there? ### Answer: SELECT COUNT(division) FROM table_1986692_1 WHERE year = "2008" |
what is the least number of stumps in a game with 13 dismissals | CREATE TABLE table_19870086_24 (stumped INTEGER, dismissals VARCHAR) | SELECT MIN(stumped) FROM table_19870086_24 WHERE dismissals = 13 | ### Context: CREATE TABLE table_19870086_24 (stumped INTEGER, dismissals VARCHAR) ### Question: what is the least number of stumps in a game with 13 dismissals ### Answer: SELECT MIN(stumped) FROM table_19870086_24 WHERE dismissals = 13 |
what is the highest number of dismissals in a match with 8 innings | CREATE TABLE table_19870086_24 (dismissals VARCHAR, innings VARCHAR) | SELECT COUNT(dismissals) FROM table_19870086_24 WHERE innings = 8 | ### Context: CREATE TABLE table_19870086_24 (dismissals VARCHAR, innings VARCHAR) ### Question: what is the highest number of dismissals in a match with 8 innings ### Answer: SELECT COUNT(dismissals) FROM table_19870086_24 WHERE innings = 8 |
what is the rank of adam gilchrist | CREATE TABLE table_19870086_24 (rank VARCHAR, player VARCHAR) | SELECT COUNT(rank) FROM table_19870086_24 WHERE player = "Adam Gilchrist" | ### Context: CREATE TABLE table_19870086_24 (rank VARCHAR, player VARCHAR) ### Question: what is the rank of adam gilchrist ### Answer: SELECT COUNT(rank) FROM table_19870086_24 WHERE player = "Adam Gilchrist" |
Where is the ballpark of the Twins? | CREATE TABLE table_1987995_5 (location VARCHAR, team VARCHAR) | SELECT location FROM table_1987995_5 WHERE team = "Twins" | ### Context: CREATE TABLE table_1987995_5 (location VARCHAR, team VARCHAR) ### Question: Where is the ballpark of the Twins? ### Answer: SELECT location FROM table_1987995_5 WHERE team = "Twins" |
How many locations have been used for ballparks named Memorial Stadium? | CREATE TABLE table_1987995_5 (location VARCHAR, ballpark VARCHAR) | SELECT COUNT(location) FROM table_1987995_5 WHERE ballpark = "Memorial Stadium" | ### Context: CREATE TABLE table_1987995_5 (location VARCHAR, ballpark VARCHAR) ### Question: How many locations have been used for ballparks named Memorial Stadium? ### Answer: SELECT COUNT(location) FROM table_1987995_5 WHERE ballpark = "Memorial Stadium" |
When was the park demolished in 1994 closed? | CREATE TABLE table_1987995_5 (closed INTEGER, demod VARCHAR) | SELECT MIN(closed) FROM table_1987995_5 WHERE demod = 1994 | ### Context: CREATE TABLE table_1987995_5 (closed INTEGER, demod VARCHAR) ### Question: When was the park demolished in 1994 closed? ### Answer: SELECT MIN(closed) FROM table_1987995_5 WHERE demod = 1994 |
Which flag was on the Green Marine's boat? | CREATE TABLE table_19872699_1 (flag VARCHAR, builder VARCHAR) | SELECT flag FROM table_19872699_1 WHERE builder = "Green Marine" | ### Context: CREATE TABLE table_19872699_1 (flag VARCHAR, builder VARCHAR) ### Question: Which flag was on the Green Marine's boat? ### Answer: SELECT flag FROM table_19872699_1 WHERE builder = "Green Marine" |
Who build the boat where Ken Read was the skipper? | CREATE TABLE table_19872699_1 (builder VARCHAR, skipper VARCHAR) | SELECT builder FROM table_19872699_1 WHERE skipper = "Ken Read" | ### Context: CREATE TABLE table_19872699_1 (builder VARCHAR, skipper VARCHAR) ### Question: Who build the boat where Ken Read was the skipper? ### Answer: SELECT builder FROM table_19872699_1 WHERE skipper = "Ken Read" |
Farr Yacht Design designed boats for how many country/flags? | CREATE TABLE table_19872699_1 (flag VARCHAR, design_firm VARCHAR) | SELECT COUNT(flag) FROM table_19872699_1 WHERE design_firm = "Farr Yacht Design" | ### Context: CREATE TABLE table_19872699_1 (flag VARCHAR, design_firm VARCHAR) ### Question: Farr Yacht Design designed boats for how many country/flags? ### Answer: SELECT COUNT(flag) FROM table_19872699_1 WHERE design_firm = "Farr Yacht Design" |
Who were the builders of the boat designed by Botin Carkeek? | CREATE TABLE table_19872699_1 (builder VARCHAR, design_firm VARCHAR) | SELECT builder FROM table_19872699_1 WHERE design_firm = "Botin Carkeek" | ### Context: CREATE TABLE table_19872699_1 (builder VARCHAR, design_firm VARCHAR) ### Question: Who were the builders of the boat designed by Botin Carkeek? ### Answer: SELECT builder FROM table_19872699_1 WHERE design_firm = "Botin Carkeek" |
In how many locations was the episode with the Bailey family filmed? | CREATE TABLE table_19897294_10 (location_s_ VARCHAR, family_families VARCHAR) | SELECT COUNT(location_s_) FROM table_19897294_10 WHERE family_families = "The Bailey Family" | ### Context: CREATE TABLE table_19897294_10 (location_s_ VARCHAR, family_families VARCHAR) ### Question: In how many locations was the episode with the Bailey family filmed? ### Answer: SELECT COUNT(location_s_) FROM table_19897294_10 WHERE family_families = "The Bailey Family" |
How many episodes with different season numbers had the Jeans family in them? | CREATE TABLE table_19897294_10 (no_in_season VARCHAR, family_families VARCHAR) | SELECT COUNT(no_in_season) FROM table_19897294_10 WHERE family_families = "The Jeans Family" | ### Context: CREATE TABLE table_19897294_10 (no_in_season VARCHAR, family_families VARCHAR) ### Question: How many episodes with different season numbers had the Jeans family in them? ### Answer: SELECT COUNT(no_in_season) FROM table_19897294_10 WHERE family_families = "The Jeans Family" |
When did the episode with the Ririe family air for the first time? | CREATE TABLE table_19897294_10 (original_air_date VARCHAR, family_families VARCHAR) | SELECT original_air_date FROM table_19897294_10 WHERE family_families = "The Ririe Family" | ### Context: CREATE TABLE table_19897294_10 (original_air_date VARCHAR, family_families VARCHAR) ### Question: When did the episode with the Ririe family air for the first time? ### Answer: SELECT original_air_date FROM table_19897294_10 WHERE family_families = "The Ririe Family" |
Where was the episode with series number US9 filmed? | CREATE TABLE table_19897294_10 (location_s_ VARCHAR, no_in_series VARCHAR) | SELECT location_s_ FROM table_19897294_10 WHERE no_in_series = "US9" | ### Context: CREATE TABLE table_19897294_10 (location_s_ VARCHAR, no_in_series VARCHAR) ### Question: Where was the episode with series number US9 filmed? ### Answer: SELECT location_s_ FROM table_19897294_10 WHERE no_in_series = "US9" |
What's the season number of the episode with series number US6? | CREATE TABLE table_19897294_10 (no_in_season INTEGER, no_in_series VARCHAR) | SELECT MIN(no_in_season) FROM table_19897294_10 WHERE no_in_series = "US6" | ### Context: CREATE TABLE table_19897294_10 (no_in_season INTEGER, no_in_series VARCHAR) ### Question: What's the season number of the episode with series number US6? ### Answer: SELECT MIN(no_in_season) FROM table_19897294_10 WHERE no_in_series = "US6" |
What family was featured in episode us14 of the series? | CREATE TABLE table_19897294_11 (family_families VARCHAR, no_in_series VARCHAR) | SELECT family_families FROM table_19897294_11 WHERE no_in_series = "US14" | ### Context: CREATE TABLE table_19897294_11 (family_families VARCHAR, no_in_series VARCHAR) ### Question: What family was featured in episode us14 of the series? ### Answer: SELECT family_families FROM table_19897294_11 WHERE no_in_series = "US14" |
How many locations featured the Webb Family? | CREATE TABLE table_19897294_11 (location_s_ VARCHAR, family_families VARCHAR) | SELECT COUNT(location_s_) FROM table_19897294_11 WHERE family_families = "The Webb Family" | ### Context: CREATE TABLE table_19897294_11 (location_s_ VARCHAR, family_families VARCHAR) ### Question: How many locations featured the Webb Family? ### Answer: SELECT COUNT(location_s_) FROM table_19897294_11 WHERE family_families = "The Webb Family" |
What episode in the season was episode us17 in the series? | CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR) | SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US17" | ### Context: CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR) ### Question: What episode in the season was episode us17 in the series? ### Answer: SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US17" |
What episode in the season was episode us18 in the series? | CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR) | SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US18" | ### Context: CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR) ### Question: What episode in the season was episode us18 in the series? ### Answer: SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US18" |
What episode in the series was the Amaral family featured? | CREATE TABLE table_19897294_11 (no_in_series VARCHAR, family_families VARCHAR) | SELECT no_in_series FROM table_19897294_11 WHERE family_families = "The Amaral Family" | ### Context: CREATE TABLE table_19897294_11 (no_in_series VARCHAR, family_families VARCHAR) ### Question: What episode in the series was the Amaral family featured? ### Answer: SELECT no_in_series FROM table_19897294_11 WHERE family_families = "The Amaral Family" |
Who is the round winner when entrant is craven mild racing? | CREATE TABLE table_19886463_1 (round_winner VARCHAR, entrant VARCHAR) | SELECT round_winner FROM table_19886463_1 WHERE entrant = "Craven Mild Racing" | ### Context: CREATE TABLE table_19886463_1 (round_winner VARCHAR, entrant VARCHAR) ### Question: Who is the round winner when entrant is craven mild racing? ### Answer: SELECT round_winner FROM table_19886463_1 WHERE entrant = "Craven Mild Racing" |
Who is the round winner of the wanneroo park circuit? | CREATE TABLE table_19886463_1 (round_winner VARCHAR, circuit VARCHAR) | SELECT round_winner FROM table_19886463_1 WHERE circuit = "Wanneroo Park" | ### Context: CREATE TABLE table_19886463_1 (round_winner VARCHAR, circuit VARCHAR) ### Question: Who is the round winner of the wanneroo park circuit? ### Answer: SELECT round_winner FROM table_19886463_1 WHERE circuit = "Wanneroo Park" |
Which circuit has two heats as the format? | CREATE TABLE table_19886463_1 (circuit VARCHAR, format VARCHAR) | SELECT circuit FROM table_19886463_1 WHERE format = "Two heats" | ### Context: CREATE TABLE table_19886463_1 (circuit VARCHAR, format VARCHAR) ### Question: Which circuit has two heats as the format? ### Answer: SELECT circuit FROM table_19886463_1 WHERE format = "Two heats" |
Name the original air date for the potter family | CREATE TABLE table_19897294_16 (original_air_date VARCHAR, family_families VARCHAR) | SELECT original_air_date FROM table_19897294_16 WHERE family_families = "The Potter Family" | ### Context: CREATE TABLE table_19897294_16 (original_air_date VARCHAR, family_families VARCHAR) ### Question: Name the original air date for the potter family ### Answer: SELECT original_air_date FROM table_19897294_16 WHERE family_families = "The Potter Family" |
how many original air date where family/families is the ryder family and the schwartz family | CREATE TABLE table_19897294_9 (original_air_date VARCHAR, family_families VARCHAR) | SELECT COUNT(original_air_date) FROM table_19897294_9 WHERE family_families = "The Ryder Family and The Schwartz Family" | ### Context: CREATE TABLE table_19897294_9 (original_air_date VARCHAR, family_families VARCHAR) ### Question: how many original air date where family/families is the ryder family and the schwartz family ### Answer: SELECT COUNT(original_air_date) FROM table_19897294_9 WHERE family_families = "The Ryder Family and The S... |
where was the abbas family and the pickering family located | CREATE TABLE table_19897294_9 (location_s_ VARCHAR, family_families VARCHAR) | SELECT location_s_ FROM table_19897294_9 WHERE family_families = "The Abbas Family and The Pickering Family" | ### Context: CREATE TABLE table_19897294_9 (location_s_ VARCHAR, family_families VARCHAR) ### Question: where was the abbas family and the pickering family located ### Answer: SELECT location_s_ FROM table_19897294_9 WHERE family_families = "The Abbas Family and The Pickering Family" |
in which class is the position forward | CREATE TABLE table_19897896_7 (class VARCHAR, position VARCHAR) | SELECT class FROM table_19897896_7 WHERE position = "Forward" | ### Context: CREATE TABLE table_19897896_7 (class VARCHAR, position VARCHAR) ### Question: in which class is the position forward ### Answer: SELECT class FROM table_19897896_7 WHERE position = "Forward" |
in which season the position was center | CREATE TABLE table_19897896_7 (season VARCHAR, position VARCHAR) | SELECT season FROM table_19897896_7 WHERE position = "Center" | ### Context: CREATE TABLE table_19897896_7 (season VARCHAR, position VARCHAR) ### Question: in which season the position was center ### Answer: SELECT season FROM table_19897896_7 WHERE position = "Center" |
in which class was the ohio state university | CREATE TABLE table_19897896_7 (class VARCHAR, university VARCHAR) | SELECT class FROM table_19897896_7 WHERE university = "Ohio state" | ### Context: CREATE TABLE table_19897896_7 (class VARCHAR, university VARCHAR) ### Question: in which class was the ohio state university ### Answer: SELECT class FROM table_19897896_7 WHERE university = "Ohio state" |
Name the number of families for uk30 | CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR) | SELECT COUNT(family_families) FROM table_19897294_8 WHERE no_overall = "UK30" | ### Context: CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR) ### Question: Name the number of families for uk30 ### Answer: SELECT COUNT(family_families) FROM table_19897294_8 WHERE no_overall = "UK30" |
Name the number in series for in the ward family and the wren family | CREATE TABLE table_19897294_8 (no_in_series INTEGER, family_families VARCHAR) | SELECT MAX(no_in_series) FROM table_19897294_8 WHERE family_families = "The Ward Family and The Wren Family" | ### Context: CREATE TABLE table_19897294_8 (no_in_series INTEGER, family_families VARCHAR) ### Question: Name the number in series for in the ward family and the wren family ### Answer: SELECT MAX(no_in_series) FROM table_19897294_8 WHERE family_families = "The Ward Family and The Wren Family" |
Name the family for uk31 | CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR) | SELECT family_families FROM table_19897294_8 WHERE no_overall = "UK31" | ### Context: CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR) ### Question: Name the family for uk31 ### Answer: SELECT family_families FROM table_19897294_8 WHERE no_overall = "UK31" |
Name the least number in series | CREATE TABLE table_19897294_8 (no_in_series INTEGER) | SELECT MIN(no_in_series) FROM table_19897294_8 | ### Context: CREATE TABLE table_19897294_8 (no_in_series INTEGER) ### Question: Name the least number in series ### Answer: SELECT MIN(no_in_series) FROM table_19897294_8 |
Name the number of locations for uk32 | CREATE TABLE table_19897294_8 (location_s_ VARCHAR, no_overall VARCHAR) | SELECT COUNT(location_s_) FROM table_19897294_8 WHERE no_overall = "UK32" | ### Context: CREATE TABLE table_19897294_8 (location_s_ VARCHAR, no_overall VARCHAR) ### Question: Name the number of locations for uk32 ### Answer: SELECT COUNT(location_s_) FROM table_19897294_8 WHERE no_overall = "UK32" |
Name the air date for uk17 | CREATE TABLE table_19897294_5 (original_air_date VARCHAR, no_overall VARCHAR) | SELECT original_air_date FROM table_19897294_5 WHERE no_overall = "UK17" | ### Context: CREATE TABLE table_19897294_5 (original_air_date VARCHAR, no_overall VARCHAR) ### Question: Name the air date for uk17 ### Answer: SELECT original_air_date FROM table_19897294_5 WHERE no_overall = "UK17" |
Name the family/families uk17 | CREATE TABLE table_19897294_5 (family_families VARCHAR, no_overall VARCHAR) | SELECT family_families FROM table_19897294_5 WHERE no_overall = "UK17" | ### Context: CREATE TABLE table_19897294_5 (family_families VARCHAR, no_overall VARCHAR) ### Question: Name the family/families uk17 ### Answer: SELECT family_families FROM table_19897294_5 WHERE no_overall = "UK17" |
What is the number of the truck that has the crew chief Billy Wilburn? | CREATE TABLE table_19908313_2 (_number INTEGER, crew_chief VARCHAR) | SELECT MAX(_number) FROM table_19908313_2 WHERE crew_chief = "Billy Wilburn" | ### Context: CREATE TABLE table_19908313_2 (_number INTEGER, crew_chief VARCHAR) ### Question: What is the number of the truck that has the crew chief Billy Wilburn? ### Answer: SELECT MAX(_number) FROM table_19908313_2 WHERE crew_chief = "Billy Wilburn" |
What number truck is owned by Stephen Germain? | CREATE TABLE table_19908313_2 (_number VARCHAR, listed_owner_s_ VARCHAR) | SELECT _number FROM table_19908313_2 WHERE listed_owner_s_ = "Stephen Germain" | ### Context: CREATE TABLE table_19908313_2 (_number VARCHAR, listed_owner_s_ VARCHAR) ### Question: What number truck is owned by Stephen Germain? ### Answer: SELECT _number FROM table_19908313_2 WHERE listed_owner_s_ = "Stephen Germain" |
What team is sponsored by d3 Outdoors? | CREATE TABLE table_19908313_2 (team VARCHAR, primary_sponsor_s_ VARCHAR) | SELECT team FROM table_19908313_2 WHERE primary_sponsor_s_ = "D3 Outdoors" | ### Context: CREATE TABLE table_19908313_2 (team VARCHAR, primary_sponsor_s_ VARCHAR) ### Question: What team is sponsored by d3 Outdoors? ### Answer: SELECT team FROM table_19908313_2 WHERE primary_sponsor_s_ = "D3 Outdoors" |
How many teams does Jeff Wyler own? | CREATE TABLE table_19908313_2 (team VARCHAR, listed_owner_s_ VARCHAR) | SELECT COUNT(team) FROM table_19908313_2 WHERE listed_owner_s_ = "Jeff Wyler" | ### Context: CREATE TABLE table_19908313_2 (team VARCHAR, listed_owner_s_ VARCHAR) ### Question: How many teams does Jeff Wyler own? ### Answer: SELECT COUNT(team) FROM table_19908313_2 WHERE listed_owner_s_ = "Jeff Wyler" |
Who is the primary sponsor for crew cheif Rick Ren's team? | CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, crew_chief VARCHAR) | SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE crew_chief = "Rick Ren" | ### Context: CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, crew_chief VARCHAR) ### Question: Who is the primary sponsor for crew cheif Rick Ren's team? ### Answer: SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE crew_chief = "Rick Ren" |
Who sponsors owner Bobby Dotter's team? | CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, listed_owner_s_ VARCHAR) | SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE listed_owner_s_ = "Bobby Dotter" | ### Context: CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, listed_owner_s_ VARCHAR) ### Question: Who sponsors owner Bobby Dotter's team? ### Answer: SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE listed_owner_s_ = "Bobby Dotter" |
What's the price of the team whose captain is Sanath Jayasuriya? | CREATE TABLE table_19905183_1 (price VARCHAR, captain VARCHAR) | SELECT price FROM table_19905183_1 WHERE captain = "Sanath Jayasuriya" | ### Context: CREATE TABLE table_19905183_1 (price VARCHAR, captain VARCHAR) ### Question: What's the price of the team whose captain is Sanath Jayasuriya? ### Answer: SELECT price FROM table_19905183_1 WHERE captain = "Sanath Jayasuriya" |
What team is from the Eastern province? | CREATE TABLE table_19905183_1 (team VARCHAR, province VARCHAR) | SELECT team FROM table_19905183_1 WHERE province = "Eastern" | ### Context: CREATE TABLE table_19905183_1 (team VARCHAR, province VARCHAR) ### Question: What team is from the Eastern province? ### Answer: SELECT team FROM table_19905183_1 WHERE province = "Eastern" |
Who's the head coach of the team with a price of $3.22 million? | CREATE TABLE table_19905183_1 (head_coach VARCHAR, price VARCHAR) | SELECT head_coach FROM table_19905183_1 WHERE price = "$3.22 million" | ### Context: CREATE TABLE table_19905183_1 (head_coach VARCHAR, price VARCHAR) ### Question: Who's the head coach of the team with a price of $3.22 million? ### Answer: SELECT head_coach FROM table_19905183_1 WHERE price = "$3.22 million" |
In how many teams is Waqar Younis the head coach? | CREATE TABLE table_19905183_1 (team VARCHAR, head_coach VARCHAR) | SELECT COUNT(team) FROM table_19905183_1 WHERE head_coach = "Waqar Younis" | ### Context: CREATE TABLE table_19905183_1 (team VARCHAR, head_coach VARCHAR) ### Question: In how many teams is Waqar Younis the head coach? ### Answer: SELECT COUNT(team) FROM table_19905183_1 WHERE head_coach = "Waqar Younis" |
What province does the Ruhuna Royals team come from? | CREATE TABLE table_19905183_1 (province VARCHAR, team VARCHAR) | SELECT province FROM table_19905183_1 WHERE team = "Ruhuna Royals" | ### Context: CREATE TABLE table_19905183_1 (province VARCHAR, team VARCHAR) ### Question: What province does the Ruhuna Royals team come from? ### Answer: SELECT province FROM table_19905183_1 WHERE team = "Ruhuna Royals" |
When was Alexey Kuleshov born? | CREATE TABLE table_19900792_1 (birth_date VARCHAR, player VARCHAR) | SELECT birth_date FROM table_19900792_1 WHERE player = "Alexey Kuleshov" | ### Context: CREATE TABLE table_19900792_1 (birth_date VARCHAR, player VARCHAR) ### Question: When was Alexey Kuleshov born? ### Answer: SELECT birth_date FROM table_19900792_1 WHERE player = "Alexey Kuleshov" |
What is the trigger pack on the Colt 602 with the a1 rear sight type? | CREATE TABLE table_19901_1 (trigger_pack VARCHAR, rear_sight_type VARCHAR, colt_model_no VARCHAR) | SELECT trigger_pack FROM table_19901_1 WHERE rear_sight_type = "A1" AND colt_model_no = "602" | ### Context: CREATE TABLE table_19901_1 (trigger_pack VARCHAR, rear_sight_type VARCHAR, colt_model_no VARCHAR) ### Question: What is the trigger pack on the Colt 602 with the a1 rear sight type? ### Answer: SELECT trigger_pack FROM table_19901_1 WHERE rear_sight_type = "A1" AND colt_model_no = "602" |
What is the rear sight type on the model with the acr muzzle brake device? | CREATE TABLE table_19901_1 (rear_sight_type VARCHAR, muzzle_device VARCHAR) | SELECT rear_sight_type FROM table_19901_1 WHERE muzzle_device = "ACR muzzle brake" | ### Context: CREATE TABLE table_19901_1 (rear_sight_type VARCHAR, muzzle_device VARCHAR) ### Question: What is the rear sight type on the model with the acr muzzle brake device? ### Answer: SELECT rear_sight_type FROM table_19901_1 WHERE muzzle_device = "ACR muzzle brake" |
Which muzzle devices are on the Colt 603? | CREATE TABLE table_19901_1 (muzzle_device VARCHAR, colt_model_no VARCHAR) | SELECT muzzle_device FROM table_19901_1 WHERE colt_model_no = "603" | ### Context: CREATE TABLE table_19901_1 (muzzle_device VARCHAR, colt_model_no VARCHAR) ### Question: Which muzzle devices are on the Colt 603? ### Answer: SELECT muzzle_device FROM table_19901_1 WHERE colt_model_no = "603" |
How many millions of people in the US watched the episode with season number 8? | CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) | SELECT us_viewers__millions_ FROM table_19925114_1 WHERE no_in_season = 8 | ### Context: CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) ### Question: How many millions of people in the US watched the episode with season number 8? ### Answer: SELECT us_viewers__millions_ FROM table_19925114_1 WHERE no_in_season = 8 |
How many episodes had the series number of 38? | CREATE TABLE table_19925114_1 (directed_by VARCHAR, no_in_series VARCHAR) | SELECT COUNT(directed_by) FROM table_19925114_1 WHERE no_in_series = 38 | ### Context: CREATE TABLE table_19925114_1 (directed_by VARCHAR, no_in_series VARCHAR) ### Question: How many episodes had the series number of 38? ### Answer: SELECT COUNT(directed_by) FROM table_19925114_1 WHERE no_in_series = 38 |
How many different numbers of people in the US who'd seen the episode with a season number 8 are there? | CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) | SELECT COUNT(us_viewers__millions_) FROM table_19925114_1 WHERE no_in_season = 8 | ### Context: CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) ### Question: How many different numbers of people in the US who'd seen the episode with a season number 8 are there? ### Answer: SELECT COUNT(us_viewers__millions_) FROM table_19925114_1 WHERE no_in_season = 8 |
Name the rufus guest for 15 december 2008 | CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, first_broadcast VARCHAR) | SELECT COUNT(rufus_guest) FROM table_19930660_1 WHERE first_broadcast = "15 December 2008" | ### Context: CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, first_broadcast VARCHAR) ### Question: Name the rufus guest for 15 december 2008 ### Answer: SELECT COUNT(rufus_guest) FROM table_19930660_1 WHERE first_broadcast = "15 December 2008" |
Name the winner for jason byrne | CREATE TABLE table_19930660_1 (winner VARCHAR, marcus_guest VARCHAR) | SELECT winner FROM table_19930660_1 WHERE marcus_guest = "Jason Byrne" | ### Context: CREATE TABLE table_19930660_1 (winner VARCHAR, marcus_guest VARCHAR) ### Question: Name the winner for jason byrne ### Answer: SELECT winner FROM table_19930660_1 WHERE marcus_guest = "Jason Byrne" |
Name the rufus guest for episode 1x07 | CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, episode VARCHAR) | SELECT rufus_guest FROM table_19930660_1 WHERE episode = "1x07" | ### Context: CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, episode VARCHAR) ### Question: Name the rufus guest for episode 1x07 ### Answer: SELECT rufus_guest FROM table_19930660_1 WHERE episode = "1x07" |
Name the winner for 26 january 2009 | CREATE TABLE table_19930660_1 (winner VARCHAR, first_broadcast VARCHAR) | SELECT winner FROM table_19930660_1 WHERE first_broadcast = "26 January 2009" | ### Context: CREATE TABLE table_19930660_1 (winner VARCHAR, first_broadcast VARCHAR) ### Question: Name the winner for 26 january 2009 ### Answer: SELECT winner FROM table_19930660_1 WHERE first_broadcast = "26 January 2009" |
When was episode 2x11 aired for the first time? | CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR) | SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x11" | ### Context: CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR) ### Question: When was episode 2x11 aired for the first time? ### Answer: SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x11" |
Who won the episode in which Sean Lock was Rufus's guest? | CREATE TABLE table_19930660_2 (winner VARCHAR, rufus_guest VARCHAR) | SELECT winner FROM table_19930660_2 WHERE rufus_guest = "Sean Lock" | ### Context: CREATE TABLE table_19930660_2 (winner VARCHAR, rufus_guest VARCHAR) ### Question: Who won the episode in which Sean Lock was Rufus's guest? ### Answer: SELECT winner FROM table_19930660_2 WHERE rufus_guest = "Sean Lock" |
When was the episode 2x10 aired for the first time? | CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR) | SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x10" | ### Context: CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR) ### Question: When was the episode 2x10 aired for the first time? ### Answer: SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x10" |
Who was Marcus's guest in the episode when Rufus's guest was Rory McGrath? | CREATE TABLE table_19930660_2 (marcus_guest VARCHAR, rufus_guest VARCHAR) | SELECT marcus_guest FROM table_19930660_2 WHERE rufus_guest = "Rory McGrath" | ### Context: CREATE TABLE table_19930660_2 (marcus_guest VARCHAR, rufus_guest VARCHAR) ### Question: Who was Marcus's guest in the episode when Rufus's guest was Rory McGrath? ### Answer: SELECT marcus_guest FROM table_19930660_2 WHERE rufus_guest = "Rory McGrath" |
How many items were under ranking l.a.(2) when the world ranking was 21st? | CREATE TABLE table_19948664_2 (ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR) | SELECT COUNT(ranking_la__2_) FROM table_19948664_2 WHERE world_ranking__1_ = "21st" | ### Context: CREATE TABLE table_19948664_2 (ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR) ### Question: How many items were under ranking l.a.(2) when the world ranking was 21st? ### Answer: SELECT COUNT(ranking_la__2_) FROM table_19948664_2 WHERE world_ranking__1_ = "21st" |
What was the author/editor/source when the l.a. ranking was 1st? | CREATE TABLE table_19948664_2 (author___editor___source VARCHAR, ranking_la__2_ VARCHAR) | SELECT author___editor___source FROM table_19948664_2 WHERE ranking_la__2_ = "1st" | ### Context: CREATE TABLE table_19948664_2 (author___editor___source VARCHAR, ranking_la__2_ VARCHAR) ### Question: What was the author/editor/source when the l.a. ranking was 1st? ### Answer: SELECT author___editor___source FROM table_19948664_2 WHERE ranking_la__2_ = "1st" |
How many years were listed under index when there were 157 countries sampled? | CREATE TABLE table_19948664_2 (index__year_ VARCHAR, countries_sampled VARCHAR) | SELECT COUNT(index__year_) FROM table_19948664_2 WHERE countries_sampled = 157 | ### Context: CREATE TABLE table_19948664_2 (index__year_ VARCHAR, countries_sampled VARCHAR) ### Question: How many years were listed under index when there were 157 countries sampled? ### Answer: SELECT COUNT(index__year_) FROM table_19948664_2 WHERE countries_sampled = 157 |
What was the publication year ranking l.a. is 1st? | CREATE TABLE table_19948664_2 (year_of_publication VARCHAR, ranking_la__2_ VARCHAR) | SELECT year_of_publication FROM table_19948664_2 WHERE ranking_la__2_ = "1st" | ### Context: CREATE TABLE table_19948664_2 (year_of_publication VARCHAR, ranking_la__2_ VARCHAR) ### Question: What was the publication year ranking l.a. is 1st? ### Answer: SELECT year_of_publication FROM table_19948664_2 WHERE ranking_la__2_ = "1st" |
How many years were recorded when world ranking was 21st? | CREATE TABLE table_19948664_2 (index__year_ VARCHAR, world_ranking__1_ VARCHAR) | SELECT COUNT(index__year_) FROM table_19948664_2 WHERE world_ranking__1_ = "21st" | ### Context: CREATE TABLE table_19948664_2 (index__year_ VARCHAR, world_ranking__1_ VARCHAR) ### Question: How many years were recorded when world ranking was 21st? ### Answer: SELECT COUNT(index__year_) FROM table_19948664_2 WHERE world_ranking__1_ = "21st" |
What Wireless LAN had a process technology of 90nm and a Carmel centrino? | CREATE TABLE table_199666_1 (wireless_lan VARCHAR, process_technology VARCHAR, centrino VARCHAR) | SELECT wireless_lan FROM table_199666_1 WHERE process_technology = "90nm" AND centrino = "Carmel" | ### Context: CREATE TABLE table_199666_1 (wireless_lan VARCHAR, process_technology VARCHAR, centrino VARCHAR) ### Question: What Wireless LAN had a process technology of 90nm and a Carmel centrino? ### Answer: SELECT wireless_lan FROM table_199666_1 WHERE process_technology = "90nm" AND centrino = "Carmel" |
How many series had the chipset of the Intel Centrino Ultimate-N 6300 wireless LAN with the codename Arrandale? | CREATE TABLE table_199666_1 (chipset VARCHAR, codename VARCHAR, wireless_lan VARCHAR) | SELECT chipset FROM table_199666_1 WHERE codename = "Arrandale" AND wireless_lan = "Intel centrino Ultimate-N 6300" | ### Context: CREATE TABLE table_199666_1 (chipset VARCHAR, codename VARCHAR, wireless_lan VARCHAR) ### Question: How many series had the chipset of the Intel Centrino Ultimate-N 6300 wireless LAN with the codename Arrandale? ### Answer: SELECT chipset FROM table_199666_1 WHERE codename = "Arrandale" AND wireless_lan = ... |
What's the process technology of the Intel WiFi Link 5100 wireless LAN? | CREATE TABLE table_199666_1 (process_technology VARCHAR, wireless_lan VARCHAR) | SELECT process_technology FROM table_199666_1 WHERE wireless_lan = "Intel WiFi Link 5100" | ### Context: CREATE TABLE table_199666_1 (process_technology VARCHAR, wireless_lan VARCHAR) ### Question: What's the process technology of the Intel WiFi Link 5100 wireless LAN? ### Answer: SELECT process_technology FROM table_199666_1 WHERE wireless_lan = "Intel WiFi Link 5100" |
What type of processor does the Intel Centrino Wireless-N 105 wireless LAN have? | CREATE TABLE table_199666_1 (processor VARCHAR, wireless_lan VARCHAR) | SELECT processor FROM table_199666_1 WHERE wireless_lan = "Intel centrino Wireless-N 105" | ### Context: CREATE TABLE table_199666_1 (processor VARCHAR, wireless_lan VARCHAR) ### Question: What type of processor does the Intel Centrino Wireless-N 105 wireless LAN have? ### Answer: SELECT processor FROM table_199666_1 WHERE wireless_lan = "Intel centrino Wireless-N 105" |
What's the code name of the wireless LAN with Chief River Centrino? | CREATE TABLE table_199666_1 (codename VARCHAR, centrino VARCHAR) | SELECT codename FROM table_199666_1 WHERE centrino = "Chief River" | ### Context: CREATE TABLE table_199666_1 (codename VARCHAR, centrino VARCHAR) ### Question: What's the code name of the wireless LAN with Chief River Centrino? ### Answer: SELECT codename FROM table_199666_1 WHERE centrino = "Chief River" |
on 19 april 1985 how many of number last flew | CREATE TABLE table_1997759_1 (number VARCHAR, last_flew VARCHAR) | SELECT COUNT(number) FROM table_1997759_1 WHERE last_flew = "19 April 1985" | ### Context: CREATE TABLE table_1997759_1 (number VARCHAR, last_flew VARCHAR) ### Question: on 19 april 1985 how many of number last flew ### Answer: SELECT COUNT(number) FROM table_1997759_1 WHERE last_flew = "19 April 1985" |
what is the registration located on 31 january 1975 where first flew? | CREATE TABLE table_1997759_1 (registration VARCHAR, first_flew VARCHAR) | SELECT registration FROM table_1997759_1 WHERE first_flew = "31 January 1975" | ### Context: CREATE TABLE table_1997759_1 (registration VARCHAR, first_flew VARCHAR) ### Question: what is the registration located on 31 january 1975 where first flew? ### Answer: SELECT registration FROM table_1997759_1 WHERE first_flew = "31 January 1975" |
at what location is the last flew on 11 june 2000 | CREATE TABLE table_1997759_1 (location VARCHAR, last_flew VARCHAR) | SELECT location FROM table_1997759_1 WHERE last_flew = "11 June 2000" | ### Context: CREATE TABLE table_1997759_1 (location VARCHAR, last_flew VARCHAR) ### Question: at what location is the last flew on 11 june 2000 ### Answer: SELECT location FROM table_1997759_1 WHERE last_flew = "11 June 2000" |
how many number is located at registration f-bvff? | CREATE TABLE table_1997759_1 (number VARCHAR, registration VARCHAR) | SELECT COUNT(number) FROM table_1997759_1 WHERE registration = "F-BVFF" | ### Context: CREATE TABLE table_1997759_1 (number VARCHAR, registration VARCHAR) ### Question: how many number is located at registration f-bvff? ### Answer: SELECT COUNT(number) FROM table_1997759_1 WHERE registration = "F-BVFF" |
Who is the television commentator when the radio commentator is Galyna Babiy? | CREATE TABLE table_1998037_9 (television_commentator VARCHAR, radio_commentator VARCHAR) | SELECT television_commentator FROM table_1998037_9 WHERE radio_commentator = "Galyna Babiy" | ### Context: CREATE TABLE table_1998037_9 (television_commentator VARCHAR, radio_commentator VARCHAR) ### Question: Who is the television commentator when the radio commentator is Galyna Babiy? ### Answer: SELECT television_commentator FROM table_1998037_9 WHERE radio_commentator = "Galyna Babiy" |
Who is the television commentator when the spokesperson is Kateryna Osadcha? | CREATE TABLE table_1998037_9 (television_commentator VARCHAR, spokesperson VARCHAR) | SELECT television_commentator FROM table_1998037_9 WHERE spokesperson = "Kateryna Osadcha" | ### Context: CREATE TABLE table_1998037_9 (television_commentator VARCHAR, spokesperson VARCHAR) ### Question: Who is the television commentator when the spokesperson is Kateryna Osadcha? ### Answer: SELECT television_commentator FROM table_1998037_9 WHERE spokesperson = "Kateryna Osadcha" |
What is the year when the spoksperson is Ruslana? | CREATE TABLE table_1998037_9 (year_s_ INTEGER, spokesperson VARCHAR) | SELECT MIN(year_s_) FROM table_1998037_9 WHERE spokesperson = "Ruslana" | ### Context: CREATE TABLE table_1998037_9 (year_s_ INTEGER, spokesperson VARCHAR) ### Question: What is the year when the spoksperson is Ruslana? ### Answer: SELECT MIN(year_s_) FROM table_1998037_9 WHERE spokesperson = "Ruslana" |
Who is the television commentator for the year 2006? | CREATE TABLE table_1998037_9 (television_commentator VARCHAR, year_s_ VARCHAR) | SELECT television_commentator FROM table_1998037_9 WHERE year_s_ = 2006 | ### Context: CREATE TABLE table_1998037_9 (television_commentator VARCHAR, year_s_ VARCHAR) ### Question: Who is the television commentator for the year 2006? ### Answer: SELECT television_commentator FROM table_1998037_9 WHERE year_s_ = 2006 |
What is the season number of the episode seen by 10.11 million people in the US? | CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR) | SELECT no_in_season FROM table_19995378_1 WHERE us_viewers__millions_ = "10.11" | ### Context: CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What is the season number of the episode seen by 10.11 million people in the US? ### Answer: SELECT no_in_season FROM table_19995378_1 WHERE us_viewers__millions_ = "10.11" |
How many episodes with different series numbers were seen by 8.69 people in the US? | CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(no_in_season) FROM table_19995378_1 WHERE us_viewers__millions_ = "8.69" | ### Context: CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many episodes with different series numbers were seen by 8.69 people in the US? ### Answer: SELECT COUNT(no_in_season) FROM table_19995378_1 WHERE us_viewers__millions_ = "8.69" |
If the language is only native, what is the percentage of the San Antonio de Lomerio municipality? | CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, language VARCHAR) | SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE language = "Only native" | ### Context: CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, language VARCHAR) ### Question: If the language is only native, what is the percentage of the San Antonio de Lomerio municipality? ### Answer: SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_199984... |
For language Aymara Simi, what was the maximum San Javier municipality percentage? | CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ INTEGER, language VARCHAR) | SELECT MAX(san_javier_municipality___percentage_) FROM table_19998428_3 WHERE language = "Aymara simi" | ### Context: CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ INTEGER, language VARCHAR) ### Question: For language Aymara Simi, what was the maximum San Javier municipality percentage? ### Answer: SELECT MAX(san_javier_municipality___percentage_) FROM table_19998428_3 WHERE language = "Aymara simi" |
If the San Antonio de Lomerio municipality percentage is 5.480, what is the total percentage for the San Julian municipality? | CREATE TABLE table_19998428_3 (san_julián_municipality___percentage_ VARCHAR, san_antonio_de_lomerío_municipality___percentage_ VARCHAR) | SELECT COUNT(san_julián_municipality___percentage_) FROM table_19998428_3 WHERE san_antonio_de_lomerío_municipality___percentage_ = "5.480" | ### Context: CREATE TABLE table_19998428_3 (san_julián_municipality___percentage_ VARCHAR, san_antonio_de_lomerío_municipality___percentage_ VARCHAR) ### Question: If the San Antonio de Lomerio municipality percentage is 5.480, what is the total percentage for the San Julian municipality? ### Answer: SELECT COUNT(san_j... |
What is the municipality percentage for San Antonio de Lomerio is San Javier municipality percentage is 31? | CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, san_javier_municipality___percentage_ VARCHAR) | SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE san_javier_municipality___percentage_ = 31 | ### Context: CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, san_javier_municipality___percentage_ VARCHAR) ### Question: What is the municipality percentage for San Antonio de Lomerio is San Javier municipality percentage is 31? ### Answer: SELECT san_antonio_de_lomerío_munici... |
If the Cuatro Cañadas municipality percentage is 252, what are all the San Antonio de Lomerío municipality percentage? | CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR) | SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_cañadas_municipality___percentage_ = "252" | ### Context: CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR) ### Question: If the Cuatro Cañadas municipality percentage is 252, what are all the San Antonio de Lomerío municipality percentage? ### Answer: SELECT san_antonio_de... |
What is the San Javier municipality percentage if the Cuatro Cañadas municipality percentage is 202? | CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR) | SELECT san_javier_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_cañadas_municipality___percentage_ = "202" | ### Context: CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR) ### Question: What is the San Javier municipality percentage if the Cuatro Cañadas municipality percentage is 202? ### Answer: SELECT san_javier_municipality___percentage_ FROM t... |
How many total number have robert young as the director? | CREATE TABLE table_19982699_1 (_number VARCHAR, director VARCHAR) | SELECT COUNT(_number) FROM table_19982699_1 WHERE director = "Robert Young" | ### Context: CREATE TABLE table_19982699_1 (_number VARCHAR, director VARCHAR) ### Question: How many total number have robert young as the director? ### Answer: SELECT COUNT(_number) FROM table_19982699_1 WHERE director = "Robert Young" |
How many numbers have Charles Salmon as the producer and January 27, 2007 was the television premiere? | CREATE TABLE table_19982699_1 (_number INTEGER, producer VARCHAR, television_premiere VARCHAR) | SELECT MIN(_number) FROM table_19982699_1 WHERE producer = "Charles Salmon" AND television_premiere = "January 27, 2007" | ### Context: CREATE TABLE table_19982699_1 (_number INTEGER, producer VARCHAR, television_premiere VARCHAR) ### Question: How many numbers have Charles Salmon as the producer and January 27, 2007 was the television premiere? ### Answer: SELECT MIN(_number) FROM table_19982699_1 WHERE producer = "Charles Salmon" AND tel... |
How many dvd releases where directed by david decoteau? | CREATE TABLE table_19982699_1 (dvd_release VARCHAR, director VARCHAR) | SELECT COUNT(dvd_release) FROM table_19982699_1 WHERE director = "David DeCoteau" | ### Context: CREATE TABLE table_19982699_1 (dvd_release VARCHAR, director VARCHAR) ### Question: How many dvd releases where directed by david decoteau? ### Answer: SELECT COUNT(dvd_release) FROM table_19982699_1 WHERE director = "David DeCoteau" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.