question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
When the change (2011 to 2012) is -0.1% what is the country? | CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR) | SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "-0.1%" |
Show names for all aircraft with at least two flights. | CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR); CREATE TABLE Flight (aid VARCHAR) | SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid HAVING COUNT(*) >= 2 |
What is the 2008 entry for the row that as a 2011 entry of 1R? | CREATE TABLE table_name_32 (Id VARCHAR) | SELECT 2008 FROM table_name_32 WHERE 2011 = "1r" |
Who is the away team for tie no 15? | CREATE TABLE table_24887326_6 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_24887326_6 WHERE tie_no = 15 |
What is the modern german standard wording for the german based writing system 2 phrase "wie mir die vergewwe wu uns schuldich sinn."? | CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, writing_system_2__german_based_ VARCHAR) | SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE writing_system_2__german_based_ = "wie mir die vergewwe wu uns schuldich sinn." |
Which state has 5179 (gw×h) of renewable energy without hydrogen power?wha | CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity_w_o_hydro__gw•h_ VARCHAR) | SELECT state FROM table_25244412_1 WHERE renewable_electricity_w_o_hydro__gw•h_ = 5179 |
Name the Date which has a Score of 3-1 and Attendances of 32 590? | CREATE TABLE table_name_52 (date VARCHAR, score VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_52 WHERE score = "3-1" AND attendance = "32 590" |
What is the FA Cup App for Squad Number 3 having fewer than 4 league goals? | CREATE TABLE table_name_53 (fa_cup_apps VARCHAR, league_goals VARCHAR, squad_no VARCHAR) | SELECT fa_cup_apps FROM table_name_53 WHERE league_goals < 4 AND squad_no = 3 |
What average city has a total less than 2, with a borough greater than 0? | CREATE TABLE table_name_70 (city INTEGER, total VARCHAR, borough VARCHAR) | SELECT AVG(city) FROM table_name_70 WHERE total < 2 AND borough > 0 |
how many winners with # being 4 | CREATE TABLE table_12303563_2 (winners VARCHAR, _number VARCHAR) | SELECT COUNT(winners) FROM table_12303563_2 WHERE _number = 4 |
What was the To Par of Tiger Woods who won in 1988? | CREATE TABLE table_name_85 (to_par VARCHAR, year_won VARCHAR) | SELECT to_par FROM table_name_85 WHERE year_won = 1988 |
What surface was the tournament played on against Steven Diez? | CREATE TABLE table_name_96 (surface VARCHAR, opponent_in_the_final VARCHAR) | SELECT surface FROM table_name_96 WHERE opponent_in_the_final = "steven diez" |
What away team played at Glenferrie Oval? | CREATE TABLE table_name_34 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_34 WHERE venue = "glenferrie oval" |
What is the region of the Catalog that is in cd format and has a label a&m/canyon? | CREATE TABLE table_name_49 (region VARCHAR, format VARCHAR, label VARCHAR) | SELECT region FROM table_name_49 WHERE format = "cd" AND label = "a&m/canyon" |
Name the replaced by for slaven belupo | CREATE TABLE table_27225944_3 (replaced_by VARCHAR, team VARCHAR) | SELECT replaced_by FROM table_27225944_3 WHERE team = "Slaven Belupo" |
Which virtue is acedia(Latin)? | CREATE TABLE table_name_13 (virtue VARCHAR, acedia VARCHAR, latin VARCHAR) | SELECT virtue FROM table_name_13 WHERE (latin) = acedia |
Name the prize pool for 706 (481 r, 346 a) | CREATE TABLE table_2534387_10 (prize VARCHAR, entries VARCHAR) | SELECT prize AS Pool FROM table_2534387_10 WHERE entries = "706 (481 R, 346 A)" |
What was the date for morocco when the year was lerger than 1981? | CREATE TABLE table_name_34 (date VARCHAR, year VARCHAR, location VARCHAR) | SELECT date FROM table_name_34 WHERE year > 1981 AND location = "morocco" |
Which engineer has visited the most times? Show the engineer id, first name and last name. | CREATE TABLE Maintenance_Engineers (engineer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Engineer_Visits (Id VARCHAR) | SELECT T1.engineer_id, T1.first_name, T1.last_name FROM Maintenance_Engineers AS T1 JOIN Engineer_Visits AS T2 GROUP BY T1.engineer_id ORDER BY COUNT(*) DESC LIMIT 1 |
What day is collingwood the home side? | CREATE TABLE table_name_79 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_79 WHERE home_team = "collingwood" |
What average week has october 8, 1950 as the date? | CREATE TABLE table_name_8 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_8 WHERE date = "october 8, 1950" |
At time 15:29.69 what was the heat? | CREATE TABLE table_name_1 (heat VARCHAR, time VARCHAR) | SELECT heat FROM table_name_1 WHERE time = "15:29.69" |
When tim brasil brokers are the minor sponsors who is the kit manufacturer? | CREATE TABLE table_187239_1 (kit_manufacturer VARCHAR, minor_sponsors VARCHAR) | SELECT kit_manufacturer FROM table_187239_1 WHERE minor_sponsors = "Tim Brasil Brokers" |
When has a Result of l 27-7 and an Opponent of at minnesota vikings? | CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_57 WHERE result = "l 27-7" AND opponent = "at minnesota vikings" |
Tell me the release date record on 10/29/76 and a time on 2:50 | CREATE TABLE table_name_45 (release_date VARCHAR, time VARCHAR, recorded VARCHAR) | SELECT release_date FROM table_name_45 WHERE time = "2:50" AND recorded = "10/29/76" |
What are the names of poker players whose earnings is higher than 300000? | CREATE TABLE poker_player (People_ID VARCHAR, Earnings INTEGER); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) | SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Earnings > 300000 |
What is the English name of the country that has Doha as its capital? | CREATE TABLE table_name_5 (english_country_name VARCHAR, english_capital_name VARCHAR) | SELECT english_country_name FROM table_name_5 WHERE english_capital_name = "doha" |
Find the names of nurses who are on call. | CREATE TABLE on_call (nurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR) | SELECT DISTINCT T1.name FROM nurse AS T1 JOIN on_call AS T2 ON T1.EmployeeID = T2.nurse |
What is the Most Spoken language in the Place with Code 70403 with an Area (km 2) larger than 3.79 and a Population larger than 73,283? | CREATE TABLE table_name_91 (most_spoken_language VARCHAR, population VARCHAR, code VARCHAR, area__km_2__ VARCHAR) | SELECT most_spoken_language FROM table_name_91 WHERE code > 70403 AND area__km_2__ > 3.79 AND population > 73 OFFSET 283 |
Who is the president when c-span 2009 is 21? | CREATE TABLE table_name_57 (president VARCHAR, c_span_2009 VARCHAR) | SELECT president FROM table_name_57 WHERE c_span_2009 = "21" |
What's the location of the school having the panthers as a mascot with an AAA for the IHSAA Class? | CREATE TABLE table_name_28 (location VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR) | SELECT location FROM table_name_28 WHERE ihsaa_class = "aaa" AND mascot = "panthers" |
When was the episode with a 1,036,000 BARB rating first aired in Denmark? | CREATE TABLE table_26591309_3 (first_broadcast_denmark___dr1__ VARCHAR, official_barb_ratings VARCHAR) | SELECT first_broadcast_denmark___dr1__ FROM table_26591309_3 WHERE official_barb_ratings = "1,036,000" |
Name the segment b for graphite s fly rod | CREATE TABLE table_15187735_8 (segment_b VARCHAR, segment_c VARCHAR) | SELECT segment_b FROM table_15187735_8 WHERE segment_c = "Graphite s Fly Rod" |
When it is October 25, 1981 who is the opponent? | CREATE TABLE table_14941284_1 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_14941284_1 WHERE date = "October 25, 1981" |
Who wrote the episode that David Tucker directed? | CREATE TABLE table_15026994_3 (writer VARCHAR, director VARCHAR) | SELECT COUNT(writer) FROM table_15026994_3 WHERE director = "David Tucker" |
What is the date for the name ryan lochte? | CREATE TABLE table_name_79 (date VARCHAR, name VARCHAR) | SELECT date FROM table_name_79 WHERE name = "ryan lochte" |
What is the previous team of the United States player who had 2 NBA years and played the F position? | CREATE TABLE table_name_41 (previous_team VARCHAR, pos VARCHAR, nationality VARCHAR, nba_years_ VARCHAR, a_ VARCHAR) | SELECT previous_team FROM table_name_41 WHERE nationality = "united states" AND nba_years_[a_] = 2 AND pos = "f" |
What's Korean for 南楊州 Hanja? | CREATE TABLE table_name_46 (korean VARCHAR, hanja VARCHAR) | SELECT korean FROM table_name_46 WHERE hanja = "南楊州" |
How many % same-sex marriages are marriages between men for 923? | CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, marriages_between_men VARCHAR) | SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE marriages_between_men = 923 |
Name the number of scores for 5x06 | CREATE TABLE table_23292220_5 (scores VARCHAR, episode VARCHAR) | SELECT COUNT(scores) FROM table_23292220_5 WHERE episode = "5x06" |
What's the 2009 of the Australian Open having a 1R in 2011? | CREATE TABLE table_name_56 (tournament VARCHAR) | SELECT 2009 FROM table_name_56 WHERE 2011 = "1r" AND tournament = "australian open" |
What is the place of the player witha 69-69=138 score? | CREATE TABLE table_name_45 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_45 WHERE score = 69 - 69 = 138 |
How many HUC example codes have 1 level? | CREATE TABLE table_name_48 (example_code__huc_ VARCHAR, level VARCHAR) | SELECT COUNT(example_code__huc_) FROM table_name_48 WHERE level = 1 |
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? | CREATE TABLE table_name_49 (gdp__ppp__per_capita_2012_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR) | 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" |
How many were first elected in California 7? | CREATE TABLE table_19753079_8 (first_elected VARCHAR, district VARCHAR) | SELECT first_elected FROM table_19753079_8 WHERE district = "California 7" |
Who owns the kool-fm branding? | CREATE TABLE table_name_4 (owner VARCHAR, branding VARCHAR) | SELECT owner FROM table_name_4 WHERE branding = "kool-fm" |
In the circuit Showevent Olympiastadion München, where the winning driver is Bruno Spengler, what is the pole position? | CREATE TABLE table_26267607_2 (pole_position VARCHAR, winning_driver VARCHAR, circuit VARCHAR) | SELECT pole_position FROM table_26267607_2 WHERE winning_driver = "Bruno Spengler" AND circuit = "Showevent Olympiastadion München" |
Total larger than 3, and a Rank of 4, and a Silver larger than 0 has what average gold? | CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR) | SELECT AVG(gold) FROM table_name_2 WHERE total > 3 AND rank = "4" AND silver > 0 |
What's the worst dance of jive dancer(s)? | CREATE TABLE table_name_91 (worst_dancer_s_ VARCHAR, dance VARCHAR) | SELECT worst_dancer_s_ FROM table_name_91 WHERE dance = "jive" |
What is the score for the United States when Harry Hampton is the player and the money is $73? | CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR, country VARCHAR, money___$__ VARCHAR) | SELECT score FROM table_name_23 WHERE country = "united states" AND money___$__ = "73" AND player = "harry hampton" |
Which sport has 17 as the medal count? | CREATE TABLE table_name_4 (sport VARCHAR, medal_count VARCHAR) | SELECT sport FROM table_name_4 WHERE medal_count = 17 |
What is the 2005 when the 2008 shows grand slam tournaments? | CREATE TABLE table_name_99 (Id VARCHAR) | SELECT 2005 FROM table_name_99 WHERE 2008 = "grand slam tournaments" |
What is the highest wins entry with fewer than 51 goals, more than 39 points, and a goal difference smaller than 13? | CREATE TABLE table_name_74 (wins INTEGER, goal_difference VARCHAR, goals_against VARCHAR, points VARCHAR) | SELECT MAX(wins) FROM table_name_74 WHERE goals_against < 51 AND points > 39 AND goal_difference < 13 |
Name the original airdate for guy verney | CREATE TABLE table_20345624_2 (original_airdate VARCHAR, director VARCHAR) | SELECT original_airdate FROM table_20345624_2 WHERE director = "Guy Verney" |
What is the lowest points won from player victoria azarenka? | CREATE TABLE table_26218783_7 (points INTEGER, player VARCHAR) | SELECT MIN(points) AS won FROM table_26218783_7 WHERE player = "Victoria Azarenka" |
How many episodes were directed by Arlene Sanford? | CREATE TABLE table_26429658_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT COUNT(written_by) FROM table_26429658_1 WHERE directed_by = "Arlene Sanford" |
What week number saw a w 31-16 result? | CREATE TABLE table_name_21 (week INTEGER, result VARCHAR) | SELECT MIN(week) FROM table_name_21 WHERE result = "w 31-16" |
What was the date for the record 23-13? | CREATE TABLE table_22883210_7 (date VARCHAR, record VARCHAR) | SELECT date FROM table_22883210_7 WHERE record = "23-13" |
What is the Player from Dayton, Oh with a Pick of 15 or larger? | CREATE TABLE table_name_99 (player VARCHAR, pick VARCHAR, hometown_school VARCHAR) | SELECT player FROM table_name_99 WHERE pick > 15 AND hometown_school = "dayton, oh" |
When ратково is cyrillic name other names and village is the type and orthodox Christianity is the dominant religion of 2002 what is the settlement? | CREATE TABLE table_2562572_25 (settlement VARCHAR, cyrillic_name_other_names VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR) | SELECT settlement FROM table_2562572_25 WHERE dominant_religion__2002_ = "Orthodox Christianity" AND type = "village" AND cyrillic_name_other_names = "Ратково" |
Game of Thrones was done by which artist? | CREATE TABLE table_name_82 (artist VARCHAR, actual_title VARCHAR) | SELECT artist FROM table_name_82 WHERE actual_title = "game of thrones" |
What is the withdraw date for secr no. 771? | CREATE TABLE table_17607663_1 (date_withdrawn VARCHAR, secr_no VARCHAR) | SELECT date_withdrawn FROM table_17607663_1 WHERE secr_no = 771 |
What is the name of race that has a winning driver of Stirling moss and a Circuit of oulton park? | CREATE TABLE table_name_23 (race_name VARCHAR, winning_driver VARCHAR, circuit VARCHAR) | SELECT race_name FROM table_name_23 WHERE winning_driver = "stirling moss" AND circuit = "oulton park" |
What is the IHSAA class for Chesterton? | CREATE TABLE table_name_49 (ihsaa_class VARCHAR, school VARCHAR) | SELECT ihsaa_class FROM table_name_49 WHERE school = "chesterton" |
Which team lost under interim head coach, Dewayne Walker? | CREATE TABLE table_name_18 (team VARCHAR, result VARCHAR, interim_head_coach VARCHAR) | SELECT team FROM table_name_18 WHERE result = "lost" AND interim_head_coach = "dewayne walker" |
When the mark is 8.54, the reaction time was over 0.23800000000000002 seconds, what's the highest amount of points recorded? | CREATE TABLE table_name_79 (points INTEGER, mark VARCHAR, react VARCHAR) | SELECT MAX(points) FROM table_name_79 WHERE mark = "8.54" AND react > 0.23800000000000002 |
Name the type for mcminnville | CREATE TABLE table_2076533_1 (type VARCHAR, main_location VARCHAR) | SELECT type FROM table_2076533_1 WHERE main_location = "McMinnville" |
What is the average Poles, when Wins is 0, when Position is "nc", and when Season is before 2004? | CREATE TABLE table_name_65 (poles INTEGER, season VARCHAR, wins VARCHAR, position VARCHAR) | SELECT AVG(poles) FROM table_name_65 WHERE wins = 0 AND position = "nc" AND season < 2004 |
On what date was the result 106-105? | CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_57 WHERE result = "106-105" |
What year was the congressional service elected for a term beginning on January 3, 1989? | CREATE TABLE table_197446_1 (elected VARCHAR, term_began VARCHAR) | SELECT elected FROM table_197446_1 WHERE term_began = "January 3, 1989" |
What is the highest position the album Where we belong, which had an issue date higher than 9, had? | CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR) | SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong" |
Find the products which have problems reported by both Lacey Bosco and Kenton Champlin? | CREATE TABLE product (product_name VARCHAR, product_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR); CREATE TABLE problems (product_id VARCHAR, reported_by_staff_id VARCHAR) | SELECT T2.product_name FROM problems AS T1 JOIN product AS T2 JOIN staff AS T3 ON T1.product_id = T2.product_id AND T1.reported_by_staff_id = T3.staff_id WHERE T3.staff_first_name = "Lacey" AND T3.staff_last_name = "Bosco" INTERSECT SELECT T2.product_name FROM problems AS T1 JOIN product AS T2 JOIN staff AS T3 ON T1.pr... |
What was the result against opponent Amanda Lucas? | CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_36 WHERE opponent = "amanda lucas" |
How many contestants had a starting bmi of 33.1? | CREATE TABLE table_28654454_5 (finale_weight VARCHAR, starting_bmi VARCHAR) | SELECT COUNT(finale_weight) FROM table_28654454_5 WHERE starting_bmi = "33.1" |
What is the Record when the high rebounds was Antonio Davis (9)? | CREATE TABLE table_name_5 (record VARCHAR, high_rebounds VARCHAR) | SELECT record FROM table_name_5 WHERE high_rebounds = "antonio davis (9)" |
Which record has an attendance larger than 28,459? | CREATE TABLE table_name_43 (record VARCHAR, attendance INTEGER) | SELECT record FROM table_name_43 WHERE attendance > 28 OFFSET 459 |
Opened prior to 1877 only 2.44km from Wellington, when did this station close? | CREATE TABLE table_name_6 (closed VARCHAR, opened VARCHAR, distance_from_wellington VARCHAR) | SELECT closed FROM table_name_6 WHERE opened < 1877 AND distance_from_wellington = "2.44km" |
How many deaths did the eyar with exactly 6 hurricanes have? | CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR) | SELECT COUNT(deaths) FROM table_2930244_4 WHERE number_of_hurricanes = 6 |
Who had the lowest field goals if they had 12 touchdowns and more than 72 points? | CREATE TABLE table_name_40 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR) | SELECT MIN(field_goals) FROM table_name_40 WHERE touchdowns = 12 AND points > 72 |
Name the average stories done after 2003 with a 16 rank | CREATE TABLE table_name_30 (stories INTEGER, completed VARCHAR, rank VARCHAR) | SELECT AVG(stories) FROM table_name_30 WHERE completed > 2003 AND rank = "16" |
While the original 1st us tour cast included nicci claspell, who was in the original tokyo/seoul tour cast? | CREATE TABLE table_24353141_1 (original_tokyo___seoul_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR) | SELECT original_tokyo___seoul_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = "Nicci Claspell" |
Show different carriers of phones together with the number of phones with each carrier. | CREATE TABLE phone (Carrier VARCHAR) | SELECT Carrier, COUNT(*) FROM phone GROUP BY Carrier |
What was the retired time on someone who had 43 laps on a grip of 18? | CREATE TABLE table_name_17 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_17 WHERE laps = 43 AND grid = 18 |
How many sets lost have a sets won less than 0? | CREATE TABLE table_name_15 (sets_lost VARCHAR, sets_won INTEGER) | SELECT COUNT(sets_lost) FROM table_name_15 WHERE sets_won < 0 |
Who was the home team during the match where there were 2709 in attendance? | CREATE TABLE table_name_49 (home VARCHAR, attendance VARCHAR) | SELECT home FROM table_name_49 WHERE attendance = 2709 |
What is the constructor for the Silverstone circuit? | CREATE TABLE table_1140117_5 (constructor VARCHAR, circuit VARCHAR) | SELECT constructor FROM table_1140117_5 WHERE circuit = "Silverstone" |
What is the total rank for player Delyone Borden with more than 15 wickets? | CREATE TABLE table_name_71 (rank INTEGER, player VARCHAR, wickets VARCHAR) | SELECT SUM(rank) FROM table_name_71 WHERE player = "delyone borden" AND wickets > 15 |
What 2006 has 0-0 as the 2011? | CREATE TABLE table_name_29 (Id VARCHAR) | SELECT 2006 FROM table_name_29 WHERE 2011 = "0-0" |
What is the 2000 value if the 1998 value is 1.5? | CREATE TABLE table_name_5 (Id VARCHAR) | SELECT 2000 FROM table_name_5 WHERE 1998 = "1.5" |
What nationality is the player Muggsy Bogues? | CREATE TABLE table_10015132_2 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_10015132_2 WHERE player = "Muggsy Bogues" |
what is -kah (atau tidak when basikal is basikal and language dialect is malay language (informal)? | CREATE TABLE table_name_98 (_kah__atau_tidak_ VARCHAR, language_dialect VARCHAR) | SELECT _kah__atau_tidak_ FROM table_name_98 WHERE "basikal" = "basikal" AND language_dialect = "malay language (informal)" |
What is Language, when Content is Monoscopio? | CREATE TABLE table_name_27 (language VARCHAR, content VARCHAR) | SELECT language FROM table_name_27 WHERE content = "monoscopio" |
What is the sum of the total of player rich beem, who has a to par greater than 17? | CREATE TABLE table_name_20 (total INTEGER, player VARCHAR, to_par VARCHAR) | SELECT SUM(total) FROM table_name_20 WHERE player = "rich beem" AND to_par > 17 |
How many weeks have w 51-29 as the result/score? | CREATE TABLE table_name_34 (week INTEGER, result_score VARCHAR) | SELECT SUM(week) FROM table_name_34 WHERE result_score = "w 51-29" |
What is the power kw@RPM of the 13.180 model? | CREATE TABLE table_11497980_1 (power_kw VARCHAR, model VARCHAR) | SELECT COUNT(power_kw) AS @rpm FROM table_11497980_1 WHERE model = "13.180" |
Name the Round which has a Position of defensive back and corey chavous? | CREATE TABLE table_name_57 (round INTEGER, position VARCHAR, player VARCHAR) | SELECT MIN(round) FROM table_name_57 WHERE position = "defensive back" AND player = "corey chavous" |
what's the monday time with tuesday being 9:00-6:00 | CREATE TABLE table_11019212_1 (monday VARCHAR, tuesday VARCHAR) | SELECT monday FROM table_11019212_1 WHERE tuesday = "9:00-6:00" |
Which city has an ICAO of Kiah? | CREATE TABLE table_name_59 (city VARCHAR, icao VARCHAR) | SELECT city FROM table_name_59 WHERE icao = "kiah" |
Find the names of students who have taken any course in the fall semester of year 2003. | CREATE TABLE student (name VARCHAR, id VARCHAR, semester VARCHAR, YEAR VARCHAR); CREATE TABLE takes (name VARCHAR, id VARCHAR, semester VARCHAR, YEAR VARCHAR) | SELECT name FROM student WHERE id IN (SELECT id FROM takes WHERE semester = 'Fall' AND YEAR = 2003) |
Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap? | CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR) | SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = "k230ap" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.