answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT overall FROM table_27069503_2 WHERE season = "2003-04" | CREATE TABLE table_27069503_2 (overall VARCHAR, season VARCHAR) | What was the overall record for the Pandas in the 2003-04 season? |
SELECT conf_record FROM table_27069503_2 WHERE overall = "33-4-1" | CREATE TABLE table_27069503_2 (conf_record VARCHAR, overall VARCHAR) | What was the conference record in the season where the Pandas had an overall record of 33-4-1? |
SELECT coach FROM table_27069503_2 WHERE overall = "20-6-2" | CREATE TABLE table_27069503_2 (coach VARCHAR, overall VARCHAR) | Who was the coach of the Pandas when their overall record was 20-6-2? |
SELECT conf_record FROM table_27069503_2 WHERE standings = "First" AND season = "2003-04" | CREATE TABLE table_27069503_2 (conf_record VARCHAR, standings VARCHAR, season VARCHAR) | What was the conference record for the Pandas when they were first in the standings in the 2003-04 season? |
SELECT overall FROM table_27069503_2 WHERE conf_record = "4-1-1" | CREATE TABLE table_27069503_2 (overall VARCHAR, conf_record VARCHAR) | What was the overall record for the Pandas when their conference record was 4-1-1? |
SELECT season FROM table_27069503_2 WHERE conf_record = "15-1-1" | CREATE TABLE table_27069503_2 (season VARCHAR, conf_record VARCHAR) | In what season was the conference record for the Pandas 15-1-1? |
SELECT COUNT(original_artist) FROM table_27075510_1 WHERE week__number = "Audition" | CREATE TABLE table_27075510_1 (original_artist VARCHAR, week__number VARCHAR) | how many times is the week # is audition? |
SELECT COUNT(episode) FROM table_27081956_1 WHERE series_no = 14 | CREATE TABLE table_27081956_1 (episode VARCHAR, series_no VARCHAR) | How many episodes are numbered 14 in the series? |
SELECT format FROM table_2709_4 WHERE frequency = "105.5 FM" | CREATE TABLE table_2709_4 (format VARCHAR, frequency VARCHAR) | What is the format of 105.5 fm? |
SELECT target_city__market FROM table_2709_4 WHERE call_sign = "KLRJ" | CREATE TABLE table_2709_4 (target_city__market VARCHAR, call_sign VARCHAR) | What is the market for KLRJ? |
SELECT format FROM table_2709_4 WHERE owner = "Dakota Broadcasting" | CREATE TABLE table_2709_4 (format VARCHAR, owner VARCHAR) | What is the format for the station owned by Dakota Broadcasting? |
SELECT team FROM table_27091128_2 WHERE replaced_by = "Ercan Ertemçöz" | CREATE TABLE table_27091128_2 (team VARCHAR, replaced_by VARCHAR) | What team's manager was replaced by Ercan Ertemçöz? |
SELECT date_of_appointment FROM table_27091128_2 WHERE outgoing_manager = "Kadir Özcan" | CREATE TABLE table_27091128_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) | What was the date of appointment for the manager replacing Kadir Özcan? |
SELECT replaced_by FROM table_27091128_2 WHERE date_of_appointment = "08.06.2010" | CREATE TABLE table_27091128_2 (replaced_by VARCHAR, date_of_appointment VARCHAR) | Which manager was appointed on 08.06.2010? |
SELECT replaced_by FROM table_27091128_2 WHERE team = "Altay" | CREATE TABLE table_27091128_2 (replaced_by VARCHAR, team VARCHAR) | Who replaced the previous manager of Altay? |
SELECT date_of_appointment FROM table_27091128_2 WHERE replaced_by = "Ergün Penbe" | CREATE TABLE table_27091128_2 (date_of_appointment VARCHAR, replaced_by VARCHAR) | What was date of appointment for Ergün Penbe? |
SELECT MIN(overall_total) FROM table_27094070_4 WHERE team = "Omaha Nighthawks" | CREATE TABLE table_27094070_4 (overall_total INTEGER, team VARCHAR) | What is the overall total for the Omaha Nighthawks? |
SELECT team FROM table_27094070_4 WHERE home_avg = 18125 | CREATE TABLE table_27094070_4 (team VARCHAR, home_avg VARCHAR) | Which team has the home average of 18125? |
SELECT MAX(home_total) FROM table_27094070_4 | CREATE TABLE table_27094070_4 (home_total INTEGER) | What was the highest home total? |
SELECT COUNT(overall_gms) FROM table_27094070_4 WHERE overall_avg = 12796 | CREATE TABLE table_27094070_4 (overall_gms VARCHAR, overall_avg VARCHAR) | How many games had an average of 12796? |
SELECT stage AS winner FROM table_27112708_2 WHERE team_classification = "LeTua Cycling Team" AND stage = 2 | CREATE TABLE table_27112708_2 (stage VARCHAR, team_classification VARCHAR) | Who was the stage winner of the letua cycling team on stage 2? |
SELECT mountains_classification FROM table_27112708_2 WHERE stage = 3 | CREATE TABLE table_27112708_2 (mountains_classification VARCHAR, stage VARCHAR) | Which mountains classification is listed under stage 3? |
SELECT general_classification FROM table_27112708_2 WHERE stage = 4 | CREATE TABLE table_27112708_2 (general_classification VARCHAR, stage VARCHAR) | Who is listed under general classification on stage 4? |
SELECT written_by FROM table_27117365_1 WHERE us_viewers__million_ = "7.70" | CREATE TABLE table_27117365_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) | Who wrote the episodes with 7.70 u.s. viewers (million) ? |
SELECT original_air_date FROM table_27117365_1 WHERE us_viewers__million_ = "5.85" | CREATE TABLE table_27117365_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) | What original air date has 5.85 u.s. viewers (million)? |
SELECT title FROM table_27117365_1 WHERE no_in_season = 10 | CREATE TABLE table_27117365_1 (title VARCHAR, no_in_season VARCHAR) | What's the title in the number 10 in the season? |
SELECT date_of_vacancy FROM table_27133147_3 WHERE manner_of_departure = "Resigned" AND position_in_table = "10th" | CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR) | If the position in table is 10th, and the manner of departure was resigned, what was the date of vacancy? |
SELECT date_of_vacancy FROM table_27133147_3 WHERE incoming_head_coach = "Carlos Azenha" | CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, incoming_head_coach VARCHAR) | If the incoming head coach is Carlos Azenha, what is the date of vacancy? |
SELECT date_of_appointment FROM table_27133147_3 WHERE team = "União de Leiria" | CREATE TABLE table_27133147_3 (date_of_appointment VARCHAR, team VARCHAR) | If the team is união de leiria, what is the date of appointment? |
SELECT 2003 FROM table_27146868_1 WHERE 1999 = "2.1" | CREATE TABLE table_27146868_1 (Id VARCHAR) | What is 2003 when 1999 is 2.1? |
SELECT 2010 FROM table_27146868_1 WHERE 2003 = "5.6" | CREATE TABLE table_27146868_1 (Id VARCHAR) | What is 2010 when 2003 is 5.6? |
SELECT greek_national_account FROM table_27146868_1 WHERE 1997 = "6.1" | CREATE TABLE table_27146868_1 (greek_national_account VARCHAR) | What is the greek national account when 1997 is 6.1? |
SELECT 2006 FROM table_27146868_1 WHERE 1997 = "6.8" | CREATE TABLE table_27146868_1 (Id VARCHAR) | What is 2006 when 1997 is 6.8? |
SELECT 2002 FROM table_27146868_1 WHERE 2009 = "54.0" | CREATE TABLE table_27146868_1 (Id VARCHAR) | What is 2002 when 2009 is 54.0? |
SELECT pro_team FROM table_27132791_3 WHERE position = "DT" AND nfl_team = "Houston Oilers" | CREATE TABLE table_27132791_3 (pro_team VARCHAR, position VARCHAR, nfl_team VARCHAR) | If the NFL team is the Houston Oilers and the position is DT, who is the Pro team? |
SELECT COUNT(player) FROM table_27132791_3 WHERE nfl_team = "Washington Redskins" | CREATE TABLE table_27132791_3 (player VARCHAR, nfl_team VARCHAR) | How many different players does the Washington Redskins have? |
SELECT position FROM table_27132791_3 WHERE college = "Vanderbilt" | CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR) | If the college is Vanderbilt, what is the position? |
SELECT position FROM table_27132791_3 WHERE pro_team = "Jacksonville Bulls" | CREATE TABLE table_27132791_3 (position VARCHAR, pro_team VARCHAR) | If the proteam is Jacksonville bulls, what is the position? |
SELECT position FROM table_27132791_3 WHERE college = "SMU" | CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR) | If the college is SMU, what is the position? |
SELECT written_by FROM table_27116696_1 WHERE production_code = "3T7255" | CREATE TABLE table_27116696_1 (written_by VARCHAR, production_code VARCHAR) | Who wrote the episode with the production code of 3t7255? |
SELECT us_viewers__million_ FROM table_27116696_1 WHERE directed_by = "Allison Liddi-Brown" | CREATE TABLE table_27116696_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR) | How many U.S. viewers (million) watched the episode directed by Allison Liddi-Brown? |
SELECT COUNT(production_code) FROM table_27116696_1 WHERE written_by = "Matthew Lau" | CREATE TABLE table_27116696_1 (production_code VARCHAR, written_by VARCHAR) | What is the total number of production code listings of episodes written by Matthew Lau? |
SELECT total_prize_pool FROM table_2715355_1 WHERE location = "New Orleans" | CREATE TABLE table_2715355_1 (total_prize_pool VARCHAR, location VARCHAR) | What was the prize pool in New Orleans? |
SELECT COUNT(winners) AS Prize FROM table_2715355_1 WHERE entrants = 696 | CREATE TABLE table_2715355_1 (winners VARCHAR, entrants VARCHAR) | How many prizes were available in the competition where 696 people entered? |
SELECT accession_number FROM table_27155678_2 WHERE genus_species = "Rhodopseudomonas palustris" | CREATE TABLE table_27155678_2 (accession_number VARCHAR, genus_species VARCHAR) | Name the accession number for rhodopseudomonas palustris |
SELECT genus_species FROM table_27155678_2 WHERE accession_number = "BX897699.1" | CREATE TABLE table_27155678_2 (genus_species VARCHAR, accession_number VARCHAR) | Name the genus/species of accession number bx897699.1 |
SELECT accession_number FROM table_27155678_2 WHERE sequence_similarity = 54 | CREATE TABLE table_27155678_2 (accession_number VARCHAR, sequence_similarity VARCHAR) | Name the accession number for sequence similarity being 54 |
SELECT gene_name FROM table_27155678_2 WHERE genus_species = "Methylobacterium nodulans" | CREATE TABLE table_27155678_2 (gene_name VARCHAR, genus_species VARCHAR) | Name the gene name for methylobacterium nodulans |
SELECT gene_name FROM table_27155678_2 WHERE accession_number = "BX897700.1" | CREATE TABLE table_27155678_2 (gene_name VARCHAR, accession_number VARCHAR) | Name the gene name for accession number bx897700.1 |
SELECT MIN(_percentage_funded) FROM table_27155990_1 WHERE closing_date = "2012-05-18" | CREATE TABLE table_27155990_1 (_percentage_funded INTEGER, closing_date VARCHAR) | What was the minimum % funded of the project that was closed on 2012-05-18? |
SELECT MAX(total_usd) FROM table_27155990_1 WHERE creator = "Pebble Technology" | CREATE TABLE table_27155990_1 (total_usd INTEGER, creator VARCHAR) | What was the maximum total USD collected by Pebble Technology? |
SELECT category FROM table_27155990_1 WHERE project_name = "Mighty No. 9" | CREATE TABLE table_27155990_1 (category VARCHAR, project_name VARCHAR) | What was the category of the project name Mighty No. 9? |
SELECT COUNT(rank) FROM table_27155990_1 WHERE project_name = "Pebble: E-Paper Watch for iPhone and Android" | CREATE TABLE table_27155990_1 (rank VARCHAR, project_name VARCHAR) | Project Name Pebble: E-Paper Watch for Iphone and Android was ranked how many times? |
SELECT league_apps FROM table_27170987_5 WHERE total_goals = 11 | CREATE TABLE table_27170987_5 (league_apps VARCHAR, total_goals VARCHAR) | How many league apps did the player with 11 team goals have? |
SELECT MIN(total_goals) FROM table_27170987_5 WHERE league_goals = 6 | CREATE TABLE table_27170987_5 (total_goals INTEGER, league_goals VARCHAR) | What is the lowest number of total goals for a player with 6 league goals? |
SELECT MIN(fa_cup_goals) FROM table_27170987_5 | CREATE TABLE table_27170987_5 (fa_cup_goals INTEGER) | What is the lowest number of fa cup goals by a player? |
SELECT written_by FROM table_27169029_1 WHERE original_air_date = "September 26, 2010" | CREATE TABLE table_27169029_1 (written_by VARCHAR, original_air_date VARCHAR) | Who wrote the episode that aired on September 26, 2010? |
SELECT asia FROM table_27184837_1 WHERE programs = "Radio Stations" | CREATE TABLE table_27184837_1 (asia VARCHAR, programs VARCHAR) | How many radio stations were built in Asia? |
SELECT COUNT(asia) FROM table_27184837_1 WHERE americas = 14 | CREATE TABLE table_27184837_1 (asia VARCHAR, americas VARCHAR) | How many program data on Asia was written if the organization launched 14 programs iin the Americas? |
SELECT COUNT(australasia) FROM table_27184837_1 WHERE americas = 115 | CREATE TABLE table_27184837_1 (australasia VARCHAR, americas VARCHAR) | How many times did Australasia received a program if the Americas received 115 program? |
SELECT episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series FROM table_27208311_1 WHERE series_no = 3 | CREATE TABLE table_27208311_1 (episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series VARCHAR, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series VARCHAR, series_no VARCHAR) | What is every episode number for the series number 3? |
SELECT episode FROM table_27208311_1 WHERE writer = "Barry Purchese" | CREATE TABLE table_27208311_1 (episode VARCHAR, writer VARCHAR) | What is every episode with Barry Purchese as the writer? |
SELECT COUNT(episode) FROM table_27208817_1 WHERE writer = "Sam Snape" | CREATE TABLE table_27208817_1 (episode VARCHAR, writer VARCHAR) | Name the number of episodes for sam snape |
SELECT aspect_ratio FROM table_272313_1 WHERE vertical = 480 AND pixel_aspect_ratio = "1:1" | CREATE TABLE table_272313_1 (aspect_ratio VARCHAR, vertical VARCHAR, pixel_aspect_ratio VARCHAR) | What was the aspect ratio if the vertical pixel is 480 and pixel aspect ratio is 1:1? |
SELECT MIN(vertical) FROM table_272313_1 WHERE aspect_ratio = "16:9" AND scanning = "interlaced" | CREATE TABLE table_272313_1 (vertical INTEGER, aspect_ratio VARCHAR, scanning VARCHAR) | What was the minimum vertical measurement if the aspect ratio is 16:9 and scanning is interlaced? |
SELECT MAX(vertical) FROM table_272313_1 WHERE horizontal = 640 | CREATE TABLE table_272313_1 (vertical INTEGER, horizontal VARCHAR) | What was the maximum vertical measurement if the horizon measurement is 640? |
SELECT outgoing_manager FROM table_27225944_3 WHERE manner_of_departure = "Mutual consent" AND position_in_table = "16th" | CREATE TABLE table_27225944_3 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR) | Name the outgoing manager for mutual consent and position 16th |
SELECT replaced_by FROM table_27225944_3 WHERE team = "Slaven Belupo" | CREATE TABLE table_27225944_3 (replaced_by VARCHAR, team VARCHAR) | Name the replaced by for slaven belupo |
SELECT COUNT(outgoing_manager) FROM table_27225944_3 WHERE team = "Rijeka" | CREATE TABLE table_27225944_3 (outgoing_manager VARCHAR, team VARCHAR) | Name the number of outgoing manager for rijeka |
SELECT MIN(horizontal) FROM table_272313_2 WHERE pixel_aspect_ratio = "SMPTE 259M three quarters" | CREATE TABLE table_272313_2 (horizontal INTEGER, pixel_aspect_ratio VARCHAR) | Name the least horizontal for smpte 259m three quarters |
SELECT aspect_ratio FROM table_272313_2 WHERE pixel_aspect_ratio = "SMPTE 259M" AND scanning = "interlaced" | CREATE TABLE table_272313_2 (aspect_ratio VARCHAR, pixel_aspect_ratio VARCHAR, scanning VARCHAR) | Name the aspect ratio for smpte 259m and interlaced scanning |
SELECT originalairdate FROM table_27218002_2 WHERE written_by = "Fintan Ryan" | CREATE TABLE table_27218002_2 (originalairdate VARCHAR, written_by VARCHAR) | What date did the episode that was written by Fintan Ryan originally air? |
SELECT originalairdate FROM table_27218002_2 WHERE ratings = "1.37 Million" | CREATE TABLE table_27218002_2 (originalairdate VARCHAR, ratings VARCHAR) | What date did the epiode that had 1.37 million as the rating originally air? |
SELECT title FROM table_27250813_1 WHERE no_in_season = 16 | CREATE TABLE table_27250813_1 (title VARCHAR, no_in_season VARCHAR) | What is the title of the episode no. 16 by season? |
SELECT COUNT(original_air_date) FROM table_27250813_1 WHERE production_code = 12003 | CREATE TABLE table_27250813_1 (original_air_date VARCHAR, production_code VARCHAR) | How many times did an episode with a production code of 12003 was aired? |
SELECT color_analyst_s_ FROM table_2724704_5 WHERE studio_analyst_s_ = "Terry Bowden" AND tv_rating = "17.2" | CREATE TABLE table_2724704_5 (color_analyst_s_ VARCHAR, studio_analyst_s_ VARCHAR, tv_rating VARCHAR) | Name the color analyst for terry bowden and 17.2 |
SELECT COUNT(bowl) FROM table_2724704_5 WHERE studio_analyst_s_ = "Lee Corso, Gene Chizik and Chip Kelly" | CREATE TABLE table_2724704_5 (bowl VARCHAR, studio_analyst_s_ VARCHAR) | Name the number of bowl for lee corso, gene chizik and chip kelly |
SELECT studio_analyst_s_ FROM table_2724704_5 WHERE network_s_ = "ESPN" AND sideline_reporter_s_ = "Erin Andrews and Tom Rinaldi" | CREATE TABLE table_2724704_5 (studio_analyst_s_ VARCHAR, network_s_ VARCHAR, sideline_reporter_s_ VARCHAR) | Name the studio analysts for espn with erin andrews and tom rinaldi |
SELECT MAX(no_in_series) FROM table_27255755_1 WHERE us_viewers__millions_ = "9.17" | CREATE TABLE table_27255755_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR) | What is the highest series number with 9.17 million US viewers? |
SELECT podiums FROM table_2725949_6 WHERE starts = 22 | CREATE TABLE table_2725949_6 (podiums VARCHAR, starts VARCHAR) | name the podiums for start of 22 |
SELECT COUNT(poles) FROM table_2725949_6 WHERE fastest_laps = 6 | CREATE TABLE table_2725949_6 (poles VARCHAR, fastest_laps VARCHAR) | Name the number of poles for fastest laps being 6 |
SELECT MIN(podiums) FROM table_2725949_6 WHERE season = 2009 | CREATE TABLE table_2725949_6 (podiums INTEGER, season VARCHAR) | Name the least podiums for 2009 |
SELECT starts FROM table_2725949_6 WHERE season = 2009 | CREATE TABLE table_2725949_6 (starts VARCHAR, season VARCHAR) | Name the starts for 2009 |
SELECT MAX(starts) FROM table_2725949_6 WHERE wins = 6 | CREATE TABLE table_2725949_6 (starts INTEGER, wins VARCHAR) | Name the most starts for 6 wins |
SELECT COUNT(matches) FROM table_27268238_5 WHERE wickets = 16 | CREATE TABLE table_27268238_5 (matches VARCHAR, wickets VARCHAR) | How many matches were wickets 16? |
SELECT MIN(wickets) FROM table_27268238_5 | CREATE TABLE table_27268238_5 (wickets INTEGER) | What is the lowest wickets? |
SELECT 4 AS wi FROM table_27268238_5 WHERE economy = "7.82" | CREATE TABLE table_27268238_5 (economy VARCHAR) | What is the 4wi when the economy is 7.82? |
SELECT player FROM table_27268238_5 WHERE bbi = "5/27" | CREATE TABLE table_27268238_5 (player VARCHAR, bbi VARCHAR) | Who is the player when the bbi is 5/27? |
SELECT team FROM table_27268238_5 WHERE economy = "5.73" | CREATE TABLE table_27268238_5 (team VARCHAR, economy VARCHAR) | What is the team when the economy is 5.73? |
SELECT COUNT(valid_votes) FROM table_27274222_2 WHERE province = "Denizli" | CREATE TABLE table_27274222_2 (valid_votes VARCHAR, province VARCHAR) | When Denizli was the province, what was the total number of valid votes? |
SELECT province FROM table_27274222_2 WHERE turnout___percentage_ = "54.09" | CREATE TABLE table_27274222_2 (province VARCHAR, turnout___percentage_ VARCHAR) | What province had a turnout of 54.09%? |
SELECT model_number FROM table_27277284_28 WHERE order_part_number = "TMRM75DAM22GG" | CREATE TABLE table_27277284_28 (model_number VARCHAR, order_part_number VARCHAR) | What is the model number for the order part numbered tmrm75dam22gg? |
SELECT order_part_number FROM table_27277284_28 WHERE mult_1 = "10x" | CREATE TABLE table_27277284_28 (order_part_number VARCHAR, mult_1 VARCHAR) | What is the oder part number for the model with 10x mult. 1? |
SELECT ht FROM table_27277284_28 WHERE mult_1 = "10x" | CREATE TABLE table_27277284_28 (ht VARCHAR, mult_1 VARCHAR) | How much ht does the model with 10x mult. 1 have? |
SELECT ht FROM table_27277284_28 WHERE release_date = "June 4, 2008" | CREATE TABLE table_27277284_28 (ht VARCHAR, release_date VARCHAR) | What's the ht for the model released on June 4, 2008? |
SELECT COUNT(poles) FROM table_27279050_1 WHERE points = "0" AND nation = "Mexico" | CREATE TABLE table_27279050_1 (poles VARCHAR, points VARCHAR, nation VARCHAR) | How many pole position achieved 0 points from Mexico? |
SELECT v_core FROM table_27277284_8 WHERE mult_1 = "11x" | CREATE TABLE table_27277284_8 (v_core VARCHAR, mult_1 VARCHAR) | Name the vcore for multi 11x |
SELECT COUNT(v_core) FROM table_27277284_8 WHERE model_number = "Mobile Athlon 64 3000+" | CREATE TABLE table_27277284_8 (v_core VARCHAR, model_number VARCHAR) | Name the number of v core for model number mobile athlon 64 3000+ |
SELECT COUNT(points_for) FROM table_27293285_4 WHERE "played" = "played" | CREATE TABLE table_27293285_4 (points_for VARCHAR) | Name the total number of points for for played |
SELECT COUNT(points) FROM table_27293285_4 WHERE tries_for = "46" | CREATE TABLE table_27293285_4 (points VARCHAR, tries_for VARCHAR) | Name the total number of points for 46 tries for |
Subsets and Splits