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