question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What's Fitchburg State University's LEC sport?
CREATE TABLE table_1974545_2 (lec_sport VARCHAR, institution VARCHAR)
{ "SQL_Query": "SELECT lec_sport FROM table_1974545_2 WHERE institution = \"Fitchburg State University\"" }
Where is the school whose students are nicknamed falcons located?
CREATE TABLE table_1974545_2 (location VARCHAR, nickname VARCHAR)
{ "SQL_Query": "SELECT location FROM table_1974545_2 WHERE nickname = \"Falcons\"" }
What's Salem State University's primary conference?
CREATE TABLE table_1974545_2 (primary_conference VARCHAR, institution VARCHAR)
{ "SQL_Query": "SELECT primary_conference FROM table_1974545_2 WHERE institution = \"Salem State University\"" }
Name the incumbent for north carolina 9
CREATE TABLE table_19753079_36 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_19753079_36 WHERE district = \"North Carolina 9\"" }
Name the total party for north carolina 7
CREATE TABLE table_19753079_36 (party VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT COUNT(party) FROM table_19753079_36 WHERE district = \"North Carolina 7\"" }
Name the incumbent for sue myrick (r) 69.0% jeff doctor (d) 31.0%
CREATE TABLE table_19753079_36 (incumbent VARCHAR, candidates VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_19753079_36 WHERE candidates = \"Sue Myrick (R) 69.0% Jeff Doctor (D) 31.0%\"" }
Name the result for north carolina 7
CREATE TABLE table_19753079_36 (result VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT result FROM table_19753079_36 WHERE district = \"North Carolina 7\"" }
What's Babson College's enrollment?
CREATE TABLE table_1974782_1 (enrollment INTEGER, institution VARCHAR)
{ "SQL_Query": "SELECT MAX(enrollment) FROM table_1974782_1 WHERE institution = \"Babson College\"" }
When has Clark University joined the Conference?
CREATE TABLE table_1974782_1 (joined INTEGER, institution VARCHAR)
{ "SQL_Query": "SELECT MAX(joined) FROM table_1974782_1 WHERE institution = \"Clark University\"" }
What's the type of the school in New London, Connecticut?
CREATE TABLE table_1974782_1 (type VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT type FROM table_1974782_1 WHERE location = \"New London, Connecticut\"" }
When was the school in Springfield, Massachusetts founded?
CREATE TABLE table_1974782_1 (founded INTEGER, location VARCHAR)
{ "SQL_Query": "SELECT MAX(founded) FROM table_1974782_1 WHERE location = \"Springfield, Massachusetts\"" }
What school is located in Worcester, Massachusetts?
CREATE TABLE table_1974782_1 (institution VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT institution FROM table_1974782_1 WHERE location = \"Worcester, Massachusetts\"" }
Who are the candidates in Florida 13 district?
CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_19753079_12 WHERE district = \"Florida 13\"" }
How many different pairs of candidates were there for the district first elected in 1988?
CREATE TABLE table_19753079_12 (candidates VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT COUNT(candidates) FROM table_19753079_12 WHERE first_elected = 1988" }
Who were candidates in Florida 10 district?
CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_19753079_12 WHERE district = \"Florida 10\"" }
What party got elected in Florida 9 district?
CREATE TABLE table_19753079_12 (party VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT party FROM table_19753079_12 WHERE district = \"Florida 9\"" }
What is the first round that had #67 the racer's group with the fastest lap?
CREATE TABLE table_19751479_4 (rnd INTEGER, fastest_lap VARCHAR)
{ "SQL_Query": "SELECT MIN(rnd) FROM table_19751479_4 WHERE fastest_lap = \"#67 The Racer's Group\"" }
How many races had #99 gainsco/bob stallings racing in round 10?
CREATE TABLE table_19751479_4 (fastest_lap VARCHAR, rnd VARCHAR, pole_position VARCHAR)
{ "SQL_Query": "SELECT COUNT(fastest_lap) FROM table_19751479_4 WHERE rnd = 10 AND pole_position = \"#99 GAINSCO/Bob Stallings Racing\"" }
What incumbent was first elected in 2009?
CREATE TABLE table_19753079_8 (incumbent VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_19753079_8 WHERE first_elected = 2009" }
How many were first elected in California 7?
CREATE TABLE table_19753079_8 (first_elected VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT first_elected FROM table_19753079_8 WHERE district = \"California 7\"" }
What district did George Miller belong to?
CREATE TABLE table_19753079_8 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_19753079_8 WHERE incumbent = \"George Miller\"" }
When mark critz (d) 50.8% tim burns (r) 49.2% are the candidates what is the party?
CREATE TABLE table_19753079_41 (party VARCHAR, candidates VARCHAR)
{ "SQL_Query": "SELECT party FROM table_19753079_41 WHERE candidates = \"Mark Critz (D) 50.8% Tim Burns (R) 49.2%\"" }
When chris carney is the incumbent what are the results?
CREATE TABLE table_19753079_41 (result VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_19753079_41 WHERE incumbent = \"Chris Carney\"" }
When 1994 is the first elected what is the district?
CREATE TABLE table_19753079_41 (district VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT district FROM table_19753079_41 WHERE first_elected = 1994" }
When pennsylvania 3 is the district who is the incumbent?
CREATE TABLE table_19753079_41 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_19753079_41 WHERE district = \"Pennsylvania 3\"" }
When 1984 is the first elected who are the candidates?
CREATE TABLE table_19753079_41 (candidates VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_19753079_41 WHERE first_elected = 1984" }
What is Salva Ortega's result?
CREATE TABLE table_19763199_4 (result VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT result FROM table_19763199_4 WHERE artist = \"Salva Ortega\"" }
How many televotes are there where there is 4 jury votes?
CREATE TABLE table_19763199_4 (televotes VARCHAR, jury_votes VARCHAR)
{ "SQL_Query": "SELECT televotes FROM table_19763199_4 WHERE jury_votes = 4" }
How many jury votes for the televote of 7?
CREATE TABLE table_19763199_4 (jury_votes VARCHAR, televotes VARCHAR)
{ "SQL_Query": "SELECT jury_votes FROM table_19763199_4 WHERE televotes = 7" }
What is the result for Normativa Vigente?
CREATE TABLE table_19763199_3 (result VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT result FROM table_19763199_3 WHERE artist = \"Normativa Vigente\"" }
What song has 24 votes?
CREATE TABLE table_19763199_3 (song VARCHAR, total_votes VARCHAR)
{ "SQL_Query": "SELECT song FROM table_19763199_3 WHERE total_votes = 24" }
What is the least total votes?
CREATE TABLE table_19763199_3 (total_votes INTEGER)
{ "SQL_Query": "SELECT MIN(total_votes) FROM table_19763199_3" }
How many votes does Carlos Ferrer Eai have?
CREATE TABLE table_19763199_3 (total_votes VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT total_votes FROM table_19763199_3 WHERE artist = \"Carlos Ferrer EAI\"" }
How many players are on this list?
CREATE TABLE table_197638_6 (_number INTEGER)
{ "SQL_Query": "SELECT MAX(_number) FROM table_197638_6" }
Who won the French Open in 1999?
CREATE TABLE table_197638_6 (player VARCHAR, french_open VARCHAR)
{ "SQL_Query": "SELECT player FROM table_197638_6 WHERE french_open = 1999" }
Who won the US Open in 1937?
CREATE TABLE table_197638_6 (player VARCHAR, us_open VARCHAR)
{ "SQL_Query": "SELECT player FROM table_197638_6 WHERE us_open = 1937" }
How many times did Roy Emerson win the Australian Open?
CREATE TABLE table_197638_6 (australian_open VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(australian_open) FROM table_197638_6 WHERE player = \"Roy Emerson\"" }
At what age did Roy Emerson complete the Grand Slam?
CREATE TABLE table_197638_6 (age INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT MAX(age) FROM table_197638_6 WHERE player = \"Roy Emerson\"" }
Name the least rank for 2
CREATE TABLE table_19764939_1 (rank INTEGER, total VARCHAR)
{ "SQL_Query": "SELECT MIN(rank) FROM table_19764939_1 WHERE total = 2" }
Name the total for jamie carragher
CREATE TABLE table_19764939_1 (total VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT total FROM table_19764939_1 WHERE player = \"Jamie Carragher\"" }
Name the total number of club worl cup for djibril cisse
CREATE TABLE table_19764939_1 (club_world_cup VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(club_world_cup) FROM table_19764939_1 WHERE player = \"Djibril Cisse\"" }
What's the post code of the county with the Chinese name 潜山县 / 潛山縣?
CREATE TABLE table_1976898_1 (post_code INTEGER, chinese_name__simplified___traditional_ VARCHAR)
{ "SQL_Query": "SELECT MIN(post_code) FROM table_1976898_1 WHERE chinese_name__simplified___traditional_ = \"潜山县 / 潛山縣\"" }
What's the English name of the county called 太湖县 / 太湖縣 in Chinese?
CREATE TABLE table_1976898_1 (english_name VARCHAR, chinese_name__simplified___traditional_ VARCHAR)
{ "SQL_Query": "SELECT english_name FROM table_1976898_1 WHERE chinese_name__simplified___traditional_ = \"太湖县 / 太湖縣\"" }
What's the English name of the county with a postcode 246400?
CREATE TABLE table_1976898_1 (english_name VARCHAR, post_code VARCHAR)
{ "SQL_Query": "SELECT english_name FROM table_1976898_1 WHERE post_code = 246400" }
What's the Chinese (simplified/traditional) name of Susong County?
CREATE TABLE table_1976898_1 (chinese_name__simplified___traditional_ VARCHAR, english_name VARCHAR)
{ "SQL_Query": "SELECT chinese_name__simplified___traditional_ FROM table_1976898_1 WHERE english_name = \"Susong County\"" }
What's the Pinyin name of the county with a postcode 246500?
CREATE TABLE table_1976898_1 (pinyin VARCHAR, post_code VARCHAR)
{ "SQL_Query": "SELECT pinyin FROM table_1976898_1 WHERE post_code = 246500" }
On how many different dates was a game against Houston played?
CREATE TABLE table_19778010_5 (date VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT COUNT(date) FROM table_19778010_5 WHERE opponent = \"Houston\"" }
How many different players did the high assists in games where the high rebounds were done by Sales (10)?
CREATE TABLE table_19778010_5 (high_assists VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_assists) FROM table_19778010_5 WHERE high_rebounds = \"Sales (10)\"" }
What's the number of the game played on June 22?
CREATE TABLE table_19778010_5 (game INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_19778010_5 WHERE date = \"June 22\"" }
Who was game number 8 played against?
CREATE TABLE table_19778010_5 (opponent VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_19778010_5 WHERE game = 8" }
Who did the high rebounds in the game in which five players (3) did the high assists?
CREATE TABLE table_19778010_5 (high_rebounds VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_19778010_5 WHERE high_assists = \"Five Players (3)\"" }
What are all the conjugated forms of the verb where the el/ ella/usted verb is piense?
CREATE TABLE table_1977630_2 (nosotros___nosotras VARCHAR, él___ella___usted VARCHAR)
{ "SQL_Query": "SELECT nosotros___nosotras FROM table_1977630_2 WHERE él___ella___usted = \"piense\"" }
What are all the conjugated forms of the verb moler where the vosotros / vosotras is moláis for the yo tense?
CREATE TABLE table_1977630_2 (yo VARCHAR, vosotros___vosotras VARCHAR)
{ "SQL_Query": "SELECT yo FROM table_1977630_2 WHERE vosotros___vosotras = \"moláis\"" }
how many verbs have the yo form as sienta?
CREATE TABLE table_1977630_2 (verbs VARCHAR, yo VARCHAR)
{ "SQL_Query": "SELECT COUNT(verbs) FROM table_1977630_2 WHERE yo = \"sienta\"" }
What us the conjucated form(s) of el/ella/ usted when the Vos (*) is muelas / molás?
CREATE TABLE table_1977630_2 (él___ella___usted VARCHAR, vos__ VARCHAR, _ VARCHAR)
{ "SQL_Query": "SELECT él___ella___usted FROM table_1977630_2 WHERE vos__ * _ = \"muelas / molás\"" }
What are the forms of the conjucated vos(*) where él / ella / usted is muela
CREATE TABLE table_1977630_2 (vos__ VARCHAR, _ VARCHAR, él___ella___usted VARCHAR)
{ "SQL_Query": "SELECT vos__ * _ FROM table_1977630_2 WHERE él___ella___usted = \"muela\"" }
How many have the Till Agra of 500?
CREATE TABLE table_19787093_1 (till_mathura VARCHAR, till_agra VARCHAR)
{ "SQL_Query": "SELECT COUNT(till_mathura) FROM table_19787093_1 WHERE till_agra = 500" }
What kind of vehicle is the agra 1050?
CREATE TABLE table_19787093_1 (vehicle_category VARCHAR, till_agra VARCHAR)
{ "SQL_Query": "SELECT vehicle_category FROM table_19787093_1 WHERE till_agra = 1050" }
If the till aligarh is 150, what the mac till mathura?
CREATE TABLE table_19787093_1 (till_mathura INTEGER, till_aligarh VARCHAR)
{ "SQL_Query": "SELECT MAX(till_mathura) FROM table_19787093_1 WHERE till_aligarh = 150" }
If the till agra is 1050, what is the max round trip?
CREATE TABLE table_19787093_1 (for_round_trip INTEGER, till_agra VARCHAR)
{ "SQL_Query": "SELECT MAX(for_round_trip) FROM table_19787093_1 WHERE till_agra = 1050" }
If the vehicle category is multi-axle vehicle, what is the till aligarh?
CREATE TABLE table_19787093_1 (till_aligarh INTEGER, vehicle_category VARCHAR)
{ "SQL_Query": "SELECT MIN(till_aligarh) FROM table_19787093_1 WHERE vehicle_category = \"Multi-axle Vehicle\"" }
What's the lowest number of a game where S. Johnson (3) did the most high assists?
CREATE TABLE table_19789597_6 (game INTEGER, high_assists VARCHAR)
{ "SQL_Query": "SELECT MIN(game) FROM table_19789597_6 WHERE high_assists = \"S. Johnson (3)\"" }
Who was the game on July 12 played against?
CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_19789597_6 WHERE date = \"July 12\"" }
What was the record in the game where McWilliams (8) did the most high rebounds?
CREATE TABLE table_19789597_6 (record VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT record FROM table_19789597_6 WHERE high_rebounds = \"McWilliams (8)\"" }
Who was the game on July 7 played against?
CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_19789597_6 WHERE date = \"July 7\"" }
what is the owner of the callsign wliw
CREATE TABLE table_1979203_1 (owner VARCHAR, callsign VARCHAR)
{ "SQL_Query": "SELECT owner FROM table_1979203_1 WHERE callsign = \"WLIW\"" }
how many callsigns are for the branding telemundo 47
CREATE TABLE table_1979203_1 (callsign VARCHAR, branding VARCHAR)
{ "SQL_Query": "SELECT COUNT(callsign) FROM table_1979203_1 WHERE branding = \"Telemundo 47\"" }
what is the virtual callsign if is wnet
CREATE TABLE table_1979203_1 (_virtual_ VARCHAR, callsign VARCHAR)
{ "SQL_Query": "SELECT _virtual_ FROM table_1979203_1 WHERE callsign = \"WNET\"" }
what is the name of the branding where the virtual is 13.1
CREATE TABLE table_1979203_1 (branding VARCHAR, _virtual_ VARCHAR)
{ "SQL_Query": "SELECT branding FROM table_1979203_1 WHERE _virtual_ = \"13.1\"" }
Name the district for newtown square
CREATE TABLE table_1979619_3 (district INTEGER, residence VARCHAR)
{ "SQL_Query": "SELECT MIN(district) FROM table_1979619_3 WHERE residence = \"Newtown Square\"" }
Name the party for bensalem
CREATE TABLE table_1979619_3 (party VARCHAR, residence VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1979619_3 WHERE residence = \"Bensalem\"" }
Name the term ends for bethlehem
CREATE TABLE table_1979619_3 (term_ends VARCHAR, residence VARCHAR)
{ "SQL_Query": "SELECT COUNT(term_ends) FROM table_1979619_3 WHERE residence = \"Bethlehem\"" }
Name the total number of districts for rob teplitz
CREATE TABLE table_1979619_3 (district VARCHAR, representative VARCHAR)
{ "SQL_Query": "SELECT COUNT(district) FROM table_1979619_3 WHERE representative = \"Rob Teplitz\"" }
What was the result for the contestant whose background was as a business major?
CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)
{ "SQL_Query": "SELECT result FROM table_19810459_1 WHERE background = \"Business major\"" }
What was the background of the contestant whose result was 11th place?
CREATE TABLE table_19810459_1 (background VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT background FROM table_19810459_1 WHERE result = \"11th place\"" }
For how many contestants was the background internet dreamer?
CREATE TABLE table_19810459_1 (contestant VARCHAR, background VARCHAR)
{ "SQL_Query": "SELECT COUNT(contestant) FROM table_19810459_1 WHERE background = \"Internet dreamer\"" }
What was the result for the contestant who was a small business owner?
CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)
{ "SQL_Query": "SELECT result FROM table_19810459_1 WHERE background = \"Small business owner\"" }
What team was the contestant who finished in 10th place originally on?
CREATE TABLE table_19810459_1 (original_team VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT original_team FROM table_19810459_1 WHERE result = \"10th place\"" }
What is the hometown of the contestant whose background is as a financial consultant?
CREATE TABLE table_19810459_1 (hometown VARCHAR, background VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_19810459_1 WHERE background = \"Financial consultant\"" }
If the rating/share is 3.8/10, what is the total number of rating?
CREATE TABLE table_19805130_3 (rating VARCHAR)
{ "SQL_Query": "SELECT COUNT(rating) FROM table_19805130_3 WHERE rating / SHARE(18 - 49) = 3.8 / 10" }
If the night rank is 9, what is the total share number?
CREATE TABLE table_19805130_3 (share VARCHAR, rank__night_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(share) FROM table_19805130_3 WHERE rank__night_ = \"9\"" }
What is the name of the episode with a night rank of 9?
CREATE TABLE table_19805130_3 (episode VARCHAR, rank__night_ VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_19805130_3 WHERE rank__night_ = \"9\"" }
If the amount of viewers is 5.14 million and the rating/share is 2.0/6, what is the ranking?
CREATE TABLE table_19805130_3 (rating VARCHAR, viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT rating FROM table_19805130_3 WHERE rating / SHARE(18 - 49) = 2.0 / 6 AND viewers__millions_ = \"5.14\"" }
Name the writers for swedish sailor
CREATE TABLE table_19852975_3 (writer_s_ VARCHAR, arties_disguises VARCHAR)
{ "SQL_Query": "SELECT writer_s_ FROM table_19852975_3 WHERE arties_disguises = \"Swedish sailor\"" }
Name the season number for herr ostropolyer, pastry chef
CREATE TABLE table_19852975_3 (season__number INTEGER, arties_disguises VARCHAR)
{ "SQL_Query": "SELECT MIN(season__number) FROM table_19852975_3 WHERE arties_disguises = \"Herr Ostropolyer, pastry chef\"" }
Name the principal of Northfield Junior-Senior High School.
CREATE TABLE table_1984697_85 (principal VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT principal FROM table_1984697_85 WHERE school = \"Northfield Junior-Senior High school\"" }
What is the name of the school/s in North Manchester?
CREATE TABLE table_1984697_85 (school VARCHAR, city___town VARCHAR)
{ "SQL_Query": "SELECT school FROM table_1984697_85 WHERE city___town = \"North Manchester\"" }
Name the school/s with is size of 604.
CREATE TABLE table_1984697_85 (school VARCHAR, size VARCHAR)
{ "SQL_Query": "SELECT school FROM table_1984697_85 WHERE size = 604" }
What is the IDOE Profile in North Manchester?
CREATE TABLE table_1984697_85 (idoe_profile VARCHAR, city___town VARCHAR)
{ "SQL_Query": "SELECT idoe_profile FROM table_1984697_85 WHERE city___town = \"North Manchester\"" }
What are the grades served at Manchester Junior-Senior High School?
CREATE TABLE table_1984697_85 (grades VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT grades FROM table_1984697_85 WHERE school = \"Manchester Junior-Senior High school\"" }
Writer Max Ehrlich, what is the minimum series number?
CREATE TABLE table_19852975_4 (series__number INTEGER, writer_s_ VARCHAR)
{ "SQL_Query": "SELECT MIN(series__number) FROM table_19852975_4 WHERE writer_s_ = \"Max Ehrlich\"" }
From writer Denne Bart Petitclerc, what is the maximum season number?
CREATE TABLE table_19852975_4 (season__number INTEGER, writer_s_ VARCHAR)
{ "SQL_Query": "SELECT MAX(season__number) FROM table_19852975_4 WHERE writer_s_ = \"Denne Bart Petitclerc\"" }
From writer Max Ehrlich, what is the total amount of series numbers?
CREATE TABLE table_19852975_4 (series__number VARCHAR, writer_s_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(series__number) FROM table_19852975_4 WHERE writer_s_ = \"Max Ehrlich\"" }
Who is the winning driver when rd. is 3?
CREATE TABLE table_19850806_3 (winning_driver VARCHAR, rd VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_19850806_3 WHERE rd = \"3\"" }
How many winning drivers are there when the winning team is Bryan herta autosport?
CREATE TABLE table_19850806_3 (winning_driver VARCHAR, winning_team VARCHAR)
{ "SQL_Query": "SELECT COUNT(winning_driver) FROM table_19850806_3 WHERE winning_team = \"Bryan Herta Autosport\"" }
Which report is where rd. is 9?
CREATE TABLE table_19850806_3 (report VARCHAR, rd VARCHAR)
{ "SQL_Query": "SELECT report FROM table_19850806_3 WHERE rd = \"9\"" }
Who held the fastest lap in the race in texas and dario franchitti is the winning driver?
CREATE TABLE table_19850806_3 (fastest_lap VARCHAR, race VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT fastest_lap FROM table_19850806_3 WHERE race = \"Texas\" AND winning_driver = \"Dario Franchitti\"" }
How many Huckleberry Hound episodes were aired on 1960.09.18?
CREATE TABLE table_19860361_4 (huckleberry_hound VARCHAR, air_date VARCHAR)
{ "SQL_Query": "SELECT COUNT(huckleberry_hound) FROM table_19860361_4 WHERE air_date = \"1960.09.18\"" }
What is the Pixie and Dixie skit in episode 7?
CREATE TABLE table_19860361_3 (pixie_and_dixie VARCHAR, ep VARCHAR)
{ "SQL_Query": "SELECT pixie_and_dixie FROM table_19860361_3 WHERE ep = 7" }
What is the Yogi Bear that aired on 1959.12.21?
CREATE TABLE table_19860361_3 (yogi_bear VARCHAR, air_date VARCHAR)
{ "SQL_Query": "SELECT yogi_bear FROM table_19860361_3 WHERE air_date = \"1959.12.21\"" }