question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Who was No. 9 when Ava was No. 4 and Addison was No. 6?
CREATE TABLE table_name_37 (no_9 VARCHAR, no_4 VARCHAR, no_6 VARCHAR)
SELECT no_9 FROM table_name_37 WHERE no_4 = "ava" AND no_6 = "addison"
what is 2008 when 2007 is a, 2011 is a, 2010 is a and tournament is china?
CREATE TABLE table_name_53 (tournament VARCHAR)
SELECT 2008 FROM table_name_53 WHERE 2007 = "a" AND 2011 = "a" AND 2010 = "a" AND tournament = "china"
How many appearances with fc igea virtus and 1 goal?
CREATE TABLE table_name_50 (appearances INTEGER, club VARCHAR, goals VARCHAR)
SELECT AVG(appearances) FROM table_name_50 WHERE club = "fc igea virtus" AND goals = 1
What is the highest number of laps when honda is the manufacturer and the grid number is 12?
CREATE TABLE table_name_27 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)
SELECT MAX(laps) FROM table_name_27 WHERE manufacturer = "honda" AND grid = 12
Which Name has Ends of 30 june 2010, and a Nation of eng, and Since larger than 2007?
CREATE TABLE table_name_2 (name VARCHAR, since VARCHAR, ends VARCHAR, nat VARCHAR)
SELECT name FROM table_name_2 WHERE ends = "30 june 2010" AND nat = "eng" AND since > 2007
Who was her partner at the US Open and they were runner-up?
CREATE TABLE table_1920271_3 (partner VARCHAR, championship VARCHAR, outcome VARCHAR)
SELECT partner FROM table_1920271_3 WHERE championship = "US Open" AND outcome = "Runner-up"
What is the 2010 value with A in 2009 and A in 2008 in the Australian Open?
CREATE TABLE table_name_43 (tournament VARCHAR)
SELECT 2010 FROM table_name_43 WHERE 2009 = "a" AND 2008 = "a" AND tournament = "australian open"
What school is nicknamed the panthers?
CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR)
SELECT school FROM table_24935743_2 WHERE nickname = "Panthers"
Name the high assists for l 103–104 (ot)
CREATE TABLE table_27723526_12 (high_assists VARCHAR, score VARCHAR)
SELECT high_assists FROM table_27723526_12 WHERE score = "L 103–104 (OT)"
What is the sum of wins when the goals for number was bigger than 35, the team was the Montreal Hockey Club, and the number of losses was less than 2?
CREATE TABLE table_name_4 (wins VARCHAR, losses VARCHAR, goals_for VARCHAR, team VARCHAR)
SELECT COUNT(wins) FROM table_name_4 WHERE goals_for > 35 AND team = "montreal hockey club" AND losses < 2
What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?
CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)
SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = "$208,851–$372,950"
Which venue had a nationality of Belgium?
CREATE TABLE table_name_44 (venue VARCHAR, nationality VARCHAR)
SELECT venue FROM table_name_44 WHERE nationality = "belgium"
What was the film title that emma thompson was the actress nominated for best supporting actress?
CREATE TABLE table_name_81 (film_title_used_in_nomination VARCHAR, actor_actress VARCHAR, category VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_81 WHERE actor_actress = "emma thompson" AND category = "best supporting actress"
How many Total medals for the team with a Rank of 8, 1 Bronze and more than 1 Silver?
CREATE TABLE table_name_71 (total INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT MIN(total) FROM table_name_71 WHERE bronze = 1 AND rank = "8" AND silver > 1
What was the date of the game with a loss of Bush (1–5)?
CREATE TABLE table_name_18 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_name_18 WHERE loss = "bush (1–5)"
On the Date of 4 Oct 2009, who was the Runner(s)-up?
CREATE TABLE table_name_83 (runner_s__up VARCHAR, date VARCHAR)
SELECT runner_s__up FROM table_name_83 WHERE date = "4 oct 2009"
Which competition has stuart potts as the man of the match?
CREATE TABLE table_name_98 (competition VARCHAR, man_of_the_match VARCHAR)
SELECT competition FROM table_name_98 WHERE man_of_the_match = "stuart potts"
what is a building that is proposed and will have 32 floors?
CREATE TABLE table_name_22 (building VARCHAR, status VARCHAR, floors VARCHAR)
SELECT building FROM table_name_22 WHERE status = "proposed" AND floors = 32
How many mens doubles took place in 1970/1971?
CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)
SELECT COUNT(mens_doubles) FROM table_12266757_1 WHERE season = "1970/1971"
What machine did Keith T. Gawler ride?
CREATE TABLE table_name_76 (machine VARCHAR, rider VARCHAR)
SELECT machine FROM table_name_76 WHERE rider = "keith t. gawler"
Which player did the green bay packers pick?
CREATE TABLE table_2508633_5 (player VARCHAR, nfl_team VARCHAR)
SELECT player FROM table_2508633_5 WHERE nfl_team = "Green Bay Packers"
What is the number of sort values associated with 389 births?
CREATE TABLE table_name_27 (sort_restore VARCHAR, births VARCHAR)
SELECT COUNT(sort_restore) FROM table_name_27 WHERE births = "389"
what is the language when the points is more than 119 and the place is higher than 5?
CREATE TABLE table_name_24 (language VARCHAR, points VARCHAR, place VARCHAR)
SELECT language FROM table_name_24 WHERE points > 119 AND place > 5
What are the release dates for songs in 2003?
CREATE TABLE table_12588029_3 (release_date VARCHAR, year VARCHAR)
SELECT release_date FROM table_12588029_3 WHERE year = 2003
What is the Series of the Filmography with a Release date of 1946-03-16?
CREATE TABLE table_name_85 (series VARCHAR, release_date VARCHAR)
SELECT series FROM table_name_85 WHERE release_date = "1946-03-16"
What year was the earliest first elected?
CREATE TABLE table_1341663_19 (first_elected INTEGER)
SELECT MIN(first_elected) FROM table_1341663_19
When is the date of vacancy of Davy Fitzgerald being a replacement?
CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT date_of_vacancy FROM table_11190568_7 WHERE replaced_by = "Davy FitzGerald"
What is the catalog number named callanetics: 10 years younger in 10 hours
CREATE TABLE table_11222744_3 (catalog_number VARCHAR, title VARCHAR)
SELECT catalog_number FROM table_11222744_3 WHERE title = "Callanetics: 10 years Younger In 10 Hours"
What is the avarage Attendance for the Date of october 26, 1947?
CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_45 WHERE date = "october 26, 1947"
What is the lowest number of games with a rank less than 1?
CREATE TABLE table_name_48 (games INTEGER, rank INTEGER)
SELECT MIN(games) FROM table_name_48 WHERE rank < 1
What's the FCC info with a Frequency MHz thats smaller than 100.3 and a City of License as Lowville, NY?
CREATE TABLE table_name_85 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT fcc_info FROM table_name_85 WHERE frequency_mhz < 100.3 AND city_of_license = "lowville, ny"
What is the date of the game at Commerce Bank Ballpark?
CREATE TABLE table_name_67 (date VARCHAR, field VARCHAR)
SELECT date FROM table_name_67 WHERE field = "commerce bank ballpark"
How many Volume Numbers have the title of Darkness Falls?
CREATE TABLE table_name_64 (vol__number INTEGER, title VARCHAR)
SELECT SUM(vol__number) FROM table_name_64 WHERE title = "darkness falls"
Please show the team that has the most number of technicians.
CREATE TABLE technician (Team VARCHAR)
SELECT Team FROM technician GROUP BY Team ORDER BY COUNT(*) DESC LIMIT 1
What's the 1 credit with a Hand of Theoretical Return?
CREATE TABLE table_name_86 (hand VARCHAR)
SELECT 1 AS _credit FROM table_name_86 WHERE hand = "theoretical return"
What is Prime Mover of Model FM CFA-16-4?
CREATE TABLE table_name_87 (prime_mover VARCHAR, model VARCHAR)
SELECT prime_mover FROM table_name_87 WHERE model = "fm cfa-16-4"
What was the score on February 9?
CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_84 WHERE date = "february 9"
What score has friendly as the competition?
CREATE TABLE table_name_11 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_11 WHERE competition = "friendly"
Which Car numbers have a First used of currently on order?
CREATE TABLE table_name_37 (car_numbers VARCHAR, first_used VARCHAR)
SELECT car_numbers FROM table_name_37 WHERE first_used = "currently on order"
who is the provider when up (up to kbit/s) is 1180?
CREATE TABLE table_name_10 (provider VARCHAR, up__up_to_kbit_s_ VARCHAR)
SELECT provider FROM table_name_10 WHERE up__up_to_kbit_s_ = 1180
Name the total number of league for 5
CREATE TABLE table_17598822_11 (league VARCHAR, total VARCHAR)
SELECT COUNT(league) FROM table_17598822_11 WHERE total = 5
What is the least arabs when the metropolitan ring is inner ring 3?
CREATE TABLE table_26007767_1 (arabs INTEGER, metropolitan_ring VARCHAR)
SELECT MIN(arabs) FROM table_26007767_1 WHERE metropolitan_ring = "Inner Ring 3"
What round was held in palavas-les-flots , herault , france?
CREATE TABLE table_name_43 (round VARCHAR, location VARCHAR)
SELECT round FROM table_name_43 WHERE location = "palavas-les-flots , herault , france"
What is the lowest Loss with Gain larger than 319 for derrick locke?
CREATE TABLE table_name_10 (loss INTEGER, name VARCHAR, gain VARCHAR)
SELECT MIN(loss) FROM table_name_10 WHERE name = "derrick locke" AND gain > 319
What was the earliest year with 339 pieces and a number smaller than 7198?
CREATE TABLE table_name_15 (released INTEGER, pieces VARCHAR, number VARCHAR)
SELECT MIN(released) FROM table_name_15 WHERE pieces = 339 AND number < 7198
How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109?
CREATE TABLE table_name_31 (season INTEGER, points VARCHAR, driver VARCHAR, percentage_of_possible_points VARCHAR)
SELECT SUM(season) FROM table_name_31 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "64.12%" AND points < 109
When did the season finale reached an audience of 10.02 million viewers?
CREATE TABLE table_2669287_1 (season VARCHAR, viewers__in_millions_ VARCHAR)
SELECT season AS finale FROM table_2669287_1 WHERE viewers__in_millions_ = "10.02"
Who was the outgoing manager when the incoming manager was laurenţiu reghecampf?
CREATE TABLE table_26976615_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR)
SELECT outgoing_manager FROM table_26976615_3 WHERE incoming_manager = "Laurenţiu Reghecampf"
What type of surface was played on when julie halard-decugis was the partner on October 8, 2000?
CREATE TABLE table_name_88 (surface VARCHAR, partner VARCHAR, date VARCHAR)
SELECT surface FROM table_name_88 WHERE partner = "julie halard-decugis" AND date = "october 8, 2000"
Show the headquarters that have at least two companies.
CREATE TABLE company (Headquarters VARCHAR)
SELECT Headquarters FROM company GROUP BY Headquarters HAVING COUNT(*) >= 2
Who narrated when the vessel operator is de beers?
CREATE TABLE table_26168687_3 (narrated_by VARCHAR, vessel_operator VARCHAR)
SELECT narrated_by FROM table_26168687_3 WHERE vessel_operator = "De Beers"
What round on average was a defensive tackle selected?
CREATE TABLE table_name_87 (round INTEGER, position VARCHAR)
SELECT AVG(round) FROM table_name_87 WHERE position = "defensive tackle"
Does the sky calcio 6 hd have PPV?
CREATE TABLE table_15887683_4 (ppv VARCHAR, television_service VARCHAR)
SELECT ppv FROM table_15887683_4 WHERE television_service = "Sky Calcio 6 HD"
What is Race 2, when Race 1 is 30?
CREATE TABLE table_name_6 (race_2 VARCHAR, race_1 VARCHAR)
SELECT race_2 FROM table_name_6 WHERE race_1 = "30"
What is the total wins with less than 21 goals taken?
CREATE TABLE table_name_19 (wins INTEGER, goals_against INTEGER)
SELECT SUM(wins) FROM table_name_19 WHERE goals_against < 21
What surface has natalia gussoni as the partner?
CREATE TABLE table_name_14 (surface VARCHAR, partner VARCHAR)
SELECT surface FROM table_name_14 WHERE partner = "natalia gussoni"
What is the location for the win against Johan Mparmpagiannis?
CREATE TABLE table_name_78 (location VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_78 WHERE result = "win" AND opponent = "johan mparmpagiannis"
What was the away team for the New Zealand breakers?
CREATE TABLE table_name_59 (report VARCHAR, away_team VARCHAR)
SELECT report FROM table_name_59 WHERE away_team = "new zealand breakers"
What bran is the callsign dytc-fm?
CREATE TABLE table_2610582_7 (branding VARCHAR, callsign VARCHAR)
SELECT branding FROM table_2610582_7 WHERE callsign = "DYTC-FM"
What is the chassis for offy engine and 25th finish?
CREATE TABLE table_name_12 (chassis VARCHAR, engine VARCHAR, finish VARCHAR)
SELECT chassis FROM table_name_12 WHERE engine = "offy" AND finish = "25th"
Who are all men's doubles when men's singles is Jean-Michel Saive?
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Jean-Michel Saive"
Which round did Tommy Kramer play in>
CREATE TABLE table_10361625_1 (round VARCHAR, player_name VARCHAR)
SELECT round FROM table_10361625_1 WHERE player_name = "Tommy Kramer"
Which Voltage Center (V) has an S-Spec Number of sk096?
CREATE TABLE table_name_76 (voltage_center__v_ VARCHAR, s_spec_number VARCHAR)
SELECT voltage_center__v_ FROM table_name_76 WHERE s_spec_number = "sk096"
Name the number of traditional chinese for album number 6th
CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR)
SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = "6th"
what is the method when the time is 0:51?
CREATE TABLE table_name_5 (method VARCHAR, time VARCHAR)
SELECT method FROM table_name_5 WHERE time = "0:51"
What's the axle ratio of the model with model designation 97G00?
CREATE TABLE table_20866024_2 (axle_ratio VARCHAR, model_designation VARCHAR)
SELECT axle_ratio FROM table_20866024_2 WHERE model_designation = "97G00"
What is the indoor track status for the school that has yes for tennis and no for golf?
CREATE TABLE table_name_91 (indoor_track VARCHAR, tennis VARCHAR, golf VARCHAR)
SELECT indoor_track FROM table_name_91 WHERE tennis = "yes" AND golf = "no"
What is the highest number of laps when the Time/Retired is differential?
CREATE TABLE table_name_76 (laps INTEGER, time_retired VARCHAR)
SELECT MAX(laps) FROM table_name_76 WHERE time_retired = "differential"
What is the date with geelong as Away team?
CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_63 WHERE away_team = "geelong"
what is the points when the entrant is brabham racing organisation, the year is 1964 and the chassis is brabham bt7?
CREATE TABLE table_name_17 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR)
SELECT points FROM table_name_17 WHERE entrant = "brabham racing organisation" AND year = 1964 AND chassis = "brabham bt7"
Find the name of the employee who got the highest one time bonus.
CREATE TABLE evaluation (Employee_ID VARCHAR, bonus VARCHAR); CREATE TABLE employee (name VARCHAR, Employee_ID VARCHAR)
SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID ORDER BY t2.bonus DESC LIMIT 1
What was the date of the away game that they lost to Accrington?
CREATE TABLE table_name_6 (date VARCHAR, team VARCHAR, venue VARCHAR, win_draw_lose VARCHAR)
SELECT date FROM table_name_6 WHERE venue = "away" AND win_draw_lose = "lost" AND team = "accrington"
How many league cups for m patrick maria with 0 total?
CREATE TABLE table_name_96 (league INTEGER, player VARCHAR, total VARCHAR)
SELECT SUM(league) FROM table_name_96 WHERE player = "m patrick maria" AND total < 0
What is the highest Taper (in/ft), when Size is 8?
CREATE TABLE table_name_20 (taper__in_ft_ INTEGER, size VARCHAR)
SELECT MAX(taper__in_ft_) FROM table_name_20 WHERE size = 8
What is the street address for the Prudential Tower building?
CREATE TABLE table_name_17 (street_address VARCHAR, name VARCHAR)
SELECT street_address FROM table_name_17 WHERE name = "prudential tower"
What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695?
CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR)
SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695
How many lessons taken by customer with first name as Rylan and last name as Goodwin were completed?
CREATE TABLE Lessons (customer_id VARCHAR, lesson_status_code VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT COUNT(*) FROM Lessons AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = "Rylan" AND T2.last_name = "Goodwin" AND T1.lesson_status_code = "Completed"
Which venue did the runner have a note of 1:23:07?
CREATE TABLE table_name_58 (venue VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_58 WHERE notes = "1:23:07"
What is the score in the final in the year 1994?
CREATE TABLE table_22834834_2 (score_in_the_final VARCHAR, year VARCHAR)
SELECT score_in_the_final FROM table_22834834_2 WHERE year = 1994
What is the most number of losses for Quetta Zorawar?
CREATE TABLE table_name_15 (lost INTEGER, team VARCHAR)
SELECT MAX(lost) FROM table_name_15 WHERE team = "quetta zorawar"
When the Winning is 71-71-70-69=281, what is the To par?
CREATE TABLE table_name_7 (to_par VARCHAR, winning_score VARCHAR)
SELECT to_par FROM table_name_7 WHERE winning_score = 71 - 71 - 70 - 69 = 281
What country did the player with the score line 73-74-72-64=283 from?
CREATE TABLE table_name_65 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_65 WHERE score = 73 - 74 - 72 - 64 = 283
What country has peak 20 and a project named jarn yabhour; ramhan?
CREATE TABLE table_name_56 (country VARCHAR, peak VARCHAR, project_name VARCHAR)
SELECT country FROM table_name_56 WHERE peak = "20" AND project_name = "jarn yabhour; ramhan"
What date was game number 3?
CREATE TABLE table_name_34 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_34 WHERE game = 3
What's the 1991 census of the city of Carpi?
CREATE TABLE table_10138926_1 (city VARCHAR)
SELECT MAX(1991 AS _census) FROM table_10138926_1 WHERE city = "Carpi"
Who averaged 201.3 yards passing per game?
CREATE TABLE table_name_6 (name VARCHAR, avg_g VARCHAR)
SELECT name FROM table_name_6 WHERE avg_g = 201.3
When samai amari is the asian rider classification how many asian team classifications are there?
CREATE TABLE table_21573750_2 (asian_team_classification VARCHAR, asian_rider_classification VARCHAR)
SELECT COUNT(asian_team_classification) FROM table_21573750_2 WHERE asian_rider_classification = "Samai Amari"
What is the Rank of the Swimmer in Lane 5?
CREATE TABLE table_name_16 (rank INTEGER, lane VARCHAR)
SELECT AVG(rank) FROM table_name_16 WHERE lane = 5
What event had a win, record of 8-1 and n/a round?
CREATE TABLE table_name_98 (event VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR)
SELECT event FROM table_name_98 WHERE res = "win" AND round = "n/a" AND record = "8-1"
What was the result when they played at Michigan State?
CREATE TABLE table_name_14 (result VARCHAR, opponent_number VARCHAR)
SELECT result FROM table_name_14 WHERE opponent_number = "at michigan state"
What is the top lap that had 2 grids and more than 26 points?
CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, points VARCHAR)
SELECT MAX(laps) FROM table_name_9 WHERE grid = "2" AND points > 26
Name the least year for goalscore of ortiz and goals more than 25
CREATE TABLE table_name_81 (year INTEGER, top_goalscorer VARCHAR, goals VARCHAR)
SELECT MIN(year) FROM table_name_81 WHERE top_goalscorer = "ortiz" AND goals > 25
What is the To par for the player that won in 2003, with a total larger than 145?
CREATE TABLE table_name_65 (to_par VARCHAR, year_s__won VARCHAR, total VARCHAR)
SELECT COUNT(to_par) FROM table_name_65 WHERE year_s__won = "2003" AND total > 145
What is the highest top-25 of the tournament with less than 22 events and more than 1 top-10?
CREATE TABLE table_name_11 (top_25 INTEGER, events VARCHAR, top_10 VARCHAR)
SELECT MAX(top_25) FROM table_name_11 WHERE events < 22 AND top_10 > 1
Which Front Side Bus has a Voltage of 1.4 v, and a Frequency of 1333 mhz?
CREATE TABLE table_name_58 (front_side_bus VARCHAR, voltage VARCHAR, frequency VARCHAR)
SELECT front_side_bus FROM table_name_58 WHERE voltage = "1.4 v" AND frequency = "1333 mhz"
When was Maat born?
CREATE TABLE table_name_44 (dob VARCHAR, surname VARCHAR)
SELECT dob FROM table_name_44 WHERE surname = "maat"
What is the length in feet when the length in meters is 64.2?
CREATE TABLE table_name_47 (length___ft__ VARCHAR, length___m__ VARCHAR)
SELECT length___ft__ FROM table_name_47 WHERE length___m__ = "64.2"
Which vehicle had a class of car in years after 2009 with 0 stages won and position of 5?
CREATE TABLE table_name_87 (vehicle VARCHAR, position VARCHAR, stages_won VARCHAR, class VARCHAR, year VARCHAR)
SELECT vehicle FROM table_name_87 WHERE class = "car" AND year > 2009 AND stages_won = "0" AND position = "5"
What was the highest front row starts for Alain Prost?
CREATE TABLE table_name_52 (front_row_starts INTEGER, driver VARCHAR)
SELECT MAX(front_row_starts) FROM table_name_52 WHERE driver = "alain prost"
Find the names of goods that receive a rating of 10.
CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating VARCHAR)
SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating = 10