answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT party FROM table_19753079_41 WHERE candidates = "Mark Critz (D) 50.8% Tim Burns (R) 49.2%"
CREATE TABLE table_19753079_41 (party VARCHAR, candidates VARCHAR)
When mark critz (d) 50.8% tim burns (r) 49.2% are the candidates what is the party?
SELECT result FROM table_19753079_41 WHERE incumbent = "Chris Carney"
CREATE TABLE table_19753079_41 (result VARCHAR, incumbent VARCHAR)
When chris carney is the incumbent what are the results?
SELECT district FROM table_19753079_41 WHERE first_elected = 1994
CREATE TABLE table_19753079_41 (district VARCHAR, first_elected VARCHAR)
When 1994 is the first elected what is the district?
SELECT incumbent FROM table_19753079_41 WHERE district = "Pennsylvania 3"
CREATE TABLE table_19753079_41 (incumbent VARCHAR, district VARCHAR)
When pennsylvania 3 is the district who is the incumbent?
SELECT candidates FROM table_19753079_41 WHERE first_elected = 1984
CREATE TABLE table_19753079_41 (candidates VARCHAR, first_elected VARCHAR)
When 1984 is the first elected who are the candidates?
SELECT result FROM table_19763199_4 WHERE artist = "Salva Ortega"
CREATE TABLE table_19763199_4 (result VARCHAR, artist VARCHAR)
What is Salva Ortega's result?
SELECT televotes FROM table_19763199_4 WHERE jury_votes = 4
CREATE TABLE table_19763199_4 (televotes VARCHAR, jury_votes VARCHAR)
How many televotes are there where there is 4 jury votes?
SELECT jury_votes FROM table_19763199_4 WHERE televotes = 7
CREATE TABLE table_19763199_4 (jury_votes VARCHAR, televotes VARCHAR)
How many jury votes for the televote of 7?
SELECT result FROM table_19763199_3 WHERE artist = "Normativa Vigente"
CREATE TABLE table_19763199_3 (result VARCHAR, artist VARCHAR)
What is the result for Normativa Vigente?
SELECT song FROM table_19763199_3 WHERE total_votes = 24
CREATE TABLE table_19763199_3 (song VARCHAR, total_votes VARCHAR)
What song has 24 votes?
SELECT MIN(total_votes) FROM table_19763199_3
CREATE TABLE table_19763199_3 (total_votes INTEGER)
What is the least total votes?
SELECT total_votes FROM table_19763199_3 WHERE artist = "Carlos Ferrer EAI"
CREATE TABLE table_19763199_3 (total_votes VARCHAR, artist VARCHAR)
How many votes does Carlos Ferrer Eai have?
SELECT MAX(_number) FROM table_197638_6
CREATE TABLE table_197638_6 (_number INTEGER)
How many players are on this list?
SELECT player FROM table_197638_6 WHERE french_open = 1999
CREATE TABLE table_197638_6 (player VARCHAR, french_open VARCHAR)
Who won the French Open in 1999?
SELECT player FROM table_197638_6 WHERE us_open = 1937
CREATE TABLE table_197638_6 (player VARCHAR, us_open VARCHAR)
Who won the US Open in 1937?
SELECT COUNT(australian_open) FROM table_197638_6 WHERE player = "Roy Emerson"
CREATE TABLE table_197638_6 (australian_open VARCHAR, player VARCHAR)
How many times did Roy Emerson win the Australian Open?
SELECT MAX(age) FROM table_197638_6 WHERE player = "Roy Emerson"
CREATE TABLE table_197638_6 (age INTEGER, player VARCHAR)
At what age did Roy Emerson complete the Grand Slam?
SELECT MIN(rank) FROM table_19764939_1 WHERE total = 2
CREATE TABLE table_19764939_1 (rank INTEGER, total VARCHAR)
Name the least rank for 2
SELECT total FROM table_19764939_1 WHERE player = "Jamie Carragher"
CREATE TABLE table_19764939_1 (total VARCHAR, player VARCHAR)
Name the total for jamie carragher
SELECT COUNT(club_world_cup) FROM table_19764939_1 WHERE player = "Djibril Cisse"
CREATE TABLE table_19764939_1 (club_world_cup VARCHAR, player VARCHAR)
Name the total number of club worl cup for djibril cisse
SELECT MIN(post_code) FROM table_1976898_1 WHERE chinese_name__simplified___traditional_ = "潜山县 / 潛山縣"
CREATE TABLE table_1976898_1 (post_code INTEGER, chinese_name__simplified___traditional_ VARCHAR)
What's the post code of the county with the Chinese name 潜山县 / 潛山縣?
SELECT english_name FROM table_1976898_1 WHERE chinese_name__simplified___traditional_ = "太湖县 / 太湖縣"
CREATE TABLE table_1976898_1 (english_name VARCHAR, chinese_name__simplified___traditional_ VARCHAR)
What's the English name of the county called 太湖县 / 太湖縣 in Chinese?
SELECT english_name FROM table_1976898_1 WHERE post_code = 246400
CREATE TABLE table_1976898_1 (english_name VARCHAR, post_code VARCHAR)
What's the English name of the county with a postcode 246400?
SELECT chinese_name__simplified___traditional_ FROM table_1976898_1 WHERE english_name = "Susong County"
CREATE TABLE table_1976898_1 (chinese_name__simplified___traditional_ VARCHAR, english_name VARCHAR)
What's the Chinese (simplified/traditional) name of Susong County?
SELECT pinyin FROM table_1976898_1 WHERE post_code = 246500
CREATE TABLE table_1976898_1 (pinyin VARCHAR, post_code VARCHAR)
What's the Pinyin name of the county with a postcode 246500?
SELECT COUNT(date) FROM table_19778010_5 WHERE opponent = "Houston"
CREATE TABLE table_19778010_5 (date VARCHAR, opponent VARCHAR)
On how many different dates was a game against Houston played?
SELECT COUNT(high_assists) FROM table_19778010_5 WHERE high_rebounds = "Sales (10)"
CREATE TABLE table_19778010_5 (high_assists VARCHAR, high_rebounds VARCHAR)
How many different players did the high assists in games where the high rebounds were done by Sales (10)?
SELECT MAX(game) FROM table_19778010_5 WHERE date = "June 22"
CREATE TABLE table_19778010_5 (game INTEGER, date VARCHAR)
What's the number of the game played on June 22?
SELECT opponent FROM table_19778010_5 WHERE game = 8
CREATE TABLE table_19778010_5 (opponent VARCHAR, game VARCHAR)
Who was game number 8 played against?
SELECT high_rebounds FROM table_19778010_5 WHERE high_assists = "Five Players (3)"
CREATE TABLE table_19778010_5 (high_rebounds VARCHAR, high_assists VARCHAR)
Who did the high rebounds in the game in which five players (3) did the high assists?
SELECT nosotros___nosotras FROM table_1977630_2 WHERE él___ella___usted = "piense"
CREATE TABLE table_1977630_2 (nosotros___nosotras VARCHAR, él___ella___usted VARCHAR)
What are all the conjugated forms of the verb where the el/ ella/usted verb is piense?
SELECT yo FROM table_1977630_2 WHERE vosotros___vosotras = "moláis"
CREATE TABLE table_1977630_2 (yo VARCHAR, vosotros___vosotras VARCHAR)
What are all the conjugated forms of the verb moler where the vosotros / vosotras is moláis for the yo tense?
SELECT COUNT(verbs) FROM table_1977630_2 WHERE yo = "sienta"
CREATE TABLE table_1977630_2 (verbs VARCHAR, yo VARCHAR)
how many verbs have the yo form as sienta?
SELECT él___ella___usted FROM table_1977630_2 WHERE vos__ * _ = "muelas / molás"
CREATE TABLE table_1977630_2 (él___ella___usted VARCHAR, vos__ VARCHAR, _ VARCHAR)
What us the conjucated form(s) of el/ella/ usted when the Vos (*) is muelas / molás?
SELECT vos__ * _ FROM table_1977630_2 WHERE él___ella___usted = "muela"
CREATE TABLE table_1977630_2 (vos__ VARCHAR, _ VARCHAR, él___ella___usted VARCHAR)
What are the forms of the conjucated vos(*) where él / ella / usted is muela
SELECT COUNT(till_mathura) FROM table_19787093_1 WHERE till_agra = 500
CREATE TABLE table_19787093_1 (till_mathura VARCHAR, till_agra VARCHAR)
How many have the Till Agra of 500?
SELECT vehicle_category FROM table_19787093_1 WHERE till_agra = 1050
CREATE TABLE table_19787093_1 (vehicle_category VARCHAR, till_agra VARCHAR)
What kind of vehicle is the agra 1050?
SELECT MAX(till_mathura) FROM table_19787093_1 WHERE till_aligarh = 150
CREATE TABLE table_19787093_1 (till_mathura INTEGER, till_aligarh VARCHAR)
If the till aligarh is 150, what the mac till mathura?
SELECT MAX(for_round_trip) FROM table_19787093_1 WHERE till_agra = 1050
CREATE TABLE table_19787093_1 (for_round_trip INTEGER, till_agra VARCHAR)
If the till agra is 1050, what is the max round trip?
SELECT MIN(till_aligarh) FROM table_19787093_1 WHERE vehicle_category = "Multi-axle Vehicle"
CREATE TABLE table_19787093_1 (till_aligarh INTEGER, vehicle_category VARCHAR)
If the vehicle category is multi-axle vehicle, what is the till aligarh?
SELECT MIN(game) FROM table_19789597_6 WHERE high_assists = "S. Johnson (3)"
CREATE TABLE table_19789597_6 (game INTEGER, high_assists VARCHAR)
What's the lowest number of a game where S. Johnson (3) did the most high assists?
SELECT opponent FROM table_19789597_6 WHERE date = "July 12"
CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)
Who was the game on July 12 played against?
SELECT record FROM table_19789597_6 WHERE high_rebounds = "McWilliams (8)"
CREATE TABLE table_19789597_6 (record VARCHAR, high_rebounds VARCHAR)
What was the record in the game where McWilliams (8) did the most high rebounds?
SELECT opponent FROM table_19789597_6 WHERE date = "July 7"
CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)
Who was the game on July 7 played against?
SELECT owner FROM table_1979203_1 WHERE callsign = "WLIW"
CREATE TABLE table_1979203_1 (owner VARCHAR, callsign VARCHAR)
what is the owner of the callsign wliw
SELECT COUNT(callsign) FROM table_1979203_1 WHERE branding = "Telemundo 47"
CREATE TABLE table_1979203_1 (callsign VARCHAR, branding VARCHAR)
how many callsigns are for the branding telemundo 47
SELECT _virtual_ FROM table_1979203_1 WHERE callsign = "WNET"
CREATE TABLE table_1979203_1 (_virtual_ VARCHAR, callsign VARCHAR)
what is the virtual callsign if is wnet
SELECT branding FROM table_1979203_1 WHERE _virtual_ = "13.1"
CREATE TABLE table_1979203_1 (branding VARCHAR, _virtual_ VARCHAR)
what is the name of the branding where the virtual is 13.1
SELECT MIN(district) FROM table_1979619_3 WHERE residence = "Newtown Square"
CREATE TABLE table_1979619_3 (district INTEGER, residence VARCHAR)
Name the district for newtown square
SELECT party FROM table_1979619_3 WHERE residence = "Bensalem"
CREATE TABLE table_1979619_3 (party VARCHAR, residence VARCHAR)
Name the party for bensalem
SELECT COUNT(term_ends) FROM table_1979619_3 WHERE residence = "Bethlehem"
CREATE TABLE table_1979619_3 (term_ends VARCHAR, residence VARCHAR)
Name the term ends for bethlehem
SELECT COUNT(district) FROM table_1979619_3 WHERE representative = "Rob Teplitz"
CREATE TABLE table_1979619_3 (district VARCHAR, representative VARCHAR)
Name the total number of districts for rob teplitz
SELECT result FROM table_19810459_1 WHERE background = "Business major"
CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)
What was the result for the contestant whose background was as a business major?
SELECT background FROM table_19810459_1 WHERE result = "11th place"
CREATE TABLE table_19810459_1 (background VARCHAR, result VARCHAR)
What was the background of the contestant whose result was 11th place?
SELECT COUNT(contestant) FROM table_19810459_1 WHERE background = "Internet dreamer"
CREATE TABLE table_19810459_1 (contestant VARCHAR, background VARCHAR)
For how many contestants was the background internet dreamer?
SELECT result FROM table_19810459_1 WHERE background = "Small business owner"
CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)
What was the result for the contestant who was a small business owner?
SELECT original_team FROM table_19810459_1 WHERE result = "10th place"
CREATE TABLE table_19810459_1 (original_team VARCHAR, result VARCHAR)
What team was the contestant who finished in 10th place originally on?
SELECT hometown FROM table_19810459_1 WHERE background = "Financial consultant"
CREATE TABLE table_19810459_1 (hometown VARCHAR, background VARCHAR)
What is the hometown of the contestant whose background is as a financial consultant?
SELECT COUNT(rating) FROM table_19805130_3 WHERE rating / SHARE(18 - 49) = 3.8 / 10
CREATE TABLE table_19805130_3 (rating VARCHAR)
If the rating/share is 3.8/10, what is the total number of rating?
SELECT COUNT(share) FROM table_19805130_3 WHERE rank__night_ = "9"
CREATE TABLE table_19805130_3 (share VARCHAR, rank__night_ VARCHAR)
If the night rank is 9, what is the total share number?
SELECT episode FROM table_19805130_3 WHERE rank__night_ = "9"
CREATE TABLE table_19805130_3 (episode VARCHAR, rank__night_ VARCHAR)
What is the name of the episode with a night rank of 9?
SELECT rating FROM table_19805130_3 WHERE rating / SHARE(18 - 49) = 2.0 / 6 AND viewers__millions_ = "5.14"
CREATE TABLE table_19805130_3 (rating VARCHAR, viewers__millions_ VARCHAR)
If the amount of viewers is 5.14 million and the rating/share is 2.0/6, what is the ranking?
SELECT writer_s_ FROM table_19852975_3 WHERE arties_disguises = "Swedish sailor"
CREATE TABLE table_19852975_3 (writer_s_ VARCHAR, arties_disguises VARCHAR)
Name the writers for swedish sailor
SELECT MIN(season__number) FROM table_19852975_3 WHERE arties_disguises = "Herr Ostropolyer, pastry chef"
CREATE TABLE table_19852975_3 (season__number INTEGER, arties_disguises VARCHAR)
Name the season number for herr ostropolyer, pastry chef
SELECT principal FROM table_1984697_85 WHERE school = "Northfield Junior-Senior High school"
CREATE TABLE table_1984697_85 (principal VARCHAR, school VARCHAR)
Name the principal of Northfield Junior-Senior High School.
SELECT school FROM table_1984697_85 WHERE city___town = "North Manchester"
CREATE TABLE table_1984697_85 (school VARCHAR, city___town VARCHAR)
What is the name of the school/s in North Manchester?
SELECT school FROM table_1984697_85 WHERE size = 604
CREATE TABLE table_1984697_85 (school VARCHAR, size VARCHAR)
Name the school/s with is size of 604.
SELECT idoe_profile FROM table_1984697_85 WHERE city___town = "North Manchester"
CREATE TABLE table_1984697_85 (idoe_profile VARCHAR, city___town VARCHAR)
What is the IDOE Profile in North Manchester?
SELECT grades FROM table_1984697_85 WHERE school = "Manchester Junior-Senior High school"
CREATE TABLE table_1984697_85 (grades VARCHAR, school VARCHAR)
What are the grades served at Manchester Junior-Senior High School?
SELECT MIN(series__number) FROM table_19852975_4 WHERE writer_s_ = "Max Ehrlich"
CREATE TABLE table_19852975_4 (series__number INTEGER, writer_s_ VARCHAR)
Writer Max Ehrlich, what is the minimum series number?
SELECT MAX(season__number) FROM table_19852975_4 WHERE writer_s_ = "Denne Bart Petitclerc"
CREATE TABLE table_19852975_4 (season__number INTEGER, writer_s_ VARCHAR)
From writer Denne Bart Petitclerc, what is the maximum season number?
SELECT COUNT(series__number) FROM table_19852975_4 WHERE writer_s_ = "Max Ehrlich"
CREATE TABLE table_19852975_4 (series__number VARCHAR, writer_s_ VARCHAR)
From writer Max Ehrlich, what is the total amount of series numbers?
SELECT winning_driver FROM table_19850806_3 WHERE rd = "3"
CREATE TABLE table_19850806_3 (winning_driver VARCHAR, rd VARCHAR)
Who is the winning driver when rd. is 3?
SELECT COUNT(winning_driver) FROM table_19850806_3 WHERE winning_team = "Bryan Herta Autosport"
CREATE TABLE table_19850806_3 (winning_driver VARCHAR, winning_team VARCHAR)
How many winning drivers are there when the winning team is Bryan herta autosport?
SELECT report FROM table_19850806_3 WHERE rd = "9"
CREATE TABLE table_19850806_3 (report VARCHAR, rd VARCHAR)
Which report is where rd. is 9?
SELECT fastest_lap FROM table_19850806_3 WHERE race = "Texas" AND winning_driver = "Dario Franchitti"
CREATE TABLE table_19850806_3 (fastest_lap VARCHAR, race VARCHAR, winning_driver VARCHAR)
Who held the fastest lap in the race in texas and dario franchitti is the winning driver?
SELECT COUNT(huckleberry_hound) FROM table_19860361_4 WHERE air_date = "1960.09.18"
CREATE TABLE table_19860361_4 (huckleberry_hound VARCHAR, air_date VARCHAR)
How many Huckleberry Hound episodes were aired on 1960.09.18?
SELECT pixie_and_dixie FROM table_19860361_3 WHERE ep = 7
CREATE TABLE table_19860361_3 (pixie_and_dixie VARCHAR, ep VARCHAR)
What is the Pixie and Dixie skit in episode 7?
SELECT yogi_bear FROM table_19860361_3 WHERE air_date = "1959.12.21"
CREATE TABLE table_19860361_3 (yogi_bear VARCHAR, air_date VARCHAR)
What is the Yogi Bear that aired on 1959.12.21?
SELECT frequency FROM table_19874169_3 WHERE branding = "YES! FM 101.1"
CREATE TABLE table_19874169_3 (frequency VARCHAR, branding VARCHAR)
From brand Yes! FM 101.1, what was the frequency?
SELECT power__kw_ FROM table_19874169_3 WHERE branding = "YES! FM 91.1 Boracay"
CREATE TABLE table_19874169_3 (power__kw_ VARCHAR, branding VARCHAR)
If the branding is Yes! FM 91.1 Boracay, what is the power?
SELECT branding FROM table_19874169_3 WHERE callsign = "DXYR"
CREATE TABLE table_19874169_3 (branding VARCHAR, callsign VARCHAR)
If the call sign is DXYR, what is the branding?
SELECT year FROM table_1986692_1 WHERE playoffs = "divisional Semifinals"
CREATE TABLE table_1986692_1 (year VARCHAR, playoffs VARCHAR)
When divisional semifinals are the playoffs what is the year?
SELECT regular_season FROM table_1986692_1 WHERE playoffs = "divisional Finals"
CREATE TABLE table_1986692_1 (regular_season VARCHAR, playoffs VARCHAR)
When divisional finals are the playoffs what is the regular season?
SELECT COUNT(division) FROM table_1986692_1 WHERE year = "1992"
CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR)
When 1992 is the year how many divisions are there?
SELECT league FROM table_1986692_1 WHERE open_cup = "Final"
CREATE TABLE table_1986692_1 (league VARCHAR, open_cup VARCHAR)
When final is the open cup what is the league?
SELECT open_cup FROM table_1986692_1 WHERE year = "1995"
CREATE TABLE table_1986692_1 (open_cup VARCHAR, year VARCHAR)
When 1995 is the year what is the open cup?
SELECT COUNT(division) FROM table_1986692_1 WHERE year = "2008"
CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR)
When 2008 is the year how many divisions are there?
SELECT MIN(stumped) FROM table_19870086_24 WHERE dismissals = 13
CREATE TABLE table_19870086_24 (stumped INTEGER, dismissals VARCHAR)
what is the least number of stumps in a game with 13 dismissals
SELECT COUNT(dismissals) FROM table_19870086_24 WHERE innings = 8
CREATE TABLE table_19870086_24 (dismissals VARCHAR, innings VARCHAR)
what is the highest number of dismissals in a match with 8 innings
SELECT COUNT(rank) FROM table_19870086_24 WHERE player = "Adam Gilchrist"
CREATE TABLE table_19870086_24 (rank VARCHAR, player VARCHAR)
what is the rank of adam gilchrist
SELECT location FROM table_1987995_5 WHERE team = "Twins"
CREATE TABLE table_1987995_5 (location VARCHAR, team VARCHAR)
Where is the ballpark of the Twins?
SELECT COUNT(location) FROM table_1987995_5 WHERE ballpark = "Memorial Stadium"
CREATE TABLE table_1987995_5 (location VARCHAR, ballpark VARCHAR)
How many locations have been used for ballparks named Memorial Stadium?
SELECT MIN(closed) FROM table_1987995_5 WHERE demod = 1994
CREATE TABLE table_1987995_5 (closed INTEGER, demod VARCHAR)
When was the park demolished in 1994 closed?
SELECT flag FROM table_19872699_1 WHERE builder = "Green Marine"
CREATE TABLE table_19872699_1 (flag VARCHAR, builder VARCHAR)
Which flag was on the Green Marine's boat?
SELECT builder FROM table_19872699_1 WHERE skipper = "Ken Read"
CREATE TABLE table_19872699_1 (builder VARCHAR, skipper VARCHAR)
Who build the boat where Ken Read was the skipper?
SELECT COUNT(flag) FROM table_19872699_1 WHERE design_firm = "Farr Yacht Design"
CREATE TABLE table_19872699_1 (flag VARCHAR, design_firm VARCHAR)
Farr Yacht Design designed boats for how many country/flags?
SELECT builder FROM table_19872699_1 WHERE design_firm = "Botin Carkeek"
CREATE TABLE table_19872699_1 (builder VARCHAR, design_firm VARCHAR)
Who were the builders of the boat designed by Botin Carkeek?
SELECT COUNT(location_s_) FROM table_19897294_10 WHERE family_families = "The Bailey Family"
CREATE TABLE table_19897294_10 (location_s_ VARCHAR, family_families VARCHAR)
In how many locations was the episode with the Bailey family filmed?
SELECT COUNT(no_in_season) FROM table_19897294_10 WHERE family_families = "The Jeans Family"
CREATE TABLE table_19897294_10 (no_in_season VARCHAR, family_families VARCHAR)
How many episodes with different season numbers had the Jeans family in them?