context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_23759976_1 (floors VARCHAR, building_ VARCHAR, a_ VARCHAR) | How many different numbers of floors are there for the Chongqing Poly Tower? | SELECT COUNT(floors) FROM table_23759976_1 WHERE building_[a_] = "Chongqing Poly Tower" |
CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR) | What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected? | SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = "Prolonged" AND prothrombin_time = "Unaffected" |
CREATE TABLE table_28005160_2 (country VARCHAR, city VARCHAR) | What country is new orleans in? | SELECT country FROM table_28005160_2 WHERE city = "New Orleans" |
CREATE TABLE table_28005160_2 (country VARCHAR, sponsored_name VARCHAR) | What country are the new orleans shell shockers from? | SELECT country FROM table_28005160_2 WHERE sponsored_name = "New Orleans Shell Shockers" |
CREATE TABLE table_name_83 (gold INTEGER, silver VARCHAR, bronze VARCHAR) | What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals? | SELECT MAX(gold) FROM table_name_83 WHERE silver < 2 AND bronze < 4 |
CREATE TABLE table_28005100_1 (composer VARCHAR, title VARCHAR) | Who was the composer of ain shams? | SELECT composer FROM table_28005100_1 WHERE title = "Ain Shams" |
CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, vehicle VARCHAR) | What is the epa rated combined fuel economy for the Nissan Leaf? | SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE vehicle = "Nissan Leaf" |
CREATE TABLE table_28005100_1 (sound_engineer VARCHAR, title VARCHAR) | How many sound engineers were there for law hakon '3er leek? | SELECT COUNT(sound_engineer) FROM table_28005100_1 WHERE title = "Law Hakon '3er Leek" |
CREATE TABLE table_28005100_1 (no VARCHAR, lyricist VARCHAR) | Which number was the lyricist ahmed metwally? | SELECT no FROM table_28005100_1 WHERE lyricist = "Ahmed Metwally" |
CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, operating_mode VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR) | What is the epa rated combined fuel economy for the all-electric vehicle with dirty electric grid rocky mountains (denver) of 330 g/mi (205 g/km)? | SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE operating_mode = "All-electric" AND dirty_electric_grid_rocky_mountains__denver_ = "330 g/mi (205 g/km)" |
CREATE TABLE table_28003469_1 (approx_duration VARCHAR, event_details VARCHAR) | What is every value for approximate duration when event details is women's foil? | SELECT approx_duration FROM table_28003469_1 WHERE event_details = "Women's Foil" |
CREATE TABLE table_name_60 (lane INTEGER, athlete VARCHAR, react VARCHAR, rank VARCHAR, time VARCHAR) | Which Lane has a Rank larger than 3, and a Time larger than 45.63, and a Reaction smaller than 0.28800000000000003, and an Athlete of geiner mosquera? | SELECT MAX(lane) FROM table_name_60 WHERE rank > 3 AND time > 45.63 AND react < 0.28800000000000003 AND athlete = "geiner mosquera" |
CREATE TABLE table_27994983_8 (viewers INTEGER, draw VARCHAR) | How many viewers are the when the draw is 3? | SELECT MAX(viewers) FROM table_27994983_8 WHERE draw = 3 |
CREATE TABLE table_name_95 (year INTEGER, competition VARCHAR, waterford_score VARCHAR) | What is the lowest year that has all-ireland hurling final as the competition, and 6-08 (24) as the waterford score? | SELECT MIN(year) FROM table_name_95 WHERE competition = "all-ireland hurling final" AND waterford_score = "6-08 (24)" |
CREATE TABLE table_name_7 (waterford_score VARCHAR, year VARCHAR, competition VARCHAR) | What is the waterford score that has a year prior to 1963, with all-ireland hurling final replay as the competition? | SELECT waterford_score FROM table_name_7 WHERE year < 1963 AND competition = "all-ireland hurling final replay" |
CREATE TABLE table_28027307_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR) | How many millions of U.S. viewers watched the episode with the production code of 6AKY07? | SELECT us_viewers__millions_ FROM table_28027307_1 WHERE production_code = "6AKY07" |
CREATE TABLE table_name_39 (prominence__m_ INTEGER, country VARCHAR) | What is the sum of the prominence in m of slovakia? | SELECT SUM(prominence__m_) FROM table_name_39 WHERE country = "slovakia" |
CREATE TABLE table_2803106_1 (tonioli VARCHAR, week__number VARCHAR, dixon VARCHAR) | On week 11 when Dixon scored an 8, what was tonioli's score? | SELECT tonioli FROM table_2803106_1 WHERE week__number = 11 AND dixon = "8" |
CREATE TABLE table_28039032_1 (winners_from_previous_round VARCHAR, round VARCHAR) | How many winners from previous round were there in the semi finals? | SELECT winners_from_previous_round FROM table_28039032_1 WHERE round = "Semi finals" |
CREATE TABLE table_name_10 (rank INTEGER, time VARCHAR) | What was the rank when then time was 7:52.53? | SELECT MIN(rank) FROM table_name_10 WHERE time = "7:52.53" |
CREATE TABLE table_name_91 (water__sqmi_ INTEGER, pop__2010_ VARCHAR, longitude VARCHAR) | Which Water (sqmi) has a Pop (2010) of 359, and a Longitude smaller than -97.176811? | SELECT MAX(water__sqmi_) FROM table_name_91 WHERE pop__2010_ = 359 AND longitude < -97.176811 |
CREATE TABLE table_28037619_2 (production_code VARCHAR, us_viewers__million_ VARCHAR) | How many production codes are there for the episode that had 4.36 million u.s. viewers? | SELECT COUNT(production_code) FROM table_28037619_2 WHERE us_viewers__million_ = "4.36" |
CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_venue__city_ VARCHAR) | When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament? | SELECT conference AS Tournament FROM table_24160890_3 WHERE tournament_venue__city_ = "Madison Square Garden ( New York City, New York )" |
CREATE TABLE table_name_48 (ansi_code INTEGER, latitude VARCHAR, pop__2010_ VARCHAR, geo_id VARCHAR, water__sqmi_ VARCHAR) | Which ANSI code has a GEO ID larger than 3809927140, and a Water (sqmi) smaller than 0.492, and a Pop (2010) of 37, and a Latitude larger than 48.245979? | SELECT MIN(ansi_code) FROM table_name_48 WHERE geo_id > 3809927140 AND water__sqmi_ < 0.492 AND pop__2010_ = 37 AND latitude > 48.245979 |
CREATE TABLE table_24160890_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR) | When Cincinnati is the tournament winner how many regular season winners are there? | SELECT COUNT(regular_season_winner) FROM table_24160890_3 WHERE tournament_winner = "Cincinnati" |
CREATE TABLE table_24160890_3 (conference VARCHAR, regular_season_winner VARCHAR) | When troy is the regular season winner what is the conference tournament? | SELECT conference AS Tournament FROM table_24160890_3 WHERE regular_season_winner = "Troy" |
CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, district VARCHAR) | When were the successor/s seated for Ohio 10th? | SELECT date_successor_seated FROM table_2417345_4 WHERE district = "Ohio 10th" |
CREATE TABLE table_name_88 (year_joined INTEGER, mascot VARCHAR, size VARCHAR, previous_conference VARCHAR) | Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels? | SELECT AVG(year_joined) FROM table_name_88 WHERE size > 93 AND previous_conference = "none (new school)" AND mascot = "rebels" |
CREATE TABLE table_name_68 (year_joined VARCHAR, school VARCHAR, size VARCHAR, ihsaa_class VARCHAR) | How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del? | SELECT COUNT(year_joined) FROM table_name_68 WHERE size < 417 AND ihsaa_class = "a" AND school = "jac-cen-del" |
CREATE TABLE table_name_97 (week INTEGER, result VARCHAR, partner VARCHAR) | In what Week resulting in the bottom 3 was Endre Jansen Partner? | SELECT MAX(week) FROM table_name_97 WHERE result = "bottom 3" AND partner = "endre jansen" |
CREATE TABLE table_name_5 (position VARCHAR, round VARCHAR, pick__number VARCHAR) | What position has 7 as the round, with a pick # less than 214? | SELECT position FROM table_name_5 WHERE round = 7 AND pick__number < 214 |
CREATE TABLE table_28081876_6 (written_by VARCHAR, original_air_date VARCHAR) | Who were the authors of the episode first broadcast on August 10, 2012? | SELECT written_by FROM table_28081876_6 WHERE original_air_date = "August 10, 2012" |
CREATE TABLE table_28092844_16 (intermediate_sprints_classification_klasyfikacja_najaktywniejszych VARCHAR, winner VARCHAR) | What was the intermediate sprint classification for the race whose winner was Daniel Martin? | SELECT intermediate_sprints_classification_klasyfikacja_najaktywniejszych FROM table_28092844_16 WHERE winner = "Daniel Martin" |
CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_żółta_koszulka VARCHAR) | Which teams classification winners had a general classification winner of Allan Davis? | SELECT teams_classification FROM table_28092844_16 WHERE general_classification_żółta_koszulka = "Allan Davis" |
CREATE TABLE table_24353141_1 (original_tokyo___seoul_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR) | While the original 1st us tour cast included nicci claspell, who was in the original tokyo/seoul tour cast? | SELECT original_tokyo___seoul_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = "Nicci Claspell" |
CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR) | Who won the points classification when the teams classification winner was Lampre-Farnese? | SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = "Lampre-Farnese" |
CREATE TABLE table_name_73 (country VARCHAR, airport VARCHAR) | Which country is the nnamdi azikiwe international airport in? | SELECT country FROM table_name_73 WHERE airport = "nnamdi azikiwe international airport" |
CREATE TABLE table_name_79 (lane INTEGER, nationality VARCHAR, react VARCHAR) | What is the average lane for Kenya with react larger than 0.212? | SELECT AVG(lane) FROM table_name_79 WHERE nationality = "kenya" AND react > 0.212 |
CREATE TABLE table_name_64 (writer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR) | Who wrote the album recorded at funhouse studios with a time of 3:27? | SELECT writer_s_ FROM table_name_64 WHERE recorded_at = "funhouse studios" AND time = "3:27" |
CREATE TABLE table_28138035_27 (womens_singles VARCHAR, year_location VARCHAR) | Who is listed under womens singles when year location is 1998 doha? | SELECT womens_singles FROM table_28138035_27 WHERE year_location = "1998 Doha" |
CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR) | How many year locations are there for the womens doubles in jing junhong li jiawei? | SELECT COUNT(year_location) FROM table_28138035_20 WHERE womens_doubles = "Jing Junhong Li Jiawei" |
CREATE TABLE table_28138035_20 (mens_singles VARCHAR, mens_doubles VARCHAR) | How many players are there for mens singles when chen qi ma lin played mens doubles? | SELECT COUNT(mens_singles) FROM table_28138035_20 WHERE mens_doubles = "Chen Qi Ma Lin" |
CREATE TABLE table_28138035_20 (year_location VARCHAR, mens_doubles VARCHAR) | How many years did lin gaoyuan wu jiaji play mens doubles? | SELECT COUNT(year_location) FROM table_28138035_20 WHERE mens_doubles = "Lin Gaoyuan Wu Jiaji" |
CREATE TABLE table_24565004_19 (goals¹ INTEGER, period VARCHAR) | Name the most goals for 1972 – 1975, 1976 – 1982 | SELECT MAX(goals¹) FROM table_24565004_19 WHERE period = "1972 – 1975, 1976 – 1982" |
CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR) | What's the exposure fusion of Panoramaplus x4? | SELECT exposure_fusion FROM table_name_38 WHERE name = "panoramaplus x4" |
CREATE TABLE table_28164986_4 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR) | when was the next coach appointed after niger tornadoes fired their coach? | SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure = "fired" AND team = "Niger Tornadoes" |
CREATE TABLE table_2461720_1 (language_of_films VARCHAR, theatre_name VARCHAR) | Name the total number of language of films for méga-plex taschereau imax | SELECT COUNT(language_of_films) FROM table_2461720_1 WHERE theatre_name = "Méga-Plex Taschereau IMAX" |
CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR) | how many managers left sunshine stars? | SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = "Sunshine Stars" |
CREATE TABLE table_2461720_1 (location VARCHAR, theatre_name VARCHAR) | Name the location for democratic méga-plex taschereau imax | SELECT location FROM table_2461720_1 WHERE theatre_name = "Méga-Plex Taschereau IMAX" |
CREATE TABLE table_name_79 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, location VARCHAR) | Which IHSAA Football Class has a IHSAA Class of aaa, and a Location of nashville? | SELECT ihsaa_football_class FROM table_name_79 WHERE ihsaa_class = "aaa" AND location = "nashville" |
CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR) | How many mystic arte have hisui (jadeite) hearts 1 as the character? | SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = "Hisui (Jadeite) Hearts 1" |
CREATE TABLE table_2468961_3 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR) | What was the title of the episode written by Bob Rosenfarb and directed by Richard Correll? | SELECT title FROM table_2468961_3 WHERE written_by = "Bob Rosenfarb" AND directed_by = "Richard Correll" |
CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR) | What is the name of the performance zhu xiaoming performed? | SELECT act FROM table_28180840_15 WHERE name_name_of_act = "Zhu Xiaoming" |
CREATE TABLE table_24798489_1 (challenge_winner VARCHAR, original_airdate VARCHAR) | Who was the challenge winner in the episode that originally aired on January 28, 2009? | SELECT challenge_winner FROM table_24798489_1 WHERE original_airdate = "January 28, 2009" |
CREATE TABLE table_name_70 (week INTEGER, date VARCHAR, attendance VARCHAR) | What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941? | SELECT MIN(week) FROM table_name_70 WHERE date = "september 19, 1965" AND attendance < 46 OFFSET 941 |
CREATE TABLE table_28181347_6 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) | One 6 November 2007 what was the manner of departure for the coach release in football league one? | SELECT manner_of_departure FROM table_28181347_6 WHERE date_of_appointment = "6 November 2007" |
CREATE TABLE table_247955_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | What was the margin of victory when runner-up was K. J. Choi? | SELECT margin_of_victory FROM table_247955_2 WHERE runner_s__up = "K. J. Choi" |
CREATE TABLE table_2818164_4 (no_in_series INTEGER, directed_by VARCHAR, original_air_date VARCHAR) | What is the series number for the episode directed by jay sandrich that aired October 23, 1986? | SELECT MIN(no_in_series) FROM table_2818164_4 WHERE directed_by = "Jay Sandrich" AND original_air_date = "October 23, 1986" |
CREATE TABLE table_28195971_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR) | What are the title(s) of episodes directed by david solomon and written by marti noxon? | SELECT title FROM table_28195971_1 WHERE directed_by = "David Solomon" AND written_by = "Marti Noxon" |
CREATE TABLE table_name_26 (location_attendance VARCHAR, game VARCHAR) | Where is the location of Game 4? | SELECT location_attendance FROM table_name_26 WHERE game = "4" |
CREATE TABLE table_24786958_2 (week INTEGER, kickoff VARCHAR) | What week had kickoff time at 6:00 p.m.? | SELECT MIN(week) FROM table_24786958_2 WHERE kickoff = "6:00 p.m." |
CREATE TABLE table_name_97 (std_rank INTEGER, name VARCHAR, year VARCHAR) | How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990? | SELECT SUM(std_rank) FROM table_name_97 WHERE name = "311 south wacker drive" AND year > 1990 |
CREATE TABLE table_name_31 (year VARCHAR, city VARCHAR) | What year was the expansion in the city of San Juan? | SELECT COUNT(year) FROM table_name_31 WHERE city = "san juan" |
CREATE TABLE table_28210383_1 (no__episode__number_ VARCHAR, directed_by VARCHAR, written_by VARCHAR) | What numbered episode was directed by greg colton and written by patrick meighan? | SELECT no__episode__number_ FROM table_28210383_1 WHERE directed_by = "Greg Colton" AND written_by = "Patrick Meighan" |
CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR, away_team VARCHAR) | For the game on 13 December 1975 with Halifax Town as the away team what was the score? | SELECT score FROM table_name_4 WHERE date = "13 december 1975" AND away_team = "halifax town" |
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR) | Who is everyone on the men's doubles when men's singles is Ma Wenge? | SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Ma Wenge" |
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR) | Who are all men's doubles when men's singles is Jean-Michel Saive? | SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Jean-Michel Saive" |
CREATE TABLE table_name_79 (romaji_title VARCHAR, tv_station VARCHAR, japanese_title VARCHAR) | What is the Romanji title for around40〜注文の多いオンナたち〜 on TBS? | SELECT romaji_title FROM table_name_79 WHERE tv_station = "tbs" AND japanese_title = "around40〜注文の多いオンナたち〜" |
CREATE TABLE table_name_70 (japanese_title VARCHAR, average_ratings VARCHAR, episodes VARCHAR, tv_station VARCHAR) | What is the Japanese title for the episode bigger than 10 on TBS with average ratings of 14.8%? | SELECT japanese_title FROM table_name_70 WHERE episodes > 10 AND tv_station = "tbs" AND average_ratings = "14.8%" |
CREATE TABLE table_name_86 (school VARCHAR, year_joined VARCHAR, mascot VARCHAR) | Which School has a Year Joined larger than 1926, and a Mascot of vikings? | SELECT school FROM table_name_86 WHERE year_joined > 1926 AND mascot = "vikings" |
CREATE TABLE table_name_13 (_number___county VARCHAR, year_joined VARCHAR, previous_conference VARCHAR) | Which #/ County has a Year Joined larger than 1926, and a Previous Conference of olympic? | SELECT _number___county FROM table_name_13 WHERE year_joined > 1926 AND previous_conference = "olympic" |
CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR) | How many seasons are there with Formula Holden? | SELECT COUNT(seasons) FROM table_2822193_1 WHERE series = "Formula Holden" |
CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, date VARCHAR) | What is the Score of the 1996 Asian Cup Qualification on June 29, 1996? | SELECT score FROM table_name_24 WHERE competition = "1996 asian cup qualification" AND date = "june 29, 1996" |
CREATE TABLE table_2822193_1 (point_finishes__non_podium_ INTEGER, series VARCHAR) | What's the most amount of point finishes for v8supercar? | SELECT MAX(point_finishes__non_podium_) FROM table_2822193_1 WHERE series = "V8Supercar" |
CREATE TABLE table_name_4 (enrollment VARCHAR, ihsaa_class VARCHAR, primary_conference VARCHAR, county VARCHAR) | Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa? | SELECT enrollment FROM table_name_4 WHERE primary_conference = "mid-hoosier" AND county = "16 decatur" AND ihsaa_class = "aa" |
CREATE TABLE table_25016555_5 (blocks VARCHAR, assists VARCHAR) | When 21 is the number of assists how many sets of blocks are there? | SELECT COUNT(blocks) FROM table_25016555_5 WHERE assists = 21 |
CREATE TABLE table_25030512_12 (candidates VARCHAR, district VARCHAR, first_elected VARCHAR) | When 2010 is the first elected and Florida 7 is the district who are the candidates? | SELECT candidates FROM table_25030512_12 WHERE district = "Florida 7" AND first_elected = "2010" |
CREATE TABLE table_28281704_1 (tenant VARCHAR, country VARCHAR, stadium VARCHAR) | Name the number of tenants for russia at the saransk stadium | SELECT COUNT(tenant) FROM table_28281704_1 WHERE country = "Russia" AND stadium = "Saransk stadium" |
CREATE TABLE table_name_96 (l2_cache VARCHAR, gpu_model VARCHAR, frequency VARCHAR) | What is the L2 cache for the processor with iris pro graphics 5200 and frequency of 2.6 ghz? | SELECT l2_cache FROM table_name_96 WHERE gpu_model = "iris pro graphics 5200" AND frequency = "2.6 ghz" |
CREATE TABLE table_2501754_3 (original_airdate VARCHAR, prod_code VARCHAR) | List the 1st air date for the episode with a iceb786e production code. | SELECT original_airdate FROM table_2501754_3 WHERE prod_code = "ICEB786E" |
CREATE TABLE table_name_14 (frequency VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR) | What is the frequency of the processor released at $383, with a sSpec of sr15f(c0)? | SELECT frequency FROM table_name_14 WHERE release_price___usd__ = "$383" AND sspec_number = "sr15f(c0)" |
CREATE TABLE table_28286776_12 (cap_s_ VARCHAR, club_s_ VARCHAR) | How many items are listed under caps when burnley is the club team? | SELECT COUNT(cap_s_) FROM table_28286776_12 WHERE club_s_ = "Burnley" |
CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR) | Who is the driver of the Chevrolet engine that is sponsored by godaddy.com? | SELECT driver_s_ FROM table_2503102_1 WHERE engine = "Chevrolet" AND car_sponsor_s_ = "GoDaddy.com" |
CREATE TABLE table_25042332_16 (below_50_percentage_of_median_income VARCHAR, below_40_percentage_of_median_income VARCHAR) | What percentage of the population is below 50% of the median income in the region where 10.4% of the population earns below 40% of the median income? | SELECT COUNT(below_50_percentage_of_median_income) FROM table_25042332_16 WHERE below_40_percentage_of_median_income = "10.4%" |
CREATE TABLE table_25042332_16 (median_income___intl INTEGER, below_60_percentage_of_median_income VARCHAR) | What is the median income for the region where 24.4% pf people make below 60% of the median income? | SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE below_60_percentage_of_median_income = "24.4%" |
CREATE TABLE table_28298589_2 (site VARCHAR, time VARCHAR, visiting_team VARCHAR) | How many site entries are there at 3:30pm and the visiting team is coastal carolina? | SELECT COUNT(site) FROM table_28298589_2 WHERE time = "3:30pm" AND visiting_team = "Coastal Carolina" |
CREATE TABLE table_25042332_33 (region VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR) | Which region had a life expectancy at birth of 77.9 from 2001-2002? | SELECT region FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = "77.9" |
CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR) | Who is the runner-up for season 2011–12? | SELECT runner_up FROM table_25058269_1 WHERE season = "2011–12" |
CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR) | When hayden roulston is the winner what is the stage? | SELECT stage FROM table_28298471_14 WHERE winner = "Hayden Roulston" |
CREATE TABLE table_name_52 (country VARCHAR, base VARCHAR, play VARCHAR) | What Country has the Play The Libation Bearers a Base of Mecklenburg? | SELECT country FROM table_name_52 WHERE base = "mecklenburg" AND play = "the libation bearers" |
CREATE TABLE table_28348757_6 (written_by VARCHAR, production_code VARCHAR) | Who wrote the episode with the code xle05012? | SELECT written_by FROM table_28348757_6 WHERE production_code = "XLE05012" |
CREATE TABLE table_name_54 (surface VARCHAR, opponent_in_the_final VARCHAR) | The final match played against Evie Dominikovic was played on what surface? | SELECT surface FROM table_name_54 WHERE opponent_in_the_final = "evie dominikovic" |
CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR) | What is the area of the corporation named the powell river, the corporation of the city of? | SELECT area__km²_ FROM table_28367242_1 WHERE corporate_name = "Powell River, The Corporation of the City of" |
CREATE TABLE table_25256368_1 (february_2010 VARCHAR, january_2010 VARCHAR) | Name the feb 2010 for january 2010 for 6.2% | SELECT february_2010 FROM table_25256368_1 WHERE january_2010 = "6.2%" |
CREATE TABLE table_25277262_2 (directed_by VARCHAR, no_in_season VARCHAR) | How many people directed episode 3 in the season? | SELECT COUNT(directed_by) FROM table_25277262_2 WHERE no_in_season = 3 |
CREATE TABLE table_name_86 (method VARCHAR, event VARCHAR, round VARCHAR, res VARCHAR) | Which method had a 3 rounds, result in a loss and the Juiz de Fora - fight 1 event? | SELECT method FROM table_name_86 WHERE round = "3" AND res = "loss" AND event = "juiz de fora - fight 1" |
CREATE TABLE table_name_42 (round VARCHAR, opponent VARCHAR) | In which round was Gabriel Veiga the opponent? | SELECT round FROM table_name_42 WHERE opponent = "gabriel veiga" |
CREATE TABLE table_28365816_2 (conference VARCHAR, tournament_winner VARCHAR) | During what conference is North Carolina listed as the tournament winner? | SELECT conference FROM table_28365816_2 WHERE tournament_winner = "North Carolina" |
CREATE TABLE table_25330991_3 (reidsville VARCHAR, information VARCHAR) | Name the reidsville for enrollment | SELECT reidsville FROM table_25330991_3 WHERE information = "Enrollment" |
CREATE TABLE table_name_55 (country VARCHAR, athlete VARCHAR, notes VARCHAR, rank VARCHAR) | what is the country when the nots is sa/b, the rank is more than 1 and the athlete is zhang xiuyun? | SELECT country FROM table_name_55 WHERE notes = "sa/b" AND rank > 1 AND athlete = "zhang xiuyun" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.