question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the position when drafted is 1974,r11,p11? | CREATE TABLE table_1198175_1 (position VARCHAR, drafted VARCHAR) | SELECT position FROM table_1198175_1 WHERE drafted = "1974,R11,P11" |
In which year was the Weight 170? | CREATE TABLE table_12032893_1 (year VARCHAR, weight VARCHAR) | SELECT year FROM table_12032893_1 WHERE weight = 170 |
What number (#) is associated with the Name Ron Baxter? | CREATE TABLE table_12032893_1 (_number VARCHAR, name VARCHAR) | SELECT COUNT(_number) FROM table_12032893_1 WHERE name = "Ron Baxter" |
Crockett High School had which number(#)? | CREATE TABLE table_12032893_1 (_number VARCHAR, high_school VARCHAR) | SELECT _number FROM table_12032893_1 WHERE high_school = "Crockett" |
Which home town was the high school Catholic University located in? | CREATE TABLE table_12032893_1 (home_town VARCHAR, high_school VARCHAR) | SELECT home_town FROM table_12032893_1 WHERE high_school = "Catholic University" |
How many years have the home town of Baton Rouge, LA? | CREATE TABLE table_12032893_1 (year VARCHAR, home_town VARCHAR) | SELECT COUNT(year) FROM table_12032893_1 WHERE home_town = "Baton Rouge, LA" |
What height was the forward position at Crockett High School? | CREATE TABLE table_12032893_1 (height VARCHAR, position VARCHAR, high_school VARCHAR) | SELECT height FROM table_12032893_1 WHERE position = "Forward" AND high_school = "Crockett" |
What are the commissioned for scotts, greenock and chieftain? | CREATE TABLE table_1206583_2 (commissioned VARCHAR, builder VARCHAR, name VARCHAR) | SELECT commissioned FROM table_1206583_2 WHERE builder = "Scotts, Greenock" AND name = "Chieftain" |
What is the builder launched 30 october 1944? | CREATE TABLE table_1206583_2 (builder VARCHAR, launched VARCHAR) | SELECT builder FROM table_1206583_2 WHERE launched = "30 October 1944" |
what is the minimum voted no where percent no is 56.6 | CREATE TABLE table_120778_2 (voted_no INTEGER, percent_no VARCHAR) | SELECT MIN(voted_no) FROM table_120778_2 WHERE percent_no = "56.6" |
what's the percent yes where voted yes is 2410119 | CREATE TABLE table_120778_2 (percent_yes VARCHAR, voted_yes VARCHAR) | SELECT percent_yes FROM table_120778_2 WHERE voted_yes = 2410119 |
what's the jurisdiction where percent yes is 43.4 | CREATE TABLE table_120778_2 (jurisdiction VARCHAR, percent_yes VARCHAR) | SELECT jurisdiction FROM table_120778_2 WHERE percent_yes = "43.4" |
what is the minimum voted yes where percent no is 68.2 | CREATE TABLE table_120778_2 (voted_yes INTEGER, percent_no VARCHAR) | SELECT MIN(voted_yes) FROM table_120778_2 WHERE percent_no = "68.2" |
what's the jurisdiction where voted no is 322971 | CREATE TABLE table_120778_2 (jurisdiction VARCHAR, voted_no VARCHAR) | SELECT jurisdiction FROM table_120778_2 WHERE voted_no = 322971 |
what's the date of completion where success is yes | CREATE TABLE table_12078626_1 (date_of_completion VARCHAR, success VARCHAR) | SELECT date_of_completion FROM table_12078626_1 WHERE success = "Yes" |
what's the deadline for completion where description is iphone recall within the first 3 months of release | CREATE TABLE table_12078626_1 (deadline_for_completion VARCHAR, description VARCHAR) | SELECT deadline_for_completion FROM table_12078626_1 WHERE description = "iPhone recall within the first 3 months of release" |
what's the success where date of completion is september 28, 2007 | CREATE TABLE table_12078626_1 (success VARCHAR, date_of_completion VARCHAR) | SELECT success FROM table_12078626_1 WHERE date_of_completion = "September 28, 2007" |
what's the date of completion where deadline for completion is september 30, 2007 | CREATE TABLE table_12078626_1 (date_of_completion VARCHAR, deadline_for_completion VARCHAR) | SELECT date_of_completion FROM table_12078626_1 WHERE deadline_for_completion = "September 30, 2007" |
what is the total number of deadline for completion where description is facebook becomes a publicly traded company | CREATE TABLE table_12078626_1 (deadline_for_completion VARCHAR, description VARCHAR) | SELECT COUNT(deadline_for_completion) FROM table_12078626_1 WHERE description = "Facebook becomes a publicly traded company" |
what's the success where deadline for completion is october 7, 2007 | CREATE TABLE table_12078626_1 (success VARCHAR, deadline_for_completion VARCHAR) | SELECT success FROM table_12078626_1 WHERE deadline_for_completion = "October 7, 2007" |
The earliest year is 1996. | CREATE TABLE table_12077540_1 (year INTEGER) | SELECT MIN(year) FROM table_12077540_1 |
There are 5 imports of plywood. | CREATE TABLE table_12077540_1 (import VARCHAR, product VARCHAR) | SELECT import FROM table_12077540_1 WHERE product = "Plywood" |
What is the score for interview when the preliminaries score is 8.425? | CREATE TABLE table_12094300_1 (interview VARCHAR, preliminaries VARCHAR) | SELECT interview FROM table_12094300_1 WHERE preliminaries = "8.425" |
What is the interview score when the preliminaries score is 8.400? | CREATE TABLE table_12094300_1 (interview VARCHAR, preliminaries VARCHAR) | SELECT interview FROM table_12094300_1 WHERE preliminaries = "8.400" |
What is the score for swimsuit when the average is 8.791? | CREATE TABLE table_12094300_1 (swimsuit VARCHAR, average VARCHAR) | SELECT swimsuit FROM table_12094300_1 WHERE average = "8.791" |
What is the score for the interview for the state of New York? | CREATE TABLE table_12094300_1 (interview VARCHAR, state VARCHAR) | SELECT interview FROM table_12094300_1 WHERE state = "New York" |
How many times did district of Columbia receive a score for evening gown? | CREATE TABLE table_12094300_1 (evening_gown VARCHAR, state VARCHAR) | SELECT COUNT(evening_gown) FROM table_12094300_1 WHERE state = "District of Columbia" |
What is the average score when the swimsuit score is 8.503? | CREATE TABLE table_12094300_1 (average VARCHAR, swimsuit VARCHAR) | SELECT average FROM table_12094300_1 WHERE swimsuit = "8.503" |
What is the number of gt1 winning team for rnd 5? | CREATE TABLE table_12146068_2 (gt1_winning_team VARCHAR, rnd VARCHAR) | SELECT COUNT(gt1_winning_team) FROM table_12146068_2 WHERE rnd = 5 |
What is the rnd for gt1 winning team for doc bundy andy wallace? | CREATE TABLE table_12146068_2 (rnd VARCHAR, gt1_winning_team VARCHAR) | SELECT rnd FROM table_12146068_2 WHERE gt1_winning_team = "Doc Bundy Andy Wallace" |
Name the gt1 winning team for #54 bell motorsports | CREATE TABLE table_12146068_2 (gt1_winning_team VARCHAR, gt2_winning_team VARCHAR) | SELECT gt1_winning_team FROM table_12146068_2 WHERE gt2_winning_team = "#54 Bell Motorsports" |
What is the title of the episode that was watched by 8.92 million viewers? | CREATE TABLE table_12146637_1 (episode_title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT episode_title FROM table_12146637_1 WHERE us_viewers__millions_ = "8.92" |
How many episodes had 9.90 million viewers? | CREATE TABLE table_12146637_1 (episode_title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(episode_title) FROM table_12146637_1 WHERE us_viewers__millions_ = "9.90" |
What is the series number of the episode watched by 10.89 million viewers? | CREATE TABLE table_12146637_1 (series__number INTEGER, us_viewers__millions_ VARCHAR) | SELECT MAX(series__number) FROM table_12146637_1 WHERE us_viewers__millions_ = "10.89" |
What is the name of the episode written by Sheila Lawrence & Henry Alonso Myers? | CREATE TABLE table_12146637_1 (episode_title VARCHAR, writer_s_ VARCHAR) | SELECT episode_title FROM table_12146637_1 WHERE writer_s_ = "Sheila Lawrence & Henry Alonso Myers" |
What is the pick number of the defensive back? | CREATE TABLE table_12165135_1 (overall_pick__number VARCHAR, position VARCHAR) | SELECT COUNT(overall_pick__number) FROM table_12165135_1 WHERE position = "Defensive Back" |
What is the position for the pick number 17? | CREATE TABLE table_12165135_1 (position VARCHAR, overall_pick__number VARCHAR) | SELECT position FROM table_12165135_1 WHERE overall_pick__number = 17 |
What is the college of the afl team of buffalo bills? | CREATE TABLE table_12165135_1 (college VARCHAR, afl_team VARCHAR) | SELECT college FROM table_12165135_1 WHERE afl_team = "Buffalo Bills" |
What is the position of john charles? | CREATE TABLE table_12165135_1 (position VARCHAR, player VARCHAR) | SELECT position FROM table_12165135_1 WHERE player = "John Charles" |
What is the largest pick number of the new york jets? | CREATE TABLE table_12165135_1 (overall_pick__number INTEGER, afl_team VARCHAR) | SELECT MAX(overall_pick__number) FROM table_12165135_1 WHERE afl_team = "New York Jets" |
What is the afl team of the offensive guard? | CREATE TABLE table_12165135_1 (afl_team VARCHAR, position VARCHAR) | SELECT afl_team FROM table_12165135_1 WHERE position = "Offensive Guard" |
What was the women's singles were men's doubles were steen fladberg jens peter nierhoff? | CREATE TABLE table_12186309_1 (womens_singles VARCHAR, mens_doubles VARCHAR) | SELECT womens_singles FROM table_12186309_1 WHERE mens_doubles = "Steen Fladberg Jens Peter Nierhoff" |
What are the mixed doubles where the mens singles is kim brodersen? | CREATE TABLE table_12186309_1 (mixed_doubles VARCHAR, mens_singles VARCHAR) | SELECT mixed_doubles FROM table_12186309_1 WHERE mens_singles = "Kim Brodersen" |
what's the first appearance where character(s) is iron man | CREATE TABLE table_1217448_1 (first_appearance VARCHAR, character_s_ VARCHAR) | SELECT first_appearance FROM table_1217448_1 WHERE character_s_ = "Iron Man" |
what is the total number of publisher where cover date is may 1939 | CREATE TABLE table_1217448_1 (publisher VARCHAR, cover_date VARCHAR) | SELECT COUNT(publisher) FROM table_1217448_1 WHERE cover_date = "May 1939" |
what is the total number of publisher where first appearance is daredevil #1 | CREATE TABLE table_1217448_1 (publisher VARCHAR, first_appearance VARCHAR) | SELECT COUNT(publisher) FROM table_1217448_1 WHERE first_appearance = "Daredevil #1" |
what's the cover date where character(s) is sandman (wesley dodds) | CREATE TABLE table_1217448_1 (cover_date VARCHAR, character_s_ VARCHAR) | SELECT cover_date FROM table_1217448_1 WHERE character_s_ = "Sandman (Wesley Dodds)" |
what's the cover date where character(s) is x-men ; magneto | CREATE TABLE table_1217448_1 (cover_date VARCHAR, character_s_ VARCHAR) | SELECT cover_date FROM table_1217448_1 WHERE character_s_ = "X-Men ; Magneto" |
what's the estimated value where cover date is august 1962 | CREATE TABLE table_1217448_1 (estimated_value VARCHAR, cover_date VARCHAR) | SELECT estimated_value FROM table_1217448_1 WHERE cover_date = "August 1962" |
What theme placed as #3 in the finale? | CREATE TABLE table_12175755_1 (result VARCHAR, theme VARCHAR, order__number VARCHAR) | SELECT result FROM table_12175755_1 WHERE theme = "Finale" AND order__number = "3" |
What is the theme for the episode selection process? | CREATE TABLE table_12175755_1 (theme VARCHAR, episode VARCHAR) | SELECT theme FROM table_12175755_1 WHERE episode = "Selection Process" |
What is the order number for songs by the original artist Luis Fonsi? | CREATE TABLE table_12175755_1 (order__number VARCHAR, original_artist VARCHAR) | SELECT order__number FROM table_12175755_1 WHERE original_artist = "Luis Fonsi" |
What is the song choice when the theme is not aired? | CREATE TABLE table_12175755_1 (theme VARCHAR, song_choice VARCHAR) | SELECT theme FROM table_12175755_1 WHERE song_choice = "Not Aired" |
What years did Markose Bristow Madhumita Bisht win the mens singles and/or the mixed doubles? | CREATE TABLE table_12194021_1 (mens_singles VARCHAR, mixed_doubles VARCHAR) | SELECT mens_singles FROM table_12194021_1 WHERE mixed_doubles = "Markose Bristow Madhumita Bisht" |
Who won the womens doubles in 2002? | CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, season VARCHAR) | SELECT womens_doubles FROM table_12194021_1 WHERE season = 2002 |
How many total titles did Rupesh Kumar Sanave Thomas and Jwala Gutta Ashwini Ponnappa win total? | CREATE TABLE table_12194021_1 (womens_singles VARCHAR, mens_doubles VARCHAR, womens_doubles VARCHAR) | SELECT COUNT(womens_singles) FROM table_12194021_1 WHERE mens_doubles = "Rupesh Kumar Sanave Thomas" AND womens_doubles = "Jwala Gutta Ashwini Ponnappa" |
In womens doubles and mens singles, what years did Arvind Bhat or Valiyaveetil Diju Jwala Gutta win? | CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, mens_singles VARCHAR, mixed_doubles VARCHAR) | SELECT womens_doubles FROM table_12194021_1 WHERE mens_singles = "Arvind Bhat" AND mixed_doubles = "Valiyaveetil Diju Jwala Gutta" |
How many titles did Trupti Murgunde claim? | CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, womens_singles VARCHAR) | SELECT womens_doubles FROM table_12194021_1 WHERE womens_singles = "Trupti Murgunde" |
What is the pennant for 4 may 1943? | CREATE TABLE table_1220125_4 (pennant VARCHAR, laid_down VARCHAR) | SELECT pennant FROM table_1220125_4 WHERE laid_down = "4 May 1943" |
What is the total number of fate for pennant of u33? | CREATE TABLE table_1220125_4 (fate VARCHAR, pennant VARCHAR) | SELECT COUNT(fate) FROM table_1220125_4 WHERE pennant = "U33" |
What is the fate for 11 april 1944? | CREATE TABLE table_1220125_4 (fate VARCHAR, commissioned VARCHAR) | SELECT fate FROM table_1220125_4 WHERE commissioned = "11 April 1944" |
What is the name for 30 september 1943? | CREATE TABLE table_1220125_4 (name VARCHAR, launched VARCHAR) | SELECT name FROM table_1220125_4 WHERE launched = "30 September 1943" |
What is the comissioned for 4 may 1943? | CREATE TABLE table_1220125_4 (commissioned VARCHAR, laid_down VARCHAR) | SELECT commissioned FROM table_1220125_4 WHERE laid_down = "4 May 1943" |
Who was the writters for the episode directed by Richard L. Bare, no. 8 in season? | CREATE TABLE table_12226390_7 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR) | SELECT written_by FROM table_12226390_7 WHERE directed_by = "Richard L. Bare" AND no_in_season = 8 |
What is the location of the tournament that the share of winning is 7000? | CREATE TABLE table_12243817_1 (tournament_location VARCHAR, winners_share__$_ VARCHAR) | SELECT tournament_location FROM table_12243817_1 WHERE winners_share__$_ = 7000 |
What year is Japan the country? | CREATE TABLE table_12243817_1 (year VARCHAR, country VARCHAR) | SELECT year FROM table_12243817_1 WHERE country = "Japan" |
What is the year that Dewi Claire Schreefel is the champion? | CREATE TABLE table_12243817_1 (year VARCHAR, champion VARCHAR) | SELECT year FROM table_12243817_1 WHERE champion = "Dewi Claire Schreefel" |
What is the winners Share ($) in the year 2004? | CREATE TABLE table_12243817_1 (winners_share__ INTEGER, year VARCHAR) | SELECT MIN(winners_share__) AS $_ FROM table_12243817_1 WHERE year = "2004" |
What is the tournament location when Vicky Hurst in the champion? | CREATE TABLE table_12243817_1 (tournament_location VARCHAR, champion VARCHAR) | SELECT tournament_location FROM table_12243817_1 WHERE champion = "Vicky Hurst" |
What is the intergiro classification of stage 21? | CREATE TABLE table_12261926_2 (intergiro_classification VARCHAR, stage VARCHAR) | SELECT intergiro_classification FROM table_12261926_2 WHERE stage = 21 |
What is the trofeo fast team on stage 8? | CREATE TABLE table_12261926_2 (trofeo_fast_team VARCHAR, stage VARCHAR) | SELECT trofeo_fast_team FROM table_12261926_2 WHERE stage = 8 |
What is the general classification with the winner being evgeni berzin? | CREATE TABLE table_12261926_2 (general_classification VARCHAR, winner VARCHAR) | SELECT COUNT(general_classification) FROM table_12261926_2 WHERE winner = "Evgeni Berzin" |
What is the intergiro classification of alexander gontchenkov? | CREATE TABLE table_12261926_2 (intergiro_classification VARCHAR, winner VARCHAR) | SELECT intergiro_classification FROM table_12261926_2 WHERE winner = "Alexander Gontchenkov" |
what is total number of points where the stage is 17? | CREATE TABLE table_12262008_2 (points_classification VARCHAR, stage VARCHAR) | SELECT COUNT(points_classification) FROM table_12262008_2 WHERE stage = 17 |
What is the status of channel 44.1? | CREATE TABLE table_12271718_1 (status VARCHAR, channel VARCHAR) | SELECT status FROM table_12271718_1 WHERE channel = "44.1" |
What station has a univision network affiliation? | CREATE TABLE table_12271718_1 (station VARCHAR, network_affiliation VARCHAR) | SELECT station FROM table_12271718_1 WHERE network_affiliation = "Univision" |
How many season did sportfreunde siegen win best supported club? | CREATE TABLE table_12272590_2 (season VARCHAR, best_supported_club VARCHAR) | SELECT COUNT(season) FROM table_12272590_2 WHERE best_supported_club = "Sportfreunde Siegen" |
what are all the Canadian air dates where the u.s. air date is may 1, 2009 | CREATE TABLE table_12294557_3 (canadian_airdate VARCHAR, us_airdate VARCHAR) | SELECT canadian_airdate FROM table_12294557_3 WHERE us_airdate = "May 1, 2009" |
What is the maximum season # with a u.s. air date is may 1, 2009 | CREATE TABLE table_12294557_3 (season__number INTEGER, us_airdate VARCHAR) | SELECT MAX(season__number) FROM table_12294557_3 WHERE us_airdate = "May 1, 2009" |
What is the total number of title with a u.s. air date of April 17, 2009 | CREATE TABLE table_12294557_3 (title VARCHAR, us_airdate VARCHAR) | SELECT COUNT(title) FROM table_12294557_3 WHERE us_airdate = "April 17, 2009" |
what is the minimum production code | CREATE TABLE table_12294557_3 (production_code INTEGER) | SELECT MIN(production_code) FROM table_12294557_3 |
what are the u.s. air dates with a Canadian air date of may 4, 2009 | CREATE TABLE table_12294557_3 (us_airdate VARCHAR, canadian_airdate VARCHAR) | SELECT us_airdate FROM table_12294557_3 WHERE canadian_airdate = "May 4, 2009" |
Which is the charity that the background of the celebrity is heavyweight champion? | CREATE TABLE table_12286195_1 (charity VARCHAR, background VARCHAR) | SELECT charity FROM table_12286195_1 WHERE background = "Heavyweight Champion" |
What is the original team of the celebrity who had the result 08 fired in week 10 (2008-03-06) | CREATE TABLE table_12286195_1 (original_team VARCHAR, result VARCHAR) | SELECT original_team FROM table_12286195_1 WHERE result = "08 Fired in week 10 (2008-03-06)" |
Which celebrity was raised 03? | CREATE TABLE table_12286195_1 (celebrity VARCHAR, raised VARCHAR) | SELECT celebrity FROM table_12286195_1 WHERE raised = "03" |
What is the charity of the celebrity with the background reality star? | CREATE TABLE table_12286195_1 (charity VARCHAR, background VARCHAR) | SELECT charity FROM table_12286195_1 WHERE background = "Reality Star" |
What is the background of the celebrity who had the result 13 the celebrity apprentice (2008-03-27)? | CREATE TABLE table_12286195_1 (background VARCHAR, result VARCHAR) | SELECT background FROM table_12286195_1 WHERE result = "13 The celebrity Apprentice (2008-03-27)" |
Where is Tamunosiki Atorudibo from | CREATE TABLE table_1231316_4 (country VARCHAR, athlete VARCHAR) | SELECT country FROM table_1231316_4 WHERE athlete = "Tamunosiki Atorudibo" |
Where is Dwain Chambers from | CREATE TABLE table_1231316_4 (location VARCHAR, athlete VARCHAR) | SELECT location FROM table_1231316_4 WHERE athlete = "Dwain Chambers" |
What was the stats of Trinidad and Tobago | CREATE TABLE table_1231316_4 (wind__m_s_ VARCHAR, country VARCHAR) | SELECT wind__m_s_ FROM table_1231316_4 WHERE country = "Trinidad and Tobago" |
Name the total number of wind m/s for sunday emmanuel | CREATE TABLE table_1231316_6 (wind__m_s_ VARCHAR, athlete VARCHAR) | SELECT COUNT(wind__m_s_) FROM table_1231316_6 WHERE athlete = "Sunday Emmanuel" |
Name the wind m/s and fastest time of 10.25 and jeff demps | CREATE TABLE table_1231316_6 (wind__m_s_ VARCHAR, fastest_time__s_ VARCHAR, athlete VARCHAR) | SELECT wind__m_s_ FROM table_1231316_6 WHERE fastest_time__s_ = "10.25" AND athlete = "Jeff Demps" |
What is the competition when aggregate is 1–4? | CREATE TABLE table_1233026_4 (competition VARCHAR, aggregate VARCHAR) | SELECT competition FROM table_1233026_4 WHERE aggregate = "1–4" |
What is the 1st leg when club is a.c. libertas? | CREATE TABLE table_1233026_4 (club VARCHAR) | SELECT 1 AS st_leg FROM table_1233026_4 WHERE club = "A.C. Libertas" |
What is the branding of metro manila? | CREATE TABLE table_12379297_4 (branding VARCHAR, location VARCHAR) | SELECT branding FROM table_12379297_4 WHERE location = "Metro Manila" |
When was the institution of Kansas city Kansas community college founded? | CREATE TABLE table_12434380_1 (founded VARCHAR, institution VARCHAR) | SELECT COUNT(founded) FROM table_12434380_1 WHERE institution = "Kansas City Kansas Community College" |
What is the mascot for the instition of Kansas city Kansas community college? | CREATE TABLE table_12434380_1 (mascot VARCHAR, institution VARCHAR) | SELECT mascot FROM table_12434380_1 WHERE institution = "Kansas City Kansas Community College" |
How many school colors is there for the main campus location of highland? | CREATE TABLE table_12434380_1 (school_colors VARCHAR, main_campus_location VARCHAR) | SELECT COUNT(school_colors) FROM table_12434380_1 WHERE main_campus_location = "Highland" |
What is the mascot for the school founded in 1923 with the school colors of blue, red & white? | CREATE TABLE table_12434380_1 (mascot VARCHAR, founded VARCHAR, school_colors VARCHAR) | SELECT mascot FROM table_12434380_1 WHERE founded = 1923 AND school_colors = "Blue, Red & White" |
What is the instition where the main campus location is overland park? | CREATE TABLE table_12434380_1 (institution VARCHAR, main_campus_location VARCHAR) | SELECT institution FROM table_12434380_1 WHERE main_campus_location = "Overland Park" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.