context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_name_6 (shirt_no INTEGER, birth_date VARCHAR, weight VARCHAR) | Birth Date of 8 November 1980, and a Weight smaller than 93 has what sum of a shirt number? | SELECT SUM(shirt_no) FROM table_name_6 WHERE birth_date = "8 november 1980" AND weight < 93 |
CREATE TABLE table_name_63 (weight VARCHAR, shirt_no VARCHAR, height VARCHAR) | Shirt number of 18, and a Height larger than 195 has how much weight? | SELECT COUNT(weight) FROM table_name_63 WHERE shirt_no = 18 AND height > 195 |
CREATE TABLE table_name_57 (opponent VARCHAR, record VARCHAR) | Who is the opponent the Seattle Seahawks played when their record was 1-3? | SELECT opponent FROM table_name_57 WHERE record = "1-3" |
CREATE TABLE table_name_92 (runners_up VARCHAR, winning_years VARCHAR) | What is the total number of runners-up for a club with winning years of 2010? | SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = "2010" |
CREATE TABLE table_name_27 (opponent VARCHAR, loss VARCHAR) | Who was the opponent at the game that had a loss of Harden (9-6)? | SELECT opponent FROM table_name_27 WHERE loss = "harden (9-6)" |
CREATE TABLE table_name_17 (laps INTEGER, year VARCHAR, co_drivers VARCHAR, class VARCHAR) | Name the sum of Laps for co-drivers of oliver gavin jan magnussen and class of gts with year less than 2004 | SELECT SUM(laps) FROM table_name_17 WHERE co_drivers = "oliver gavin jan magnussen" AND class = "gts" AND year < 2004 |
CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__°c_ VARCHAR) | What is the hardness for the alloy that is liquid at 243 degrees C? | SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = "243" |
CREATE TABLE table_name_98 (casting_at__°c_ VARCHAR, hardness VARCHAR) | What is the casting temperature for the alloy with hardness 21? | SELECT casting_at__°c_ FROM table_name_98 WHERE hardness = "21" |
CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR) | How many laps were there for a grid of 13? | SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13 |
CREATE TABLE table_name_3 (ranking_round_rank INTEGER, nation VARCHAR, final_rank VARCHAR) | What is the highest Ranking Round Rank for Russia with a Final Rank over 11? | SELECT MAX(ranking_round_rank) FROM table_name_3 WHERE nation = "russia" AND final_rank > 11 |
CREATE TABLE table_name_66 (starting_point VARCHAR, operates VARCHAR, name VARCHAR) | What is the starting point of the north/south operating Palafox Street route? | SELECT starting_point FROM table_name_66 WHERE operates = "north/south" AND name = "palafox street" |
CREATE TABLE table_name_35 (music VARCHAR, team VARCHAR, points_jury VARCHAR) | What is the Music for Team anna guzik & rafał kamiński that has a Points Jury of 24 (7,5,6,6)? | SELECT music FROM table_name_35 WHERE team = "anna guzik & rafał kamiński" AND points_jury = "24 (7,5,6,6)" |
CREATE TABLE table_name_50 (direction VARCHAR, starting_point VARCHAR, terminus VARCHAR) | What is the direction of the route that stars at downtown transit center and has a terminus point at Pensacola Beach? | SELECT direction FROM table_name_50 WHERE starting_point = "downtown transit center" AND terminus = "pensacola beach" |
CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR, loss VARCHAR) | On what Date had a Score of 5-2 and a Loss of Greinke (1-2)? | SELECT date FROM table_name_84 WHERE score = "5-2" AND loss = "greinke (1-2)" |
CREATE TABLE table_name_58 (second VARCHAR, home VARCHAR, team VARCHAR, country VARCHAR) | Who is the second of the North America team from Edmonton, Canada? | SELECT second FROM table_name_58 WHERE team = "north america" AND country = "canada" AND home = "edmonton" |
CREATE TABLE table_name_18 (first_elected INTEGER, district VARCHAR, committee VARCHAR) | What is the average first elected year that has a district of 11 and a committee of environmental matters? | SELECT AVG(first_elected) FROM table_name_18 WHERE district = "11" AND committee = "environmental matters" |
CREATE TABLE table_name_80 (first_elected VARCHAR, committee VARCHAR, counties_represented VARCHAR, district VARCHAR) | What is the total number of First elected that has a country represented in Baltimore county, a district of 06.0 6, and a committee of economic matters? | SELECT COUNT(first_elected) FROM table_name_80 WHERE counties_represented = "baltimore county" AND district = "06.0 6" AND committee = "economic matters" |
CREATE TABLE table_name_86 (district VARCHAR, first_elected VARCHAR, counties_represented VARCHAR, committee VARCHAR) | What district has counties represented by Baltimore county, a committee of health and government operations, and a first elected smaller than 2002? | SELECT district FROM table_name_86 WHERE counties_represented = "baltimore county" AND committee = "health and government operations" AND first_elected < 2002 |
CREATE TABLE table_name_53 (ranking INTEGER, nationality VARCHAR, years VARCHAR) | What was the average ranking of Saudi Arabia in the years of 2000–? | SELECT AVG(ranking) FROM table_name_53 WHERE nationality = "saudi arabia" AND years = "2000–" |
CREATE TABLE table_name_80 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR) | what is the top-5 when the tournament is totals and the top-25 is more than 4? | SELECT AVG(top_5) FROM table_name_80 WHERE tournament = "totals" AND top_25 > 4 |
CREATE TABLE table_name_95 (top_5 VARCHAR, tournament VARCHAR, events VARCHAR) | what is the total number of times the tournament was pga championship and evens is less than 4? | SELECT COUNT(top_5) FROM table_name_95 WHERE tournament = "pga championship" AND events < 4 |
CREATE TABLE table_name_84 (points VARCHAR, year VARCHAR, entrant VARCHAR) | After 1972, how many points did Marlboro Team Alfa Romeo have? | SELECT points FROM table_name_84 WHERE year > 1972 AND entrant = "marlboro team alfa romeo" |
CREATE TABLE table_name_3 (points VARCHAR, engine VARCHAR, chassis VARCHAR) | How many points did the Ford V8 with a Tyrrell 007 have? | SELECT points FROM table_name_3 WHERE engine = "ford v8" AND chassis = "tyrrell 007" |
CREATE TABLE table_name_75 (year INTEGER, chassis VARCHAR, entrant VARCHAR, points VARCHAR) | What year did Elf Team Tyrrell have 39 points and a Tyrrell 007 Chassis? | SELECT SUM(year) FROM table_name_75 WHERE entrant = "elf team tyrrell" AND points = "39" AND chassis = "tyrrell 007" |
CREATE TABLE table_name_8 (location VARCHAR, home_team VARCHAR, date VARCHAR) | What is the location of 11 April 2013 and Mexico Home team? | SELECT location FROM table_name_8 WHERE home_team = "mexico" AND date = "11 april 2013" |
CREATE TABLE table_10015132_9 (school_club_team VARCHAR, player VARCHAR) | What school/club team is Amir Johnson on? | SELECT school_club_team FROM table_10015132_9 WHERE player = "Amir Johnson" |
CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR) | What date has new england patriots as the opponent? | SELECT date FROM table_name_26 WHERE opponent = "new england patriots" |
CREATE TABLE table_10026563_1 (entered_office_as_head_of_state_or_government VARCHAR, office VARCHAR) | When did the Prime Minister of Italy take office? | SELECT entered_office_as_head_of_state_or_government FROM table_10026563_1 WHERE office = "Prime Minister of Italy" |
CREATE TABLE table_1008653_1 (country___exonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR) | What is the English name of the country whose official native language is Dutch Papiamento? | SELECT country___exonym__ FROM table_1008653_1 WHERE official_or_native_language_s___alphabet_script_ = "Dutch Papiamento" |
CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, capital___exonym__ VARCHAR) | What is the local name given to the city of Canberra? | SELECT capital___endonym__ FROM table_1008653_1 WHERE capital___exonym__ = "Canberra" |
CREATE TABLE table_name_84 (school_club_team VARCHAR, name VARCHAR, acquisition_via VARCHAR, position VARCHAR) | What team acquired as a rookie draft in the position of guard Dennis Miranda? | SELECT school_club_team FROM table_name_84 WHERE acquisition_via = "rookie draft" AND position = "guard" AND name = "dennis miranda" |
CREATE TABLE table_name_82 (number VARCHAR, name VARCHAR) | What number was Rashad McCants? | SELECT number FROM table_name_82 WHERE name = "rashad mccants" |
CREATE TABLE table_1046170_5 (us_open_cup VARCHAR, playoffs VARCHAR) | which round is u.s. open cup division semifinals | SELECT us_open_cup FROM table_1046170_5 WHERE playoffs = "division Semifinals" |
CREATE TABLE table_1046170_5 (playoffs VARCHAR, regular_season VARCHAR) | what are all the playoffs for regular season is 1st, atlantic division | SELECT playoffs FROM table_1046170_5 WHERE regular_season = "1st, Atlantic division" |
CREATE TABLE table_1046170_5 (playoffs VARCHAR, us_open_cup VARCHAR) | what are all the playoffs for u.s. open cup in 1st round | SELECT playoffs FROM table_1046170_5 WHERE us_open_cup = "1st Round" |
CREATE TABLE table_name_13 (match VARCHAR, team VARCHAR) | What was the match number for Start Gniezno? | SELECT match FROM table_name_13 WHERE team = "start gniezno" |
CREATE TABLE table_10706961_2 (fastest_lap VARCHAR, name VARCHAR) | What was the fastest lap time in the Escort Radar Warning 200? | SELECT fastest_lap FROM table_10706961_2 WHERE name = "Escort Radar Warning 200" |
CREATE TABLE table_10707176_2 (report VARCHAR, circuit VARCHAR) | How many reports were the for the cleveland burke lakefront airport circut? | SELECT COUNT(report) FROM table_10707176_2 WHERE circuit = "Cleveland Burke Lakefront Airport" |
CREATE TABLE table_name_41 (purse VARCHAR, year VARCHAR, owner VARCHAR) | What was the Purse for Owner Harold A. Allen prior to 2009? | SELECT purse FROM table_name_41 WHERE year < 2009 AND owner = "harold a. allen" |
CREATE TABLE table_name_49 (gdp__ppp__per_capita_2012_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR) | What is GDP (PPP) Per Capita 2012 Euro, when Population In Millions is greater than 10.8, and when GDP (Nominal) Per Capita 2012 Euro is 25,600? | SELECT gdp__ppp__per_capita_2012_euro FROM table_name_49 WHERE population_in_millions > 10.8 AND gdp__nominal__per_capita_2012_euro = "25,600" |
CREATE TABLE table_name_51 (gdp_2012_millions_of_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR) | What is GDP 2012 Millions of Euro, when Population in Millions is less than 1.3, and when GDP (Nominal) Per Capita 2012 Euro is 20,700(p)? | SELECT gdp_2012_millions_of_euro FROM table_name_51 WHERE population_in_millions < 1.3 AND gdp__nominal__per_capita_2012_euro = "20,700(p)" |
CREATE TABLE table_10712301_5 (licence_award_date VARCHAR, region VARCHAR) | What is the license award date for North East England? | SELECT licence_award_date FROM table_10712301_5 WHERE region = "North East England" |
CREATE TABLE table_name_36 (country VARCHAR, year_opened VARCHAR, span_feet VARCHAR, material VARCHAR, span_metres VARCHAR) | Which country's material was concrete when the span metres were less than 270, span feet is more than 837, and the year opened was 1943? | SELECT country FROM table_name_36 WHERE material = "concrete" AND span_metres < 270 AND span_feet > 837 AND year_opened = "1943" |
CREATE TABLE table_name_70 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR) | What was the finish with a total larger than 286, a to par of +4 and Bob Tway played? | SELECT finish FROM table_name_70 WHERE total > 286 AND to_par = "+4" AND player = "bob tway" |
CREATE TABLE table_name_78 (player VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR) | What player in the United States had a total of 286 and won in 2003? | SELECT player FROM table_name_78 WHERE country = "united states" AND total = 286 AND year_s__won = "2003" |
CREATE TABLE table_10798421_1 (village__german_ VARCHAR, percent_of_slovenes_1951 VARCHAR) | Provide me with the name of the village (German) where there is 96.9% Slovenes in 1951. | SELECT village__german_ FROM table_10798421_1 WHERE percent_of_slovenes_1951 = "96.9%" |
CREATE TABLE table_name_58 (method VARCHAR, weight_class VARCHAR, card VARCHAR) | Which method was used in the welterweight class with a preliminary card? | SELECT method FROM table_name_58 WHERE weight_class = "welterweight" AND card = "preliminary" |
CREATE TABLE table_name_13 (baltimore_group VARCHAR, family VARCHAR, replication_site VARCHAR, virion_shape VARCHAR, envelopment VARCHAR) | Which Baltimore group has a viron shape of icosahedral, replicates in the cytoplasm, is non-enveloped, and is from the astroviridae family? | SELECT baltimore_group FROM table_name_13 WHERE virion_shape = "icosahedral" AND envelopment = "non-enveloped" AND replication_site = "cytoplasm" AND family = "astroviridae" |
CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR) | Which Baltimore group is of the retroviridae family? | SELECT baltimore_group FROM table_name_62 WHERE family = "retroviridae" |
CREATE TABLE table_10975034_2 (pick__number INTEGER, college VARCHAR) | What is the pick number for Northwestern college? | SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = "Northwestern" |
CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR) | What is the Higgins with a Scallon that is 2%? | SELECT higgins FROM table_name_35 WHERE scallon = "2%" |
CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR) | What city and state are the miners located in? | SELECT location FROM table_11044765_1 WHERE mascot = "Miners" |
CREATE TABLE table_1121352_2 (to_par VARCHAR, date VARCHAR) | What is the to par dated may 4, 2003? | SELECT to_par FROM table_1121352_2 WHERE date = "May 4, 2003" |
CREATE TABLE table_11214772_2 (runner_up VARCHAR, semi_finalist__number1 VARCHAR, year VARCHAR) | How many teams were listed as runner up in 2005 and there the first semi finalist was Western Carolina? | SELECT COUNT(runner_up) FROM table_11214772_2 WHERE semi_finalist__number1 = "Western Carolina" AND year = 2005 |
CREATE TABLE table_1132600_3 (round VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) | Which round had Michael Schumacher in the pole position, David Coulthard with the fastest lap, and McLaren - Mercedes as the winning constructor? | SELECT COUNT(round) FROM table_1132600_3 WHERE pole_position = "Michael Schumacher" AND fastest_lap = "David Coulthard" AND winning_constructor = "McLaren - Mercedes" |
CREATE TABLE table_name_75 (staffel_a VARCHAR, staffel_b VARCHAR, staffel_d VARCHAR, staffel_c VARCHAR) | What is the Staffel A that has a Staffel D of Energie Cottbus and a Staffel C of Chemie Leipzig and a Staffel B of 1. FC Union Berlin? | SELECT staffel_a FROM table_name_75 WHERE staffel_d = "energie cottbus" AND staffel_c = "chemie leipzig" AND staffel_b = "1. fc union berlin" |
CREATE TABLE table_1132600_3 (report VARCHAR, grand_prix VARCHAR) | What was the report of the Belgian Grand Prix? | SELECT report FROM table_1132600_3 WHERE grand_prix = "Belgian grand_prix" |
CREATE TABLE table_11336756_6 (junctions VARCHAR, remarks VARCHAR) | Which junctions have "replaced by bsi-35" listed in their remarks section? | SELECT junctions FROM table_11336756_6 WHERE remarks = "Replaced by BSI-35" |
CREATE TABLE table_name_91 (date VARCHAR, catalog VARCHAR, country VARCHAR, format VARCHAR) | What is the Date when the Country shows uk, the Format is cd, and the Catalog of edcd 227? | SELECT date FROM table_name_91 WHERE country = "uk" AND format = "cd" AND catalog = "edcd 227" |
CREATE TABLE table_name_46 (catalog VARCHAR, date VARCHAR, label VARCHAR, format VARCHAR, country VARCHAR) | What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006? | SELECT catalog FROM table_name_46 WHERE format = "lp" AND country = "us" AND label = "sundazed" AND date = "2006" |
CREATE TABLE table_11570261_1 (margin VARCHAR, runner_s__up VARCHAR) | what's the margin where runner(s)-up is phil mickelson | SELECT margin FROM table_11570261_1 WHERE runner_s__up = "Phil Mickelson" |
CREATE TABLE table_11570261_1 (winning_score VARCHAR) | what's the 54 holes where winning score is −19 (67-66-67-69=269) | SELECT 54 AS _holes FROM table_11570261_1 WHERE winning_score = −19(67 - 66 - 67 - 69 = 269) |
CREATE TABLE table_name_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR) | What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0? | SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 0 |
CREATE TABLE table_11589522_3 (original_air_date VARCHAR, written_by VARCHAR) | what's the original air date where written by is iain morris & damon beesley | SELECT original_air_date FROM table_11589522_3 WHERE written_by = "Iain Morris & Damon Beesley" |
CREATE TABLE table_name_37 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) | What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2? | SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cultural_and_educational_panel > 2 |
CREATE TABLE table_name_74 (cultural_and_educational_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR) | What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19? | SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19 |
CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) | What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4? | SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4 |
CREATE TABLE table_11609814_1 (constancy VARCHAR, purity VARCHAR) | what is the total number of constancy where purity is falling | SELECT COUNT(constancy) FROM table_11609814_1 WHERE purity = "falling" |
CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR) | What is the Other b when the FA Cup shows 3 (17)? | SELECT other_b FROM table_name_96 WHERE fa_cup = "3 (17)" |
CREATE TABLE table_11734041_2 (height_in_ft VARCHAR, school_club_team_country VARCHAR) | What is the height of the player who attended Hartford? | SELECT height_in_ft FROM table_11734041_2 WHERE school_club_team_country = "Hartford" |
CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR) | What is the content for la sorgente sat 3? | SELECT content FROM table_name_20 WHERE television_service = "la sorgente sat 3" |
CREATE TABLE table_name_3 (language VARCHAR, television_service VARCHAR) | What language is telemarket for you? | SELECT language FROM table_name_3 WHERE television_service = "telemarket for you" |
CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR) | What language is telemarket for you with a content of televendita? | SELECT language FROM table_name_59 WHERE content = "televendita" AND television_service = "telemarket for you" |
CREATE TABLE table_11734041_2 (position VARCHAR, height_in_ft VARCHAR, no_s_ VARCHAR) | What position is number 35 whose height is 6-6? | SELECT position FROM table_11734041_2 WHERE height_in_ft = "6-6" AND no_s_ = "35" |
CREATE TABLE table_11734041_9 (height_in_ft VARCHAR, player VARCHAR) | How tall is the player jones, major major jones? | SELECT height_in_ft FROM table_11734041_9 WHERE player = "Jones, Major Major Jones" |
CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR) | Which Tournament has a score of 2–6 6–4 [10–8]? | SELECT tournament FROM table_name_9 WHERE score = "2–6 6–4 [10–8]" |
CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR) | What is the team located at philips arena 18,227? | SELECT team FROM table_11961582_6 WHERE location_attendance = "Philips Arena 18,227" |
CREATE TABLE table_name_4 (coach VARCHAR, details VARCHAR) | Who is the coach of the 2012 Gold Coast Titans season? | SELECT coach FROM table_name_4 WHERE details = "2012 gold coast titans season" |
CREATE TABLE table_name_55 (wins VARCHAR, tournament VARCHAR, events VARCHAR) | How many wins were in the PGA Championship when there were more than 10 events? | SELECT COUNT(wins) FROM table_name_55 WHERE tournament = "pga championship" AND events > 10 |
CREATE TABLE table_name_80 (year INTEGER, billboard_200_peak VARCHAR, riaa_sales_certification VARCHAR, title VARCHAR) | For how many years did the song "Lost Without Your Love" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26? | SELECT SUM(year) FROM table_name_80 WHERE riaa_sales_certification = "gold" AND title = "lost without your love" AND billboard_200_peak > 26 |
CREATE TABLE table_name_1 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR) | What RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak of 21? | SELECT riaa_sales_certification FROM table_name_1 WHERE billboard_200_peak = 21 |
CREATE TABLE table_name_38 (billboard_200_peak INTEGER, year INTEGER) | What is the sum of the Billboard 200 Peak scores after the Year 1971? | SELECT SUM(billboard_200_peak) FROM table_name_38 WHERE year > 1971 |
CREATE TABLE table_name_4 (gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR) | What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria? | SELECT COUNT(gold) FROM table_name_4 WHERE silver = 1 AND bronze = 1 AND nation = "austria" |
CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR) | What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0? | SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0 |
CREATE TABLE table_12104319_1 (womens_singles VARCHAR, mixed_doubles VARCHAR) | What is the womens singles of marcus ellis gabrielle white? | SELECT womens_singles FROM table_12104319_1 WHERE mixed_doubles = "Marcus Ellis Gabrielle White" |
CREATE TABLE table_name_75 (issue INTEGER, spoofed_title VARCHAR) | What issue was the spoofed title Ho-Hum land? | SELECT SUM(issue) FROM table_name_75 WHERE spoofed_title = "ho-hum land" |
CREATE TABLE table_name_77 (surface VARCHAR, outcome VARCHAR, date VARCHAR) | What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997? | SELECT surface FROM table_name_77 WHERE outcome = "runner-up" AND date = "24 february 1997" |
CREATE TABLE table_1211545_2 (location VARCHAR, name VARCHAR) | What is the location of the Carousel toll plaza? | SELECT location FROM table_1211545_2 WHERE name = "Carousel Toll Plaza" |
CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR) | What is the name of the plaza where the told for heavy vehicles with 2 axles is r20.50? | SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R20.50" |
CREATE TABLE table_12142298_2 (shortstop VARCHAR, starting_pitcher VARCHAR, second_baseman VARCHAR, centerfielder VARCHAR) | Who was the SS when jim lefebvre was at 2nd, willie davis at CF, and don drysdale was the SP. | SELECT shortstop FROM table_12142298_2 WHERE second_baseman = "Jim Lefebvre" AND centerfielder = "Willie Davis" AND starting_pitcher = "Don Drysdale" |
CREATE TABLE table_12310814_1 (order__number VARCHAR, original_artist VARCHAR) | What's the order number of the song originally performed by Rickie Lee Jones? | SELECT order__number FROM table_12310814_1 WHERE original_artist = "Rickie Lee Jones" |
CREATE TABLE table_name_84 (silver VARCHAR, bronze INTEGER) | What is the total number of Silver medals for the Nation with less than 1 Bronze? | SELECT COUNT(silver) FROM table_name_84 WHERE bronze < 1 |
CREATE TABLE table_123462_2 (election VARCHAR, _number_of_candidates_nominated VARCHAR) | What is the election year when the # of candidates nominated was 262? | SELECT COUNT(election) FROM table_123462_2 WHERE _number_of_candidates_nominated = 262 |
CREATE TABLE table_1242447_1 (english_spelling VARCHAR, strongs_transliteration VARCHAR) | What is the english spelling of the word that has the strongs trasliteration of y e howram? | SELECT english_spelling FROM table_1242447_1 WHERE strongs_transliteration = "Y e howram" |
CREATE TABLE table_name_61 (total INTEGER, fa_cup VARCHAR, fa_trophy VARCHAR) | What is the average total with 1 FA cup and more than 0 FA trophies? | SELECT AVG(total) FROM table_name_61 WHERE fa_cup = 1 AND fa_trophy > 0 |
CREATE TABLE table_name_37 (silver INTEGER, rank INTEGER) | How many Silver medals did the Nation with a Rank of less than 1 receive? | SELECT AVG(silver) FROM table_name_37 WHERE rank < 1 |
CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR) | What DS division has S. L. M. Haneefa as the divisional secretary? | SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = "S. L. M. Haneefa" |
CREATE TABLE table_name_37 (goals_for INTEGER, playoffs VARCHAR, games VARCHAR) | What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81? | SELECT AVG(goals_for) FROM table_name_37 WHERE playoffs = "lost in round 2" AND games < 81 |
CREATE TABLE table_1272844_2 (vote VARCHAR, air_date VARCHAR) | What was the vote tally on the episode aired May 5, 2005? | SELECT vote FROM table_1272844_2 WHERE air_date = "May 5, 2005" |
CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR) | What is the short stem for garbitzen? | SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = "garbitzen" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.