answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT away_team AS score FROM table_name_82 WHERE venue = "brunswick street oval" | What was the away team score at Brunswick Street Oval? | CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR) |
SELECT SUM(attendance) FROM table_name_7 WHERE record = "47-43" | What was the attendance of the Blue Jays' game when their record was 47-43? | CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR) |
SELECT division FROM table_name_24 WHERE coach = "todd gordon" | In which division were the IceGators when coached by Todd Gordon? | CREATE TABLE table_name_24 (division VARCHAR, coach VARCHAR) |
SELECT COUNT(daves_team) FROM table_23292220_4 WHERE first_broadcast = "27 October 2006" | How many daves team entries are there on 27 october 2006? | CREATE TABLE table_23292220_4 (daves_team VARCHAR, first_broadcast VARCHAR) |
SELECT COUNT(rank) FROM table_23938357_6 WHERE name = "Keauna McLaughlin / Rockne Brubaker" | How many times is keauna mclaughlin / rockne brubaker ranked? | CREATE TABLE table_23938357_6 (rank VARCHAR, name VARCHAR) |
SELECT railway FROM table_name_76 WHERE class = "250" AND year = "1936" | Which railway has a class of 250 and year 1936? | CREATE TABLE table_name_76 (railway VARCHAR, class VARCHAR, year VARCHAR) |
SELECT city FROM table_name_96 WHERE stadium = "estadio san cristóbal" | Which City has a Stadium of estadio san cristóbal? | CREATE TABLE table_name_96 (city VARCHAR, stadium VARCHAR) |
SELECT nationality FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers" | Which nationality is the player from the Philadelphia Flyers? | CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR) |
SELECT home_team AS score FROM table_name_20 WHERE venue = "brunswick street oval" | When the VFL played Brunswick Street Oval what was the home team score? | CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR) |
SELECT COUNT(presenter_s_) FROM table_28190363_1 WHERE name = "Celebrity MasterChef" | How many sets of presenters are there for the version of the show named Celebrity Masterchef? | CREATE TABLE table_28190363_1 (presenter_s_ VARCHAR, name VARCHAR) |
SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE director = "Otar Iosseliani" | when was otar iosseliani's film selected | CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, director VARCHAR) |
SELECT top_goalscorer FROM table_2429942_2 WHERE season = "2001-02" | Who was the top goalscorer for season 2001-02? | CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR) |
SELECT MIN(year) FROM table_name_96 WHERE main = "eintracht frankfurt" AND rhein = "waldhof mannheim" AND saar = "fk pirmasens" AND hessen = "wormatia worms" | What is the smallest year for a Main of Eintracht Frankfurt, Rhein of Waldhof Mannheim, Sarr of FK Pirmasens, and Hessen of Wormatia Worms? | CREATE TABLE table_name_96 (year INTEGER, hessen VARCHAR, saar VARCHAR, main VARCHAR, rhein VARCHAR) |
SELECT total FROM table_name_50 WHERE score_points = "olympic bronze medalist" | What is the total when the score points show Olympic bronze medalist? | CREATE TABLE table_name_50 (total VARCHAR, score_points VARCHAR) |
SELECT result_s_ FROM table_name_34 WHERE format_s_ = "single" AND date = "march 21" | What are the results of Format single on March 21? | CREATE TABLE table_name_34 (result_s_ VARCHAR, format_s_ VARCHAR, date VARCHAR) |
SELECT place FROM table_name_30 WHERE player = "fred funk" | What place is Fred Funk in? | CREATE TABLE table_name_30 (place VARCHAR, player VARCHAR) |
SELECT position FROM table_25517718_3 WHERE player = "Boggs" | What position does Boggs play? | CREATE TABLE table_25517718_3 (position VARCHAR, player VARCHAR) |
SELECT opponent FROM table_name_80 WHERE attendance > 31 OFFSET 891 | Who was the opponent during the game that had more than 31,891 people in attendance? | CREATE TABLE table_name_80 (opponent VARCHAR, attendance INTEGER) |
SELECT nation FROM table_name_39 WHERE sport = "shooting" AND total = 7 AND years = "1920" | What nation scored 7 in shooting in 1920? | CREATE TABLE table_name_39 (nation VARCHAR, years VARCHAR, sport VARCHAR, total VARCHAR) |
SELECT MIN(points) FROM table_27539535_4 | What is the least amount of points? | CREATE TABLE table_27539535_4 (points INTEGER) |
SELECT man_of_the_match FROM table_17120964_7 WHERE attendance = 1568 | When the attendance was 1568, who was man of the match? | CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, attendance VARCHAR) |
SELECT 2007 FROM table_name_60 WHERE 2009 = "qf" AND 2000 = "a" | Which 2007 had a 2009 taht was qf when its 2000 was a? | CREATE TABLE table_name_60 (Id VARCHAR) |
SELECT result FROM table_name_8 WHERE attendance = "43,279" | What was the result of the game when the attendance was 43,279? | CREATE TABLE table_name_8 (result VARCHAR, attendance VARCHAR) |
SELECT time FROM table_name_9 WHERE city = "baltimore" | What is the time in Baltimore? | CREATE TABLE table_name_9 (time VARCHAR, city VARCHAR) |
SELECT MIN(episode__number) FROM table_2501754_4 WHERE viewing_figures_millions = "6.19" AND prod_code = "ICEC487Y" | What is the lowest episode number with 6.19 million viewers and a production code of icec487y? | CREATE TABLE table_2501754_4 (episode__number INTEGER, viewing_figures_millions VARCHAR, prod_code VARCHAR) |
SELECT championship FROM table_name_36 WHERE opponent = "roger federer" AND surface = "clay" AND year < 2007 | Which championship has Roger Federer as an opponent on a clay surface in a year earlier than 2007? | CREATE TABLE table_name_36 (championship VARCHAR, year VARCHAR, opponent VARCHAR, surface VARCHAR) |
SELECT permanent_account FROM table_name_96 WHERE updated_in_past_30_days = "10324" | What is Permanent Account, when Updated In Past 30 Days is 10324? | CREATE TABLE table_name_96 (permanent_account VARCHAR, updated_in_past_30_days VARCHAR) |
SELECT hometown_school FROM table_name_40 WHERE position = "of" AND player = "mike white" | What is the hometown of Mike White? | CREATE TABLE table_name_40 (hometown_school VARCHAR, position VARCHAR, player VARCHAR) |
SELECT opponent FROM table_name_70 WHERE event = "pride 31" | Who was the match against at the PRIDE 31 event? | CREATE TABLE table_name_70 (opponent VARCHAR, event VARCHAR) |
SELECT T2.name FROM train_station AS T1 JOIN train AS T2 ON T1.train_id = T2.train_id WHERE NOT T1.station_id IN (SELECT T4.station_id FROM train_station AS T3 JOIN station AS T4 ON T3.station_id = T4.station_id WHERE t4.location = "London") | Find the names of the trains that do not pass any station located in London. | CREATE TABLE station (station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR); CREATE TABLE train_station (train_id VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR) |
SELECT format FROM table_name_74 WHERE type = "primary" AND call_letters = "kbjs" | Type of primary, and a Call letters of kbjs has what format? | CREATE TABLE table_name_74 (format VARCHAR, type VARCHAR, call_letters VARCHAR) |
SELECT frequency FROM table_name_11 WHERE part_number_s_ = "au80610006240aa" | What is Frequency, when Part Number(s) is au80610006240aa? | CREATE TABLE table_name_11 (frequency VARCHAR, part_number_s_ VARCHAR) |
SELECT city FROM table_name_97 WHERE country = "thailand" | Name the city for thailand | CREATE TABLE table_name_97 (city VARCHAR, country VARCHAR) |
SELECT manufacturer_serial_numbers FROM table_name_86 WHERE year_s__withdrawn = "1963" | What is the manufacturer serial number of the 1963 withdrawn year? | CREATE TABLE table_name_86 (manufacturer_serial_numbers VARCHAR, year_s__withdrawn VARCHAR) |
SELECT Country_name, COUNT(*) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country GROUP BY T1.Country_name | Show the country names and the corresponding number of players. | CREATE TABLE match_season (Country VARCHAR); CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR) |
SELECT place FROM table_25931938_1 WHERE aggregate = 35 | What was the place for the celebrity whose aggregate was 35? | CREATE TABLE table_25931938_1 (place VARCHAR, aggregate VARCHAR) |
SELECT SUM(points) FROM table_name_96 WHERE opponent = "new york islanders" AND game < 65 | Which Points have an Opponent of new york islanders, and a Game smaller than 65? | CREATE TABLE table_name_96 (points INTEGER, opponent VARCHAR, game VARCHAR) |
SELECT SUM(silver) FROM table_name_71 WHERE gold = 2 AND nation = "puerto rico" AND total < 12 | Which Silver has a Gold of 2, and a Nation of puerto rico, and a Total smaller than 12? | CREATE TABLE table_name_71 (silver INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR) |
SELECT points FROM table_26454128_9 WHERE athlete = "Barney Berlinger" | What are the point value(s) for when the athlete was Barney Berlinger? | CREATE TABLE table_26454128_9 (points VARCHAR, athlete VARCHAR) |
SELECT MAX(played) FROM table_name_13 WHERE position < 2 AND drawn < 4 | What is the highest number of Played games with a Position smaller than 2 and Drawn games less than 4? | CREATE TABLE table_name_13 (played INTEGER, position VARCHAR, drawn VARCHAR) |
SELECT district FROM table_name_8 WHERE incumbent = "richard neal" | What is District, when Incumbent is "Richard Neal"? | CREATE TABLE table_name_8 (district VARCHAR, incumbent VARCHAR) |
SELECT country___exonym__ FROM table_1008653_9 WHERE official_or_native_language_s___alphabet_script_ = "Icelandic" | What is the country (exonym) where the official or native language(s) (alphabet/script) is Icelandic? | CREATE TABLE table_1008653_9 (country___exonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR) |
SELECT COUNT(total) FROM table_name_55 WHERE player = "todd hamilton" AND to_par < 15 | How much Total has a Player of todd hamilton, and a To par smaller than 15? | CREATE TABLE table_name_55 (total VARCHAR, player VARCHAR, to_par VARCHAR) |
SELECT team FROM table_name_70 WHERE qual_1 = "1:16.417" | What is Team, when Qual 1 is 1:16.417? | CREATE TABLE table_name_70 (team VARCHAR, qual_1 VARCHAR) |
SELECT location FROM table_name_5 WHERE name_of_system = "atm (1880–1911) geta (1911–1944)" AND traction_type = "electric" | At what location did the event that used electric traction and system name ATM (1880–1911) GETA (1911–1944) occur? | CREATE TABLE table_name_5 (location VARCHAR, name_of_system VARCHAR, traction_type VARCHAR) |
SELECT COUNT(drawn) FROM table_27293285_6 WHERE won = "10" | How many matches were drawn by the teams that won exactly 10? | CREATE TABLE table_27293285_6 (drawn VARCHAR, won VARCHAR) |
SELECT soap_opera FROM table_name_11 WHERE actor = "dave duffy" | what is the soap opera when the actor is dave duffy? | CREATE TABLE table_name_11 (soap_opera VARCHAR, actor VARCHAR) |
SELECT opposing_teams FROM table_name_14 WHERE against < 5 | Which Opposing team had an Against smaller Than 5? | CREATE TABLE table_name_14 (opposing_teams VARCHAR, against INTEGER) |
SELECT place FROM table_name_7 WHERE athlete = "manfred kokot" | What place has manfred kokot as the athlete? | CREATE TABLE table_name_7 (place VARCHAR, athlete VARCHAR) |
SELECT years FROM table_name_16 WHERE area = "rangitoto" | Which years have an Area of rangitoto? | CREATE TABLE table_name_16 (years VARCHAR, area VARCHAR) |
SELECT date FROM table_name_23 WHERE venue = "western oval" | When was the game played at the Western Oval venue? | CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR) |
SELECT unami_delaware FROM table_name_18 WHERE thomas__1698_ = "nacha" | What is the Unami Delaware value for a Thomas value of nacha? | CREATE TABLE table_name_18 (unami_delaware VARCHAR, thomas__1698_ VARCHAR) |
SELECT COUNT(*), class_room FROM CLASS GROUP BY class_room HAVING COUNT(*) >= 2 | Find the number of classes offered for all class rooms that held at least 2 classes. | CREATE TABLE CLASS (class_room VARCHAR) |
SELECT years FROM table_name_20 WHERE state = "iowa" AND lifespan = "1880–1942" | What years did the Representative from Iowa with a lifespan of 1880–1942 serve? | CREATE TABLE table_name_20 (years VARCHAR, state VARCHAR, lifespan VARCHAR) |
SELECT points FROM table_name_89 WHERE tries_for = "55" | WHAT IS THE POINTS WITH 55 TRIES? | CREATE TABLE table_name_89 (points VARCHAR, tries_for VARCHAR) |
SELECT AVG(fac___lc_apps) FROM table_name_46 WHERE cl_g > 0 AND pl_apps < 33 AND fac___lc_g = 0 AND fa_yc < 2 | What is the average FAC/LC apps with a CL G greater than 0, less than 33 PL apps, a FAC/LC G of 0, and less than 2 FA YC? | CREATE TABLE table_name_46 (fac___lc_apps INTEGER, fa_yc VARCHAR, fac___lc_g VARCHAR, cl_g VARCHAR, pl_apps VARCHAR) |
SELECT MIN(obesity_rank) FROM table_18958648_1 WHERE state_and_district_of_columbia = "Utah" | What is the least obesity rank for the state of Utah? | CREATE TABLE table_18958648_1 (obesity_rank INTEGER, state_and_district_of_columbia VARCHAR) |
SELECT circuit FROM table_name_79 WHERE round = 16 | What circuit had 16 rounds? | CREATE TABLE table_name_79 (circuit VARCHAR, round VARCHAR) |
SELECT class FROM table_name_78 WHERE quantity_preserved = "0" AND quantity_made = "5" | what is the class when the quantity perserved is 0 and the quantity made is 5? | CREATE TABLE table_name_78 (class VARCHAR, quantity_preserved VARCHAR, quantity_made VARCHAR) |
SELECT COUNT(against) FROM table_name_59 WHERE venue = "h" AND date = "26 february 1949" | What is the total number of Against that were played in the H Venue on 26 february 1949? | CREATE TABLE table_name_59 (against VARCHAR, venue VARCHAR, date VARCHAR) |
SELECT champion FROM table_18828487_1 WHERE venue = "Stadthalle Dinslaken, Dinslaken" | How much does the champion get for stadthalle dinslaken, dinslaken? | CREATE TABLE table_18828487_1 (champion VARCHAR, venue VARCHAR) |
SELECT owns FROM table_name_93 WHERE delivery_date = "2001 2001" | with delivery date of 2001 2001 what is the owns? | CREATE TABLE table_name_93 (owns VARCHAR, delivery_date VARCHAR) |
SELECT COUNT(rank) FROM table_name_30 WHERE placings = "28.5" AND total < 92.7 | What is the rank number for a placing of 28.5 and a total less than 92.7? | CREATE TABLE table_name_30 (rank VARCHAR, placings VARCHAR, total VARCHAR) |
SELECT series_leader FROM table_name_64 WHERE date = "may 31" | What is the Series leader with a Date that is may 31? | CREATE TABLE table_name_64 (series_leader VARCHAR, date VARCHAR) |
SELECT competition FROM table_name_4 WHERE date = "august 20, 2004" | What is the name of the competition that was held on August 20, 2004? | CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR) |
SELECT SUM(to_par) FROM table_name_16 WHERE player = "craig wood" | What was the total To Par for Craig Wood? | CREATE TABLE table_name_16 (to_par INTEGER, player VARCHAR) |
SELECT played FROM table_name_49 WHERE drawn = "0" AND points = "33" | What is the number of matches played for the team with 0 draws and 33 points? | CREATE TABLE table_name_49 (played VARCHAR, drawn VARCHAR, points VARCHAR) |
SELECT trofeo_fast_team FROM table_name_67 WHERE points_classification = "silvio martinello" AND stage = "6" | What is the Trofeo Fast Team with a point classification of Silvio Martinello and stage 6? | CREATE TABLE table_name_67 (trofeo_fast_team VARCHAR, points_classification VARCHAR, stage VARCHAR) |
SELECT MAX(runner_up) FROM table_28457809_3 WHERE province = "Alberta" | What is the value of the runner up column for the Alberta province? | CREATE TABLE table_28457809_3 (runner_up INTEGER, province VARCHAR) |
SELECT COUNT(popular_votes) FROM table_name_74 WHERE office = "mn attorney general" AND year = 1994 | Name the total number of popular votes for mn attorney general in 1994 | CREATE TABLE table_name_74 (popular_votes VARCHAR, office VARCHAR, year VARCHAR) |
SELECT 1 AS st__m_ FROM table_14407512_4 WHERE nationality = "FIN" | What was the length of the jumper representing FIN, in meters? | CREATE TABLE table_14407512_4 (nationality VARCHAR) |
SELECT SUM(city_area_km_2__) FROM table_name_32 WHERE district = "bahawalnagar district" AND city_population__2009_ > 134 OFFSET 936 | What is the sum of the area for the bahawalnagar district with a population more than 134,936? | CREATE TABLE table_name_32 (city_area_km_2__ INTEGER, district VARCHAR, city_population__2009_ VARCHAR) |
SELECT MIN(lost) FROM table_name_8 WHERE drawn > 1 AND games < 7 | Which Lost has a Drawn larger than 1, and Games smaller than 7? | CREATE TABLE table_name_8 (lost INTEGER, drawn VARCHAR, games VARCHAR) |
SELECT 2006 FROM table_name_8 WHERE 2007 = "3r" | What is the 2006 value with 3r in 2007? | CREATE TABLE table_name_8 (Id VARCHAR) |
SELECT time FROM table_name_15 WHERE wrestler = "jimmy rave" | What time is listed against the Wrestler Jimmy Rave? | CREATE TABLE table_name_15 (time VARCHAR, wrestler VARCHAR) |
SELECT points_for FROM table_name_44 WHERE tries_against = "10" | What is the Points for number of the team with a 10 Tries against number? | CREATE TABLE table_name_44 (points_for VARCHAR, tries_against VARCHAR) |
SELECT MAX(season) FROM table_name_77 WHERE mole = "frederique van der wal" | Which Season has a Mole of frederique van der wal? | CREATE TABLE table_name_77 (season INTEGER, mole VARCHAR) |
SELECT week_3 FROM table_name_64 WHERE week_2 = "nikki fiction" | Who is week 3 if week 2 is Nikki Fiction? | CREATE TABLE table_name_64 (week_3 VARCHAR, week_2 VARCHAR) |
SELECT score FROM table_17311759_4 WHERE high_rebounds = "Zaza Pachulia (8)" | Give the score when high rebounds was zaza pachulia (8) | CREATE TABLE table_17311759_4 (score VARCHAR, high_rebounds VARCHAR) |
SELECT to_par FROM table_275162_1 WHERE player = "Zach Johnson" | What was zach johnson's score to par? | CREATE TABLE table_275162_1 (to_par VARCHAR, player VARCHAR) |
SELECT MAX(fa_cup_goals) FROM table_name_55 WHERE league_cup_apps > 0 AND name = "trevor cherry" | Which FA Cup Goals have League Cup Apps larger than 0, and a Name of trevor cherry? | CREATE TABLE table_name_55 (fa_cup_goals INTEGER, league_cup_apps VARCHAR, name VARCHAR) |
SELECT opponent FROM table_name_54 WHERE game > 31 AND date > 30 | Who was the opponent for a game over 31 and a date over 30? | CREATE TABLE table_name_54 (opponent VARCHAR, game VARCHAR, date VARCHAR) |
SELECT MAX(rank) FROM table_name_5 WHERE mountain_range = "kuskokwim mountains" | Where does the Kuskokwim Mountains rank on the chart? | CREATE TABLE table_name_5 (rank INTEGER, mountain_range VARCHAR) |
SELECT rank FROM table_name_69 WHERE player = "james franklin" | What ranking is james franklin? | CREATE TABLE table_name_69 (rank VARCHAR, player VARCHAR) |
SELECT car_s_ FROM table_2182170_1 WHERE driver_s_ = "Jeff Fuller" | What type of car does Jeff Fuller drive? | CREATE TABLE table_2182170_1 (car_s_ VARCHAR, driver_s_ VARCHAR) |
SELECT species FROM table_name_22 WHERE genes > 2 OFFSET 030 | What species has more than 2,030 genes? | CREATE TABLE table_name_22 (species VARCHAR, genes INTEGER) |
SELECT date FROM table_name_74 WHERE outcome = "runner-up" AND opponents_in_the_final = "tom gullikson butch walts" | Which date has the tom gullikson butch walts final, and who was the runner-up? | CREATE TABLE table_name_74 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR) |
SELECT MAX(points) FROM table_16940409_1 WHERE team = "Independiente" | Name the most points for independiente | CREATE TABLE table_16940409_1 (points INTEGER, team VARCHAR) |
SELECT total_votes FROM table_23390604_1 WHERE spoiled_ballots = 3072 | List all the total scores for the election which had 3072 invalid votes | CREATE TABLE table_23390604_1 (total_votes VARCHAR, spoiled_ballots VARCHAR) |
SELECT AVG(grid) FROM table_name_5 WHERE time_retired = "+6.077" AND laps < 26 | What was the grid associated with under 26 laps and a Time/Retired of +6.077? | CREATE TABLE table_name_5 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) |
SELECT candidates FROM table_1341423_38 WHERE district = "Pennsylvania 3" | Who were the candidates in district Pennsylvania 3? | CREATE TABLE table_1341423_38 (candidates VARCHAR, district VARCHAR) |
SELECT position FROM table_name_81 WHERE round < 4 AND overall = "17" | What is the position of a player from a round less than 4 and an overall of 17? | CREATE TABLE table_name_81 (position VARCHAR, round VARCHAR, overall VARCHAR) |
SELECT Candidate_ID FROM candidate ORDER BY oppose_rate LIMIT 1 | Find the id of the candidate who got the lowest oppose rate. | CREATE TABLE candidate (Candidate_ID VARCHAR, oppose_rate VARCHAR) |
SELECT yeast_ortholog FROM table_name_18 WHERE mouse_ortholog = "mms19" | What is the yeast ortholog of mouse ortholog MMS19? | CREATE TABLE table_name_18 (yeast_ortholog VARCHAR, mouse_ortholog VARCHAR) |
SELECT years_of_operation FROM table_name_35 WHERE location = "prospect 33 prospect ave" | During what Years of Operation was the location prospect 33 prospect ave? | CREATE TABLE table_name_35 (years_of_operation VARCHAR, location VARCHAR) |
SELECT year_built FROM table_name_29 WHERE location_of_the_church = "florø" | In what year was the church located in florø built? | CREATE TABLE table_name_29 (year_built VARCHAR, location_of_the_church VARCHAR) |
SELECT date FROM table_name_44 WHERE winning_driver = "emerson fittipaldi" AND race = "spanish grand prix" | What day did Emerson Fittipaldi win the Spanish Grand Prix? | CREATE TABLE table_name_44 (date VARCHAR, winning_driver VARCHAR, race VARCHAR) |
SELECT bronze FROM table_name_94 WHERE total > 1 AND silver > "2" AND rank = "2" | What is the number of bronze medals when the total is greater than 1, more than 2 silver medals are won, and the rank is 2? | CREATE TABLE table_name_94 (bronze VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR) |
SELECT nationality FROM table_21721351_18 WHERE college_junior_club_team = "Kitchener Rangers (OHL)" | Which nationality is kitchener rangers (ohl) college/junior/club team? | CREATE TABLE table_21721351_18 (nationality VARCHAR, college_junior_club_team VARCHAR) |
SELECT 2010 FROM table_name_87 WHERE 2009 = "1r" AND 2008 = "1r" | What is the 2010 when the 2009 is 1r, and a 2008 is 1r? | CREATE TABLE table_name_87 (Id VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.