context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_19210115_1 (affiliation VARCHAR, nickname VARCHAR) | What is the affiliation of the University called Explorers? | SELECT affiliation FROM table_19210115_1 WHERE nickname = "Explorers" |
CREATE TABLE table_19215259_1 (frequency VARCHAR, branding VARCHAR) | What is the frequency of 101.5 News FM? | SELECT frequency FROM table_19215259_1 WHERE branding = "101.5 News FM" |
CREATE TABLE table_19215259_1 (location VARCHAR, power__kw_ VARCHAR, frequency VARCHAR) | Where is the frequency 102.3mhz and 5kw power? | SELECT location FROM table_19215259_1 WHERE power__kw_ = "5kW" AND frequency = "102.3MHz" |
CREATE TABLE table_26996293_7 (college VARCHAR, player VARCHAR) | What is the college where player terry moss attended? | SELECT college FROM table_26996293_7 WHERE player = "Terry Moss" |
CREATE TABLE table_name_97 (player VARCHAR, debut VARCHAR, born VARCHAR) | Who was the player with a debut of age 18 v plymouth , 14 august 2012, and born in Portsmouth? | SELECT player FROM table_name_97 WHERE debut = "age 18 v plymouth , 14 august 2012" AND born = "portsmouth" |
CREATE TABLE table_27003223_4 (democratic VARCHAR, registered_voters VARCHAR) | what is the percentage of democratic voters in which the registered voters is 67.8%? | SELECT democratic FROM table_27003223_4 WHERE registered_voters = "67.8%" |
CREATE TABLE table_19304764_2 (recognised_seats VARCHAR, discipline VARCHAR) | Name the recognised seats for pharmacology | SELECT recognised_seats FROM table_19304764_2 WHERE discipline = "Pharmacology" |
CREATE TABLE table_name_38 (year INTEGER, developer_s_ VARCHAR) | What is the smallest year when Ubisoft Montreal was the developer (s)? | SELECT MIN(year) FROM table_name_38 WHERE developer_s_ = "ubisoft montreal" |
CREATE TABLE table_19304764_2 (recognised_seats INTEGER) | Name the least recognised seats | SELECT MIN(recognised_seats) FROM table_19304764_2 |
CREATE TABLE table_19312274_3 (nation VARCHAR, name VARCHAR) | How many nations do the FMS international team represent? | SELECT COUNT(nation) FROM table_19312274_3 WHERE name = "FMS International" |
CREATE TABLE table_1939214_1 (year VARCHAR, league VARCHAR, regular_season VARCHAR) | In what year did the team compete in the 2nd, Northeast season of the USL PDL League? | SELECT year FROM table_1939214_1 WHERE league = "USL PDL" AND regular_season = "2nd, Northeast" |
CREATE TABLE table_27021001_1 (incumbent VARCHAR, result VARCHAR) | How many incumbents were the result of sanford bishop (d) 57% joseph mccormick (r) 43%? | SELECT COUNT(incumbent) FROM table_27021001_1 WHERE result = "Sanford Bishop (D) 57% Joseph McCormick (R) 43%" |
CREATE TABLE table_name_72 (Id VARCHAR) | What's the 1997 when 1992 is QF, 1995 is 1R, and 1999 is 1R? | SELECT 1997 FROM table_name_72 WHERE 1999 = "1r" AND 1992 = "qf" AND 1995 = "1r" |
CREATE TABLE table_2701625_1 (male_rank VARCHAR, country VARCHAR) | Name the total number of male rank for fiji | SELECT COUNT(male_rank) FROM table_2701625_1 WHERE country = "Fiji" |
CREATE TABLE table_name_91 (total_goals INTEGER, league_cup_apps VARCHAR, fa_cup_goals VARCHAR, name VARCHAR) | What's the total goals for Alan Sweeney having 0 FA Cup goals and fewer than 0 League Cup apps? | SELECT AVG(total_goals) FROM table_name_91 WHERE fa_cup_goals = 0 AND name = "alan sweeney" AND league_cup_apps < 0 |
CREATE TABLE table_19524523_1 (champ_car_world_series__2004_2007_ INTEGER, usac__1956_1995_ VARCHAR) | What is the most Champ Car wins for any driver with a USAC record of 2? | SELECT MAX(champ_car_world_series__2004_2007_) FROM table_19524523_1 WHERE usac__1956_1995_ = 2 |
CREATE TABLE table_name_18 (report VARCHAR, date VARCHAR) | What is the Report on November 15, 2000? | SELECT report FROM table_name_18 WHERE date = "november 15, 2000" |
CREATE TABLE table_27050336_7 (delegate VARCHAR, counties_represented VARCHAR, committee VARCHAR, party VARCHAR) | For democratic party, countries represented is montgomery and where committee is judiciary mention all the delegate name. | SELECT delegate FROM table_27050336_7 WHERE committee = "Judiciary" AND party = "Democratic" AND counties_represented = "Montgomery" |
CREATE TABLE table_name_70 (fips_code INTEGER, area VARCHAR, population__2010_ VARCHAR) | What is the FIPS code for the municipality that has an area of 114.76 sq mi (297.23 sq km) and had a 2010 population of less than 166,327? | SELECT AVG(fips_code) FROM table_name_70 WHERE area = "114.76 sq mi (297.23 sq km)" AND population__2010_ < 166 OFFSET 327 |
CREATE TABLE table_27050336_7 (party VARCHAR, delegate VARCHAR) | For delegate is gaines, tawanna p. tawanna gaines, please specify all the party. | SELECT party FROM table_27050336_7 WHERE delegate = "Gaines, Tawanna P. Tawanna Gaines" |
CREATE TABLE table_19529639_3 (second_national_tour_year_2 VARCHAR, original_west_end_cast VARCHAR) | How many different actors from the Second national tour year 2 played the character played by Oliver Tompsett from the original West End cast? | SELECT COUNT(second_national_tour_year_2) FROM table_19529639_3 WHERE original_west_end_cast = "Oliver Tompsett" |
CREATE TABLE table_name_11 (tonnage___grt__ VARCHAR, date VARCHAR, fate VARCHAR, deaths VARCHAR) | Which Tonnage has a Fate of sunk, and Deaths smaller than 17, and a Date of 16 november 1940? | SELECT tonnage___grt__ FROM table_name_11 WHERE fate = "sunk" AND deaths < 17 AND date = "16 november 1940" |
CREATE TABLE table_name_83 (tonnage___grt__ INTEGER, deaths VARCHAR, date VARCHAR, fate VARCHAR, flag VARCHAR) | How much tonnage has a Fate of sunk, and a Flag of great britain, and a Date of 26 september 1940, and Deaths of 2? | SELECT SUM(tonnage___grt__) FROM table_name_83 WHERE fate = "sunk" AND flag = "great britain" AND date = "26 september 1940" AND deaths = 2 |
CREATE TABLE table_19534677_1 (material_collected VARCHAR, isbn VARCHAR) | Name the total number for material collected for 978-1401221935 | SELECT COUNT(material_collected) FROM table_19534677_1 WHERE isbn = "978-1401221935" |
CREATE TABLE table_19534677_1 (material_collected VARCHAR, volume_title VARCHAR) | Name the total number of material collected for justice league of america by george pérez, vol. 2 | SELECT COUNT(material_collected) FROM table_19534677_1 WHERE volume_title = "Justice League of America by George Pérez, Vol. 2" |
CREATE TABLE table_19611329_1 (year_inducted VARCHAR, inducted_as VARCHAR) | Name the player for 1945 for player | SELECT "player" FROM table_19611329_1 WHERE year_inducted = 1945 AND inducted_as = "player" |
CREATE TABLE table_2709_4 (format VARCHAR, owner VARCHAR) | What is the format for the station owned by Dakota Broadcasting? | SELECT format FROM table_2709_4 WHERE owner = "Dakota Broadcasting" |
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 date_of_appointment FROM table_27091128_2 WHERE outgoing_manager = "Kadir Özcan" |
CREATE TABLE table_27091128_2 (date_of_appointment VARCHAR, replaced_by VARCHAR) | What was date of appointment for Ergün Penbe? | SELECT date_of_appointment FROM table_27091128_2 WHERE replaced_by = "Ergün Penbe" |
CREATE TABLE table_1965650_2 (pick__number INTEGER, player VARCHAR) | Name the least pick number for colin campbell | SELECT MIN(pick__number) FROM table_1965650_2 WHERE player = "Colin Campbell" |
CREATE TABLE table_1965650_2 (college_junior_club_team VARCHAR, player VARCHAR) | Name the college/junior club team for jimmy jones | SELECT college_junior_club_team FROM table_1965650_2 WHERE player = "Jimmy Jones" |
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 original_air_date FROM table_27117365_1 WHERE us_viewers__million_ = "5.85" |
CREATE TABLE table_19651669_1 (final_venue VARCHAR, season VARCHAR) | How many final venues were there in the 1997-98 season? | SELECT COUNT(final_venue) FROM table_19651669_1 WHERE season = "1997-98" |
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 manner_of_departure = "Resigned" AND position_in_table = "10th" |
CREATE TABLE table_name_88 (years VARCHAR, actor VARCHAR, soap_opera VARCHAR, duration VARCHAR) | What years did Marienhof run, which featured Leonore Capell and lasted 10 years? | SELECT years FROM table_name_88 WHERE soap_opera = "marienhof" AND duration = "10 years" AND actor = "leonore capell" |
CREATE TABLE table_1965650_7 (nhl_team VARCHAR, player VARCHAR) | How many teams have a player named Denis Andersen? | SELECT COUNT(nhl_team) FROM table_1965650_7 WHERE player = "Denis Andersen" |
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_vacancy FROM table_27133147_3 WHERE incoming_head_coach = "Carlos Azenha" |
CREATE TABLE table_1969634_1 (enrollment VARCHAR, institution VARCHAR) | How many schools named southern new hampshire university? | SELECT COUNT(enrollment) FROM table_1969634_1 WHERE institution = "Southern New Hampshire University" |
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 us_viewers__million_ FROM table_27116696_1 WHERE directed_by = "Allison Liddi-Brown" |
CREATE TABLE table_name_96 (pba_team VARCHAR, college VARCHAR) | What is Ateneo de Manila's PBA Team? | SELECT pba_team FROM table_name_96 WHERE college = "ateneo de manila" |
CREATE TABLE table_1973729_2 (joined INTEGER, current_conference VARCHAR) | What joined year does Dropped Athletics have? | SELECT MAX(joined) FROM table_1973729_2 WHERE current_conference = "Dropped athletics" |
CREATE TABLE table_name_32 (image_quality VARCHAR, date VARCHAR, multiple_sessions VARCHAR, authentication VARCHAR) | what is the image quality when the multiple sessions is x, the authentication is ✓ and the date is may 15, 2007? | SELECT image_quality FROM table_name_32 WHERE multiple_sessions = "x" AND authentication = "✓" AND date = "may 15, 2007" |
CREATE TABLE table_19744915_15 (couple VARCHAR, vote_percentage VARCHAR) | What couple had a vote percentage of 7.691% | SELECT couple FROM table_19744915_15 WHERE vote_percentage = "7.691%" |
CREATE TABLE table_name_86 (col__m_ VARCHAR, elevation__m_ VARCHAR) | What is the Col entry for the peak with an elevation of 2,308 meters? | SELECT COUNT(col__m_) FROM table_name_86 WHERE elevation__m_ = 2 OFFSET 308 |
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_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_name_75 (city_of_license__market VARCHAR, channel___tv___rf__ VARCHAR, owned_since VARCHAR, affiliation VARCHAR) | What city of license/market has an owned since before 2011,and a affiliation of abc and channel (tv/rf) of 9 (22)? | SELECT city_of_license__market FROM table_name_75 WHERE owned_since < 2011 AND affiliation = "abc" AND channel___tv___rf__ = "9 (22)" |
CREATE TABLE table_27225944_3 (replaced_by VARCHAR, team VARCHAR) | Name the replaced by for slaven belupo | SELECT replaced_by FROM table_27225944_3 WHERE team = "Slaven Belupo" |
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 aspect_ratio FROM table_272313_2 WHERE pixel_aspect_ratio = "SMPTE 259M" AND scanning = "interlaced" |
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 color_analyst_s_ FROM table_2724704_5 WHERE studio_analyst_s_ = "Terry Bowden" AND tv_rating = "17.2" |
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 studio_analyst_s_ FROM table_2724704_5 WHERE network_s_ = "ESPN" AND sideline_reporter_s_ = "Erin Andrews and Tom Rinaldi" |
How many millions of $ were spent in Iceland in 1948/49? | SELECT MAX(*) AS millions FROM countries WHERE country = "Iceland" AND year in (1948, 1949) |
|
CREATE TABLE table_19769687_3 (_percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR) | Name the total number for % popular vote for # of seats won for 83 | SELECT COUNT(_percentage_of_popular_vote) FROM table_19769687_3 WHERE _number_of_seats_won = 83 |
CREATE TABLE table_name_25 (transfer_fee VARCHAR, moving_from VARCHAR) | What was the transfer fee when the moving from was celta de Vigo? | SELECT transfer_fee FROM table_name_25 WHERE moving_from = "celta de vigo" |
CREATE TABLE table_name_21 (transfer_window VARCHAR, moving_from VARCHAR) | What was the transfer window with a moving from of fenerbahçe? | SELECT transfer_window FROM table_name_21 WHERE moving_from = "fenerbahçe" |
CREATE TABLE table_198175_2 (residence_city VARCHAR, english_name VARCHAR) | How many residence cities have an English name of Province of Viborg and Nyslott? | SELECT COUNT(residence_city) FROM table_198175_2 WHERE english_name = "Province of Viborg and Nyslott" |
CREATE TABLE table_name_26 (venue VARCHAR, score VARCHAR, competition VARCHAR) | What venue has a score of 4-0 with the 2002 Tiger Cup listed as the competition? | SELECT venue FROM table_name_26 WHERE score = "4-0" AND competition = "2002 tiger cup" |
CREATE TABLE table_1982739_2 (area VARCHAR, english_name VARCHAR) | What is the total number of areas that are called Nanqiao District? | SELECT COUNT(area) FROM table_1982739_2 WHERE english_name = "Nanqiao District" |
CREATE TABLE table_1982739_2 (english_name VARCHAR, traditional_chinese VARCHAR) | What is the number of English names that have a Traditional Chinese name of 全椒縣? | SELECT COUNT(english_name) FROM table_1982739_2 WHERE traditional_chinese = "全椒縣" |
CREATE TABLE table_19839391_3 (stats INTEGER, pitcher VARCHAR) | What are Doug Davis' maximum pitching stats? | SELECT MAX(stats) FROM table_19839391_3 WHERE pitcher = "Doug Davis" |
CREATE TABLE table_27293285_4 (won VARCHAR, points_against VARCHAR, played VARCHAR, lost VARCHAR) | Name the won for played being 22 and points against 511 and lost being 15 | SELECT won FROM table_27293285_4 WHERE played = "22" AND lost = "15" AND points_against = "511" |
CREATE TABLE table_19864214_3 (no_decisions INTEGER, pitcher VARCHAR) | what is the least number of no decisions for scott feldman category:articles with hcards | SELECT MIN(no_decisions) FROM table_19864214_3 WHERE pitcher = "Scott Feldman Category:Articles with hCards" |
CREATE TABLE table_27294107_11 (event VARCHAR, round_of_32 VARCHAR) | What was the event when suárez ( tri ) w 16–6 was round of 32? | SELECT event FROM table_27294107_11 WHERE round_of_32 = "Suárez ( TRI ) W 16–6" |
CREATE TABLE table_1992924_3 (spokesperson VARCHAR, commentator VARCHAR) | state all the spokesperson for the channel where commentator is dmitriy guberniyev | SELECT spokesperson FROM table_1992924_3 WHERE commentator = "Dmitriy Guberniyev" |
CREATE TABLE table_name_37 (release_date VARCHAR, title VARCHAR, series VARCHAR, director VARCHAR, production_number VARCHAR) | What date was Apes of Wrath written by Friz Freleng, production number higher than 1496 from series mm released? | SELECT release_date FROM table_name_37 WHERE director = "friz freleng" AND production_number > 1496 AND series = "mm" AND title = "apes of wrath" |
CREATE TABLE table_name_93 (release_date VARCHAR, title VARCHAR, production_number VARCHAR, director VARCHAR) | What is the release date of the episode named Mouse-Placed Kitten with an episode number less than 1495 directed by Robert McKimson? | SELECT release_date FROM table_name_93 WHERE production_number < 1495 AND director = "robert mckimson" AND title = "mouse-placed kitten" |
CREATE TABLE table_19948664_1 (countries_sampled INTEGER, ranking_la__2_ VARCHAR, author___editor___source VARCHAR, year_of_publication VARCHAR) | How many countries were sampled in the index created by The Economist, published in 2007 and ranked 2nd in the LA Ranking? | SELECT MAX(countries_sampled) FROM table_19948664_1 WHERE author___editor___source = "The Economist" AND year_of_publication = "2007" AND ranking_la__2_ = "2nd" |
CREATE TABLE table_19948664_1 (world_ranking__1_ VARCHAR, author___editor___source VARCHAR) | What's the wold ranking of the index by Transparency International? | SELECT world_ranking__1_ FROM table_19948664_1 WHERE author___editor___source = "Transparency International" |
CREATE TABLE table_19948664_1 (countries_sampled VARCHAR, ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR) | How many countries were sampled for the index in 2nd place in the LA ranking and 23rd in the world ranking? | SELECT countries_sampled FROM table_19948664_1 WHERE ranking_la__2_ = "2nd" AND world_ranking__1_ = "23rd" |
CREATE TABLE table_2731431_1 (col_location VARCHAR, col_height__m_ VARCHAR) | What is the col location with a col height (m) of 1107? | SELECT col_location FROM table_2731431_1 WHERE col_height__m_ = 1107 |
CREATE TABLE table_1999350_1 (playoffs VARCHAR, open_canada_cup VARCHAR, regular_season VARCHAR) | What is the playoffs result in years where Open Canada Cup was "N/A" and regular season result was "2nd, New England"? | SELECT playoffs FROM table_1999350_1 WHERE open_canada_cup = "N/A" AND regular_season = "2nd, New England" |
CREATE TABLE table_19948664_1 (index__year_ VARCHAR, author___editor___source VARCHAR, ranking_la__2_ VARCHAR) | What index was created by the United Nations (UNDP) and reached 2nd place in the LA Ranking? | SELECT index__year_ FROM table_19948664_1 WHERE author___editor___source = "United Nations (UNDP)" AND ranking_la__2_ = "2nd" |
CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR) | how many times was the catalog number cal04 / 0091037553546? | SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546" |
CREATE TABLE table_27332038_1 (directed_by VARCHAR, written_by VARCHAR) | who directed the episode that elaine ko wrote? | SELECT directed_by FROM table_27332038_1 WHERE written_by = "Elaine Ko" |
CREATE TABLE table_2001348_1 (ilo_code VARCHAR, revising_convention_s_ VARCHAR) | How many ILO codes are there with revising conventions of 'this convention, work in fishing convention'? | SELECT COUNT(ilo_code) FROM table_2001348_1 WHERE revising_convention_s_ = "this convention, Work in Fishing Convention" |
CREATE TABLE table_name_42 (attendance INTEGER, venue VARCHAR, opponent VARCHAR) | What is the highest attendance for the match against west ham united at the venue of a? | SELECT MAX(attendance) FROM table_name_42 WHERE venue = "a" AND opponent = "west ham united" |
CREATE TABLE table_name_50 (league_goals VARCHAR, league_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR) | what is the league goals when the fa cup goals is higher than 0, the fa cup apps is 2 and the league apps is 45? | SELECT league_goals FROM table_name_50 WHERE fa_cup_goals > 0 AND fa_cup_apps = "2" AND league_apps = "45" |
CREATE TABLE table_20018310_1 (users___number_ VARCHAR, irrigation_district VARCHAR, juntas_de_regantes__wub_ VARCHAR) | What's the number of users in the Nisibon-Yuma within the Del Este district? | SELECT users___number_ FROM table_20018310_1 WHERE irrigation_district = "Del Este" AND juntas_de_regantes__wub_ = "Nisibon-Yuma" |
CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_rating__millions_ VARCHAR) | How many total itv viewers were there for the episode with official itv ratings of 10.24 million? | SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_rating__millions_ = "10.24" |
CREATE TABLE table_20032301_3 (tom_emmer__r_ VARCHAR, matt_entenza__dfl_ VARCHAR) | How many polls show different percentages for Tom Emmer and 38% for Matt Entenza? | SELECT COUNT(tom_emmer__r_) FROM table_20032301_3 WHERE matt_entenza__dfl_ = "38%" |
CREATE TABLE table_27374004_2 (team_captain VARCHAR, shirt_sponsor VARCHAR) | What is the team captain when the shirt sponser is quick? | SELECT team_captain FROM table_27374004_2 WHERE shirt_sponsor = "Quick" |
CREATE TABLE table_27374004_2 (chairman VARCHAR, current_manager VARCHAR) | Who is the chairman when the current manager is bob peeters? | SELECT chairman FROM table_27374004_2 WHERE current_manager = "Bob Peeters" |
CREATE TABLE table_name_66 (album_number VARCHAR, chinese__simplified_ VARCHAR) | What is the album number for the record 情歌没有告诉你, simplified from the traditional Chinese name? | SELECT album_number FROM table_name_66 WHERE chinese__simplified_ = "情歌没有告诉你" |
CREATE TABLE table_27369069_4 (university VARCHAR, soccer_stadium VARCHAR) | What is the university where the soccer stadium is terrain #2 of complexe sportif claude-robillard? | SELECT university FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard" |
CREATE TABLE table_27374004_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) | How many times did outgoing manager Bart de Roover vacated a position? | SELECT COUNT(date_of_vacancy) FROM table_27374004_4 WHERE outgoing_manager = "Bart De Roover" |
CREATE TABLE table_27374004_4 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR) | Who was the outgoing manager of the team in 15th position that was sacked? | SELECT outgoing_manager FROM table_27374004_4 WHERE manner_of_departure = "Sacked" AND position_in_table = "15th" |
CREATE TABLE table_20159025_1 (driver VARCHAR, part_1 VARCHAR) | Who was the driver when the time in part 3 was 1:31.386? | SELECT driver FROM table_20159025_1 WHERE part_1 = "1:31.386" |
CREATE TABLE table_20345624_2 (title VARCHAR, original_airdate VARCHAR) | Name the title that aired on 5 august 1967 | SELECT COUNT(title) FROM table_20345624_2 WHERE original_airdate = "5 August 1967" |
CREATE TABLE table_27383390_4 (outgoing_head_coach VARCHAR, incoming_head_coach VARCHAR) | Who is the outgoing head coach when the incoming head coach is abdollah veysi? | SELECT outgoing_head_coach FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi" |
CREATE TABLE table_name_29 (giro_wins INTEGER, young_rider VARCHAR, jerseys VARCHAR, country VARCHAR) | what is the giro wins when jerseys is 2, country is portugal and young rider is more than 0? | SELECT SUM(giro_wins) FROM table_name_29 WHERE jerseys = 2 AND country = "portugal" AND young_rider > 0 |
CREATE TABLE table_name_19 (penalty VARCHAR, player VARCHAR) | What is the penalty for Jonathan Toews? | SELECT penalty FROM table_name_19 WHERE player = "jonathan toews" |
CREATE TABLE table_20573232_1 (others_percentage VARCHAR, mccain_percentage VARCHAR) | What is the percentage of others when McCain is at 57.7% | SELECT others_percentage FROM table_20573232_1 WHERE mccain_percentage = "57.7%" |
CREATE TABLE table_274117_5 (seasons_by_team VARCHAR, position VARCHAR, number VARCHAR) | What are seasons by team for Pro Bowl appearances of the player who was an OL and had 11 appearances? | SELECT seasons_by_team FROM table_274117_5 WHERE position = "OL" AND number = 11 |
CREATE TABLE table_name_85 (competition VARCHAR, assist_pass VARCHAR, result VARCHAR, location VARCHAR) | Which competition has a result of 2-0 in Ferreiras with an assist/pass by Casey Nogueira? | SELECT competition FROM table_name_85 WHERE result = "2-0" AND location = "ferreiras" AND assist_pass = "casey nogueira" |
CREATE TABLE table_20683381_3 (for___percentage_ VARCHAR, against___percentage_ VARCHAR) | When 17,874 (33.2) is the percentage against what is the percentage for? | SELECT for___percentage_ FROM table_20683381_3 WHERE against___percentage_ = "17,874 (33.2)" |
CREATE TABLE table_27435931_1 (elevation_ft INTEGER, year VARCHAR) | what was the lowest elevation in april 2006? | SELECT MIN(elevation_ft) FROM table_27435931_1 WHERE year = "April 2006" |
CREATE TABLE table_20683381_3 (against___percentage_ VARCHAR, ±_yes_side_2008___percentage_ VARCHAR) | When +18.1 is the ± yes side 2008 percentage what is the percentage of against? | SELECT against___percentage_ FROM table_20683381_3 WHERE ±_yes_side_2008___percentage_ = "+18.1" |
CREATE TABLE table_name_72 (name VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR) | What player had a transfer window of winter, and free as the transfer fee? | SELECT name FROM table_name_72 WHERE transfer_window = "winter" AND transfer_fee = "free" |
CREATE TABLE table_name_85 (name VARCHAR, transfer_fee VARCHAR, transfer_window VARCHAR, nat VARCHAR) | Which player from GER has a transfer window of summer, and a transfer fee of n/a? | SELECT name FROM table_name_85 WHERE transfer_window = "summer" AND nat = "ger" AND transfer_fee = "n/a" |
CREATE TABLE table_20704243_6 (directed_by VARCHAR, original_air_date VARCHAR) | Who directed the episode that aired on july15,2012? | SELECT directed_by FROM table_20704243_6 WHERE original_air_date = "July15,2012" |
CREATE TABLE table_2071644_2 (weight__kg_m_ VARCHAR, cross_section_area__cm_2__ VARCHAR) | What is the weight with a cross section area of 25.3? | SELECT weight__kg_m_ FROM table_2071644_2 WHERE cross_section_area__cm_2__ = "25.3" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.