answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT county FROM table_12280396_1 WHERE peak = "Indre Russetind" | Name the county with the peak being indre russetind? | CREATE TABLE table_12280396_1 (county VARCHAR, peak VARCHAR) |
SELECT date_of_departure FROM table_name_41 WHERE replaced_by = "bojan prašnikar" | When was the departure date when a manager was replaced by Bojan Prašnikar? | CREATE TABLE table_name_41 (date_of_departure VARCHAR, replaced_by VARCHAR) |
SELECT COUNT(played) FROM table_name_22 WHERE first_game = 1991 AND percentage = "22.22%" AND lost > 7 | What is the total number of games played that correlates with a first game in 1991, a percentage of 22.22%, and less than 7 losses? | CREATE TABLE table_name_22 (played VARCHAR, lost VARCHAR, first_game VARCHAR, percentage VARCHAR) |
SELECT AVG(crowd) FROM table_name_54 WHERE away_team = "hawthorn" | What was the attendance when Hawthorn played as the away team? | CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR) |
SELECT MAX(Age) FROM STUDENT | Find the maximum age of all the students. | CREATE TABLE STUDENT (Age INTEGER) |
SELECT COUNT(pick) FROM table_name_86 WHERE overall < 304 AND position = "g" AND round < 11 | How many Picks have an Overall smaller than 304, and a Position of g, and a Round smaller than 11? | CREATE TABLE table_name_86 (pick VARCHAR, round VARCHAR, overall VARCHAR, position VARCHAR) |
SELECT * FROM student_course_registrations WHERE NOT student_id IN (SELECT student_id FROM student_course_attendance) | What are all info of students who registered courses but not attended courses? | CREATE TABLE student_course_attendance (student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR) |
SELECT date FROM table_name_32 WHERE goals = "deacon 4/4, withers 1 dg" | Which date has a Goal of deacon 4/4, withers 1 dg? | CREATE TABLE table_name_32 (date VARCHAR, goals VARCHAR) |
SELECT count_rectified FROM table_name_78 WHERE opponents = "single" AND positional_or_automatic = "either" AND material_or_non_material = "no" | Is the count rectified for single opponents, either positional or automatic, and no material or non-material? | CREATE TABLE table_name_78 (count_rectified VARCHAR, material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR) |
SELECT 3 AS rd_runner_up FROM table_30018460_1 WHERE country_territory = "Croatia" | How many first place participants where from croatia? | CREATE TABLE table_30018460_1 (country_territory VARCHAR) |
SELECT AVG(total_goals) FROM table_name_82 WHERE league_cup_goals > 0 AND fa_cup_goals > 0 | Which Total Goals have a League Cup Goals larger than 0, and FA Cup Goals larger than 0? | CREATE TABLE table_name_82 (total_goals INTEGER, league_cup_goals VARCHAR, fa_cup_goals VARCHAR) |
SELECT t2.unit_of_measure FROM products AS t1 JOIN ref_product_categories AS t2 ON t1.product_category_code = t2.product_category_code WHERE t1.product_name = "cumin" | What is the unit of measurement of product named "cumin"? | CREATE TABLE ref_product_categories (unit_of_measure VARCHAR, product_category_code VARCHAR); CREATE TABLE products (product_category_code VARCHAR, product_name VARCHAR) |
SELECT episode FROM table_24725951_1 WHERE celebrities = "Nick Hewer and Saira Khan" | Which episode had celebrities Nick Hewer and Saira Khan in them? | CREATE TABLE table_24725951_1 (episode VARCHAR, celebrities VARCHAR) |
SELECT team FROM table_name_53 WHERE high_rebounds = "antonio davis (8)" | What is the Team when antonio davis (8) had the high rebounds? | CREATE TABLE table_name_53 (team VARCHAR, high_rebounds VARCHAR) |
SELECT date FROM table_name_42 WHERE score = "5-1" | When was there a score of 5-1? | CREATE TABLE table_name_42 (date VARCHAR, score VARCHAR) |
SELECT away_team FROM table_name_22 WHERE venue = "brunswick street oval" | What away team is playing at the Brunswick Street Oval Venue? | CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR) |
SELECT latitude FROM table_name_79 WHERE year_named < 1997 AND name = "aino planitia" | Which Latitude has a Year named smaller than 1997, and a Name of aino planitia? | CREATE TABLE table_name_79 (latitude VARCHAR, year_named VARCHAR, name VARCHAR) |
SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = "44.6%" AND bush__number > 163 OFFSET 650 | How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes? | CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bush__number VARCHAR) |
SELECT catalogue FROM table_name_59 WHERE song_title = "harbor lights" | What is the catalogue for Harbor Lights as a title? | CREATE TABLE table_name_59 (catalogue VARCHAR, song_title VARCHAR) |
SELECT COUNT(tries_against) FROM table_name_30 WHERE try_diff = "–17" AND points_for < 80 | How many Tries against has a Try diff of –17 and Points for smaller than 80? | CREATE TABLE table_name_30 (tries_against VARCHAR, try_diff VARCHAR, points_for VARCHAR) |
SELECT MAX(attendance) FROM table_28181401_4 WHERE round = "Semi Final (2nd leg)" | When semi final (2nd leg) is the round what is the highest attendance? | CREATE TABLE table_28181401_4 (attendance INTEGER, round VARCHAR) |
SELECT MAX(year) FROM table_name_70 WHERE winning_team = "atlanta braves" AND losing_team = "st. louis cardinals" | What was the latest year that the Atlanta Braves won and the St. Louis Cardinals lost? | CREATE TABLE table_name_70 (year INTEGER, winning_team VARCHAR, losing_team VARCHAR) |
SELECT ended FROM table_name_98 WHERE loan_club = "spartak moscow" | when was the loan ended when the loan club is spartak moscow? | CREATE TABLE table_name_98 (ended VARCHAR, loan_club VARCHAR) |
SELECT investment_income FROM table_name_30 WHERE region = "eastern england" | Region of eastern england has what investment income? | CREATE TABLE table_name_30 (investment_income VARCHAR, region VARCHAR) |
SELECT married_filing_jointly_or_qualified_widow_er_ FROM table_name_61 WHERE head_of_household = "$117,451–$190,200" | Name the married filing jointly or qualified widow(er) with head of household being $117,451–$190,200 | CREATE TABLE table_name_61 (married_filing_jointly_or_qualified_widow_er_ VARCHAR, head_of_household VARCHAR) |
SELECT first_elected FROM table_2668243_8 WHERE incumbent = "Henry Daniel" | When was Henry Daniel first elected? | CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR) |
SELECT RESULT FROM music_festival GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 | What is the most common result of the music festival? | CREATE TABLE music_festival (RESULT VARCHAR) |
SELECT away FROM table_name_84 WHERE home = "2–2" | Which Away has a Home of 2–2? | CREATE TABLE table_name_84 (away VARCHAR, home VARCHAR) |
SELECT partner FROM table_name_59 WHERE score = "3–6, 2–6" | What Partner has a Score of 3–6, 2–6? | CREATE TABLE table_name_59 (partner VARCHAR, score VARCHAR) |
SELECT high_assists FROM table_name_46 WHERE team = "orlando" | Tell me the high assists for orlando | CREATE TABLE table_name_46 (high_assists VARCHAR, team VARCHAR) |
SELECT rating / SHARE(18 AS –49) FROM table_25391981_20 WHERE episode = "Week 6, Part 1" | What is the rating/share for 18-49 for Week 6, Part 1? | CREATE TABLE table_25391981_20 (rating VARCHAR, episode VARCHAR) |
SELECT SUM(decile) FROM table_name_37 WHERE roll < 25 AND area = "franz josef" | What is the decile sum with a roll smaller than 25, and franz josef area? | CREATE TABLE table_name_37 (decile INTEGER, roll VARCHAR, area VARCHAR) |
SELECT MIN(_number_of_episodes) FROM table_name_75 WHERE date_released = "15 december 2011" | What is the lowest # Of Episodes, when Date Released is "15 December 2011"? | CREATE TABLE table_name_75 (_number_of_episodes INTEGER, date_released VARCHAR) |
SELECT province FROM table_name_63 WHERE airport = "luogang international airport" | Which province is Luogang International Airport located in? | CREATE TABLE table_name_63 (province VARCHAR, airport VARCHAR) |
SELECT event FROM table_22050544_3 WHERE entries = "25,883" | Which event had 25,883 entries? | CREATE TABLE table_22050544_3 (event VARCHAR, entries VARCHAR) |
SELECT SUM(played) FROM table_name_86 WHERE lost > 10 AND points < 5 | What is the sum of matches played for teams with more than 10 losses and under 5 points? | CREATE TABLE table_name_86 (played INTEGER, lost VARCHAR, points VARCHAR) |
SELECT AirportName FROM AIRPORTS WHERE AirportCode = "AKO" | What is the airport name for airport 'AKO'? | CREATE TABLE AIRPORTS (AirportName VARCHAR, AirportCode VARCHAR) |
SELECT date FROM table_name_77 WHERE partner = "kira nagy" | On what Date was the match with partner Kira Nagy? | CREATE TABLE table_name_77 (date VARCHAR, partner VARCHAR) |
SELECT MAX(geo_id) FROM table_18600760_10 WHERE water__sqmi_ = "0.771" | What is the geo ID for the township with 0.771 square miles of water? | CREATE TABLE table_18600760_10 (geo_id INTEGER, water__sqmi_ VARCHAR) |
SELECT MIN(points) FROM table_name_95 WHERE games > 8 | What is the fewest number of points associated with more than 8 games? | CREATE TABLE table_name_95 (points INTEGER, games INTEGER) |
SELECT AVG(age), job FROM Person GROUP BY job | What is average age for different job title? | CREATE TABLE Person (job VARCHAR, age INTEGER) |
SELECT T1.address_line_1 FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = "operating system" OR T2.course_name = "data structure" | Find the addresses of the course authors who teach the course with name "operating system" or "data structure". | CREATE TABLE Courses (author_id VARCHAR, course_name VARCHAR); CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, author_id VARCHAR) |
SELECT 2008 FROM table_name_87 WHERE 2006 = "2nd" | What is the 2008 value that was 2nd in 2006? | CREATE TABLE table_name_87 (Id VARCHAR) |
SELECT paris_roubaix___fra__ FROM table_name_33 WHERE year = 2006 | Who won the Paris-Roubaix in 2006? | CREATE TABLE table_name_33 (paris_roubaix___fra__ VARCHAR, year VARCHAR) |
SELECT h_rempel FROM table_name_31 WHERE j_j_neufeld = "sajen" | Which of the H. Rempel has J. J. Neufeld of Sajen? | CREATE TABLE table_name_31 (h_rempel VARCHAR, j_j_neufeld VARCHAR) |
SELECT resolution FROM table_name_91 WHERE dish = "8126" | Name the resolution with dish of 8126 | CREATE TABLE table_name_91 (resolution VARCHAR, dish VARCHAR) |
SELECT score FROM table_name_89 WHERE outcome = "winner" AND opponent = "byron black" | WHAT IS THE SCORE WITH A WINNER AND OPPONENT BYRON BLACK? | CREATE TABLE table_name_89 (score VARCHAR, outcome VARCHAR, opponent VARCHAR) |
SELECT airport FROM table_name_80 WHERE iata = "vie" | VIE is the IATA for which city? | CREATE TABLE table_name_80 (airport VARCHAR, iata VARCHAR) |
SELECT shot_pct FROM table_name_67 WHERE stolen_ends = 2 | What is Shot Pct., when Stolen Ends is 2? | CREATE TABLE table_name_67 (shot_pct VARCHAR, stolen_ends VARCHAR) |
SELECT team FROM table_name_9 WHERE record = "50–28" | What team has a Record of 50–28? | CREATE TABLE table_name_9 (team VARCHAR, record VARCHAR) |
SELECT moving_from FROM table_name_31 WHERE name = "naylor" | Where did naylor move from? | CREATE TABLE table_name_31 (moving_from VARCHAR, name VARCHAR) |
SELECT MAX(total) FROM table_name_37 WHERE bask = "3" AND base = "3" | What is the highest total value when bask and base are each 3? | CREATE TABLE table_name_37 (total INTEGER, bask VARCHAR, base VARCHAR) |
SELECT system FROM table_name_47 WHERE s_100_slots < 21 AND year_introduced < 1981 AND internal_hard_disk = "11 megabytes" | Which system introduced earlier than 1981 has an internal hard disk of 11 megabytes and less than 21 s-100 slots? | CREATE TABLE table_name_47 (system VARCHAR, internal_hard_disk VARCHAR, s_100_slots VARCHAR, year_introduced VARCHAR) |
SELECT archive FROM table_2102714_1 WHERE run_time = "24:05" | What is he archive for the episode with a run time of 24:05? | CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR) |
SELECT score FROM table_name_57 WHERE player = "tiger woods" | What was Tiger Woods' score? | CREATE TABLE table_name_57 (score VARCHAR, player VARCHAR) |
SELECT DISTINCT cName FROM tryout ORDER BY cName | Find the name of different colleges involved in the tryout in alphabetical order. | CREATE TABLE tryout (cName VARCHAR) |
SELECT MIN(gain) FROM table_name_84 WHERE loss > 2 AND avg_g > -6 AND name = "sheehan, tyler" AND long > 11 | Which Gain is the lowest one that has a Loss larger than 2, and an Avg/G larger than -6, and a Name of sheehan, tyler, and a Long larger than 11? | CREATE TABLE table_name_84 (gain INTEGER, long VARCHAR, name VARCHAR, loss VARCHAR, avg_g VARCHAR) |
SELECT chassis FROM table_name_94 WHERE drivers = "rich vogler" | What Chassis did Rich Vogler use? | CREATE TABLE table_name_94 (chassis VARCHAR, drivers VARCHAR) |
SELECT county FROM table_name_37 WHERE built = "1884" | What county had a bridge biult in 1884? | CREATE TABLE table_name_37 (county VARCHAR, built VARCHAR) |
SELECT COUNT(enrollment_08_09) FROM table_name_93 WHERE school = "franklin county" | What was the total enrollment 08-09 of Franklin County? | CREATE TABLE table_name_93 (enrollment_08_09 VARCHAR, school VARCHAR) |
SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE the_basque_of_the_glossary = "presenta for mi locaria" | What is the iclandic of the glossary for presenta for mi locaria | CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, the_basque_of_the_glossary VARCHAR) |
SELECT freq_currently FROM table_name_7 WHERE callsign = "4gg" | What is the Freq currently of the 4GG Callsign? | CREATE TABLE table_name_7 (freq_currently VARCHAR, callsign VARCHAR) |
SELECT introductory_phrase FROM table_25691838_2 WHERE production_code = 6026 | What was the introductory phrase for the episode with the production bode 6026? | CREATE TABLE table_25691838_2 (introductory_phrase VARCHAR, production_code VARCHAR) |
SELECT production_code FROM table_26702204_1 WHERE us_viewers__million_ = "11.76" | What is the production code when the u.s. viewers (million) is 11.76? | CREATE TABLE table_26702204_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) |
SELECT COUNT(number_of_dances) FROM table_1354805_6 WHERE average = "34.0" | how many turns were completed to make a mean of 34.0 | CREATE TABLE table_1354805_6 (number_of_dances VARCHAR, average VARCHAR) |
SELECT air_date FROM table_name_65 WHERE viewers = 7.3 | When did the episode air that had 7.3 viewers? | CREATE TABLE table_name_65 (air_date VARCHAR, viewers VARCHAR) |
SELECT place FROM table_name_93 WHERE building = "victoria hall" | Name the place with building of victoria hall | CREATE TABLE table_name_93 (place VARCHAR, building VARCHAR) |
SELECT athlete FROM table_name_35 WHERE country = "egypt" | Which athlete represented the country of egypt? | CREATE TABLE table_name_35 (athlete VARCHAR, country VARCHAR) |
SELECT title FROM table_name_98 WHERE year > 1943 AND studio = "rko" AND role = "dolly" | What is the title where the studio was RKO, the role was Dolly, and the year was later than 1943? | CREATE TABLE table_name_98 (title VARCHAR, role VARCHAR, year VARCHAR, studio VARCHAR) |
SELECT MAX(rank) FROM table_name_60 WHERE year = 1976 AND floors < 21 | What is the highest rank of a building erected in 1976 with fewer than 21 floors? | CREATE TABLE table_name_60 (rank INTEGER, year VARCHAR, floors VARCHAR) |
SELECT cylinder_size FROM table_25695027_1 WHERE number_built = "88" | What was the cylinder size of this engine that was made with only 88 pieces? | CREATE TABLE table_25695027_1 (cylinder_size VARCHAR, number_built VARCHAR) |
SELECT visitor FROM table_name_39 WHERE home = "lakers" AND score = "85–106" | Who was the visitor when the lakers were at home with a Score of 85–106? | CREATE TABLE table_name_39 (visitor VARCHAR, home VARCHAR, score VARCHAR) |
SELECT series FROM table_21297652_1 WHERE points = 30 | In what series did the driver get 30 points? | CREATE TABLE table_21297652_1 (series VARCHAR, points VARCHAR) |
SELECT record FROM table_name_56 WHERE games = "1991 port of spain" | What is the Record of the 1991 Port of Spain Games? | CREATE TABLE table_name_56 (record VARCHAR, games VARCHAR) |
SELECT MIN(no_in_season) FROM table_26168687_5 | Name the most number in season | CREATE TABLE table_26168687_5 (no_in_season INTEGER) |
SELECT class_1 - 200 FROM table_1936678_1 WHERE best_uk_team = "University of Hertfordshire" AND class_1a = "University of Warwick" | Name the class 1-200 for university of hertfordshire for university of warwick | CREATE TABLE table_1936678_1 (class_1 VARCHAR, best_uk_team VARCHAR, class_1a VARCHAR) |
SELECT date FROM table_name_79 WHERE set_1 = "15–1" | What is the Date with a Set 1 with 15–1? | CREATE TABLE table_name_79 (date VARCHAR, set_1 VARCHAR) |
SELECT works_number FROM table_name_88 WHERE type = "0-4-4 forney locomotive" AND builder = "h. k. porter, inc" | Builder H. K. Porter, inc who had a type of 0-4-4 Forney locomotive, has what works number? | CREATE TABLE table_name_88 (works_number VARCHAR, type VARCHAR, builder VARCHAR) |
SELECT enrollment FROM table_24216139_2 WHERE nickname = "Cougars" | Name the enrollment with cougars | CREATE TABLE table_24216139_2 (enrollment VARCHAR, nickname VARCHAR) |
SELECT away FROM table_name_99 WHERE season = "2007–08" | Which Away has a Season of 2007–08? | CREATE TABLE table_name_99 (away VARCHAR, season VARCHAR) |
SELECT engine FROM table_name_30 WHERE tyres = "g" AND driver = "elio de angelis" | What engine has g tyres and is driven by elio de angelis? | CREATE TABLE table_name_30 (engine VARCHAR, tyres VARCHAR, driver VARCHAR) |
SELECT country FROM table_name_58 WHERE player = "tiger woods" | What country does Tiger Woods come from? | CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR) |
SELECT score FROM table_name_27 WHERE home_team = "grays athletic" | What score has grays athletic as the home team? | CREATE TABLE table_name_27 (score VARCHAR, home_team VARCHAR) |
SELECT MAX(crowd) FROM table_name_9 WHERE home_team = "footscray" | What is the largest crowd for any game where Footscray is the home team? | CREATE TABLE table_name_9 (crowd INTEGER, home_team VARCHAR) |
SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = "tommy nobis" | What is Tommy Nobis' position that has fewer than 16 picks? | CREATE TABLE table_name_80 (position VARCHAR, pick__number VARCHAR, name VARCHAR) |
SELECT production_code FROM table_26801821_1 WHERE no_in_series = 5 | What is the production code for the number 5 series ? | CREATE TABLE table_26801821_1 (production_code VARCHAR, no_in_series VARCHAR) |
SELECT COUNT(points_against) FROM table_13758945_3 WHERE tries_for = "43" | how many points against with tries for being 43 | CREATE TABLE table_13758945_3 (points_against VARCHAR, tries_for VARCHAR) |
SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = "APG" INTERSECT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = "CVO" | Find all airlines that have flights from both airports 'APG' and 'CVO'. | CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR); CREATE TABLE FLIGHTS (Airline VARCHAR, SourceAirport VARCHAR) |
SELECT winning_driver FROM table_name_13 WHERE circuit = "rio de janeiro" | Which Driver won the Circuit of Rio de Janeiro? | CREATE TABLE table_name_13 (winning_driver VARCHAR, circuit VARCHAR) |
SELECT home FROM table_name_78 WHERE decision = "legace" AND visitor = "st. louis" AND date = "february 22" | What was the home team in the February 22 game that Legace played in for the St. Louis Blues? | CREATE TABLE table_name_78 (home VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR) |
SELECT SUM(losses) FROM table_name_80 WHERE goals_against < 34 AND games_played < 8 | what is the sum of the losses when the goals against is less than 34 and the games played is less than 8? | CREATE TABLE table_name_80 (losses INTEGER, goals_against VARCHAR, games_played VARCHAR) |
SELECT date FROM table_name_51 WHERE points = 62 | What is the date of the game with 62 points? | CREATE TABLE table_name_51 (date VARCHAR, points VARCHAR) |
SELECT power FROM table_name_84 WHERE engine_code = "m44b19" | What is the power of the engine with an engine code m44b19? | CREATE TABLE table_name_84 (power VARCHAR, engine_code VARCHAR) |
SELECT opponent FROM table_27537870_5 WHERE record = "10-13-3" | Name the opponent for record 10-13-3 | CREATE TABLE table_27537870_5 (opponent VARCHAR, record VARCHAR) |
SELECT mpg_uk_urban__cold_ FROM table_name_8 WHERE fuel_type = "diesel" AND mpg_uk_extra_urban > 68.9 AND engine_capacity = 1422 AND l_100km_urban__cold_ > 5.1 | What is the mpg-UK urban (cold) for a fuel type of diesel, extraurban MPG in the UK over 68.9, engine capacity of 1422, and L/100km urban (cold) over 5.1? | CREATE TABLE table_name_8 (mpg_uk_urban__cold_ VARCHAR, l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_extra_urban VARCHAR) |
SELECT tournament FROM table_name_26 WHERE date > 1986 AND score_in_the_final = "7–6, 3–6, 6–2" | What tournament took place after 1986 and had a final score of 7–6, 3–6, 6–2? | CREATE TABLE table_name_26 (tournament VARCHAR, date VARCHAR, score_in_the_final VARCHAR) |
SELECT 0 AS _100km_h__62mph_ FROM table_name_16 WHERE max_power = "s diesel engine all direct injection (dci)" | What is the 0–100km/h (62mph) when the max power is s diesel engine all direct injection (dci)? | CREATE TABLE table_name_16 (max_power VARCHAR) |
SELECT COUNT(games) FROM table_name_62 WHERE goals = 23 AND rank > 9 | How many games have 23 goals with a rank greater than 9? | CREATE TABLE table_name_62 (games VARCHAR, goals VARCHAR, rank VARCHAR) |
SELECT stage FROM table_name_21 WHERE winner = "jeremy hunt" | Which Stage has a Winner of jeremy hunt? | CREATE TABLE table_name_21 (stage VARCHAR, winner VARCHAR) |
SELECT bronze FROM table_name_35 WHERE year = 2002 | Who won bronze in 2002? | CREATE TABLE table_name_35 (bronze VARCHAR, year VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.