answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT SUM(decile) FROM table_name_88 WHERE suburb = "clendon" | What is the sum for every value of Decile in Clendon? | CREATE TABLE table_name_88 (decile INTEGER, suburb VARCHAR) |
SELECT original_artist FROM table_28715942_2 WHERE arranger_s_ = "Jack Stamp" | Who were the original artist(s) when jack stamp arranged? | CREATE TABLE table_28715942_2 (original_artist VARCHAR, arranger_s_ VARCHAR) |
SELECT name FROM table_name_68 WHERE route_of_administration = "iv" AND investigation = "thrombus imaging" | Tell me the name for Investigation of thrombus imaging and Route of administration of iv | CREATE TABLE table_name_68 (name VARCHAR, route_of_administration VARCHAR, investigation VARCHAR) |
SELECT report FROM table_26258348_4 WHERE grand_prix = "Belgian grand_prix" | What are all the report for the Belgian Grand Prix? | CREATE TABLE table_26258348_4 (report VARCHAR, grand_prix VARCHAR) |
SELECT score FROM table_name_81 WHERE visitor = "bucks" AND leading_scorer = "maurice williams (25)" | What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)? | CREATE TABLE table_name_81 (score VARCHAR, visitor VARCHAR, leading_scorer VARCHAR) |
SELECT country FROM table_name_68 WHERE rank = "1" | What country was rank 1? | CREATE TABLE table_name_68 (country VARCHAR, rank VARCHAR) |
SELECT MIN(recognised_seats) FROM table_19304764_2 | Name the least recognised seats | CREATE TABLE table_19304764_2 (recognised_seats INTEGER) |
SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog' | Find the number of dog pets that are raised by female students (with sex F). | CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR, sex VARCHAR) |
SELECT length FROM table_name_82 WHERE race = "6 hours of talladega" | What is the length of the 6 Hours of Talladega? | CREATE TABLE table_name_82 (length VARCHAR, race VARCHAR) |
SELECT directed_by FROM table_158088_2 WHERE episode_no = 3 | Who directed episode number 3? | CREATE TABLE table_158088_2 (directed_by VARCHAR, episode_no VARCHAR) |
SELECT platform_s_ FROM table_name_38 WHERE year < 2009 AND game = "wii sports" | What platform came out before 2009 with the game wii sports? | CREATE TABLE table_name_38 (platform_s_ VARCHAR, year VARCHAR, game VARCHAR) |
SELECT attendance FROM table_name_14 WHERE date = "7 january 2003" | What attendance was on 7 January 2003? | CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR) |
SELECT score FROM table_name_76 WHERE record = "35-47" | What was the score of the game when the record was 35-47? | CREATE TABLE table_name_76 (score VARCHAR, record VARCHAR) |
SELECT game FROM table_name_62 WHERE team = "kansas city kings" | What game number is the Kansas City Kings team? | CREATE TABLE table_name_62 (game VARCHAR, team VARCHAR) |
SELECT to_par FROM table_name_99 WHERE score = 68 - 67 - 75 = 210 | What is the to par of the player with a 68-67-75=210? | CREATE TABLE table_name_99 (to_par VARCHAR, score VARCHAR) |
SELECT MAX(pos) FROM table_27396005_2 WHERE car = 19 | For the #19 car, what was their finish position? | CREATE TABLE table_27396005_2 (pos INTEGER, car VARCHAR) |
SELECT COUNT(*) FROM address WHERE district = 'California' | How many addresses are in the district of California? | CREATE TABLE address (district VARCHAR) |
SELECT written_by FROM table_22347090_6 WHERE production_code = "3X7557" | Who wrote the episode that has a production code 3x7557? | CREATE TABLE table_22347090_6 (written_by VARCHAR, production_code VARCHAR) |
SELECT school FROM table_15475116_1 WHERE colors = "Maroon and White" | What are all the schools that use the colors maroon and white | CREATE TABLE table_15475116_1 (school VARCHAR, colors VARCHAR) |
SELECT 2003 AS rank FROM table_name_60 WHERE code__iata_ = "sin" | What 2003 rank does the airport IATA code SIN have? | CREATE TABLE table_name_60 (code__iata_ VARCHAR) |
SELECT rounds FROM table_name_57 WHERE entrant = "scuderia ferrari marlboro" | what is the rounds when the entrant is scuderia ferrari marlboro? | CREATE TABLE table_name_57 (rounds VARCHAR, entrant VARCHAR) |
SELECT MAX(bangladeshi_population) FROM table_19149550_9 WHERE rank = 14 | How many Bangladeshi citizens live in the borough ranked at number 14? | CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR) |
SELECT name FROM stadium WHERE NOT stadium_id IN (SELECT stadium_id FROM concert) | Show the stadium names without any concert. | CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (name VARCHAR, stadium_id VARCHAR) |
SELECT result FROM table_1341973_6 WHERE incumbent = "Harry R. Sheppard" | What was the result of the election of the incumbent harry r. sheppard? | CREATE TABLE table_1341973_6 (result VARCHAR, incumbent VARCHAR) |
SELECT mark FROM table_name_44 WHERE lane > 2 AND heat > 4 AND name = "rabangaki nawai" | What is the mark number when the lane for Rabangaki Nawai when it is greater than 2 and the heat is larger than 4? | CREATE TABLE table_name_44 (mark VARCHAR, name VARCHAR, lane VARCHAR, heat VARCHAR) |
SELECT skip FROM table_16684420_2 WHERE stolen_ends_against = 13 | Who was the skip when the stolen ends against was 13? | CREATE TABLE table_16684420_2 (skip VARCHAR, stolen_ends_against VARCHAR) |
SELECT MIN(week) FROM table_24776075_2 WHERE date = "Saturday, May 25" | The game on Saturday, May 25 took place on which week? | CREATE TABLE table_24776075_2 (week INTEGER, date VARCHAR) |
SELECT try_bonus FROM table_name_90 WHERE points_against = "492" | What is the try bonus when there are 492 points? | CREATE TABLE table_name_90 (try_bonus VARCHAR, points_against VARCHAR) |
SELECT T3.area_code FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number JOIN area_code_state AS T3 ON T2.state = T3.state WHERE T1.contestant_name = 'Tabatha Gehling' INTERSECT SELECT T3.area_code FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number JOIN area_code_state AS T3 ON T2.state = T3.state WHERE T1.contestant_name = 'Kelly Clauss' | List the area codes in which voters voted both for the contestant 'Tabatha Gehling' and the contestant 'Kelly Clauss'. | CREATE TABLE votes (contestant_number VARCHAR, state VARCHAR); CREATE TABLE contestants (contestant_number VARCHAR, contestant_name VARCHAR); CREATE TABLE area_code_state (area_code VARCHAR, state VARCHAR) |
SELECT winner_name, winner_rank_points FROM matches GROUP BY winner_name ORDER BY COUNT(*) DESC LIMIT 1 | Find the name and rank points of the winner who won the most times. | CREATE TABLE matches (winner_name VARCHAR, winner_rank_points VARCHAR) |
SELECT qual FROM table_name_78 WHERE rank = "9" | Name the qual for rank of 9 | CREATE TABLE table_name_78 (qual VARCHAR, rank VARCHAR) |
SELECT laps FROM table_name_39 WHERE manufacturer = "honda" AND time = "+1:38.407" | What laps did Honda do with a time of +1:38.407? | CREATE TABLE table_name_39 (laps VARCHAR, manufacturer VARCHAR, time VARCHAR) |
SELECT date FROM table_name_74 WHERE event = "monsters of rock" AND acts = "12 bands" | When is the Monsters of Rock show with 12 bands? | CREATE TABLE table_name_74 (date VARCHAR, event VARCHAR, acts VARCHAR) |
SELECT notes FROM table_name_31 WHERE rank = 4 | What is the Notes of the Country with a Rank of 4? | CREATE TABLE table_name_31 (notes VARCHAR, rank VARCHAR) |
SELECT COUNT(name) FROM table_19061741_3 WHERE home_or_representative_town_or_province = "Guiguinto, Bulacan" | When guiguinto, bulacan is the home or representative town or province how many names are there? | CREATE TABLE table_19061741_3 (name VARCHAR, home_or_representative_town_or_province VARCHAR) |
SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE lead_margin = 35 | When the lead margin was 35, what were the Democrat: Vivian Davis Figures? | CREATE TABLE table_16751596_12 (democrat VARCHAR, lead_margin VARCHAR) |
SELECT duration__days_ FROM table_245800_2 WHERE flight_down = "Soyuz 35" | How many days were the station of Soyuz 35 in flight down were in orbit? | CREATE TABLE table_245800_2 (duration__days_ VARCHAR, flight_down VARCHAR) |
SELECT party FROM table_1341577_43 WHERE first_elected = 1982 | Which party is associated with the person who was first elected in 1982? | CREATE TABLE table_1341577_43 (party VARCHAR, first_elected VARCHAR) |
SELECT years_for_rockets FROM table_name_41 WHERE height_in_ft = "6-6" AND position = "guard" AND school_club_team_country = "oklahoma" | During what years did the Guard from Oklahoma with a height of 6-6 play for the Rockets? | CREATE TABLE table_name_41 (years_for_rockets VARCHAR, school_club_team_country VARCHAR, height_in_ft VARCHAR, position VARCHAR) |
SELECT home_team FROM table_name_56 WHERE venue = "arden street oval" | Which team's home is the Arden Street Oval? | CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR) |
SELECT rnag__mhz_ FROM table_18475946_2 WHERE lyric_fm__mhz_ = "98.7" | What is the rnag for lyric fm 98.7? | CREATE TABLE table_18475946_2 (rnag__mhz_ VARCHAR, lyric_fm__mhz_ VARCHAR) |
SELECT name FROM table_name_60 WHERE qual_2 = "1:10.771" | What is the name of the person with a 1:10.771 qual 2? | CREATE TABLE table_name_60 (name VARCHAR, qual_2 VARCHAR) |
SELECT location FROM table_22165661_3 WHERE tournament = 1999 | What is the location of the 1999 tournament? | CREATE TABLE table_22165661_3 (location VARCHAR, tournament VARCHAR) |
SELECT AVG(losses) FROM table_name_13 WHERE wins > 46 | When the team had more than 46 wins, what were the average losses? | CREATE TABLE table_name_13 (losses INTEGER, wins INTEGER) |
SELECT date FROM table_name_58 WHERE record = "73-82" | with a record of 73-82 what was the date? | CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR) |
SELECT catalog FROM table_name_1 WHERE label = "columbia" AND date = "december 11, 2007" AND region = "canada" | What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada? | CREATE TABLE table_name_1 (catalog VARCHAR, region VARCHAR, label VARCHAR, date VARCHAR) |
SELECT constructor FROM table_name_99 WHERE location = "not held" AND year = "1933" | What company constructed the vehicle in the location not held in 1933? | CREATE TABLE table_name_99 (constructor VARCHAR, location VARCHAR, year VARCHAR) |
SELECT decision FROM table_name_49 WHERE attendance > 19 OFFSET 883 | What is the decision of the game with an attendance greater than 19,883? | CREATE TABLE table_name_49 (decision VARCHAR, attendance INTEGER) |
SELECT date FROM table_name_70 WHERE score = "3–1" AND record = "1–1–0" | What is the Date of the game with a Score of 3–1 and Record of 1–1–0? | CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR, record VARCHAR) |
SELECT SUM(original_week) FROM table_name_51 WHERE date = "september 16, 1982" | Tell me the sum of original week for september 16, 1982 | CREATE TABLE table_name_51 (original_week INTEGER, date VARCHAR) |
SELECT SUM(year) FROM table_name_22 WHERE rank_final < 7 AND competition_description = "olympic games" AND score_final < 186.525 | How many years have a Rank-Final smaller than 7, and a Competition Description of olympic games, and a Score-Final smaller than 186.525? | CREATE TABLE table_name_22 (year INTEGER, score_final VARCHAR, rank_final VARCHAR, competition_description VARCHAR) |
SELECT entrant FROM table_name_92 WHERE constructor = "brm" | What team used the BRM built car? | CREATE TABLE table_name_92 (entrant VARCHAR, constructor VARCHAR) |
SELECT country FROM table_name_45 WHERE format = "cd" AND catalog = "rcd 10523" | What country has CD format and catalog RCD 10523? | CREATE TABLE table_name_45 (country VARCHAR, format VARCHAR, catalog VARCHAR) |
SELECT constructor FROM table_name_99 WHERE time_retired = "handling" | What is the constructor for time/retired of handling? | CREATE TABLE table_name_99 (constructor VARCHAR, time_retired VARCHAR) |
SELECT lansing__lan_ FROM table_1637981_7 WHERE saginaw__mbs_ = "$470.47" | At a Saginaw fare of $470.47, what is the fare to Lansing? | CREATE TABLE table_1637981_7 (lansing__lan_ VARCHAR, saginaw__mbs_ VARCHAR) |
SELECT SUM(population_millions) FROM table_name_49 WHERE influence < 2.91 AND meps < 13 AND member_state = "latvia" AND inhabitants_per_mep > 286 OFFSET 875 | What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP? | CREATE TABLE table_name_49 (population_millions INTEGER, inhabitants_per_mep VARCHAR, member_state VARCHAR, influence VARCHAR, meps VARCHAR) |
SELECT kickoff FROM table_name_5 WHERE game_site = "bank of america stadium" | Which Kickoff had a Game Site of bank of america stadium? | CREATE TABLE table_name_5 (kickoff VARCHAR, game_site VARCHAR) |
SELECT timeslot FROM table_name_26 WHERE air_date = "april 28, 2009" | What is the timeslot for the episode that aired April 28, 2009? | CREATE TABLE table_name_26 (timeslot VARCHAR, air_date VARCHAR) |
SELECT finish FROM table_name_85 WHERE to_par < 14 AND year_s__won = "1952 , 1963" | What is Finish, when To Par is less than 14, and when Year(s) Won is "1952 , 1963"? | CREATE TABLE table_name_85 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR) |
SELECT AVG(rounds) FROM table_name_1 WHERE champion = "new zealand (130 points)" | What are the rounds for champion New Zealand (130 points)? | CREATE TABLE table_name_1 (rounds INTEGER, champion VARCHAR) |
SELECT T3.Player_name, T2.coach_name FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID ORDER BY T3.Votes DESC | Show the names of players and names of their coaches in descending order of the votes of players. | CREATE TABLE coach (coach_name VARCHAR, Coach_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR); CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR, Votes VARCHAR) |
SELECT score FROM table_name_40 WHERE record = "9-24" | With a Record of 9-24, what was the Score? | CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR) |
SELECT total FROM table_name_99 WHERE joint_music_award = "1" AND rthk = "4" AND usca = "4" | What is the Total with a Joint Music Award of 1, RTHK of 4, and USCA of 4? | CREATE TABLE table_name_99 (total VARCHAR, usca VARCHAR, joint_music_award VARCHAR, rthk VARCHAR) |
SELECT Date, Venue FROM workshop ORDER BY Venue | Show the date and venue of each workshop in ascending alphabetical order of the venue. | CREATE TABLE workshop (Date VARCHAR, Venue VARCHAR) |
SELECT field FROM table_name_46 WHERE result = "w 18-12" | What field resulted with w 18-12? | CREATE TABLE table_name_46 (field VARCHAR, result VARCHAR) |
SELECT best_actor FROM table_name_93 WHERE best_film = "mystery" | Which Best Actor has a Best Film of mystery? | CREATE TABLE table_name_93 (best_actor VARCHAR, best_film VARCHAR) |
SELECT population__2011_ FROM table_2562572_26 WHERE cyrillic_name_other_names = "Стари Жедник (Croatian: Stari Žednik)" | What is the population in стари жедник (croatian: stari žednik)? | CREATE TABLE table_2562572_26 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR) |
SELECT COUNT(record) FROM table_13557843_8 WHERE date = "April 12" | How many pairs of numbers are under record on April 12? | CREATE TABLE table_13557843_8 (record VARCHAR, date VARCHAR) |
SELECT dutch FROM table_name_1 WHERE greek = "πλέω (pléō)" | What Dutch word has the same meaning as the Greek word πλέω (pléō)? | CREATE TABLE table_name_1 (dutch VARCHAR, greek VARCHAR) |
SELECT COUNT(gics_sector) FROM table_20667854_1 WHERE free_float = "0.2391" | How many GICS sectors have a free float of 0.2391? | CREATE TABLE table_20667854_1 (gics_sector VARCHAR, free_float VARCHAR) |
SELECT MIN(round) FROM table_name_21 WHERE name = "paul hubbard" | What was the lowest round for Paul Hubbard? | CREATE TABLE table_name_21 (round INTEGER, name VARCHAR) |
SELECT bachelorette FROM table_name_25 WHERE season > 8 | Who is the bachelorette after season 8? | CREATE TABLE table_name_25 (bachelorette VARCHAR, season INTEGER) |
SELECT warship FROM table_23614702_2 WHERE main_artillery = "1x115-2x70-2x12-pounders" | List the ship with 1x115-2x70-2x12-pounders for primary artillery. | CREATE TABLE table_23614702_2 (warship VARCHAR, main_artillery VARCHAR) |
SELECT song FROM table_name_20 WHERE draw < 7 AND points > 41 AND language = "german" | Which Song has a Draw smaller than 7, and Points larger than 41, and a Language of german? | CREATE TABLE table_name_20 (song VARCHAR, language VARCHAR, draw VARCHAR, points VARCHAR) |
SELECT high_rebounds FROM table_name_73 WHERE date = "november 29" | For the game played on November 29, who had the highest rebounds? | CREATE TABLE table_name_73 (high_rebounds VARCHAR, date VARCHAR) |
SELECT chromosomal_location FROM table_29871617_1 WHERE name = "IL-1β" | What is the chromosomal location of il-1β? | CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR) |
SELECT MIN(goals) FROM table_name_91 WHERE player = "sid o'neill" AND games > 1 | What is the lowest goals listed for player Sid O'neill, with Games larger than 1? | CREATE TABLE table_name_91 (goals INTEGER, player VARCHAR, games VARCHAR) |
SELECT MAX(goals_for) FROM table_2509505_1 WHERE points = 56 | Name the most goals for 56 points | CREATE TABLE table_2509505_1 (goals_for INTEGER, points VARCHAR) |
SELECT department FROM table_17118006_2 WHERE local_investment__us$_ = "626,798" | What was the department that got $626,798 in local investments? | CREATE TABLE table_17118006_2 (department VARCHAR, local_investment__us$_ VARCHAR) |
SELECT name, country FROM people WHERE age < (SELECT AVG(age) FROM people) | Show the name and country for all people whose age is smaller than the average. | CREATE TABLE people (name VARCHAR, country VARCHAR, age INTEGER) |
SELECT 2010 FROM table_name_77 WHERE 2007 = "a" AND 2012 = "a" | Name the 2010 for 2007 of a and 2012 of a | CREATE TABLE table_name_77 (Id VARCHAR) |
SELECT partially_deleted FROM table_name_95 WHERE deleted = "–" AND county = "valley" | What is the partially deleted result for a deleted of m– in Valley? | CREATE TABLE table_name_95 (partially_deleted VARCHAR, deleted VARCHAR, county VARCHAR) |
SELECT SUM(capacity) FROM table_name_96 WHERE stadium = "pasquale ianniello" | What is the total capacity for the stadium of pasquale ianniello? | CREATE TABLE table_name_96 (capacity INTEGER, stadium VARCHAR) |
SELECT COUNT(wins) FROM table_name_49 WHERE player = "mike hill" AND rank < 4 | How many wins for mike hill ranked below 4? | CREATE TABLE table_name_49 (wins VARCHAR, player VARCHAR, rank VARCHAR) |
SELECT region FROM table_name_30 WHERE format = "cd" AND date = "february 22, 1984" | Name the region for cd format on february 22, 1984 | CREATE TABLE table_name_30 (region VARCHAR, format VARCHAR, date VARCHAR) |
SELECT college FROM table_name_78 WHERE pick > 18 AND pba_team = "barangay ginebra kings" | What college was the draft pick number larger than 18 that went to the Barangay ginebra kings? | CREATE TABLE table_name_78 (college VARCHAR, pick VARCHAR, pba_team VARCHAR) |
SELECT MAX(top_5) FROM table_2182573_2 WHERE avg_start = "28.5" | What was the best top five result when the average start is 28.5? | CREATE TABLE table_2182573_2 (top_5 INTEGER, avg_start VARCHAR) |
SELECT mission FROM table_name_16 WHERE resident_country = "switzerland" | What is the mission for switzerland as a resident County? | CREATE TABLE table_name_16 (mission VARCHAR, resident_country VARCHAR) |
SELECT team FROM table_name_70 WHERE high_points = "tracy mcgrady (24)" | What team has a high score with tracy mcgrady (24)? | CREATE TABLE table_name_70 (team VARCHAR, high_points VARCHAR) |
SELECT manner_of_departure FROM table_name_4 WHERE date_of_appointment = "26 january" | Name the manner of departyre for 26 january date of appointment | CREATE TABLE table_name_4 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) |
SELECT attendance FROM table_name_5 WHERE record = "74-77" | What was the attendance at the game when the record was 74-77? | CREATE TABLE table_name_5 (attendance VARCHAR, record VARCHAR) |
SELECT AVG(position) FROM table_name_80 WHERE goal_difference = 17 AND wins > 13 | What is the average Position, when Goal Difference is "17", and when Wins is greater than 13? | CREATE TABLE table_name_80 (position INTEGER, goal_difference VARCHAR, wins VARCHAR) |
SELECT first_air_date FROM table_20971444_3 WHERE episode = 9 | Name the first air date for 9 episode | CREATE TABLE table_20971444_3 (first_air_date VARCHAR, episode VARCHAR) |
SELECT COUNT(team) FROM table_2522473_1 WHERE seasons = 8 | How many teams have been in Topperserien for 8 seasons? | CREATE TABLE table_2522473_1 (team VARCHAR, seasons VARCHAR) |
SELECT frequency__inbound_outbound_ FROM table_name_72 WHERE origin = "ranchi" | What is the frequency of the rail with an origin of Ranchi? | CREATE TABLE table_name_72 (frequency__inbound_outbound_ VARCHAR, origin VARCHAR) |
SELECT MAX(points) FROM table_name_77 WHERE year = 1985 AND chassis = "march 85b" | In 1985, how many points were earned by the entrant with the March 85B chassis? | CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, chassis VARCHAR) |
SELECT result FROM table_name_34 WHERE category = "best actor in a supporting role" | What's the result for the category of best actor in a supporting role? | CREATE TABLE table_name_34 (result VARCHAR, category VARCHAR) |
SELECT 2009 FROM table_name_64 WHERE 2003 = "2r" AND 2000 = "2r" | Who in 2009, has a 2003 2r and a 2000 2r? | CREATE TABLE table_name_64 (Id VARCHAR) |
SELECT year FROM table_name_75 WHERE guernsey_record = "2-3-12" | What year was the Guernsey record of 2-3-12 set? | CREATE TABLE table_name_75 (year VARCHAR, guernsey_record VARCHAR) |
SELECT torque FROM table_name_63 WHERE capacity = "1905 cc" | What torque does a 1905 cc capacity have? | CREATE TABLE table_name_63 (torque VARCHAR, capacity VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.