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