context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, country VARCHAR, score VARCHAR) | What is Player, when To Par is "+1", when Country is "United States", and when Score is "71-70=141"? | SELECT player FROM table_name_32 WHERE to_par = "+1" AND country = "united states" AND score = 71 - 70 = 141 |
CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR) | What is Score, when Place is "T8", and when Player is "Orville Moody"? | SELECT score FROM table_name_40 WHERE place = "t8" AND player = "orville moody" |
CREATE TABLE table_name_1 (result VARCHAR, category VARCHAR, year VARCHAR) | WHAT IS THE RESULT FOR best urban/alternative performance, IN 2003 OR GREATER? | SELECT result FROM table_name_1 WHERE category = "best urban/alternative performance" AND year > 2003 |
CREATE TABLE table_name_95 (title VARCHAR, category VARCHAR) | WHAT IS THE TITLE WITH CATEGORY OF best r&b song? | SELECT title FROM table_name_95 WHERE category = "best r&b song" |
CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR, category VARCHAR) | WHAT IS THE RESULT FOR 2003, IN best urban/alternative performance? | SELECT result FROM table_name_79 WHERE year = 2003 AND category = "best urban/alternative performance" |
CREATE TABLE table_16799784_7 (latitude VARCHAR, longitude VARCHAR) | what is the latitude of the feature of longitude 80.0e | SELECT latitude FROM table_16799784_7 WHERE longitude = "80.0E" |
CREATE TABLE table_1682026_6 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR) | what is the amount of profits in billions for companies with a market value of 204.9 billion? | SELECT profits__billion_$_ FROM table_1682026_6 WHERE market_value__billion_$_ = "204.9" |
CREATE TABLE table_name_92 (rank VARCHAR, market_value__billion_$_ VARCHAR, headquarters VARCHAR, assets__billion_$_ VARCHAR, industry VARCHAR) | What is the total rank of the company with less than 248.44 billion in assets, an industry of oil and gas, headquarters in France, and a market value greater than 152.62 billions? | SELECT COUNT(rank) FROM table_name_92 WHERE assets__billion_$_ < 248.44 AND industry = "oil and gas" AND headquarters = "france" AND market_value__billion_$_ > 152.62 |
CREATE TABLE table_name_62 (company VARCHAR, market_value__billion_$_ VARCHAR, profits__billion_$_ VARCHAR, sales__billion_$_ VARCHAR, rank VARCHAR) | What company has more than 195.34 billion in sales, ranked greater than 7, more than 11.29 billion in profits, and a market value greater than 198.14 billion? | SELECT company FROM table_name_62 WHERE sales__billion_$_ > 195.34 AND rank > 7 AND profits__billion_$_ > 11.29 AND market_value__billion_$_ > 198.14 |
CREATE TABLE table_name_6 (college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR) | Which college had a pick in a round under 7, with a pick number 13 and overall was under 186? | SELECT college FROM table_name_6 WHERE round < 7 AND overall < 186 AND pick = 13 |
CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, sport VARCHAR, bronze VARCHAR, total VARCHAR) | What is the smallest number of silvers associated with bronzes under 20, totals of 1, golds of 0, and in Water Polo? | SELECT MIN(silver) FROM table_name_90 WHERE bronze < 20 AND total = 1 AND sport = "water polo" AND gold < 0 |
CREATE TABLE table_17288825_6 (high_rebounds VARCHAR, team VARCHAR) | When @ new orleans is the team who has the highest amount of rebounds? | SELECT high_rebounds FROM table_17288825_6 WHERE team = "@ New Orleans" |
CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR) | When aaron brooks (6) had the highest amount of assists what is the date? | SELECT date FROM table_17288825_6 WHERE high_assists = "Aaron Brooks (6)" |
CREATE TABLE table_name_26 (round INTEGER, college VARCHAR) | Which Round has a College of arizona? | SELECT MIN(round) FROM table_name_26 WHERE college = "arizona" |
CREATE TABLE table_17304308_1 (fin_pos VARCHAR, points VARCHAR, time_retired VARCHAR) | Name the total number of fin pos for 12 points of accident | SELECT COUNT(fin_pos) FROM table_17304308_1 WHERE points = "12" AND time_retired = "Accident" |
CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR) | What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883? | SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = "new private sector banks" AND on_site_atms > 1883 |
CREATE TABLE table_17323529_5 (score VARCHAR, location_attendance VARCHAR) | Name the total number of score for staples center 13,266 | SELECT COUNT(score) FROM table_17323529_5 WHERE location_attendance = "Staples Center 13,266" |
CREATE TABLE table_name_82 (date VARCHAR, effect VARCHAR, place VARCHAR) | What is Date, when Effect is "Shot Down", and when Place is "South of Stanley Airport"? | SELECT date FROM table_name_82 WHERE effect = "shot down" AND place = "south of stanley airport" |
CREATE TABLE table_17356042_1 (title VARCHAR, written_by VARCHAR) | Name the title that was written by r. scott gemmill | SELECT title FROM table_17356042_1 WHERE written_by = "R. Scott Gemmill" |
CREATE TABLE table_17366952_1 (lost VARCHAR, goal_average_1 VARCHAR) | List all losses with average goals of 1.21. | SELECT lost FROM table_17366952_1 WHERE goal_average_1 = "1.21" |
CREATE TABLE table_name_62 (enrollment INTEGER, founded VARCHAR, location VARCHAR, affiliation VARCHAR) | What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846? | SELECT SUM(enrollment) FROM table_name_62 WHERE location = "buffalo, new york" AND affiliation = "public" AND founded > 1846 |
CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VARCHAR) | What year did Bangkok University and Chunnam Dragons have a score of 0-0? | SELECT SUM(season) FROM table_name_31 WHERE team_1 = "bangkok university" AND score = "0-0" AND team_2 = "chunnam dragons" |
CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR) | What is the transfer window for Christian Nerlinger? | SELECT transfer_window FROM table_name_23 WHERE name = "christian nerlinger" |
CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR) | Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100? | SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = "brytus" AND rating < 100 |
CREATE TABLE table_17641314_3 (location_denotes_location_of_school_by_seattle_neighborhood VARCHAR, _does_not_necessary_correspond_with_attendance_area VARCHAR, school VARCHAR) | Name the location for school eckstein | SELECT location_denotes_location_of_school_by_seattle_neighborhood, _does_not_necessary_correspond_with_attendance_area FROM table_17641314_3 WHERE school = "Eckstein" |
CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc_team VARCHAR, position VARCHAR) | Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m? | SELECT name FROM table_name_70 WHERE aafc_team = "los angeles dons" AND position = "fb" AND college = "oklahoma a&m" |
CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) | Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)? | SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)" |
CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR) | What day was the complete 2nd series: volume one released? | SELECT date_released FROM table_17798548_4 WHERE season = "The Complete 2nd Series: Volume One" |
CREATE TABLE table_name_63 (round INTEGER, college_junior_club_team__league_ VARCHAR, position VARCHAR) | Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw? | SELECT AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = "hamilton red wings (oha)" AND position = "rw" |
CREATE TABLE table_17900317_5 (matches INTEGER, runs VARCHAR) | Name the least matches for runs being 276 | SELECT MIN(matches) FROM table_17900317_5 WHERE runs = 276 |
CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR) | Which driver was in 8 rounds with a chassis of dallara f306? | SELECT driver FROM table_name_57 WHERE chassis = "dallara f306" AND rounds = "8" |
CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR) | What is the chassis for Augusto Scalbi on Team RP Motorsport? | SELECT chassis FROM table_name_34 WHERE team = "rp motorsport" AND driver = "augusto scalbi" |
CREATE TABLE table_name_86 (company VARCHAR, profits__billion_$_ VARCHAR, industry VARCHAR, assets__billion_$_ VARCHAR, sales__billion_$_ VARCHAR) | Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28? | SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = "oil and gas" AND profits__billion_$_ = 19.28 |
CREATE TABLE table_18064020_21 (brup VARCHAR, name VARCHAR) | What is the total brup for the team? | SELECT brup FROM table_18064020_21 WHERE name = "total" |
CREATE TABLE table_18064020_21 (no_yds VARCHAR, tfl_yds VARCHAR) | How many yards for the player with tfl-yds of 2.5-4? | SELECT no_yds FROM table_18064020_21 WHERE tfl_yds = "2.5-4" |
CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR) | What is the lowest rank of Gatwick Airport? | SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = "Gatwick Airport" |
CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, writing_system_2__german_based_ VARCHAR) | What is the modern german standard wording for the german based writing system 2 phrase "wie mir die vergewwe wu uns schuldich sinn."? | SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE writing_system_2__german_based_ = "wie mir die vergewwe wu uns schuldich sinn." |
CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR) | What is the lenth (miles) of endpoints westlake/macarthur park to wilshire/western? | SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = "Westlake/MacArthur Park to Wilshire/Western" |
CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR) | WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100? | SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100 |
CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR) | What was the game edition when they played on the clay (i) surface and the outcome was a winner? | SELECT edition FROM table_18183850_12 WHERE surface = "Clay (i)" AND outcome = "Winner" |
CREATE TABLE table_name_22 (average_cards_a_game INTEGER, season VARCHAR, red_cards VARCHAR) | Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3? | SELECT MIN(average_cards_a_game) FROM table_name_22 WHERE season = "2004/2005" AND red_cards > 3 |
CREATE TABLE table_18220102_1 (number_of_screening VARCHAR, opening_film VARCHAR) | How many number of screenings have an opening film of the journey of vaan nguyen? | SELECT COUNT(number_of_screening) FROM table_18220102_1 WHERE opening_film = "The Journey of Vaan Nguyen" |
CREATE TABLE table_18217750_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR) | What series number garnered 20.64 million viewers? | SELECT series__number FROM table_18217750_1 WHERE us_viewers__millions_ = "20.64" |
CREATE TABLE table_18278508_2 (date_performed VARCHAR, main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) | What date did Jatin Shah and Shalini Chandran perform? | SELECT date_performed FROM table_18278508_2 WHERE main_contestant = "Jatin Shah" AND co_contestant__yaar_vs_pyaar_ = "Shalini Chandran" |
CREATE TABLE table_18303274_1 (grand_prix VARCHAR, pole_position VARCHAR, round VARCHAR) | Which round 5 Grand Prix had Daijiro Hiura at pole position? | SELECT grand_prix FROM table_18303274_1 WHERE pole_position = "Daijiro Hiura" AND round = 5 |
CREATE TABLE table_18303274_1 (grand_prix VARCHAR, race_winner VARCHAR) | What grand prixs did Daijiro Hiura win? | SELECT grand_prix FROM table_18303274_1 WHERE race_winner = "Daijiro Hiura" |
CREATE TABLE table_name_65 (score VARCHAR, money___$__ VARCHAR) | What score won $36,090? | SELECT score FROM table_name_65 WHERE money___$__ = "36,090" |
CREATE TABLE table_name_61 (losses VARCHAR, school VARCHAR, conference VARCHAR, games VARCHAR, wins VARCHAR) | What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School? | SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = "maac" AND school = "fairfield" |
CREATE TABLE table_1840433_2 (number_of_editions VARCHAR, most_wins_by VARCHAR) | How many editions have a most wins value of Franco Marvulli (4)? | SELECT COUNT(number_of_editions) FROM table_1840433_2 WHERE most_wins_by = "Franco Marvulli (4)" |
CREATE TABLE table_18461045_1 (kentucky VARCHAR, illinois VARCHAR) | What was the little league team from Kentucky when the little league team from Illinois was Rock Falls LL Rock Falls? | SELECT kentucky FROM table_18461045_1 WHERE illinois = "Rock Falls LL Rock Falls" |
CREATE TABLE table_18461045_1 (kentucky VARCHAR, indiana VARCHAR, wisconsin VARCHAR) | What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill? | SELECT kentucky FROM table_18461045_1 WHERE indiana = "Brownsburg LL Brownsburg" AND wisconsin = "Merrill LL Merrill" |
CREATE TABLE table_name_39 (performance VARCHAR, class VARCHAR, test_standard VARCHAR, particulate_size_approaching_100_percentage_retention VARCHAR) | Which Performance has a Test Standard of bs en779, and a Particulate size approaching 100% retention of >2µm, and a Class of f6? | SELECT performance FROM table_name_39 WHERE test_standard = "bs en779" AND particulate_size_approaching_100_percentage_retention = ">2µm" AND class = "f6" |
CREATE TABLE table_name_47 (particulate_size_approaching_100_percentage_retention VARCHAR, usage VARCHAR, class VARCHAR) | Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12? | SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = "semi hepa" AND class = "h12" |
CREATE TABLE table_18461045_1 (kentucky VARCHAR, michigan VARCHAR) | What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms? | SELECT kentucky FROM table_18461045_1 WHERE michigan = "Grosse Pointe Farms-City LL Grosse Pointe Farms" |
CREATE TABLE table_18505065_1 (table_points VARCHAR, difference VARCHAR) | How many table points are listed for the deficit is +194? | SELECT COUNT(table_points) FROM table_18505065_1 WHERE difference = "+194" |
CREATE TABLE table_18540104_1 (japanese_title VARCHAR, average_ratings VARCHAR) | What is the Japanese title with an average rating of 11.6%? | SELECT japanese_title FROM table_18540104_1 WHERE average_ratings = "11.6%" |
CREATE TABLE table_name_27 (lost INTEGER, _percentage_pts VARCHAR) | If the points scored were 93.45%, what's the lowest amount of games lost? | SELECT MIN(lost) FROM table_name_27 WHERE _percentage_pts = 93.45 |
CREATE TABLE table_name_14 (rank VARCHAR, director VARCHAR) | What is the rank of the film directed by Kevin Costner? | SELECT COUNT(rank) FROM table_name_14 WHERE director = "kevin costner" |
CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR) | If the parallel bars is 14.025, what is the total number of gymnasts? | SELECT COUNT(gymnast) FROM table_18662026_10 WHERE parallel_bars = "14.025" |
CREATE TABLE table_18733814_2 (general_classification VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR) | When thomas löfkvist is the young rider classification and alessandro petacchi is the points classification who are the general classifications? | SELECT general_classification FROM table_18733814_2 WHERE points_classification = "Alessandro Petacchi" AND young_rider_classification = "Thomas Löfkvist" |
CREATE TABLE table_18760137_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR) | Name the most numbers dam and gnis query link for borough or census area for fairbanks north star | SELECT MAX(_number_s_dam_and_gnis_query_link) FROM table_18760137_2 WHERE borough_or_census_area = "Fairbanks North Star" |
CREATE TABLE table_name_65 (poles INTEGER, season VARCHAR, wins VARCHAR, position VARCHAR) | What is the average Poles, when Wins is 0, when Position is "nc", and when Season is before 2004? | SELECT AVG(poles) FROM table_name_65 WHERE wins = 0 AND position = "nc" AND season < 2004 |
CREATE TABLE table_name_78 (opponent VARCHAR, tournament VARCHAR) | Who were the opponents for the event in Milan, Italy? | SELECT opponent FROM table_name_78 WHERE tournament = "milan, italy" |
CREATE TABLE table_18933037_3 (mission_target VARCHAR, cause_of_loss VARCHAR) | When hit by sam at 38,500 feet just after bomb release was the cause of loss what is the mission/target? | SELECT mission_target FROM table_18933037_3 WHERE cause_of_loss = "Hit by SAM at 38,500 feet just after bomb release" |
CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR) | When 441st bs, 7th bw is the unit what is the b-52 model? | SELECT b_52_model FROM table_18933037_3 WHERE unit = "441st BS, 7th BW" |
CREATE TABLE table_name_55 (overall INTEGER, round VARCHAR) | What is the overall sum of round 3? | SELECT SUM(overall) FROM table_name_55 WHERE round = 3 |
CREATE TABLE table_191105_2 (performed_by VARCHAR, music_by VARCHAR, episode_title VARCHAR) | When conjunction junction is the episode title and the music is by bob dorough who is the performer? | SELECT performed_by FROM table_191105_2 WHERE music_by = "Bob Dorough" AND episode_title = "Conjunction Junction" |
CREATE TABLE table_name_7 (team_2 VARCHAR) | What was the 1st leg when team 2 was nov milenium? | SELECT 1 AS st_leg FROM table_name_7 WHERE team_2 = "nov milenium" |
CREATE TABLE table_191105_2 (first_aired VARCHAR, performed_by VARCHAR) | When zachary sanders is the performer how many first aired are there? | SELECT COUNT(first_aired) FROM table_191105_2 WHERE performed_by = "Zachary Sanders" |
CREATE TABLE table_name_65 (date_of_official_foundation_of_municipality INTEGER, rank VARCHAR, province VARCHAR) | What is the sum of Date of Official Foundation of Municipality, when Province is "Kermān", when 2006 us "167014", and when Rank is less than 46? | SELECT SUM(date_of_official_foundation_of_municipality) FROM table_name_65 WHERE province = "kermān" AND 2006 = 167014 AND rank < 46 |
CREATE TABLE table_1919538_1 (institute VARCHAR, democratic_renewal VARCHAR) | which institutes gave the democratic renewal 18.0% – 22.0% on a poll from October 6, 1985? | SELECT institute FROM table_1919538_1 WHERE democratic_renewal = "18.0% – 22.0%" |
CREATE TABLE table_19283982_4 (_number_of_seats_to_be_won VARCHAR, _percentage_of_popular_vote VARCHAR) | Name the number of seats to be won being % of popular vote at 6.88% | SELECT _number_of_seats_to_be_won FROM table_19283982_4 WHERE _percentage_of_popular_vote = "6.88%" |
CREATE TABLE table_19283982_4 (_number_of_total_votes VARCHAR, _number_of_seats_won VARCHAR) | Name the number of total votes for # of seats won being 30 | SELECT _number_of_total_votes FROM table_19283982_4 WHERE _number_of_seats_won = 30 |
CREATE TABLE table_name_13 (laps INTEGER, class VARCHAR, entrant VARCHAR) | What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing? | SELECT MAX(laps) FROM table_name_13 WHERE class = "v8" AND entrant = "diet-coke racing" |
CREATE TABLE table_name_51 (player VARCHAR, place VARCHAR, score VARCHAR) | who is the player when the place is t5 and the score is 69-66-71=206? | SELECT player FROM table_name_51 WHERE place = "t5" AND score = 69 - 66 - 71 = 206 |
CREATE TABLE table_19283982_4 (_number_of_candidates VARCHAR, _number_of_seats_won VARCHAR) | Name the number of candidates for # of seats won being 43 | SELECT _number_of_candidates FROM table_19283982_4 WHERE _number_of_seats_won = 43 |
CREATE TABLE table_name_83 (social_ao VARCHAR, external_co VARCHAR, internal_co VARCHAR) | What Social AO has an External CO of simonas savickas, and an Internal CO of pieter kuijsten? | SELECT social_ao FROM table_name_83 WHERE external_co = "simonas savickas" AND internal_co = "pieter kuijsten" |
CREATE TABLE table_19283806_4 (cook_pvi VARCHAR, representative VARCHAR) | What is the Cook PVI for the location that has a representative of Mike Thompson? | SELECT cook_pvi FROM table_19283806_4 WHERE representative = "Mike Thompson" |
CREATE TABLE table_name_46 (location VARCHAR, stadium VARCHAR) | What is the Location of the Hietalahti Stadium? | SELECT location FROM table_name_46 WHERE stadium = "hietalahti stadium" |
CREATE TABLE table_name_48 (lane INTEGER, name VARCHAR, react VARCHAR) | what is the highest lane number for johan wissman when the react is less than 0.242? | SELECT MAX(lane) FROM table_name_48 WHERE name = "johan wissman" AND react < 0.242 |
CREATE TABLE table_name_91 (heat INTEGER, country VARCHAR, react VARCHAR) | what is the heat when the country is united kingdom and react is less than 0.232? | SELECT MAX(heat) FROM table_name_91 WHERE country = "united kingdom" AND react < 0.232 |
CREATE TABLE table_name_52 (competition VARCHAR, club VARCHAR) | What is the 1st leg of the UEFA Champions League Compeition in the Skonto Riga Club? | SELECT 1 AS st_leg FROM table_name_52 WHERE competition = "uefa champions league" AND club = "skonto riga" |
CREATE TABLE table_19439814_1 (girl_group VARCHAR, studio_albums VARCHAR) | What group had 29 studio albums? | SELECT girl_group FROM table_19439814_1 WHERE studio_albums = 29 |
CREATE TABLE table_1965650_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR) | What NHL team was the player from Calgary Centennials (WCHL) drafted for? | SELECT nhl_team FROM table_1965650_11 WHERE college_junior_club_team = "Calgary Centennials (WCHL)" |
CREATE TABLE table_1965650_11 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR) | What team did Russ Wiechnik, on the centre position, come from? | SELECT college_junior_club_team FROM table_1965650_11 WHERE position = "Centre" AND player = "Russ Wiechnik" |
CREATE TABLE table_19753079_35 (party VARCHAR, candidates VARCHAR) | Name the party for yvette clarke (d) 90.6% hugh carr (r) 9.4% | SELECT party FROM table_19753079_35 WHERE candidates = "Yvette Clarke (D) 90.6% Hugh Carr (R) 9.4%" |
CREATE TABLE table_name_96 (pick VARCHAR, round VARCHAR, position VARCHAR, player VARCHAR) | Which Pick has a Position of offensive guard, a Player of reggie mckenzie, and a Round larger than 2? | SELECT COUNT(pick) FROM table_name_96 WHERE position = "offensive guard" AND player = "reggie mckenzie" AND round > 2 |
CREATE TABLE table_19834691_4 (viewers__millions_ VARCHAR, audience_share_in_timeslot VARCHAR) | Name the total number of viewers for audience share in timeslot for 10.2% | SELECT COUNT(viewers__millions_) FROM table_19834691_4 WHERE audience_share_in_timeslot = "10.2%" |
CREATE TABLE table_name_95 (gain INTEGER, loss VARCHAR, long VARCHAR, gp_gs VARCHAR) | Name the lowest Gain which has a Long of 0, and a GP-GS of 4–0, and a Loss smaller than 3? | SELECT MIN(gain) FROM table_name_95 WHERE long = 0 AND gp_gs = "4–0" AND loss < 3 |
CREATE TABLE table_1984697_53 (principal VARCHAR, school VARCHAR) | Who's the principal of Edgewood High School?/ | SELECT principal FROM table_1984697_53 WHERE school = "Edgewood High school" |
CREATE TABLE table_19908651_3 (report VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR) | What's the report of the race won by Michael Andretti, with Nigel Mansell driving the fastest lap? | SELECT report FROM table_19908651_3 WHERE winning_driver = "Michael Andretti" AND fastest_lap = "Nigel Mansell" |
CREATE TABLE table_19929970_1 (directed_by VARCHAR, production_code VARCHAR) | Who directed the episode with production code 4akj01? | SELECT directed_by FROM table_19929970_1 WHERE production_code = "4AKJ01" |
CREATE TABLE table_name_88 (streak VARCHAR, date VARCHAR, team_points VARCHAR, game VARCHAR) | Which streak before game 12 had a team points larger than 113 on November 16? | SELECT streak FROM table_name_88 WHERE team_points > 113 AND game < 12 AND date = "november 16" |
CREATE TABLE table_name_22 (played INTEGER, position VARCHAR, goals_for VARCHAR, lost VARCHAR) | What is the total of Played where the Goals For is higher than 60, the Lost is 8, and the Position is less than 1? | SELECT SUM(played) FROM table_name_22 WHERE goals_for > 60 AND lost = 8 AND position < 1 |
CREATE TABLE table_name_79 (lost INTEGER, team VARCHAR, goals_against VARCHAR) | What is the average Lost for Team Matlock Town when the Goals Against is higher than 66? | SELECT AVG(lost) FROM table_name_79 WHERE team = "matlock town" AND goals_against > 66 |
CREATE TABLE table_name_27 (location VARCHAR, attendance INTEGER) | Where was the attendance more than 57,347? | SELECT location FROM table_name_27 WHERE attendance > 57 OFFSET 347 |
CREATE TABLE table_name_95 (year INTEGER, state VARCHAR, name VARCHAR) | What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa? | SELECT SUM(year) FROM table_name_95 WHERE state = "orissa" AND name = "prof. priyambada mohanty hejmadi" |
CREATE TABLE table_20360535_2 (television_order VARCHAR, original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR) | what is the television order of the episode directed by ben jones, written by j. m. dematteis and originally aired on february6,2009 | SELECT television_order FROM table_20360535_2 WHERE directed_by = "Ben Jones" AND written_by = "J. M. DeMatteis" AND original_air_date = "February6,2009" |
CREATE TABLE table_name_98 (result_f___a VARCHAR, opponents VARCHAR) | hat is the Result F– A when they played against Leeds United? | SELECT result_f___a FROM table_name_98 WHERE opponents = "leeds united" |
CREATE TABLE table_20549371_3 (vehicle VARCHAR, epa_rated_highway_fuel_economy VARCHAR) | What vehicle has an epa highway fuel economy of 109 mpg-e? | SELECT vehicle FROM table_20549371_3 WHERE epa_rated_highway_fuel_economy = "109 mpg-e" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.