answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT player FROM table_name_27 WHERE place = "1" | What Player is in Place 1? | CREATE TABLE table_name_27 (player VARCHAR, place VARCHAR) |
SELECT MAX(goals) FROM table_name_9 WHERE name = "curtis davies" AND ends > 2012 | What is the greatest goals for Curtis Davies if ends is greater than 2012? | CREATE TABLE table_name_9 (goals INTEGER, name VARCHAR, ends VARCHAR) |
SELECT title FROM table_27914606_1 WHERE written_by = "Jeff Astrof & Matt Goldman" | what is the name of the episode whose writers were jeff astrof & matt goldman? | CREATE TABLE table_27914606_1 (title VARCHAR, written_by VARCHAR) |
SELECT name FROM captain WHERE rank = 'Midshipman' OR rank = 'Lieutenant' | Find the name of captains whose rank are either Midshipman or Lieutenant. | CREATE TABLE captain (name VARCHAR, rank VARCHAR) |
SELECT entrant FROM table_name_62 WHERE chassis = "mclaren m7c" | Which entrant has a Mclaren m7c Chassis? | CREATE TABLE table_name_62 (entrant VARCHAR, chassis VARCHAR) |
SELECT COUNT(class_aAAA) FROM table_14603057_2 WHERE school_year = "2002-03" | How many Class AAAA winners where in 2002-03? | CREATE TABLE table_14603057_2 (class_aAAA VARCHAR, school_year VARCHAR) |
SELECT title FROM table_name_46 WHERE artist = "tangorodrim" AND cat__number = "fsr006" | What is the title of the record with an artist of Tangorodrim, category number FSR006? | CREATE TABLE table_name_46 (title VARCHAR, artist VARCHAR, cat__number VARCHAR) |
SELECT high_points FROM table_13480122_5 WHERE score = "W 117–93" | who is the the high points with score being w 117–93 | CREATE TABLE table_13480122_5 (high_points VARCHAR, score VARCHAR) |
SELECT COUNT(loss) FROM table_name_87 WHERE avg_g > 129.2 | How much Loss has an Avg/G larger than 129.2? | CREATE TABLE table_name_87 (loss VARCHAR, avg_g INTEGER) |
SELECT afc_championships FROM table_1952057_5 WHERE playoff_berths = 17 | If the playoff berth is 17, what is the AFC championship number? | CREATE TABLE table_1952057_5 (afc_championships VARCHAR, playoff_berths VARCHAR) |
SELECT club FROM table_name_99 WHERE league_cup_goals = "0" AND fa_cup_goals = "1" AND total > 11 AND league_goals = "13" | Which Club has a League Cup goals of 0, and a FA Cup goals of 1, and a Total larger than 11, and a League goals of 13? | CREATE TABLE table_name_99 (club VARCHAR, league_goals VARCHAR, total VARCHAR, league_cup_goals VARCHAR, fa_cup_goals VARCHAR) |
SELECT jockey FROM table_name_10 WHERE winner = "alke" | What is Jockey, when Winner is Alke? | CREATE TABLE table_name_10 (jockey VARCHAR, winner VARCHAR) |
SELECT MIN(overall) FROM table_name_17 WHERE college = "hardin-simmons" AND round > 26 | What is the lowest Overall, when College is Hardin-Simmons, and when Round is greater than 26? | CREATE TABLE table_name_17 (overall INTEGER, college VARCHAR, round VARCHAR) |
SELECT genre FROM table_name_7 WHERE title = "music in the air" | What genre was Music in the Air? | CREATE TABLE table_name_7 (genre VARCHAR, title VARCHAR) |
SELECT score FROM table_name_42 WHERE record = "1-1" | WHAT SCORE HAD A RECORD OF 1-1? | CREATE TABLE table_name_42 (score VARCHAR, record VARCHAR) |
SELECT races__starts_ FROM table_24937583_1 WHERE points__dropped_points_ = "18" | What were the starts when the points dropped 18? | CREATE TABLE table_24937583_1 (races__starts_ VARCHAR, points__dropped_points_ VARCHAR) |
SELECT rating / SHARE(18 AS –49) FROM table_22822468_2 WHERE viewers__millions_ = "3.79" | Name the rating for 3.79 viewers | CREATE TABLE table_22822468_2 (rating VARCHAR, viewers__millions_ VARCHAR) |
SELECT time_retired FROM table_name_80 WHERE driver = "ludovico scarfiotti" | What is the Time/Retired value for Ludovico Scarfiotti? | CREATE TABLE table_name_80 (time_retired VARCHAR, driver VARCHAR) |
SELECT country FROM table_name_91 WHERE score = 75 - 68 = 143 | What Country had a Score of 75-68=143? | CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR) |
SELECT year FROM table_name_4 WHERE position = "2nd" AND notes = "-63kg" AND venue = "manchester" | Which Year has a Position of 2nd, and Notes of -63kg, and a Venue of manchester? | CREATE TABLE table_name_4 (year VARCHAR, venue VARCHAR, position VARCHAR, notes VARCHAR) |
SELECT score FROM table_name_13 WHERE country = "united states" AND player = "john mahaffey" | What is Score, when Country is "United States", and when Player is "John Mahaffey"? | CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR, player VARCHAR) |
SELECT education FROM table_23050383_1 WHERE country = "Nepal" | What is the education in Nepal? | CREATE TABLE table_23050383_1 (education VARCHAR, country VARCHAR) |
SELECT place FROM table_name_35 WHERE score = 65 - 70 - 72 = 207 | What was the place when the score was 65-70-72=207? | CREATE TABLE table_name_35 (place VARCHAR, score VARCHAR) |
SELECT COUNT(capacity) FROM table_name_97 WHERE vehicle = "2003 holden commodore ute" | How much Capacity has a Vehicle of 2003 holden commodore ute? | CREATE TABLE table_name_97 (capacity VARCHAR, vehicle VARCHAR) |
SELECT apt_number, room_count FROM Apartments | Return the apartment number and the number of rooms for each apartment. | CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR) |
SELECT overall FROM table_name_5 WHERE pick = 17 | What is the Overall number for pick 17? | CREATE TABLE table_name_5 (overall VARCHAR, pick VARCHAR) |
SELECT district FROM table_2668352_5 WHERE incumbent = "Joseph Desha" | What is every district for incumbent Joseph Desha? | CREATE TABLE table_2668352_5 (district VARCHAR, incumbent VARCHAR) |
SELECT venue FROM table_name_65 WHERE home_team = "essendon" | What venue features essendon at home? | CREATE TABLE table_name_65 (venue VARCHAR, home_team VARCHAR) |
SELECT platelet_count FROM table_name_20 WHERE partial_thromboplastin_time = "prolonged or unaffected" | Which Platelet count has a Partial thromboplastin time of prolonged or unaffected? | CREATE TABLE table_name_20 (platelet_count VARCHAR, partial_thromboplastin_time VARCHAR) |
SELECT visitor FROM table_name_20 WHERE home = "los angeles" | Which visitor has a Los Angeles home? | CREATE TABLE table_name_20 (visitor VARCHAR, home VARCHAR) |
SELECT SUM(horsepowers) FROM table_name_51 WHERE year < 1974 AND tonnage = 4437 | How many Horsepowers have a Year smaller than 1974, and a Tonnage of 4437? | CREATE TABLE table_name_51 (horsepowers INTEGER, year VARCHAR, tonnage VARCHAR) |
SELECT d_46 FROM table_name_35 WHERE d_44 = "r 17" | I want the D 46 which has a D 44 of r 17 | CREATE TABLE table_name_35 (d_46 VARCHAR, d_44 VARCHAR) |
SELECT volume AS :issue FROM table_name_96 WHERE weeks_on_top < 2 AND artist = "george mccrae" | What is the Volume:Issue number of the George McCrae song that spent less than 2 weeks on top of the charts? | CREATE TABLE table_name_96 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR) |
SELECT SUM(lane) FROM table_name_92 WHERE nationality = "france" AND rank > 8 | How many lanes have a Nationality of france, and a Rank larger than 8? | CREATE TABLE table_name_92 (lane INTEGER, nationality VARCHAR, rank VARCHAR) |
SELECT competition FROM table_name_28 WHERE score = "2-1" | what is the competition when the score is 2-1? | CREATE TABLE table_name_28 (competition VARCHAR, score VARCHAR) |
SELECT time FROM table_name_74 WHERE res = "win" AND round > 2 AND opponent = "makoto ishikawa" | What is the time of the match with a win result, more than 2 rounds, and Makoto Ishikawa as the opponent? | CREATE TABLE table_name_74 (time VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR) |
SELECT report FROM table_21191496_1 WHERE circuit = "Autodromo Nazionale Monza" | When autodromo nazionale monza is the circuit what is the report? | CREATE TABLE table_21191496_1 (report VARCHAR, circuit VARCHAR) |
SELECT results¹ FROM table_name_13 WHERE opponent = "luxembourg" | What was the result of the game against Luxembourg? | CREATE TABLE table_name_13 (results¹ VARCHAR, opponent VARCHAR) |
SELECT COUNT(no_in_season) FROM table_24319661_3 WHERE us_viewers__million_ = "3.81" | How many episodes in the season had 3.81 million US viewers? | CREATE TABLE table_24319661_3 (no_in_season VARCHAR, us_viewers__million_ VARCHAR) |
SELECT points_jury FROM table_name_39 WHERE dance = "pop" | What is the Points Jury for Dance pop? | CREATE TABLE table_name_39 (points_jury VARCHAR, dance VARCHAR) |
SELECT score FROM table_name_78 WHERE venue = "athens olympic stadium" AND year = "30 april 2011" | what is the score when the venue is athens olympic stadium on 30 april 2011? | CREATE TABLE table_name_78 (score VARCHAR, venue VARCHAR, year VARCHAR) |
SELECT title FROM table_name_16 WHERE name = "ahaziah" | What is the title of ahaziah? | CREATE TABLE table_name_16 (title VARCHAR, name VARCHAR) |
SELECT COUNT(nhl_team) FROM table_2850912_7 WHERE college_junior_club_team = "Newton North High School (USHS-MA)" | How many nhl teams are listed when college/junior/club team is listed as newton north high school (ushs-ma)? | CREATE TABLE table_2850912_7 (nhl_team VARCHAR, college_junior_club_team VARCHAR) |
SELECT COUNT(district) FROM table_29785324_5 WHERE constituency_no = 213 | What district has 213 constituents? | CREATE TABLE table_29785324_5 (district VARCHAR, constituency_no VARCHAR) |
SELECT rebounds FROM table_25352324_5 WHERE steals = 19 | What is every value for rebounds when steals is 19? | CREATE TABLE table_25352324_5 (rebounds VARCHAR, steals VARCHAR) |
SELECT park_and_ride_lot FROM table_name_53 WHERE station_name = "temple square" | For the Temple Square station, what is the park & ride lot name? | CREATE TABLE table_name_53 (park_and_ride_lot VARCHAR, station_name VARCHAR) |
SELECT AVG(rank) FROM table_name_38 WHERE matches < 3 | What is the average rank of a player with fewer than 3 matches? | CREATE TABLE table_name_38 (rank INTEGER, matches INTEGER) |
SELECT directed_by FROM table_25668962_1 WHERE no_in_series = 18 | Who directed episode number 18 in the series? | CREATE TABLE table_25668962_1 (directed_by VARCHAR, no_in_series VARCHAR) |
SELECT 2004 FROM table_name_46 WHERE 2011 = "grand slam tournaments" | What is the 2004 value in the 2011 Grand Slam Tournaments? | CREATE TABLE table_name_46 (Id VARCHAR) |
SELECT code_name FROM table_name_12 WHERE api_level = 3 | with api level 3, what is the code name? | CREATE TABLE table_name_12 (code_name VARCHAR, api_level VARCHAR) |
SELECT MAX(OMIM) FROM enzyme | What is the maximum Online Mendelian Inheritance in Man (OMIM) value of the enzymes? | CREATE TABLE enzyme (OMIM INTEGER) |
SELECT entered_senate FROM table_24415627_2 WHERE senator = "Joseph Tydings" | On what date did congressman joseph tydings enter take his seat? | CREATE TABLE table_24415627_2 (entered_senate VARCHAR, senator VARCHAR) |
SELECT player FROM table_name_45 WHERE country = "zimbabwe" | Who is the player for Zimbabwe? | CREATE TABLE table_name_45 (player VARCHAR, country VARCHAR) |
SELECT 3 AS rd_place FROM table_name_36 WHERE runner_up = "runner-up" | What shows for 3rd place when Runner-up shows as runner-up? | CREATE TABLE table_name_36 (runner_up VARCHAR) |
SELECT location FROM table_name_83 WHERE opponent = "chicago bulls" | Opponent of chicago bulls had what location? | CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR) |
SELECT MAX(attendance) FROM table_name_57 WHERE result = "w 30-7" | What is the highest attendance a result of W 30-7? | CREATE TABLE table_name_57 (attendance INTEGER, result VARCHAR) |
SELECT DISTINCT T1.service_type_code FROM services AS T1 JOIN organizations AS T2 ON T1.organization_id = T2.organization_id WHERE T2.organization_details = 'Denesik and Sons Party' | What is the distinct service types that are provided by the organization which has detail 'Denesik and Sons Party'? | CREATE TABLE services (service_type_code VARCHAR, organization_id VARCHAR); CREATE TABLE organizations (organization_id VARCHAR, organization_details VARCHAR) |
SELECT score_in_the_final FROM table_name_47 WHERE surface = "hard" AND date = "august 20, 1989" | Which Score in the final has a Surface of hard on august 20, 1989? | CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) |
SELECT title FROM table_19517621_3 WHERE written_by = "Michael Miller" | What is the title for the episode that written by Michael Miller? | CREATE TABLE table_19517621_3 (title VARCHAR, written_by VARCHAR) |
SELECT catalogue FROM table_name_33 WHERE region = "uk" AND format = "vinyl" AND date = "1986" | Which catalogue is from the UK region, and is on vinyl, and was dated in 1986? | CREATE TABLE table_name_33 (catalogue VARCHAR, date VARCHAR, region VARCHAR, format VARCHAR) |
SELECT comp FROM table_name_60 WHERE venue = "olympic stadium tokyo, japan" | What's the comp in Olympic Stadium Tokyo, Japan? | CREATE TABLE table_name_60 (comp VARCHAR, venue VARCHAR) |
SELECT COUNT(*), dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code | Find the number of classes in each department. | CREATE TABLE CLASS (crs_code VARCHAR); CREATE TABLE course (crs_code VARCHAR) |
SELECT finish FROM table_name_1 WHERE qual = "144.817" | Name the finish which has qual of 144.817 | CREATE TABLE table_name_1 (finish VARCHAR, qual VARCHAR) |
SELECT SUM(gold) FROM table_name_98 WHERE nation = "algeria" AND total < 3 | What is the sum of all gold medals for Algeria when total medals is less than 3? | CREATE TABLE table_name_98 (gold INTEGER, nation VARCHAR, total VARCHAR) |
SELECT details FROM table_name_55 WHERE name = "marisa ferretti barth" | What are the details for Marisa Ferretti Barth? | CREATE TABLE table_name_55 (details VARCHAR, name VARCHAR) |
SELECT score FROM table_23186738_10 WHERE team = "Milwaukee" | What was the score when playing Milwaukee? | CREATE TABLE table_23186738_10 (score VARCHAR, team VARCHAR) |
SELECT MIN(year) FROM table_name_16 WHERE gold = "park jung-ah" | What was the earliest year that Park Jung-Ah won the gold? | CREATE TABLE table_name_16 (year INTEGER, gold VARCHAR) |
SELECT result FROM table_name_83 WHERE award = "bafta tv awards" | Name the result for the bafta tv awards | CREATE TABLE table_name_83 (result VARCHAR, award VARCHAR) |
SELECT users___number_ FROM table_20018310_1 WHERE irrigation_district = "Del Este" AND juntas_de_regantes__wub_ = "Nisibon-Yuma" | What's the number of users in the Nisibon-Yuma within the Del Este district? | CREATE TABLE table_20018310_1 (users___number_ VARCHAR, irrigation_district VARCHAR, juntas_de_regantes__wub_ VARCHAR) |
SELECT money___£__ FROM table_name_96 WHERE country = "ireland" | What Money (£) has a Country of ireland? | CREATE TABLE table_name_96 (money___£__ VARCHAR, country VARCHAR) |
SELECT race_name FROM table_name_23 WHERE winning_driver = "stirling moss" AND circuit = "oulton park" | 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 height_ft__m_ FROM table_name_5 WHERE rank = "13" | How tall is the building ranked #13? | CREATE TABLE table_name_5 (height_ft__m_ VARCHAR, rank VARCHAR) |
SELECT rank FROM table_name_14 WHERE definition = "province-level municipality" | What's the rank of the Province-Level Municipality? | CREATE TABLE table_name_14 (rank VARCHAR, definition VARCHAR) |
SELECT AVG(round) FROM table_name_87 WHERE pick__number > 5 AND position = "defensive back" AND overall < 152 | What is the average round of the defensive back player with a pick # greater than 5 and an overall less than 152? | CREATE TABLE table_name_87 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR) |
SELECT opposition FROM table_name_32 WHERE team = "cork" | Who is the opponent when the team is Cork? | CREATE TABLE table_name_32 (opposition VARCHAR, team VARCHAR) |
SELECT T2.weight FROM body_builder AS T1 JOIN people AS T2 ON T1.people_id = T2.people_id WHERE T1.snatch > 140 OR T2.height > 200 | List the weight of the body builders who have snatch score higher than 140 or have the height greater than 200. | CREATE TABLE people (weight VARCHAR, people_id VARCHAR, height VARCHAR); CREATE TABLE body_builder (people_id VARCHAR, snatch VARCHAR) |
SELECT SUM(avg_g) FROM table_name_32 WHERE name = "robert marve" AND gain < 236 | How much Avg/G has a Name of robert marve, and a Gain smaller than 236? | CREATE TABLE table_name_32 (avg_g INTEGER, name VARCHAR, gain VARCHAR) |
SELECT AVG(joined) FROM table_name_55 WHERE nickname = "wildcats" AND location = "longmeadow, massachusetts" | What is the average Joined with a Nickname of wildcats in longmeadow, massachusetts? | CREATE TABLE table_name_55 (joined INTEGER, nickname VARCHAR, location VARCHAR) |
SELECT administrative_county FROM table_14925084_1 WHERE area_1961__statute_acres_ = 422372 | Name the administrative county being area of 422372 | CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR) |
SELECT televote_points FROM table_name_1 WHERE televotes = "6,131" | Who received 6,131 televotes? | CREATE TABLE table_name_1 (televote_points VARCHAR, televotes VARCHAR) |
SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = "Christop" AND T2.staff_last_name = "Berge" INTERSECT SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.closure_authorised_by_staff_id = T2.staff_id WHERE T2.staff_first_name = "Ashley"... | What are the product ids for the problems reported by Christop Berge with closure authorised by Ashley Medhurst? | CREATE TABLE problems (reported_by_staff_id VARCHAR, closure_authorised_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR) |
SELECT status FROM table_name_11 WHERE stories > 44 AND city = "mexico city" AND building = "torre reforma" | What is the status of the torre reforma building that is over 44 stories in mexico city? | CREATE TABLE table_name_11 (status VARCHAR, building VARCHAR, stories VARCHAR, city VARCHAR) |
SELECT COUNT(director) FROM table_12919003_3 WHERE viewers_millions_ = "9.14" | What's the total number of directors whose episodes have been seen by 9.14 million viewers? | CREATE TABLE table_12919003_3 (director VARCHAR, viewers_millions_ VARCHAR) |
SELECT conference FROM table_name_71 WHERE school = "mayville state" | What conference has mayville state as the school? | CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR) |
SELECT AVG(fa_cup) FROM table_name_72 WHERE name = "whelan" AND total > 7 | What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals? | CREATE TABLE table_name_72 (fa_cup INTEGER, name VARCHAR, total VARCHAR) |
SELECT class FROM table_name_83 WHERE number_in_class > 15 | Which class has more than 15 people in the class? | CREATE TABLE table_name_83 (class VARCHAR, number_in_class INTEGER) |
SELECT finish FROM table_name_74 WHERE qual = "141.071" | What finish qualified at 141.071? | CREATE TABLE table_name_74 (finish VARCHAR, qual VARCHAR) |
SELECT yogi_bear FROM table_19860361_3 WHERE air_date = "1959.12.21" | What is the Yogi Bear that aired on 1959.12.21? | CREATE TABLE table_19860361_3 (yogi_bear VARCHAR, air_date VARCHAR) |
SELECT COUNT(production_code) FROM table_1876825_2 WHERE written_by = "David Richardson" AND directed_by = "Todd Holland" | Name the total number of production code by david richardson and todd holland | CREATE TABLE table_1876825_2 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR) |
SELECT COUNT(games) FROM table_name_44 WHERE points > 0 AND lost < 4 AND drawn < 0 | How many Games has Points larger than 0 and a Lost smaller than 4? | CREATE TABLE table_name_44 (games VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR) |
SELECT MAX(long) FROM table_name_3 WHERE loss < 7 AND avg_g < 25.1 | What was the highest long with less than 7 losses and an Avg/G smaller than 25.1? | CREATE TABLE table_name_3 (long INTEGER, loss VARCHAR, avg_g 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 winning_driver FROM table_name_99 WHERE date = "24 august" | Who won the race on 24 August? | CREATE TABLE table_name_99 (winning_driver VARCHAR, date VARCHAR) |
SELECT MIN(all_amendments_sponsored) FROM table_name_52 WHERE bills_originally_cosponsored = 150 AND all_bills_cosponsored > 247 | What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored? | CREATE TABLE table_name_52 (all_amendments_sponsored INTEGER, bills_originally_cosponsored VARCHAR, all_bills_cosponsored VARCHAR) |
SELECT type FROM table_name_40 WHERE formed_from = "6-pul trailer third in res unit" | Name the typed for formed from 6-pul trailer third in res unit | CREATE TABLE table_name_40 (type VARCHAR, formed_from VARCHAR) |
SELECT film_title_used_in_nomination FROM table_21655290_1 WHERE original_title = "Vinterkyss" | Which film title used in nomination has vinterkyss as the original title? | CREATE TABLE table_21655290_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) |
SELECT COUNT(retired) FROM table_13605170_2 WHERE aircraft_type = "Curtiss XBTC" | how many Curtiss XBTC aircraft are retired? | CREATE TABLE table_13605170_2 (retired VARCHAR, aircraft_type VARCHAR) |
SELECT player FROM table_name_51 WHERE pick__number = "69" | What is the name of the player that is pick #69? | CREATE TABLE table_name_51 (player VARCHAR, pick__number VARCHAR) |
SELECT AVG(year_opened) FROM table_name_17 WHERE track_name = "chicagoland speedway" AND seating < 75 OFFSET 000 | What is the year opened for Chicagoland Speedway with a seating smaller than 75,000? | CREATE TABLE table_name_17 (year_opened INTEGER, track_name VARCHAR, seating VARCHAR) |
SELECT SUM(place) FROM table_name_7 WHERE name = "r. wenzel" AND until > 1934 | What place did R. Wenzel, who was active after 1934, have? | CREATE TABLE table_name_7 (place INTEGER, name VARCHAR, until VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.