question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
what's the bleeding time with partial thromboplastin time being unaffected and condition being liver failure , early | CREATE TABLE table_14006_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR) | SELECT bleeding_time FROM table_14006_1 WHERE partial_thromboplastin_time = "Unaffected" AND condition = "Liver failure , early" | ### Context: CREATE TABLE table_14006_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR) ### Question: what's the bleeding time with partial thromboplastin time being unaffected and condition being liver failure , early ### Answer: SELECT bleeding_time FROM table_14006_1 WHERE partial_thr... |
How many of the elected officials are on the Economic Matters committee? | CREATE TABLE table_14009909_1 (first_elected VARCHAR, committee VARCHAR) | SELECT COUNT(first_elected) FROM table_14009909_1 WHERE committee = "Economic Matters" | ### Context: CREATE TABLE table_14009909_1 (first_elected VARCHAR, committee VARCHAR) ### Question: How many of the elected officials are on the Economic Matters committee? ### Answer: SELECT COUNT(first_elected) FROM table_14009909_1 WHERE committee = "Economic Matters" |
Name the delegate first elected in 2003? | CREATE TABLE table_14009909_1 (delegate VARCHAR, first_elected VARCHAR) | SELECT delegate FROM table_14009909_1 WHERE first_elected = 2003 | ### Context: CREATE TABLE table_14009909_1 (delegate VARCHAR, first_elected VARCHAR) ### Question: Name the delegate first elected in 2003? ### Answer: SELECT delegate FROM table_14009909_1 WHERE first_elected = 2003 |
What are the counties represented in District 12.1 12a? | CREATE TABLE table_14009909_1 (counties_represented VARCHAR, district VARCHAR) | SELECT counties_represented FROM table_14009909_1 WHERE district = "12.1 12A" | ### Context: CREATE TABLE table_14009909_1 (counties_represented VARCHAR, district VARCHAR) ### Question: What are the counties represented in District 12.1 12a? ### Answer: SELECT counties_represented FROM table_14009909_1 WHERE district = "12.1 12A" |
Which country has a delegate who was first elected in 2006? | CREATE TABLE table_14009909_1 (counties_represented VARCHAR, first_elected VARCHAR) | SELECT counties_represented FROM table_14009909_1 WHERE first_elected = 2006 | ### Context: CREATE TABLE table_14009909_1 (counties_represented VARCHAR, first_elected VARCHAR) ### Question: Which country has a delegate who was first elected in 2006? ### Answer: SELECT counties_represented FROM table_14009909_1 WHERE first_elected = 2006 |
Who are the foreign players representing Ekaterinburg? | CREATE TABLE table_14015965_1 (foreign_players__max_2_ VARCHAR, town VARCHAR) | SELECT foreign_players__max_2_ FROM table_14015965_1 WHERE town = "Ekaterinburg" | ### Context: CREATE TABLE table_14015965_1 (foreign_players__max_2_ VARCHAR, town VARCHAR) ### Question: Who are the foreign players representing Ekaterinburg? ### Answer: SELECT foreign_players__max_2_ FROM table_14015965_1 WHERE town = "Ekaterinburg" |
What town is Volleyball Sportiv Complex (3 500) located in? | CREATE TABLE table_14015965_1 (town VARCHAR, arena__capacity_ VARCHAR) | SELECT town FROM table_14015965_1 WHERE arena__capacity_ = "Volleyball Sportiv Complex (3 500)" | ### Context: CREATE TABLE table_14015965_1 (town VARCHAR, arena__capacity_ VARCHAR) ### Question: What town is Volleyball Sportiv Complex (3 500) located in? ### Answer: SELECT town FROM table_14015965_1 WHERE arena__capacity_ = "Volleyball Sportiv Complex (3 500)" |
What arena was season 6 played at? | CREATE TABLE table_14015965_1 (arena__capacity_ VARCHAR, previous_season VARCHAR) | SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = "6" | ### Context: CREATE TABLE table_14015965_1 (arena__capacity_ VARCHAR, previous_season VARCHAR) ### Question: What arena was season 6 played at? ### Answer: SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = "6" |
Who was the head coach in season 2? | CREATE TABLE table_14015965_1 (head_coach VARCHAR, previous_season VARCHAR) | SELECT head_coach FROM table_14015965_1 WHERE previous_season = "2" | ### Context: CREATE TABLE table_14015965_1 (head_coach VARCHAR, previous_season VARCHAR) ### Question: Who was the head coach in season 2? ### Answer: SELECT head_coach FROM table_14015965_1 WHERE previous_season = "2" |
On what circuit was the City of Ipswich 400 race held? | CREATE TABLE table_14016079_1 (circuit VARCHAR, race_title VARCHAR) | SELECT circuit FROM table_14016079_1 WHERE race_title = "City of Ipswich 400" | ### Context: CREATE TABLE table_14016079_1 (circuit VARCHAR, race_title VARCHAR) ### Question: On what circuit was the City of Ipswich 400 race held? ### Answer: SELECT circuit FROM table_14016079_1 WHERE race_title = "City of Ipswich 400" |
Who was the winner on the Symmons Plains Raceway? | CREATE TABLE table_14016079_1 (winner VARCHAR, circuit VARCHAR) | SELECT winner FROM table_14016079_1 WHERE circuit = "Symmons Plains Raceway" | ### Context: CREATE TABLE table_14016079_1 (winner VARCHAR, circuit VARCHAR) ### Question: Who was the winner on the Symmons Plains Raceway? ### Answer: SELECT winner FROM table_14016079_1 WHERE circuit = "Symmons Plains Raceway" |
What were the dates for Round 8? | CREATE TABLE table_14016079_1 (date VARCHAR, rd VARCHAR) | SELECT date FROM table_14016079_1 WHERE rd = 8 | ### Context: CREATE TABLE table_14016079_1 (date VARCHAR, rd VARCHAR) ### Question: What were the dates for Round 8? ### Answer: SELECT date FROM table_14016079_1 WHERE rd = 8 |
What was the number of rounds on the Hidden Valley Raceway? | CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR) | SELECT COUNT(rd) FROM table_14016079_1 WHERE circuit = "Hidden Valley Raceway" | ### Context: CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR) ### Question: What was the number of rounds on the Hidden Valley Raceway? ### Answer: SELECT COUNT(rd) FROM table_14016079_1 WHERE circuit = "Hidden Valley Raceway" |
What round was held at the Queensland Raceway? | CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR) | SELECT rd FROM table_14016079_1 WHERE circuit = "Queensland Raceway" | ### Context: CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR) ### Question: What round was held at the Queensland Raceway? ### Answer: SELECT rd FROM table_14016079_1 WHERE circuit = "Queensland Raceway" |
what the highest number for the opposite of offense for the green bay packers | CREATE TABLE table_1402270_1 (team_defense_rank INTEGER, nfl_team VARCHAR) | SELECT MAX(team_defense_rank) FROM table_1402270_1 WHERE nfl_team = "Green Bay Packers" | ### Context: CREATE TABLE table_1402270_1 (team_defense_rank INTEGER, nfl_team VARCHAR) ### Question: what the highest number for the opposite of offense for the green bay packers ### Answer: SELECT MAX(team_defense_rank) FROM table_1402270_1 WHERE nfl_team = "Green Bay Packers" |
How many counties have an area of 1,205.4 km2? | CREATE TABLE table_1404414_2 (code VARCHAR, area__km_2__ VARCHAR) | SELECT COUNT(code) FROM table_1404414_2 WHERE area__km_2__ = "1,205.4" | ### Context: CREATE TABLE table_1404414_2 (code VARCHAR, area__km_2__ VARCHAR) ### Question: How many counties have an area of 1,205.4 km2? ### Answer: SELECT COUNT(code) FROM table_1404414_2 WHERE area__km_2__ = "1,205.4" |
What capital has a population of 596268? | CREATE TABLE table_1404414_2 (capital VARCHAR, population_census_2009 VARCHAR) | SELECT capital FROM table_1404414_2 WHERE population_census_2009 = 596268 | ### Context: CREATE TABLE table_1404414_2 (capital VARCHAR, population_census_2009 VARCHAR) ### Question: What capital has a population of 596268? ### Answer: SELECT capital FROM table_1404414_2 WHERE population_census_2009 = 596268 |
what's the capital with area (km 2 ) being 12,245.9 | CREATE TABLE table_1404456_1 (capital VARCHAR, area__km_2__ VARCHAR) | SELECT capital FROM table_1404456_1 WHERE area__km_2__ = "12,245.9" | ### Context: CREATE TABLE table_1404456_1 (capital VARCHAR, area__km_2__ VARCHAR) ### Question: what's the capital with area (km 2 ) being 12,245.9 ### Answer: SELECT capital FROM table_1404456_1 WHERE area__km_2__ = "12,245.9" |
what's the former province with area (km 2 ) being 12,245.9 | CREATE TABLE table_1404456_1 (former_province VARCHAR, area__km_2__ VARCHAR) | SELECT former_province FROM table_1404456_1 WHERE area__km_2__ = "12,245.9" | ### Context: CREATE TABLE table_1404456_1 (former_province VARCHAR, area__km_2__ VARCHAR) ### Question: what's the former province with area (km 2 ) being 12,245.9 ### Answer: SELECT former_province FROM table_1404456_1 WHERE area__km_2__ = "12,245.9" |
how many capital with population census 2009 being 284657 | CREATE TABLE table_1404456_1 (capital VARCHAR, population_census_2009 VARCHAR) | SELECT COUNT(capital) FROM table_1404456_1 WHERE population_census_2009 = 284657 | ### Context: CREATE TABLE table_1404456_1 (capital VARCHAR, population_census_2009 VARCHAR) ### Question: how many capital with population census 2009 being 284657 ### Answer: SELECT COUNT(capital) FROM table_1404456_1 WHERE population_census_2009 = 284657 |
what's the area (km 2 ) with population census 2009 being 939370 | CREATE TABLE table_1404456_1 (area__km_2__ VARCHAR, population_census_2009 VARCHAR) | SELECT area__km_2__ FROM table_1404456_1 WHERE population_census_2009 = 939370 | ### Context: CREATE TABLE table_1404456_1 (area__km_2__ VARCHAR, population_census_2009 VARCHAR) ### Question: what's the area (km 2 ) with population census 2009 being 939370 ### Answer: SELECT area__km_2__ FROM table_1404456_1 WHERE population_census_2009 = 939370 |
what is the minimum code with area (km 2 ) being 12,245.9 | CREATE TABLE table_1404456_1 (code INTEGER, area__km_2__ VARCHAR) | SELECT MIN(code) FROM table_1404456_1 WHERE area__km_2__ = "12,245.9" | ### Context: CREATE TABLE table_1404456_1 (code INTEGER, area__km_2__ VARCHAR) ### Question: what is the minimum code with area (km 2 ) being 12,245.9 ### Answer: SELECT MIN(code) FROM table_1404456_1 WHERE area__km_2__ = "12,245.9" |
what's the county with code being 2 | CREATE TABLE table_1404456_1 (county VARCHAR, code VARCHAR) | SELECT county FROM table_1404456_1 WHERE code = 2 | ### Context: CREATE TABLE table_1404456_1 (county VARCHAR, code VARCHAR) ### Question: what's the county with code being 2 ### Answer: SELECT county FROM table_1404456_1 WHERE code = 2 |
In what year did Tom Sneva win a race? | CREATE TABLE table_1405704_1 (season VARCHAR, winning_driver VARCHAR) | SELECT season FROM table_1405704_1 WHERE winning_driver = "Tom Sneva" | ### Context: CREATE TABLE table_1405704_1 (season VARCHAR, winning_driver VARCHAR) ### Question: In what year did Tom Sneva win a race? ### Answer: SELECT season FROM table_1405704_1 WHERE winning_driver = "Tom Sneva" |
What kind of chassis did a winning car with a Foyt engine have in 1979? | CREATE TABLE table_1405704_1 (chassis VARCHAR, season VARCHAR, engine VARCHAR) | SELECT chassis FROM table_1405704_1 WHERE season = 1979 AND engine = "Foyt" | ### Context: CREATE TABLE table_1405704_1 (chassis VARCHAR, season VARCHAR, engine VARCHAR) ### Question: What kind of chassis did a winning car with a Foyt engine have in 1979? ### Answer: SELECT chassis FROM table_1405704_1 WHERE season = 1979 AND engine = "Foyt" |
What team does Al Unser drive for? | CREATE TABLE table_1405704_1 (team VARCHAR, winning_driver VARCHAR) | SELECT team FROM table_1405704_1 WHERE winning_driver = "Al Unser" | ### Context: CREATE TABLE table_1405704_1 (team VARCHAR, winning_driver VARCHAR) ### Question: What team does Al Unser drive for? ### Answer: SELECT team FROM table_1405704_1 WHERE winning_driver = "Al Unser" |
What team has a vehicle with an Offenhauser engine and a McLaren chassis? | CREATE TABLE table_1405704_1 (team VARCHAR, chassis VARCHAR, engine VARCHAR) | SELECT team FROM table_1405704_1 WHERE chassis = "McLaren" AND engine = "Offenhauser" | ### Context: CREATE TABLE table_1405704_1 (team VARCHAR, chassis VARCHAR, engine VARCHAR) ### Question: What team has a vehicle with an Offenhauser engine and a McLaren chassis? ### Answer: SELECT team FROM table_1405704_1 WHERE chassis = "McLaren" AND engine = "Offenhauser" |
What team raced with a Foyt engine in the Texas Grand Prix? | CREATE TABLE table_1405704_1 (team VARCHAR, race_name VARCHAR, engine VARCHAR) | SELECT team FROM table_1405704_1 WHERE race_name = "Texas Grand Prix" AND engine = "Foyt" | ### Context: CREATE TABLE table_1405704_1 (team VARCHAR, race_name VARCHAR, engine VARCHAR) ### Question: What team raced with a Foyt engine in the Texas Grand Prix? ### Answer: SELECT team FROM table_1405704_1 WHERE race_name = "Texas Grand Prix" AND engine = "Foyt" |
What network is virtual channel 9.1 linked to? | CREATE TABLE table_1404984_1 (network VARCHAR, virtual_channel VARCHAR) | SELECT network FROM table_1404984_1 WHERE virtual_channel = "9.1" | ### Context: CREATE TABLE table_1404984_1 (network VARCHAR, virtual_channel VARCHAR) ### Question: What network is virtual channel 9.1 linked to? ### Answer: SELECT network FROM table_1404984_1 WHERE virtual_channel = "9.1" |
Who owns the station on channel 33.3? | CREATE TABLE table_1404984_1 (station_ownership VARCHAR, virtual_channel VARCHAR) | SELECT station_ownership FROM table_1404984_1 WHERE virtual_channel = "33.3" | ### Context: CREATE TABLE table_1404984_1 (station_ownership VARCHAR, virtual_channel VARCHAR) ### Question: Who owns the station on channel 33.3? ### Answer: SELECT station_ownership FROM table_1404984_1 WHERE virtual_channel = "33.3" |
What is JCTV's digital channel? | CREATE TABLE table_1404984_1 (digital_channel VARCHAR, network VARCHAR) | SELECT digital_channel FROM table_1404984_1 WHERE network = "JCTV" | ### Context: CREATE TABLE table_1404984_1 (digital_channel VARCHAR, network VARCHAR) ### Question: What is JCTV's digital channel? ### Answer: SELECT digital_channel FROM table_1404984_1 WHERE network = "JCTV" |
What is channel 33.7's official call sign? | CREATE TABLE table_1404984_1 (call_sign VARCHAR, virtual_channel VARCHAR) | SELECT call_sign FROM table_1404984_1 WHERE virtual_channel = "33.7" | ### Context: CREATE TABLE table_1404984_1 (call_sign VARCHAR, virtual_channel VARCHAR) ### Question: What is channel 33.7's official call sign? ### Answer: SELECT call_sign FROM table_1404984_1 WHERE virtual_channel = "33.7" |
What is HSN's official virtual channel in Minneapolis-St. Paul? | CREATE TABLE table_1404984_1 (virtual_channel VARCHAR, network VARCHAR) | SELECT virtual_channel FROM table_1404984_1 WHERE network = "HSN" | ### Context: CREATE TABLE table_1404984_1 (virtual_channel VARCHAR, network VARCHAR) ### Question: What is HSN's official virtual channel in Minneapolis-St. Paul? ### Answer: SELECT virtual_channel FROM table_1404984_1 WHERE network = "HSN" |
How many stations own Bounce TV? | CREATE TABLE table_1404984_1 (station_ownership VARCHAR, network VARCHAR) | SELECT COUNT(station_ownership) FROM table_1404984_1 WHERE network = "Bounce TV" | ### Context: CREATE TABLE table_1404984_1 (station_ownership VARCHAR, network VARCHAR) ### Question: How many stations own Bounce TV? ### Answer: SELECT COUNT(station_ownership) FROM table_1404984_1 WHERE network = "Bounce TV" |
How many points were made when the tries for was 83? | CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR) | SELECT points FROM table_14058433_3 WHERE tries_for = "83" | ### Context: CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR) ### Question: How many points were made when the tries for was 83? ### Answer: SELECT points FROM table_14058433_3 WHERE tries_for = "83" |
How many points are there when the lost is 7? | CREATE TABLE table_14058433_3 (points_for VARCHAR, lost VARCHAR) | SELECT points_for FROM table_14058433_3 WHERE lost = "7" | ### Context: CREATE TABLE table_14058433_3 (points_for VARCHAR, lost VARCHAR) ### Question: How many points are there when the lost is 7? ### Answer: SELECT points_for FROM table_14058433_3 WHERE lost = "7" |
What is the losing bonus when the points are 24? | CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, points VARCHAR) | SELECT losing_bonus FROM table_14058433_3 WHERE points = "24" | ### Context: CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, points VARCHAR) ### Question: What is the losing bonus when the points are 24? ### Answer: SELECT losing_bonus FROM table_14058433_3 WHERE points = "24" |
How many losing points does Llandudno RFC have? | CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, club VARCHAR) | SELECT losing_bonus FROM table_14058433_3 WHERE club = "Llandudno RFC" | ### Context: CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, club VARCHAR) ### Question: How many losing points does Llandudno RFC have? ### Answer: SELECT losing_bonus FROM table_14058433_3 WHERE club = "Llandudno RFC" |
What is the try bonus for Ruthin RFC? | CREATE TABLE table_14058433_3 (try_bonus VARCHAR, club VARCHAR) | SELECT try_bonus FROM table_14058433_3 WHERE club = "Ruthin RFC" | ### Context: CREATE TABLE table_14058433_3 (try_bonus VARCHAR, club VARCHAR) ### Question: What is the try bonus for Ruthin RFC? ### Answer: SELECT try_bonus FROM table_14058433_3 WHERE club = "Ruthin RFC" |
how many tries against with lost being 11 | CREATE TABLE table_14058433_4 (tries_against VARCHAR, lost VARCHAR) | SELECT COUNT(tries_against) FROM table_14058433_4 WHERE lost = "11" | ### Context: CREATE TABLE table_14058433_4 (tries_against VARCHAR, lost VARCHAR) ### Question: how many tries against with lost being 11 ### Answer: SELECT COUNT(tries_against) FROM table_14058433_4 WHERE lost = "11" |
what's the won with try bonus being 12 | CREATE TABLE table_14058433_4 (won VARCHAR, try_bonus VARCHAR) | SELECT won FROM table_14058433_4 WHERE try_bonus = "12" | ### Context: CREATE TABLE table_14058433_4 (won VARCHAR, try_bonus VARCHAR) ### Question: what's the won with try bonus being 12 ### Answer: SELECT won FROM table_14058433_4 WHERE try_bonus = "12" |
what's the drawn with lost being 4 | CREATE TABLE table_14058433_4 (drawn VARCHAR, lost VARCHAR) | SELECT drawn FROM table_14058433_4 WHERE lost = "4" | ### Context: CREATE TABLE table_14058433_4 (drawn VARCHAR, lost VARCHAR) ### Question: what's the drawn with lost being 4 ### Answer: SELECT drawn FROM table_14058433_4 WHERE lost = "4" |
what's the points against with lost being 13 | CREATE TABLE table_14058433_4 (points_against VARCHAR, lost VARCHAR) | SELECT points_against FROM table_14058433_4 WHERE lost = "13" | ### Context: CREATE TABLE table_14058433_4 (points_against VARCHAR, lost VARCHAR) ### Question: what's the points against with lost being 13 ### Answer: SELECT points_against FROM table_14058433_4 WHERE lost = "13" |
what's the points against with won being 11 | CREATE TABLE table_14058433_4 (points_against VARCHAR, won VARCHAR) | SELECT points_against FROM table_14058433_4 WHERE won = "11" | ### Context: CREATE TABLE table_14058433_4 (points_against VARCHAR, won VARCHAR) ### Question: what's the points against with won being 11 ### Answer: SELECT points_against FROM table_14058433_4 WHERE won = "11" |
what's the drawn with points for being 350 | CREATE TABLE table_14058433_4 (drawn VARCHAR, points_for VARCHAR) | SELECT drawn FROM table_14058433_4 WHERE points_for = "350" | ### Context: CREATE TABLE table_14058433_4 (drawn VARCHAR, points_for VARCHAR) ### Question: what's the drawn with points for being 350 ### Answer: SELECT drawn FROM table_14058433_4 WHERE points_for = "350" |
how many points for with points against being 177 | CREATE TABLE table_14058433_5 (points_for VARCHAR, points_against VARCHAR) | SELECT COUNT(points_for) FROM table_14058433_5 WHERE points_against = "177" | ### Context: CREATE TABLE table_14058433_5 (points_for VARCHAR, points_against VARCHAR) ### Question: how many points for with points against being 177 ### Answer: SELECT COUNT(points_for) FROM table_14058433_5 WHERE points_against = "177" |
what's the lost with club being colwyn bay rfc | CREATE TABLE table_14058433_5 (lost VARCHAR, club VARCHAR) | SELECT lost FROM table_14058433_5 WHERE club = "Colwyn Bay RFC" | ### Context: CREATE TABLE table_14058433_5 (lost VARCHAR, club VARCHAR) ### Question: what's the lost with club being colwyn bay rfc ### Answer: SELECT lost FROM table_14058433_5 WHERE club = "Colwyn Bay RFC" |
what's the won with tries for being 84 | CREATE TABLE table_14058433_5 (won VARCHAR, tries_for VARCHAR) | SELECT won FROM table_14058433_5 WHERE tries_for = "84" | ### Context: CREATE TABLE table_14058433_5 (won VARCHAR, tries_for VARCHAR) ### Question: what's the won with tries for being 84 ### Answer: SELECT won FROM table_14058433_5 WHERE tries_for = "84" |
what's the won with points for being 596 | CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR) | SELECT won FROM table_14058433_5 WHERE points_for = "596" | ### Context: CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR) ### Question: what's the won with points for being 596 ### Answer: SELECT won FROM table_14058433_5 WHERE points_for = "596" |
what's the points for with lost being 4 | CREATE TABLE table_14058433_5 (points_for VARCHAR, lost VARCHAR) | SELECT points_for FROM table_14058433_5 WHERE lost = "4" | ### Context: CREATE TABLE table_14058433_5 (points_for VARCHAR, lost VARCHAR) ### Question: what's the points for with lost being 4 ### Answer: SELECT points_for FROM table_14058433_5 WHERE lost = "4" |
what's the won with points for being 643 | CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR) | SELECT won FROM table_14058433_5 WHERE points_for = "643" | ### Context: CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR) ### Question: what's the won with points for being 643 ### Answer: SELECT won FROM table_14058433_5 WHERE points_for = "643" |
What is the Telugu word for хонгорцог in Mongolian? | CREATE TABLE table_1408397_3 (telugu_తెలుగు VARCHAR, mongolian VARCHAR) | SELECT telugu_తెలుగు FROM table_1408397_3 WHERE mongolian = "Хонгорцог" | ### Context: CREATE TABLE table_1408397_3 (telugu_తెలుగు VARCHAR, mongolian VARCHAR) ### Question: What is the Telugu word for хонгорцог in Mongolian? ### Answer: SELECT telugu_తెలుగు FROM table_1408397_3 WHERE mongolian = "Хонгорцог" |
What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada? | CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, kannada_ಕನ್ನಡ VARCHAR) | SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE kannada_ಕನ್ನಡ = "Punarvasu ಪುನರ್ವಸು" | ### Context: CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, kannada_ಕನ್ನಡ VARCHAR) ### Question: What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada? ### Answer: SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE kannada_ಕನ್ನಡ = "Punarvasu ಪುನರ್ವಸು" |
What is the Malayalam word that is listed as #10 in the table? | CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, _number VARCHAR) | SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE _number = 10 | ### Context: CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, _number VARCHAR) ### Question: What is the Malayalam word that is listed as #10 in the table? ### Answer: SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE _number = 10 |
tell the score when the times gone was 75 | CREATE TABLE table_14070062_4 (points_against VARCHAR, tries_against VARCHAR) | SELECT points_against FROM table_14070062_4 WHERE tries_against = "75" | ### Context: CREATE TABLE table_14070062_4 (points_against VARCHAR, tries_against VARCHAR) ### Question: tell the score when the times gone was 75 ### Answer: SELECT points_against FROM table_14070062_4 WHERE tries_against = "75" |
was the the score when the tries was 743 | CREATE TABLE table_14070062_4 (points_against VARCHAR, points_for VARCHAR) | SELECT points_against FROM table_14070062_4 WHERE points_for = "743" | ### Context: CREATE TABLE table_14070062_4 (points_against VARCHAR, points_for VARCHAR) ### Question: was the the score when the tries was 743 ### Answer: SELECT points_against FROM table_14070062_4 WHERE points_for = "743" |
tell how many wins there was when the score was 490 | CREATE TABLE table_14070062_4 (won VARCHAR, points_for VARCHAR) | SELECT COUNT(won) FROM table_14070062_4 WHERE points_for = "490" | ### Context: CREATE TABLE table_14070062_4 (won VARCHAR, points_for VARCHAR) ### Question: tell how many wins there was when the score was 490 ### Answer: SELECT COUNT(won) FROM table_14070062_4 WHERE points_for = "490" |
how many extra points were there when the score was 48 | CREATE TABLE table_14070062_4 (try_bonus VARCHAR, points VARCHAR) | SELECT try_bonus FROM table_14070062_4 WHERE points = "48" | ### Context: CREATE TABLE table_14070062_4 (try_bonus VARCHAR, points VARCHAR) ### Question: how many extra points were there when the score was 48 ### Answer: SELECT try_bonus FROM table_14070062_4 WHERE points = "48" |
what was the extra score when the overall score was 52 | CREATE TABLE table_14070062_4 (losing_bonus VARCHAR, tries_for VARCHAR) | SELECT losing_bonus FROM table_14070062_4 WHERE tries_for = "52" | ### Context: CREATE TABLE table_14070062_4 (losing_bonus VARCHAR, tries_for VARCHAR) ### Question: what was the extra score when the overall score was 52 ### Answer: SELECT losing_bonus FROM table_14070062_4 WHERE tries_for = "52" |
what was the score when the extras were 6 | CREATE TABLE table_14070062_4 (points VARCHAR, try_bonus VARCHAR) | SELECT points FROM table_14070062_4 WHERE try_bonus = "6" | ### Context: CREATE TABLE table_14070062_4 (points VARCHAR, try_bonus VARCHAR) ### Question: what was the score when the extras were 6 ### Answer: SELECT points FROM table_14070062_4 WHERE try_bonus = "6" |
What country's capital is buenos aires? | CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR) | SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Buenos Aires" | ### Context: CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR) ### Question: What country's capital is buenos aires? ### Answer: SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Buenos Aires" |
What unit of measurement for uruguay? | CREATE TABLE table_14098_1 (area__km²___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR) | SELECT area__km²___per_sqmi_ FROM table_14098_1 WHERE country_or_territory_with_flag = "Uruguay" | ### Context: CREATE TABLE table_14098_1 (area__km²___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR) ### Question: What unit of measurement for uruguay? ### Answer: SELECT area__km²___per_sqmi_ FROM table_14098_1 WHERE country_or_territory_with_flag = "Uruguay" |
What country'c capital is santiago? | CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR) | SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Santiago" | ### Context: CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR) ### Question: What country'c capital is santiago? ### Answer: SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Santiago" |
who is the the voice actor (englbeingh 1998 / pioneer) with voice actor (englbeingh 1997 / saban) being alec willows and voice actor (englbeingh 2006 / funimation) being andy mcavin | CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__english_1997___saban_ VARCHAR, voice_actor__english_2006___funimation_ VARCHAR) | SELECT voice_actor__english_1998___pioneer_ FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = "Alec Willows" AND voice_actor__english_2006___funimation_ = "Andy McAvin" | ### Context: CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__english_1997___saban_ VARCHAR, voice_actor__english_2006___funimation_ VARCHAR) ### Question: who is the the voice actor (englbeingh 1998 / pioneer) with voice actor (englbeingh 1997 / saban) being alec willows and voi... |
what's the character name with voice actor (englbeingh 1997 / saban) being ian james corlett | CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1997___saban_ VARCHAR) | SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = "Ian James Corlett" | ### Context: CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1997___saban_ VARCHAR) ### Question: what's the character name with voice actor (englbeingh 1997 / saban) being ian james corlett ### Answer: SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = "Ian... |
what's the character name with voice actor (englbeingh 1998 / pioneer) being paul dobson | CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1998___pioneer_ VARCHAR) | SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1998___pioneer_ = "Paul Dobson" | ### Context: CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1998___pioneer_ VARCHAR) ### Question: what's the character name with voice actor (englbeingh 1998 / pioneer) being paul dobson ### Answer: SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1998___pioneer_ = "Pau... |
how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi | CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__japanese_ VARCHAR) | SELECT COUNT(voice_actor__english_1998___pioneer_) FROM table_1410384_1 WHERE voice_actor__japanese_ = "Shinobu Satouchi" | ### Context: CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__japanese_ VARCHAR) ### Question: how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi ### Answer: SELECT COUNT(voice_actor__english_1998___pioneer_) FROM table_1410384_1 ... |
who is the the voice actor (japanese) with character name being goku | CREATE TABLE table_1410384_1 (voice_actor__japanese_ VARCHAR, character_name VARCHAR) | SELECT voice_actor__japanese_ FROM table_1410384_1 WHERE character_name = "Goku" | ### Context: CREATE TABLE table_1410384_1 (voice_actor__japanese_ VARCHAR, character_name VARCHAR) ### Question: who is the the voice actor (japanese) with character name being goku ### Answer: SELECT voice_actor__japanese_ FROM table_1410384_1 WHERE character_name = "Goku" |
how many big wins does peru state college have | CREATE TABLE table_14115168_4 (national_titles VARCHAR, school VARCHAR) | SELECT COUNT(national_titles) FROM table_14115168_4 WHERE school = "Peru State College" | ### Context: CREATE TABLE table_14115168_4 (national_titles VARCHAR, school VARCHAR) ### Question: how many big wins does peru state college have ### Answer: SELECT COUNT(national_titles) FROM table_14115168_4 WHERE school = "Peru State College" |
which school has 14 large championships | CREATE TABLE table_14115168_4 (school VARCHAR, national_titles VARCHAR) | SELECT school FROM table_14115168_4 WHERE national_titles = 14 | ### Context: CREATE TABLE table_14115168_4 (school VARCHAR, national_titles VARCHAR) ### Question: which school has 14 large championships ### Answer: SELECT school FROM table_14115168_4 WHERE national_titles = 14 |
how many overall championships does concordia university have | CREATE TABLE table_14115168_4 (national_titles INTEGER, school VARCHAR) | SELECT MIN(national_titles) FROM table_14115168_4 WHERE school = "Concordia University" | ### Context: CREATE TABLE table_14115168_4 (national_titles INTEGER, school VARCHAR) ### Question: how many overall championships does concordia university have ### Answer: SELECT MIN(national_titles) FROM table_14115168_4 WHERE school = "Concordia University" |
what's the duration with mission being sts-87 | CREATE TABLE table_14118521_1 (duration VARCHAR, mission VARCHAR) | SELECT duration FROM table_14118521_1 WHERE mission = "STS-87" | ### Context: CREATE TABLE table_14118521_1 (duration VARCHAR, mission VARCHAR) ### Question: what's the duration with mission being sts-87 ### Answer: SELECT duration FROM table_14118521_1 WHERE mission = "STS-87" |
what's the edo flight with duration being 17 days, 15 hours, 53 minutes, 18 seconds | CREATE TABLE table_14118521_1 (edo_flight VARCHAR, duration VARCHAR) | SELECT edo_flight FROM table_14118521_1 WHERE duration = "17 days, 15 hours, 53 minutes, 18 seconds" | ### Context: CREATE TABLE table_14118521_1 (edo_flight VARCHAR, duration VARCHAR) ### Question: what's the edo flight with duration being 17 days, 15 hours, 53 minutes, 18 seconds ### Answer: SELECT edo_flight FROM table_14118521_1 WHERE duration = "17 days, 15 hours, 53 minutes, 18 seconds" |
what's the primary payload(s) with launch date being july 8, 1994 | CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, launch_date VARCHAR) | SELECT primary_payload_s_ FROM table_14118521_1 WHERE launch_date = "July 8, 1994" | ### Context: CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, launch_date VARCHAR) ### Question: what's the primary payload(s) with launch date being july 8, 1994 ### Answer: SELECT primary_payload_s_ FROM table_14118521_1 WHERE launch_date = "July 8, 1994" |
what's the mission with primary payload(s) being spacelab life sciences-2 | CREATE TABLE table_14118521_1 (mission VARCHAR, primary_payload_s_ VARCHAR) | SELECT mission FROM table_14118521_1 WHERE primary_payload_s_ = "Spacelab Life Sciences-2" | ### Context: CREATE TABLE table_14118521_1 (mission VARCHAR, primary_payload_s_ VARCHAR) ### Question: what's the mission with primary payload(s) being spacelab life sciences-2 ### Answer: SELECT mission FROM table_14118521_1 WHERE primary_payload_s_ = "Spacelab Life Sciences-2" |
what's the shuttle with primary payload(s) being united states microgravity laboratory-1 | CREATE TABLE table_14118521_1 (shuttle VARCHAR, primary_payload_s_ VARCHAR) | SELECT shuttle FROM table_14118521_1 WHERE primary_payload_s_ = "United States Microgravity Laboratory-1" | ### Context: CREATE TABLE table_14118521_1 (shuttle VARCHAR, primary_payload_s_ VARCHAR) ### Question: what's the shuttle with primary payload(s) being united states microgravity laboratory-1 ### Answer: SELECT shuttle FROM table_14118521_1 WHERE primary_payload_s_ = "United States Microgravity Laboratory-1" |
how many primary payload(s) with shuttle being columbia and duration being 13 days, 19 hours, 30 minutes, 4 seconds | CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, shuttle VARCHAR, duration VARCHAR) | SELECT COUNT(primary_payload_s_) FROM table_14118521_1 WHERE shuttle = "Columbia" AND duration = "13 days, 19 hours, 30 minutes, 4 seconds" | ### Context: CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, shuttle VARCHAR, duration VARCHAR) ### Question: how many primary payload(s) with shuttle being columbia and duration being 13 days, 19 hours, 30 minutes, 4 seconds ### Answer: SELECT COUNT(primary_payload_s_) FROM table_14118521_1 WHERE shuttle =... |
what's the pts with team being kopron team scot | CREATE TABLE table_14139408_1 (pts VARCHAR, team VARCHAR) | SELECT pts FROM table_14139408_1 WHERE team = "Kopron team Scot" | ### Context: CREATE TABLE table_14139408_1 (pts VARCHAR, team VARCHAR) ### Question: what's the pts with team being kopron team scot ### Answer: SELECT pts FROM table_14139408_1 WHERE team = "Kopron team Scot" |
what's the pts with position being nc | CREATE TABLE table_14139408_1 (pts VARCHAR, position VARCHAR) | SELECT pts FROM table_14139408_1 WHERE position = "NC" | ### Context: CREATE TABLE table_14139408_1 (pts VARCHAR, position VARCHAR) ### Question: what's the pts with position being nc ### Answer: SELECT pts FROM table_14139408_1 WHERE position = "NC" |
what's the pts with poles being smaller than 1.0 and motorcycle being aprilia and class being 250cc | CREATE TABLE table_14139408_1 (pts VARCHAR, class VARCHAR, poles VARCHAR, motorcycle VARCHAR) | SELECT pts FROM table_14139408_1 WHERE poles < 1.0 AND motorcycle = "Aprilia" AND class = "250cc" | ### Context: CREATE TABLE table_14139408_1 (pts VARCHAR, class VARCHAR, poles VARCHAR, motorcycle VARCHAR) ### Question: what's the pts with poles being smaller than 1.0 and motorcycle being aprilia and class being 250cc ### Answer: SELECT pts FROM table_14139408_1 WHERE poles < 1.0 AND motorcycle = "Aprilia" AND class... |
what's the poles with pts being 81 | CREATE TABLE table_14139408_1 (poles VARCHAR, pts VARCHAR) | SELECT poles FROM table_14139408_1 WHERE pts = "81" | ### Context: CREATE TABLE table_14139408_1 (poles VARCHAR, pts VARCHAR) ### Question: what's the poles with pts being 81 ### Answer: SELECT poles FROM table_14139408_1 WHERE pts = "81" |
how many class with poles being bigger than 1.0 | CREATE TABLE table_14139408_1 (class VARCHAR, poles INTEGER) | SELECT COUNT(class) FROM table_14139408_1 WHERE poles > 1.0 | ### Context: CREATE TABLE table_14139408_1 (class VARCHAR, poles INTEGER) ### Question: how many class with poles being bigger than 1.0 ### Answer: SELECT COUNT(class) FROM table_14139408_1 WHERE poles > 1.0 |
what's the position with team being skilled racing team | CREATE TABLE table_14139408_1 (position VARCHAR, team VARCHAR) | SELECT position FROM table_14139408_1 WHERE team = "Skilled Racing team" | ### Context: CREATE TABLE table_14139408_1 (position VARCHAR, team VARCHAR) ### Question: what's the position with team being skilled racing team ### Answer: SELECT position FROM table_14139408_1 WHERE team = "Skilled Racing team" |
Who was the defensive award winner in February when the rookie award was given to Rhys Duch? | CREATE TABLE table_14132239_3 (defensive VARCHAR, month VARCHAR, rookie VARCHAR) | SELECT defensive FROM table_14132239_3 WHERE month = "February" AND rookie = "Rhys Duch" | ### Context: CREATE TABLE table_14132239_3 (defensive VARCHAR, month VARCHAR, rookie VARCHAR) ### Question: Who was the defensive award winner in February when the rookie award was given to Rhys Duch? ### Answer: SELECT defensive FROM table_14132239_3 WHERE month = "February" AND rookie = "Rhys Duch" |
Who was the offensive award winner the week when Bob Watson was given the overall award? | CREATE TABLE table_14132239_3 (offensive VARCHAR, overall VARCHAR) | SELECT offensive FROM table_14132239_3 WHERE overall = "Bob Watson" | ### Context: CREATE TABLE table_14132239_3 (offensive VARCHAR, overall VARCHAR) ### Question: Who was the offensive award winner the week when Bob Watson was given the overall award? ### Answer: SELECT offensive FROM table_14132239_3 WHERE overall = "Bob Watson" |
Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis? | CREATE TABLE table_14132239_3 (defensive VARCHAR, rookie VARCHAR, offensive VARCHAR) | SELECT defensive FROM table_14132239_3 WHERE rookie = "Daryl Veltman" AND offensive = "Mark Steenhuis" | ### Context: CREATE TABLE table_14132239_3 (defensive VARCHAR, rookie VARCHAR, offensive VARCHAR) ### Question: Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis? ### Answer: SELECT defensive FROM table_14132239_3 WHERE rookie = "Dary... |
Who won the rookie award the week the transition award was given to Brodie Merrill and the offensive award was given to Pat Maddalena? | CREATE TABLE table_14132239_3 (rookie VARCHAR, transition VARCHAR, offensive VARCHAR) | SELECT rookie FROM table_14132239_3 WHERE transition = "Brodie Merrill" AND offensive = "Pat Maddalena" | ### Context: CREATE TABLE table_14132239_3 (rookie VARCHAR, transition VARCHAR, offensive VARCHAR) ### Question: Who won the rookie award the week the transition award was given to Brodie Merrill and the offensive award was given to Pat Maddalena? ### Answer: SELECT rookie FROM table_14132239_3 WHERE transition = "Brod... |
What is the lowest enrollment value out of the enrollment values I'd the schools with a 3A WIAA clarification? | CREATE TABLE table_1414702_3 (enrollment INTEGER, wiaa_classification VARCHAR) | SELECT MIN(enrollment) FROM table_1414702_3 WHERE wiaa_classification = "3A" | ### Context: CREATE TABLE table_1414702_3 (enrollment INTEGER, wiaa_classification VARCHAR) ### Question: What is the lowest enrollment value out of the enrollment values I'd the schools with a 3A WIAA clarification? ### Answer: SELECT MIN(enrollment) FROM table_1414702_3 WHERE wiaa_classification = "3A" |
What is the WIAA classification of Oakland Alternative High School? | CREATE TABLE table_1414702_3 (wiaa_classification VARCHAR, high_school VARCHAR) | SELECT wiaa_classification FROM table_1414702_3 WHERE high_school = "Oakland Alternative" | ### Context: CREATE TABLE table_1414702_3 (wiaa_classification VARCHAR, high_school VARCHAR) ### Question: What is the WIAA classification of Oakland Alternative High School? ### Answer: SELECT wiaa_classification FROM table_1414702_3 WHERE high_school = "Oakland Alternative" |
When was Mount Tahoma established? | CREATE TABLE table_1414702_3 (established INTEGER, high_school VARCHAR) | SELECT MAX(established) FROM table_1414702_3 WHERE high_school = "Mount Tahoma" | ### Context: CREATE TABLE table_1414702_3 (established INTEGER, high_school VARCHAR) ### Question: When was Mount Tahoma established? ### Answer: SELECT MAX(established) FROM table_1414702_3 WHERE high_school = "Mount Tahoma" |
What's the note about the school established in the year of 1973? | CREATE TABLE table_1414702_3 (notes VARCHAR, established VARCHAR) | SELECT notes FROM table_1414702_3 WHERE established = 1973 | ### Context: CREATE TABLE table_1414702_3 (notes VARCHAR, established VARCHAR) ### Question: What's the note about the school established in the year of 1973? ### Answer: SELECT notes FROM table_1414702_3 WHERE established = 1973 |
Who was in the 4th district in 1924? | CREATE TABLE table_14123513_5 (year VARCHAR) | SELECT 4 AS th_district FROM table_14123513_5 WHERE year = 1924 | ### Context: CREATE TABLE table_14123513_5 (year VARCHAR) ### Question: Who was in the 4th district in 1924? ### Answer: SELECT 4 AS th_district FROM table_14123513_5 WHERE year = 1924 |
List all FTE middle school teachers in Sunnyvale. | CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, school_level VARCHAR, city VARCHAR) | SELECT fte_teachers FROM table_1414743_1 WHERE school_level = "Middle" AND city = "Sunnyvale" | ### Context: CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, school_level VARCHAR, city VARCHAR) ### Question: List all FTE middle school teachers in Sunnyvale. ### Answer: SELECT fte_teachers FROM table_1414743_1 WHERE school_level = "Middle" AND city = "Sunnyvale" |
What is the highest number of students with a teacher:student ratio of 20.8? | CREATE TABLE table_1414743_1 (students INTEGER, pupil_teacher_ratio VARCHAR) | SELECT MAX(students) FROM table_1414743_1 WHERE pupil_teacher_ratio = "20.8" | ### Context: CREATE TABLE table_1414743_1 (students INTEGER, pupil_teacher_ratio VARCHAR) ### Question: What is the highest number of students with a teacher:student ratio of 20.8? ### Answer: SELECT MAX(students) FROM table_1414743_1 WHERE pupil_teacher_ratio = "20.8" |
How many FTE teachers are there when the student:teacher ration is 19? | CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, pupil_teacher_ratio VARCHAR) | SELECT fte_teachers FROM table_1414743_1 WHERE pupil_teacher_ratio = "19" | ### Context: CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, pupil_teacher_ratio VARCHAR) ### Question: How many FTE teachers are there when the student:teacher ration is 19? ### Answer: SELECT fte_teachers FROM table_1414743_1 WHERE pupil_teacher_ratio = "19" |
What edition of congress for member-elect richard p. giles? | CREATE TABLE table_14158567_1 (congress VARCHAR, member_elect VARCHAR) | SELECT congress FROM table_14158567_1 WHERE member_elect = "Richard P. Giles" | ### Context: CREATE TABLE table_14158567_1 (congress VARCHAR, member_elect VARCHAR) ### Question: What edition of congress for member-elect richard p. giles? ### Answer: SELECT congress FROM table_14158567_1 WHERE member_elect = "Richard P. Giles" |
how many mean elevation with lowest point being gulf of mexico and state being texas | CREATE TABLE table_1416612_1 (mean_elevation VARCHAR, lowest_point VARCHAR, state VARCHAR) | SELECT COUNT(mean_elevation) FROM table_1416612_1 WHERE lowest_point = "Gulf of Mexico" AND state = "Texas" | ### Context: CREATE TABLE table_1416612_1 (mean_elevation VARCHAR, lowest_point VARCHAR, state VARCHAR) ### Question: how many mean elevation with lowest point being gulf of mexico and state being texas ### Answer: SELECT COUNT(mean_elevation) FROM table_1416612_1 WHERE lowest_point = "Gulf of Mexico" AND state = "Tex... |
what's the highest point with lowest point being belle fourche river at south dakota border | CREATE TABLE table_1416612_1 (highest_point VARCHAR, lowest_point VARCHAR) | SELECT highest_point FROM table_1416612_1 WHERE lowest_point = "Belle Fourche River at South Dakota border" | ### Context: CREATE TABLE table_1416612_1 (highest_point VARCHAR, lowest_point VARCHAR) ### Question: what's the highest point with lowest point being belle fourche river at south dakota border ### Answer: SELECT highest_point FROM table_1416612_1 WHERE lowest_point = "Belle Fourche River at South Dakota border" |
what's the lowest elevation with highest point being charles mound | CREATE TABLE table_1416612_1 (lowest_elevation VARCHAR, highest_point VARCHAR) | SELECT lowest_elevation FROM table_1416612_1 WHERE highest_point = "Charles Mound" | ### Context: CREATE TABLE table_1416612_1 (lowest_elevation VARCHAR, highest_point VARCHAR) ### Question: what's the lowest elevation with highest point being charles mound ### Answer: SELECT lowest_elevation FROM table_1416612_1 WHERE highest_point = "Charles Mound" |
what's the lowest point with highest point being mount greylock | CREATE TABLE table_1416612_1 (lowest_point VARCHAR, highest_point VARCHAR) | SELECT lowest_point FROM table_1416612_1 WHERE highest_point = "Mount Greylock" | ### Context: CREATE TABLE table_1416612_1 (lowest_point VARCHAR, highest_point VARCHAR) ### Question: what's the lowest point with highest point being mount greylock ### Answer: SELECT lowest_point FROM table_1416612_1 WHERE highest_point = "Mount Greylock" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.