question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
how many result with opponent being cleveland browns | CREATE TABLE table_14951643_1 (result VARCHAR, opponent VARCHAR) | SELECT COUNT(result) FROM table_14951643_1 WHERE opponent = "Cleveland Browns" |
what's the result with opponent being at new england patriots | CREATE TABLE table_14951643_1 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_14951643_1 WHERE opponent = "at New England Patriots" |
what's the record with result being w 21–7 | CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR) | SELECT record FROM table_14951643_1 WHERE result = "W 21–7" |
what's the date with attendance being 40657 | CREATE TABLE table_14951643_1 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_14951643_1 WHERE attendance = 40657 |
Name the attendance for september 19, 1976 | CREATE TABLE table_14945881_1 (attendance INTEGER, date VARCHAR) | SELECT MIN(attendance) FROM table_14945881_1 WHERE date = "September 19, 1976" |
Name the number of record when attendance is 44023 | CREATE TABLE table_14945881_1 (record VARCHAR, attendance VARCHAR) | SELECT COUNT(record) FROM table_14945881_1 WHERE attendance = 44023 |
Name the least week for september 19, 1976 | CREATE TABLE table_14945881_1 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_14945881_1 WHERE date = "September 19, 1976" |
Name the record when attendance 42827 | CREATE TABLE table_14945881_1 (record VARCHAR, attendance VARCHAR) | SELECT record FROM table_14945881_1 WHERE attendance = 42827 |
Name the date when week is 9 | CREATE TABLE table_14945881_1 (date VARCHAR, week VARCHAR) | SELECT date FROM table_14945881_1 WHERE week = 9 |
What year was taxidermia nominated? | CREATE TABLE table_14975415_1 (year__ceremony_ VARCHAR, hungarian_title VARCHAR) | SELECT year__ceremony_ FROM table_14975415_1 WHERE hungarian_title = "Taxidermia" |
Who is the director for diary for my loves? | CREATE TABLE table_14975415_1 (director VARCHAR, english_title VARCHAR) | SELECT director FROM table_14975415_1 WHERE english_title = "Diary for My Loves" |
Was diary for my loves nominated? | CREATE TABLE table_14975415_1 (result VARCHAR, english_title VARCHAR) | SELECT result FROM table_14975415_1 WHERE english_title = "Diary for My Loves" |
Who is the director for the witman boys? | CREATE TABLE table_14975415_1 (director VARCHAR, english_title VARCHAR) | SELECT director FROM table_14975415_1 WHERE english_title = "The Witman Boys" |
Name the game site for december 12, 1965 | CREATE TABLE table_14977592_1 (game_site VARCHAR, date VARCHAR) | SELECT game_site FROM table_14977592_1 WHERE date = "December 12, 1965" |
Name the total number of game sites for chicago bears | CREATE TABLE table_14977592_1 (game_site VARCHAR, opponent VARCHAR) | SELECT COUNT(game_site) FROM table_14977592_1 WHERE opponent = "Chicago Bears" |
Name the result for november 14, 1965 | CREATE TABLE table_14977592_1 (result VARCHAR, date VARCHAR) | SELECT result FROM table_14977592_1 WHERE date = "November 14, 1965" |
Where was the game against Atlanta Falcons held? | CREATE TABLE table_14971788_1 (game_site VARCHAR, opponent VARCHAR) | SELECT game_site FROM table_14971788_1 WHERE opponent = "Atlanta Falcons" |
What date was week 2? | CREATE TABLE table_14971788_1 (date VARCHAR, week VARCHAR) | SELECT date FROM table_14971788_1 WHERE week = 2 |
Name the place of the jury of 5 | CREATE TABLE table_14977252_2 (place VARCHAR, professional_jury VARCHAR) | SELECT place FROM table_14977252_2 WHERE professional_jury = 5 |
Name the jury of 10 points | CREATE TABLE table_14977252_2 (professional_jury VARCHAR, points VARCHAR) | SELECT professional_jury FROM table_14977252_2 WHERE points = 10 |
Name the artist of 2 draw | CREATE TABLE table_14977252_2 (artist VARCHAR, draw VARCHAR) | SELECT artist FROM table_14977252_2 WHERE draw = 2 |
Name the least draw for elena dermidjean | CREATE TABLE table_14977252_2 (draw INTEGER, artist VARCHAR) | SELECT MIN(draw) FROM table_14977252_2 WHERE artist = "Elena Dermidjean" |
What was the competition when there was no competition for mens doubles? | CREATE TABLE table_15001572_1 (womens_doubles VARCHAR, mens_doubles VARCHAR) | SELECT womens_doubles FROM table_15001572_1 WHERE mens_doubles = "No competition" |
Who won the mixed doubles in 1998? | CREATE TABLE table_15001572_1 (mixed_doubles VARCHAR, year VARCHAR) | SELECT mixed_doubles FROM table_15001572_1 WHERE year = 1998 |
How many colleges did the player picked 57 attend? | CREATE TABLE table_15017024_2 (college VARCHAR, pick VARCHAR) | SELECT COUNT(college) FROM table_15017024_2 WHERE pick = 57 |
How many heights does chad henne have? | CREATE TABLE table_15017024_2 (height VARCHAR, player_name VARCHAR) | SELECT COUNT(height) FROM table_15017024_2 WHERE player_name = "Chad Henne" |
Name the recopa sudamericana 1992 for did not qualify for libertadores 1992 and round of 16 for bragantino | CREATE TABLE table_15013825_8 (recopa_sudamericana_1992 VARCHAR, team VARCHAR, copa_libertadores_1992 VARCHAR, copa_conmebol_1992 VARCHAR) | SELECT recopa_sudamericana_1992 FROM table_15013825_8 WHERE copa_libertadores_1992 = "Did not qualify" AND copa_conmebol_1992 = "Round of 16" AND team = "Bragantino" |
Name the copa libertadores 1992 for round of 16 and team of fluminense | CREATE TABLE table_15013825_8 (copa_libertadores_1992 VARCHAR, copa_conmebol_1992 VARCHAR, team VARCHAR) | SELECT copa_libertadores_1992 FROM table_15013825_8 WHERE copa_conmebol_1992 = "Round of 16" AND team = "Fluminense" |
Name the team for copa conmebol 1992 is round of 16 | CREATE TABLE table_15013825_8 (team VARCHAR, copa_conmebol_1992 VARCHAR) | SELECT team FROM table_15013825_8 WHERE copa_conmebol_1992 = "Round of 16" |
What league were they in in 2009? | CREATE TABLE table_15056103_1 (league VARCHAR, year VARCHAR) | SELECT league FROM table_15056103_1 WHERE year = 2009 |
What was the playoff result when they finished 5th, north in the regular sesason? | CREATE TABLE table_15056103_1 (playoffs VARCHAR, regular_season VARCHAR) | SELECT playoffs FROM table_15056103_1 WHERE regular_season = "5th, North" |
Which player's results were T6 in the PGA Ch., T4 in the Masters and T8 at the U.S. Open? | CREATE TABLE table_1506950_9 (player VARCHAR, us_open VARCHAR, pga_ch VARCHAR, masters VARCHAR) | SELECT player FROM table_1506950_9 WHERE pga_ch = "T6" AND masters = "T4" AND us_open = "T8" |
What is the result at the Masters for the player who finished R16 at the PGA Ch.? | CREATE TABLE table_1506950_9 (masters VARCHAR, pga_ch VARCHAR) | SELECT masters FROM table_1506950_9 WHERE pga_ch = "R16" |
What was the player's result at the U.S. Open of the player who finished 6th at the Open Ch? | CREATE TABLE table_1506950_9 (us_open VARCHAR, open_ch VARCHAR) | SELECT us_open FROM table_1506950_9 WHERE open_ch = "6th" |
The Rainbow District School Board is associated with what type? | CREATE TABLE table_1506619_1 (type VARCHAR, school_board VARCHAR) | SELECT type FROM table_1506619_1 WHERE school_board = "Rainbow District school_board" |
Where are all school boards associated with a number of elementary schools of 96? | CREATE TABLE table_1506619_1 (school_board VARCHAR, number_of_elementary_schools VARCHAR) | SELECT school_board FROM table_1506619_1 WHERE number_of_elementary_schools = 96 |
Which headquarters are associated with the school board Renfrew County Catholic District School Board? | CREATE TABLE table_1506619_1 (headquarters VARCHAR, school_board VARCHAR) | SELECT headquarters FROM table_1506619_1 WHERE school_board = "Renfrew County Catholic District school_board" |
What is the swimsuit score for the item that has 7.61 as evening gown | CREATE TABLE table_15081939_4 (swimsuit VARCHAR, evening_gown VARCHAR) | SELECT swimsuit FROM table_15081939_4 WHERE evening_gown = "7.61" |
Which province got a swimsuit score of 8.43 | CREATE TABLE table_15081939_4 (province VARCHAR, swimsuit VARCHAR) | SELECT province FROM table_15081939_4 WHERE swimsuit = "8.43" |
Which province has evening gown score of 7.61 | CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR) | SELECT province FROM table_15081939_4 WHERE evening_gown = "7.61" |
How many averages for the province with evening gown score of 8.00 | CREATE TABLE table_15081939_4 (average VARCHAR, evening_gown VARCHAR) | SELECT COUNT(average) FROM table_15081939_4 WHERE evening_gown = "8.00" |
How many provinces have evening gown score of 8.49 | CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR) | SELECT COUNT(province) FROM table_15081939_4 WHERE evening_gown = "8.49" |
which electorate is 54787 of the constituency | CREATE TABLE table_15082102_3 (constituency VARCHAR, electorate VARCHAR) | SELECT constituency FROM table_15082102_3 WHERE electorate = 54787 |
in electorate of 83850 what is the minimum s split vote | CREATE TABLE table_15082102_3 (s_spoilt_vote INTEGER, electorate VARCHAR) | SELECT MIN(s_spoilt_vote) FROM table_15082102_3 WHERE electorate = 83850 |
What is the lead percentage when the socialist is at 35.5%? | CREATE TABLE table_15125201_1 (lead VARCHAR, socialist VARCHAR) | SELECT lead FROM table_15125201_1 WHERE socialist = "35.5%" |
What was the margin of victory at the Hawaiian Open tournament? | CREATE TABLE table_1514634_2 (margin_of_victory VARCHAR, tournament VARCHAR) | SELECT margin_of_victory FROM table_1514634_2 WHERE tournament = "Hawaiian Open" |
What was the margin of victory at the Mercedes Championships? | CREATE TABLE table_1514634_2 (margin_of_victory VARCHAR, tournament VARCHAR) | SELECT margin_of_victory FROM table_1514634_2 WHERE tournament = "Mercedes Championships" |
Name the tfl-yds for no-yds 1-0 | CREATE TABLE table_15128839_22 (tfl_yds VARCHAR, no_yds VARCHAR) | SELECT tfl_yds FROM table_15128839_22 WHERE no_yds = "1-0" |
Name the solo when name is briggs, diyral | CREATE TABLE table_15128839_22 (solo VARCHAR, name VARCHAR) | SELECT solo FROM table_15128839_22 WHERE name = "Briggs, Diyral" |
Name the gp for ff being 0 and qbh being 1 | CREATE TABLE table_15128839_22 (gp VARCHAR, ff VARCHAR, qbh VARCHAR) | SELECT gp FROM table_15128839_22 WHERE ff = 0 AND qbh = 1 |
When the division is Division 2 men what is the champion score? | CREATE TABLE table_15161170_1 (champion_score VARCHAR, division VARCHAR) | SELECT champion_score FROM table_15161170_1 WHERE division = "division 2 Men" |
Name the least spirou | CREATE TABLE table_15163938_1 (spirou INTEGER) | SELECT MIN(spirou) FROM table_15163938_1 |
Name the home team when away team is kilmarnock | CREATE TABLE table_15173650_2 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_15173650_2 WHERE away_team = "Kilmarnock" |
Name the least attendance | CREATE TABLE table_15173650_2 (attendance INTEGER) | SELECT MIN(attendance) FROM table_15173650_2 |
Kitchen knives is segment a of what episode? | CREATE TABLE table_15187735_5 (episode VARCHAR, segment_a VARCHAR) | SELECT episode FROM table_15187735_5 WHERE segment_a = "Kitchen Knives" |
When segment b is dining room tables what is segment d? | CREATE TABLE table_15187735_5 (segment_d VARCHAR, segment_b VARCHAR) | SELECT segment_d FROM table_15187735_5 WHERE segment_b = "Dining Room Tables" |
When marshmallow cookies is segment b what episode is it on netflix? | CREATE TABLE table_15187735_5 (netflix VARCHAR, segment_b VARCHAR) | SELECT netflix FROM table_15187735_5 WHERE segment_b = "Marshmallow Cookies" |
When cardboard boxes is segment c what is segment a? | CREATE TABLE table_15187735_5 (segment_a VARCHAR, segment_c VARCHAR) | SELECT segment_a FROM table_15187735_5 WHERE segment_c = "Cardboard Boxes" |
Name the number of episodes for s hacksaw | CREATE TABLE table_15187735_8 (episode VARCHAR, segment_b VARCHAR) | SELECT COUNT(episode) FROM table_15187735_8 WHERE segment_b = "s Hacksaw" |
Name the number of series episode for s piston | CREATE TABLE table_15187735_8 (series_ep VARCHAR, segment_a VARCHAR) | SELECT COUNT(series_ep) FROM table_15187735_8 WHERE segment_a = "s Piston" |
Name the segment c for paint rollers | CREATE TABLE table_15187735_8 (segment_c VARCHAR, segment_b VARCHAR) | SELECT segment_c FROM table_15187735_8 WHERE segment_b = "Paint Rollers" |
Name the segment a for 8-08 | CREATE TABLE table_15187735_8 (segment_a VARCHAR, series_ep VARCHAR) | SELECT segment_a FROM table_15187735_8 WHERE series_ep = "8-08" |
Name the segment b for graphite s fly rod | CREATE TABLE table_15187735_8 (segment_b VARCHAR, segment_c VARCHAR) | SELECT segment_b FROM table_15187735_8 WHERE segment_c = "Graphite s Fly Rod" |
Who won the race at Magny-Cours | CREATE TABLE table_15187794_1 (race_winner VARCHAR, circuit VARCHAR) | SELECT race_winner FROM table_15187794_1 WHERE circuit = "Magny-Cours" |
Which round was the circuit Assen | CREATE TABLE table_15187794_1 (round VARCHAR, circuit VARCHAR) | SELECT round FROM table_15187794_1 WHERE circuit = "Assen" |
How many people won in No. 12 | CREATE TABLE table_15187794_1 (race_winner VARCHAR, no VARCHAR) | SELECT COUNT(race_winner) FROM table_15187794_1 WHERE no = 12 |
Which countries won by 9 strokes? | CREATE TABLE table_1520559_1 (country VARCHAR, margin_of_victory VARCHAR) | SELECT country FROM table_1520559_1 WHERE margin_of_victory = "9 strokes" |
What purses had a winners share equal to $428650? | CREATE TABLE table_1520559_1 (purse___$__ VARCHAR, winners_share__$_ VARCHAR) | SELECT purse___$__ FROM table_1520559_1 WHERE winners_share__$_ = 428650 |
At what venues did Lorena Ochoa win the championship? | CREATE TABLE table_1520559_1 (venue VARCHAR, champion VARCHAR) | SELECT venue FROM table_1520559_1 WHERE champion = "Lorena Ochoa" |
What episode number is presented by Ben Okri ? | CREATE TABLE table_15211468_3 (episode_no VARCHAR, presenter VARCHAR) | SELECT episode_no FROM table_15211468_3 WHERE presenter = "Ben Okri" |
What was the UK broadcast date for the episode presented by Buck Henry? | CREATE TABLE table_15211468_3 (uk_broadcast_date VARCHAR, presenter VARCHAR) | SELECT uk_broadcast_date FROM table_15211468_3 WHERE presenter = "Buck Henry" |
What is the input clock (mhz) for s-spec number sk096? | CREATE TABLE table_15261_1 (input_clock__mhz_ VARCHAR, s_spec_number VARCHAR) | SELECT input_clock__mhz_ FROM table_15261_1 WHERE s_spec_number = "SK096" |
What is the voltage range (v) if the clock multiplier is 3x or 2x mode and part number is a80486dx4wb-100? | CREATE TABLE table_15261_1 (voltage_range__v_ VARCHAR, clock_multiplier VARCHAR, part_number VARCHAR) | SELECT COUNT(voltage_range__v_) FROM table_15261_1 WHERE clock_multiplier = "3X or 2X mode" AND part_number = "A80486DX4WB-100" |
What is the part number for s-spec number sk096? | CREATE TABLE table_15261_1 (part_number VARCHAR, s_spec_number VARCHAR) | SELECT part_number FROM table_15261_1 WHERE s_spec_number = "SK096" |
What is the clock multiplier if the voltage range (v) is 3.3 - 3.6; input clock (mhz) is 33 x 3 / 50 x 2; and part number is a80486dx4-100? | CREATE TABLE table_15261_1 (clock_multiplier VARCHAR, part_number VARCHAR, voltage_range__v_ VARCHAR, input_clock__mhz_ VARCHAR) | SELECT clock_multiplier FROM table_15261_1 WHERE voltage_range__v_ = "3.3 - 3.6" AND input_clock__mhz_ = "33 X 3 / 50 X 2" AND part_number = "A80486DX4-100" |
What is the processor speed (mhz) for part number a80486dx4-75? | CREATE TABLE table_15261_1 (processor_speed__mhz_ VARCHAR, part_number VARCHAR) | SELECT COUNT(processor_speed__mhz_) FROM table_15261_1 WHERE part_number = "A80486DX4-75" |
Tell me the least amount of democratic colation | CREATE TABLE table_15306124_1 (democratic_coalition INTEGER) | SELECT MIN(democratic_coalition) FROM table_15306124_1 |
What is the least amount of league of communists where municipality is mojkovac | CREATE TABLE table_15306124_1 (league_of_communists INTEGER, municipality VARCHAR) | SELECT MIN(league_of_communists) FROM table_15306124_1 WHERE municipality = "Mojkovac" |
How many league of communists have the municipality of bar? | CREATE TABLE table_15306124_1 (league_of_communists VARCHAR, municipality VARCHAR) | SELECT COUNT(league_of_communists) FROM table_15306124_1 WHERE municipality = "Bar" |
How many league of communists have the people's party at 7? | CREATE TABLE table_15306124_1 (league_of_communists VARCHAR, peoples_party VARCHAR) | SELECT COUNT(league_of_communists) FROM table_15306124_1 WHERE peoples_party = 7 |
Name the poles for 2011 | CREATE TABLE table_15327489_1 (poles VARCHAR, year VARCHAR) | SELECT poles FROM table_15327489_1 WHERE year = 2011 |
Name the rdiers for jir team scot motogp | CREATE TABLE table_15327489_1 (riders VARCHAR, team_name VARCHAR) | SELECT riders FROM table_15327489_1 WHERE team_name = "JiR Team Scot MotoGP" |
Name the class for makoto tamada and races is 17 | CREATE TABLE table_15327489_1 (class VARCHAR, riders VARCHAR, races VARCHAR) | SELECT class FROM table_15327489_1 WHERE riders = "Makoto Tamada" AND races = "17" |
Name the most wins | CREATE TABLE table_15327489_1 (wins INTEGER) | SELECT MIN(wins) FROM table_15327489_1 |
Which college did Dean Kirkland go to | CREATE TABLE table_15353123_1 (college VARCHAR, player VARCHAR) | SELECT college FROM table_15353123_1 WHERE player = "Dean Kirkland" |
Which player went to Pittsburg State | CREATE TABLE table_15353123_1 (player VARCHAR, college VARCHAR) | SELECT player FROM table_15353123_1 WHERE college = "Pittsburg State" |
Who was the highest pick | CREATE TABLE table_15353123_1 (pick__number INTEGER) | SELECT MIN(pick__number) FROM table_15353123_1 |
Who was the highest picked defensive end | CREATE TABLE table_15353123_1 (pick__number INTEGER, position VARCHAR) | SELECT MAX(pick__number) FROM table_15353123_1 WHERE position = "Defensive end" |
How many players named Dean Kirkland were picked | CREATE TABLE table_15353123_1 (pick__number VARCHAR, player VARCHAR) | SELECT COUNT(pick__number) FROM table_15353123_1 WHERE player = "Dean Kirkland" |
How many metropolitan boroughs have dorridge as a station? | CREATE TABLE table_15366849_1 (c_ VARCHAR, metropolitan_borough_ VARCHAR, station VARCHAR) | SELECT COUNT(metropolitan_borough_)[c_] FROM table_15366849_1 WHERE station = "Dorridge" |
What's the biggest zone? | CREATE TABLE table_15366849_1 (zone INTEGER) | SELECT MAX(zone) FROM table_15366849_1 |
What is the mass of the element with a nuclide that is 169 tm? | CREATE TABLE table_15366768_1 (isotopic_mass___u__ VARCHAR, nuclide VARCHAR) | SELECT isotopic_mass___u__ FROM table_15366768_1 WHERE nuclide = "169 Tm" |
What is the total number of N for the element with nuclide of 141 pr? | CREATE TABLE table_15366768_1 (n___n__ VARCHAR, nuclide VARCHAR) | SELECT COUNT(n___n__) FROM table_15366768_1 WHERE nuclide = "141 Pr" |
What is the name of the element with isotopic mass of 158.925 34(2)? | CREATE TABLE table_15366768_1 (element VARCHAR, isotopic_mass___u__ VARCHAR) | SELECT element FROM table_15366768_1 WHERE isotopic_mass___u__ = "158.925 34(2)" |
The theme year they were born belongs to what artist? | CREATE TABLE table_15383430_1 (original_artist VARCHAR, theme VARCHAR) | SELECT original_artist FROM table_15383430_1 WHERE theme = "Year They Were Born" |
How many songs were sung by queen? | CREATE TABLE table_15383430_1 (result VARCHAR, original_artist VARCHAR) | SELECT COUNT(result) FROM table_15383430_1 WHERE original_artist = "Queen" |
Name the glass bulb color for ordinary | CREATE TABLE table_1538516_1 (glass_bulb_color VARCHAR, temperature_classification VARCHAR) | SELECT glass_bulb_color FROM table_1538516_1 WHERE temperature_classification = "Ordinary" |
Name the most ceiling temperature for intermediate | CREATE TABLE table_1538516_1 (maximum_ceiling_temperature VARCHAR, temperature_classification VARCHAR) | SELECT maximum_ceiling_temperature FROM table_1538516_1 WHERE temperature_classification = "Intermediate" |
Name the most ceiling temperature for very extra high | CREATE TABLE table_1538516_1 (maximum_ceiling_temperature VARCHAR, temperature_classification VARCHAR) | SELECT maximum_ceiling_temperature FROM table_1538516_1 WHERE temperature_classification = "Very Extra High" |
When did the playoffs reached Conference Finals? | CREATE TABLE table_15409403_1 (year VARCHAR, playoffs VARCHAR) | SELECT year FROM table_15409403_1 WHERE playoffs = "Conference Finals" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.