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