question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What was the result of the game from September 10, 2000? | CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_68 WHERE date = "september 10, 2000" |
What was the date of the game against the Chicago Bears? | CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_90 WHERE opponent = "chicago bears" |
If the Vinto Municipality is 18630, what is the Quillacollo Municipality? | CREATE TABLE table_2509113_2 (quillacollo_municipality INTEGER, vinto_municipality VARCHAR) | SELECT MAX(quillacollo_municipality) FROM table_2509113_2 WHERE vinto_municipality = 18630 |
When did essendon play away? | CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_53 WHERE away_team = "essendon" |
Who was the visitor in the game that led to a 39-20-6 record? | CREATE TABLE table_name_96 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_96 WHERE record = "39-20-6" |
Which is the charity that the background of the celebrity is heavyweight champion? | CREATE TABLE table_12286195_1 (charity VARCHAR, background VARCHAR) | SELECT charity FROM table_12286195_1 WHERE background = "Heavyweight Champion" |
Who is the Head Coach of the team whose President is Mario Volarevic? | CREATE TABLE table_name_86 (head_coach VARCHAR, president VARCHAR) | SELECT head_coach FROM table_name_86 WHERE president = "mario volarevic" |
Who was the home team on June 9? | CREATE TABLE table_name_90 (home_team VARCHAR, date VARCHAR) | SELECT home_team FROM table_name_90 WHERE date = "june 9" |
How many candidates ran in the election in the Arkansas 4 district? | CREATE TABLE table_1342359_4 (candidates VARCHAR, district VARCHAR) | SELECT COUNT(candidates) FROM table_1342359_4 WHERE district = "Arkansas 4" |
what is the barony and an area of 560? | CREATE TABLE table_30120560_1 (barony VARCHAR, area__acres__ VARCHAR) | SELECT barony FROM table_30120560_1 WHERE area__acres__ = 560 |
What is the total enrollment of the aa IHSAA class? | CREATE TABLE table_name_61 (enrollment VARCHAR, ihsaa_class VARCHAR) | SELECT COUNT(enrollment) FROM table_name_61 WHERE ihsaa_class = "aa" |
What is the New entries this round when the round is the semi-finals? | CREATE TABLE table_name_18 (new_entries_this_round VARCHAR, round VARCHAR) | SELECT new_entries_this_round FROM table_name_18 WHERE round = "semi-finals" |
What is the highest urban population for Guangxi province? | CREATE TABLE table_name_83 (urban_population__2010_ INTEGER, province VARCHAR) | SELECT MAX(urban_population__2010_) FROM table_name_83 WHERE province = "guangxi" |
What is Score, when Opponent is Atlanta Hawks? | CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_44 WHERE opponent = "atlanta hawks" |
What was the total score when the E score was larger than 9.6 and the A score was 6? | CREATE TABLE table_name_85 (total VARCHAR, e_score VARCHAR, a_score VARCHAR) | SELECT total FROM table_name_85 WHERE e_score > 9.6 AND a_score = 6 |
What was the official ITV1 HD rating in millions for the episode that had an official ITV1 rating of 8.98 million? | CREATE TABLE table_27319183_5 (official_itv1_hd_rating__millions_ VARCHAR, official_itv1_rating__millions_ VARCHAR) | SELECT official_itv1_hd_rating__millions_ FROM table_27319183_5 WHERE official_itv1_rating__millions_ = "8.98" |
Name the title that got 1.54 viewers | CREATE TABLE table_22347090_5 (title VARCHAR, us_viewers__million_ VARCHAR) | SELECT title FROM table_22347090_5 WHERE us_viewers__million_ = "1.54" |
What is the latest year featuring candace parker? | CREATE TABLE table_name_47 (year INTEGER, player VARCHAR) | SELECT MAX(year) FROM table_name_47 WHERE player = "candace parker" |
When was there a result of 5-1? | CREATE TABLE table_name_41 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_41 WHERE result = "5-1" |
What was the score for the game against Atlanta? | CREATE TABLE table_name_6 (score VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_6 WHERE visitor = "atlanta" |
What season was Norwich Union League promoted? | CREATE TABLE table_name_22 (season VARCHAR, promoted VARCHAR) | SELECT season FROM table_name_22 WHERE promoted = "norwich union league" |
Which City has a Stadium of estadio san cristóbal? | CREATE TABLE table_name_96 (city VARCHAR, stadium VARCHAR) | SELECT city FROM table_name_96 WHERE stadium = "estadio san cristóbal" |
What place result was the 1996 season at Lake Louise, Canada? | CREATE TABLE table_name_73 (place VARCHAR, season VARCHAR, location VARCHAR) | SELECT place FROM table_name_73 WHERE season = 1996 AND location = "lake louise, canada" |
What content is provided by the television service ewtn? | CREATE TABLE table_name_1 (content VARCHAR, television_service VARCHAR) | SELECT content FROM table_name_1 WHERE television_service = "ewtn" |
What was the sum of the scores before the year 2002, that had the venue of Halmstad? | CREATE TABLE table_name_29 (score INTEGER, venue VARCHAR, year VARCHAR) | SELECT SUM(score) FROM table_name_29 WHERE venue = "halmstad" AND year < 2002 |
What is the Tournament when the 2013 is 1r? | CREATE TABLE table_name_54 (tournament VARCHAR) | SELECT tournament FROM table_name_54 WHERE 2013 = "1r" |
WHAT IS THE MUSIC WITH SAMBA? | CREATE TABLE table_name_6 (music VARCHAR, style VARCHAR) | SELECT music FROM table_name_6 WHERE style = "samba" |
When was the pre-season game record achieved? | CREATE TABLE table_21436373_10 (date_year VARCHAR, type_of_record VARCHAR) | SELECT date_year FROM table_21436373_10 WHERE type_of_record = "Pre-season game" |
Who is the away team at western oval? | CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_84 WHERE venue = "western oval" |
Who is the Driver on Bob Keselowski's team? | CREATE TABLE table_name_57 (driver_s_ VARCHAR, owner_s_ VARCHAR) | SELECT driver_s_ FROM table_name_57 WHERE owner_s_ = "bob keselowski" |
What was the Venue on June 8, 2005? | CREATE TABLE table_name_9 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_9 WHERE date = "june 8, 2005" |
PLEASE LIST ALL RACES WHERE THE RND IS 13. | CREATE TABLE table_16732659_2 (race_name VARCHAR, rnd VARCHAR) | SELECT race_name FROM table_16732659_2 WHERE rnd = 13 |
what is the lowest value under the column series no.? | CREATE TABLE table_21025437_3 (series_no INTEGER) | SELECT MIN(series_no) FROM table_21025437_3 |
Name the No. 5 which has a No. 6 of ethan, and a No. 4 of william, and a No. 9 of john? | CREATE TABLE table_name_28 (no_5 VARCHAR, no_9 VARCHAR, no_6 VARCHAR, no_4 VARCHAR) | SELECT no_5 FROM table_name_28 WHERE no_6 = "ethan" AND no_4 = "william" AND no_9 = "john" |
Who was the opponent on the 28 july 2013 final? | CREATE TABLE table_name_33 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_33 WHERE date = "28 july 2013" |
What is Location, when Round is "1", and when Opponent is "Joe Slick"? | CREATE TABLE table_name_76 (location VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT location FROM table_name_76 WHERE round = 1 AND opponent = "joe slick" |
What is the record of the cubs on July 19? | CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_41 WHERE date = "july 19" |
How many households are in Ottawa? | CREATE TABLE table_name_58 (number_of_households INTEGER, county VARCHAR) | SELECT SUM(number_of_households) FROM table_name_58 WHERE county = "ottawa" |
What's the boiling point when the density is 1.092 g/ml? | CREATE TABLE table_name_46 (boiling_point VARCHAR, density VARCHAR) | SELECT boiling_point FROM table_name_46 WHERE density = "1.092 g/ml" |
How many rankings did the 5th season have? | CREATE TABLE table_1348989_2 (ranking VARCHAR, season VARCHAR) | SELECT COUNT(ranking) FROM table_1348989_2 WHERE season = "5th" |
what game was in chicago | CREATE TABLE table_name_40 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_40 WHERE home = "chicago" |
What rank goes to a total of 92.7? | CREATE TABLE table_name_66 (rank VARCHAR, total VARCHAR) | SELECT rank FROM table_name_66 WHERE total = 92.7 |
What is the nation when gold is 0, bronze is more than 0 and rank is 16? | CREATE TABLE table_name_98 (nation VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT nation FROM table_name_98 WHERE gold = 0 AND bronze > 0 AND rank = "16" |
What was the final of play No. 2, Alzira Ricardo B.? | CREATE TABLE table_name_34 (final VARCHAR, no2 VARCHAR) | SELECT final FROM table_name_34 WHERE no2 = "alzira ricardo b." |
What team played on November 17? | CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR) | SELECT team FROM table_name_17 WHERE date = "november 17" |
What were the highest laps for glenn seton gregg hansford? | CREATE TABLE table_name_1 (laps INTEGER, drivers VARCHAR) | SELECT MAX(laps) FROM table_name_1 WHERE drivers = "glenn seton gregg hansford" |
Name the high assists for madison square garden 19,763 and record is 39–38 | CREATE TABLE table_27713583_11 (high_assists VARCHAR, location_attendance VARCHAR, record VARCHAR) | SELECT high_assists FROM table_27713583_11 WHERE location_attendance = "Madison Square Garden 19,763" AND record = "39–38" |
What is the maximum miles per gallon of the car with 8 cylinders or produced before 1980 ? | CREATE TABLE cars_data (mpg INTEGER, cylinders VARCHAR, year VARCHAR) | SELECT MAX(mpg) FROM cars_data WHERE cylinders = 8 OR year < 1980 |
List the hardware model name for the phons that were produced by "Nokia Corporation" but whose screen mode type is not Text. | CREATE TABLE phone (Hardware_Model_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR) | SELECT DISTINCT T2.Hardware_Model_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE t2.Company_name = "Nokia Corporation" AND T1.Type <> "Text" |
What team did the suns play on April 21? | CREATE TABLE table_29997127_4 (team VARCHAR, date VARCHAR) | SELECT team FROM table_29997127_4 WHERE date = "April 21" |
In what bowl game was the result Oklahoma 31, Stanford 27? | CREATE TABLE table_23718905_6 (bowl_game VARCHAR, matchup_results VARCHAR) | SELECT bowl_game FROM table_23718905_6 WHERE matchup_results = "Oklahoma 31, Stanford 27" |
What college has Jojo Manalo? | CREATE TABLE table_name_43 (college VARCHAR, player VARCHAR) | SELECT college FROM table_name_43 WHERE player = "jojo manalo" |
How many ECTS credit points occur with Master in Management? | CREATE TABLE table_name_25 (ects_credit_points VARCHAR, program VARCHAR) | SELECT COUNT(ects_credit_points) FROM table_name_25 WHERE program = "master in management" |
In how many races did he have 8 podium finishes? | CREATE TABLE table_26400438_1 (races VARCHAR, podiums VARCHAR) | SELECT COUNT(races) FROM table_26400438_1 WHERE podiums = 8 |
What years did New Zealand win? | CREATE TABLE table_name_30 (year_s__won VARCHAR, country VARCHAR) | SELECT year_s__won FROM table_name_30 WHERE country = "new zealand" |
What is the lowest rank for China Eastern Airlines, Korean Air with more passengers than 97,055? | CREATE TABLE table_name_89 (rank INTEGER, carriers VARCHAR, passengers VARCHAR) | SELECT MIN(rank) FROM table_name_89 WHERE carriers = "china eastern airlines, korean air" AND passengers > 97 OFFSET 055 |
What is the name of the person with a courtesy title of sanuki-no-kami/jiju? | CREATE TABLE table_name_32 (name VARCHAR, courtesy_title VARCHAR) | SELECT name FROM table_name_32 WHERE courtesy_title = "sanuki-no-kami/jiju" |
where are dragons used as mascots? | CREATE TABLE table_2439728_1 (location VARCHAR, mascot VARCHAR) | SELECT location FROM table_2439728_1 WHERE mascot = "Dragons" |
what is the 2nd leg when team #2 is žalgiris kaunas? | CREATE TABLE table_name_47 (team__number2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_47 WHERE team__number2 = "žalgiris kaunas" |
Which advisor has most number of students? | CREATE TABLE Student (advisor VARCHAR) | SELECT advisor FROM Student GROUP BY advisor ORDER BY COUNT(*) DESC LIMIT 1 |
Which sponsor has Mark Hughes as manager? | CREATE TABLE table_name_23 (shirt_sponsor VARCHAR, manager VARCHAR) | SELECT shirt_sponsor FROM table_name_23 WHERE manager = "mark hughes" |
What is the program where the focus is risk management and regulation? | CREATE TABLE table_12591022_2 (program VARCHAR, focus VARCHAR) | SELECT program FROM table_12591022_2 WHERE focus = "Risk Management and Regulation" |
What percentage of the vote with a margin of error of ± 3.3% did Meg Whitman (R) get? | CREATE TABLE table_name_35 (meg_whitman__r_ VARCHAR, margin_of_error VARCHAR) | SELECT meg_whitman__r_ FROM table_name_35 WHERE margin_of_error = "± 3.3%" |
What rank does the person participating in American Civil war and indian wars? | CREATE TABLE table_name_65 (rank VARCHAR, active_service VARCHAR) | SELECT rank FROM table_name_65 WHERE active_service = "american civil war and indian wars" |
What Position has a Season larger than 2000 with a Level of Tier 3? | CREATE TABLE table_name_21 (position VARCHAR, season VARCHAR, level VARCHAR) | SELECT position FROM table_name_21 WHERE season > 2000 AND level = "tier 3" |
Who was the winning driver in the grand prix at Pacific Grand Prix? | CREATE TABLE table_1137702_3 (winning_driver VARCHAR, grand_prix VARCHAR) | SELECT winning_driver FROM table_1137702_3 WHERE grand_prix = "Pacific grand_prix" |
WHAT IS THE ELEVATION OF THE UNAKA MOUNTAINS, IN ROAN HIGH BLUFF PEAK, AND ISOLATION LARGER THAN 1.54? | CREATE TABLE table_name_77 (elevation__ft_ INTEGER, isolation VARCHAR, range VARCHAR, peak_name VARCHAR) | SELECT AVG(elevation__ft_) FROM table_name_77 WHERE range = "unaka mountains" AND peak_name = "roan high bluff" AND isolation > 1.54 |
Who were the candidates in the district where Jerry Costello won? | CREATE TABLE table_1341453_15 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1341453_15 WHERE incumbent = "Jerry Costello" |
Name the fluency for transcortical sensory aphasia | CREATE TABLE table_2088_1 (fluency VARCHAR, type_of_aphasia VARCHAR) | SELECT fluency FROM table_2088_1 WHERE type_of_aphasia = "Transcortical sensory aphasia" |
What is Round, when Winner is "Ivanovic", when Year is less than 2008, and when Tournament is "Paris"? | CREATE TABLE table_name_60 (round VARCHAR, tournament VARCHAR, winner VARCHAR, year VARCHAR) | SELECT round FROM table_name_60 WHERE winner = "ivanovic" AND year < 2008 AND tournament = "paris" |
What record was made in vancouver on December 8? | CREATE TABLE table_name_31 (record VARCHAR, home VARCHAR, date VARCHAR) | SELECT record FROM table_name_31 WHERE home = "vancouver" AND date = "december 8" |
In which year did he finish 8th? | CREATE TABLE table_name_3 (year VARCHAR, result VARCHAR) | SELECT year FROM table_name_3 WHERE result = "8th" |
How many Platforms have a Frequency of less than 2? | CREATE TABLE table_name_60 (platform VARCHAR, frequency__per_hour_ INTEGER) | SELECT COUNT(platform) FROM table_name_60 WHERE frequency__per_hour_ < 2 |
Who was the stage winner when the start of stage is Cauterets? | CREATE TABLE table_name_38 (stage VARCHAR, start_of_stage VARCHAR) | SELECT stage AS winner FROM table_name_38 WHERE start_of_stage = "cauterets" |
Who was the Independent Socialist candidate who ran against the Liberal candidate Edward Goodell? | CREATE TABLE table_name_75 (independent_socialist_ticket VARCHAR, liberal_ticket VARCHAR) | SELECT independent_socialist_ticket FROM table_name_75 WHERE liberal_ticket = "edward goodell" |
How many points when the score is 14? | CREATE TABLE table_18594107_2 (points INTEGER, scored VARCHAR) | SELECT MIN(points) FROM table_18594107_2 WHERE scored = 14 |
What's the lowest listed longitude that has a Latitude of 46.843963 and Water (sqmi) that is smaller than 0.052000000000000005? | CREATE TABLE table_name_31 (longitude INTEGER, latitude VARCHAR, water__sqmi_ VARCHAR) | SELECT MIN(longitude) FROM table_name_31 WHERE latitude = 46.843963 AND water__sqmi_ < 0.052000000000000005 |
What is the low lap total that has a Time or Retired of accident? | CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR) | SELECT MIN(laps) FROM table_name_35 WHERE time_retired = "accident" |
How many bronzes are there for the total nation with 112 silver and a total of 72? | CREATE TABLE table_name_39 (bronze INTEGER, silver VARCHAR, nation VARCHAR) | SELECT AVG(bronze) FROM table_name_39 WHERE "total" > 72 AND nation = "total" AND silver < 112 |
What is the record for Game 8? | CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_42 WHERE game = "8" |
What day was the complete 2nd series: volume one released? | CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR) | SELECT date_released FROM table_17798548_4 WHERE season = "The Complete 2nd Series: Volume One" |
What is the result of the match in Bangkok? | CREATE TABLE table_name_75 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_75 WHERE venue = "bangkok" |
What is the highest Wins, when Percent is 0.000, when School is Oklahoma State, and when Appearances is less than 1? | CREATE TABLE table_name_67 (wins INTEGER, appearances VARCHAR, percent VARCHAR, school VARCHAR) | SELECT MAX(wins) FROM table_name_67 WHERE percent = "0.000" AND school = "oklahoma state" AND appearances < 1 |
What is the weight for the v t e of živko gocić category:articles with hcards? | CREATE TABLE table_name_91 (weight VARCHAR, name_v_t_e VARCHAR) | SELECT weight FROM table_name_91 WHERE name_v_t_e = "živko gocić category:articles with hcards" |
Which Team has a Year smaller than 2007, and a Class of gts? | CREATE TABLE table_name_96 (team VARCHAR, year VARCHAR, class VARCHAR) | SELECT team FROM table_name_96 WHERE year < 2007 AND class = "gts" |
what was the crowd when the scores are 10.12 (72) – 8.11 (59)? | CREATE TABLE table_1139835_1 (crowd INTEGER, scores VARCHAR) | SELECT MAX(crowd) FROM table_1139835_1 WHERE scores = "10.12 (72) – 8.11 (59)" |
what's the first elected with opponent being ralph regula (r) 75.0% j. michael finn (d) 25.0% | CREATE TABLE table_1341522_38 (first_elected VARCHAR, opponent VARCHAR) | SELECT first_elected FROM table_1341522_38 WHERE opponent = "Ralph Regula (R) 75.0% J. Michael Finn (D) 25.0%" |
what is the maximum rank with per capita income being $17,013 | CREATE TABLE table_1350350_2 (rank INTEGER, per_capita_income VARCHAR) | SELECT MAX(rank) FROM table_1350350_2 WHERE per_capita_income = "$17,013" |
What is the province for with the stadium capacity of 5100? | CREATE TABLE table_27369069_4 (province VARCHAR, stadium_capacity VARCHAR) | SELECT province FROM table_27369069_4 WHERE stadium_capacity = 5100 |
What is the hometown of the contestant whose background is as a financial consultant? | CREATE TABLE table_19810459_1 (hometown VARCHAR, background VARCHAR) | SELECT hometown FROM table_19810459_1 WHERE background = "Financial consultant" |
What are the notes with a less than 3 rank at Yuvileiny Stadium (sumy)? | CREATE TABLE table_name_9 (notes VARCHAR, rank VARCHAR, stadium VARCHAR) | SELECT notes FROM table_name_9 WHERE rank < 3 AND stadium = "yuvileiny stadium (sumy)" |
What was the result when the San Francisco 49ers were the opponents? | CREATE TABLE table_name_35 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_35 WHERE opponent = "san francisco 49ers" |
Who was the away team when the venue was Windy Hill? | CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_59 WHERE venue = "windy hill" |
What is the venue of the game that was played on 23 October 1966? | CREATE TABLE table_name_41 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_41 WHERE date = "23 october 1966" |
Who played against Hapoel tel aviv when they were team #1? | CREATE TABLE table_name_89 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_name_89 WHERE team__number1 = "hapoel tel aviv" |
What is the qual 2 when the qual 1 is 1:16.841? | CREATE TABLE table_name_49 (qual_2 VARCHAR, qual_1 VARCHAR) | SELECT qual_2 FROM table_name_49 WHERE qual_1 = "1:16.841" |
What is Kent State University's team nickname? | CREATE TABLE table_26351260_1 (team_nickname VARCHAR, institution VARCHAR) | SELECT team_nickname FROM table_26351260_1 WHERE institution = "Kent State University" |
Name the sum of year for 2nd position for junior race | CREATE TABLE table_name_40 (year INTEGER, position VARCHAR, event VARCHAR) | SELECT SUM(year) FROM table_name_40 WHERE position = "2nd" AND event = "junior race" |
Name the network for dré steemans ann van elsen | CREATE TABLE table_16884579_1 (network VARCHAR, host_s_ VARCHAR) | SELECT network FROM table_16884579_1 WHERE host_s_ = "Dré Steemans Ann Van Elsen" |
What is the name of the person in the First UK Tour Cast for the Character of Sister Mary Robert? | CREATE TABLE table_name_54 (first_uk_tour_cast VARCHAR, character VARCHAR) | SELECT first_uk_tour_cast FROM table_name_54 WHERE character = "sister mary robert" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.