answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT l3_cache__mb_ FROM table_269920_16 WHERE speed__ghz_ = "2.93"
What is the L3 cache for the processor having a speed of 2.93 GHz?
CREATE TABLE table_269920_16 (l3_cache__mb_ VARCHAR, speed__ghz_ VARCHAR)
SELECT score FROM table_name_81 WHERE date = "december 22"
What is the score of the game on December 22?
CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)
SELECT MAX(points) FROM table_name_25 WHERE entrant = "jaguar racing" AND year < 2001
What is the most points when the entrant was Jaguar racing earlier than 2001?
CREATE TABLE table_name_25 (points INTEGER, entrant VARCHAR, year VARCHAR)
SELECT directed_by FROM table_22269839_1 WHERE written_by = "Cherry Chevapravatdumrong"
Who directed the title written by cherry chevapravatdumrong?
CREATE TABLE table_22269839_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT margin_of_victory FROM table_name_61 WHERE runner_s__up = "steve rintoul"
What was the margin of victory over Steve Rintoul?
CREATE TABLE table_name_61 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT email FROM employees WHERE commission_pct = "null" AND salary BETWEEN 7000 AND 12000 AND department_id = 50
display the emails of the employees who have no commission percentage and salary within the range 7000 to 12000 and works in that department which number is 50.
CREATE TABLE employees (email VARCHAR, department_id VARCHAR, commission_pct VARCHAR, salary VARCHAR)
SELECT captain FROM table_name_61 WHERE year < 1927 AND runner_up = "angaston"
When the Runner-up was Angaston, and the Year was less than 1927, who was the Captain?
CREATE TABLE table_name_61 (captain VARCHAR, year VARCHAR, runner_up VARCHAR)
SELECT date FROM table_name_11 WHERE record = "9-10-2"
Can you tell me the Date thay has the Reocrd of 9-10-2?
CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR)
SELECT winner FROM table_name_81 WHERE type = "mountain stage" AND date = "22 may"
Who was the winner with a mountain stage type on 22 May?
CREATE TABLE table_name_81 (winner VARCHAR, type VARCHAR, date VARCHAR)
SELECT brooklyn FROM table_1108394_43 WHERE queens = "16.8_percentage"
what's the brooklyn with queens value of 16.8%
CREATE TABLE table_1108394_43 (brooklyn VARCHAR, queens VARCHAR)
SELECT COUNT(region) FROM table_name_14 WHERE name = "malartic" AND area__km_2__ < 159.31
What was the region for Malartic with 159.31 km2?
CREATE TABLE table_name_14 (region VARCHAR, name VARCHAR, area__km_2__ VARCHAR)
SELECT Product_Type_Code FROM Products GROUP BY Product_Type_Code HAVING COUNT(*) >= 2
Show the product type codes that have at least two products.
CREATE TABLE Products (Product_Type_Code VARCHAR)
SELECT AVG(draws) FROM table_name_46 WHERE played < 18
What is the Draws average that has a Played that's smaller than 18?
CREATE TABLE table_name_46 (draws INTEGER, played INTEGER)
SELECT COUNT(rank) FROM table_name_92 WHERE assets__billion_$_ < 248.44 AND industry = "oil and gas" AND headquarters = "france" AND market_value__billion_$_ > 152.62
What is the total rank of the company with less than 248.44 billion in assets, an industry of oil and gas, headquarters in France, and a market value greater than 152.62 billions?
CREATE TABLE table_name_92 (rank VARCHAR, market_value__billion_$_ VARCHAR, headquarters VARCHAR, assets__billion_$_ VARCHAR, industry VARCHAR)
SELECT MAX(year) FROM table_name_28 WHERE partner = "marcel granollers" AND surface = "hard"
What is the highest listed year for the partner of Marcel Granollers and a hard surface?
CREATE TABLE table_name_28 (year INTEGER, partner VARCHAR, surface VARCHAR)
SELECT clubs_involved FROM table_name_63 WHERE clubs_remaining = 16
What are the clubs involved with 16 clubs remaining?
CREATE TABLE table_name_63 (clubs_involved VARCHAR, clubs_remaining VARCHAR)
SELECT colors FROM table_27653955_1 WHERE enrollment = 2020
What are the colors for the enrollment of 2020?
CREATE TABLE table_27653955_1 (colors VARCHAR, enrollment VARCHAR)
SELECT operator FROM table_name_8 WHERE ship = "costa pacifica"
What operator has a ship costa pacifica?
CREATE TABLE table_name_8 (operator VARCHAR, ship VARCHAR)
SELECT canada_singles FROM table_name_75 WHERE year = 1979 AND us_ac = "24"
What is the Canada singles in 1979 with a US A.C. of 24?
CREATE TABLE table_name_75 (canada_singles VARCHAR, year VARCHAR, us_ac VARCHAR)
SELECT surname FROM table_name_73 WHERE bats = "r" AND position = "p" AND dob = "20 may 1989"
Which Surname has Bats of r, and a Position of p, and a DOB of 20 may 1989?
CREATE TABLE table_name_73 (surname VARCHAR, dob VARCHAR, bats VARCHAR, position VARCHAR)
SELECT hosts FROM table_name_88 WHERE host_city = "bangkok" AND theme = "codehunters"
Who are the hosts from the event with a theme of codehunters and the host city of Bangkok?
CREATE TABLE table_name_88 (hosts VARCHAR, host_city VARCHAR, theme VARCHAR)
SELECT MIN(long) FROM table_name_81 WHERE name = "kass, rob" AND avg_g < -0.30000000000000004
What is the lowest Long, when Name is Kass, Rob, and when Avg/g is less than -0.30000000000000004?
CREATE TABLE table_name_81 (long INTEGER, name VARCHAR, avg_g VARCHAR)
SELECT T2.department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY T2.department_name
display the department name and number of employees in each of the department.
CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR)
SELECT date FROM table_name_16 WHERE road_team = "portland" AND game = "game 5"
Which Date has a Road team of portland, and a Game of game 5?
CREATE TABLE table_name_16 (date VARCHAR, road_team VARCHAR, game VARCHAR)
SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = "env, export, set, setenv"
How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv?
CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, unix_shell VARCHAR)
SELECT crowd FROM table_name_33 WHERE home_team = "footscray"
What is the Home team with a crowd relevant to footscray?
CREATE TABLE table_name_33 (crowd VARCHAR, home_team VARCHAR)
SELECT MIN(opponents) FROM table_name_79 WHERE raiders_points > 38 AND attendance > 51 OFFSET 267
What is the lowest Opponents, when Raiders Poinsts is greater than 38, and when Attendance is greater than 51,267?
CREATE TABLE table_name_79 (opponents INTEGER, raiders_points VARCHAR, attendance VARCHAR)
SELECT phase FROM table_1281200_1 WHERE new_entries_this_round = "12"
The new entries this round was shown to be 12, in which phase would you find this?
CREATE TABLE table_1281200_1 (phase VARCHAR, new_entries_this_round VARCHAR)
SELECT away_team FROM table_name_19 WHERE ground = "colonial stadium"
What is Away Team, when Ground is Colonial Stadium?
CREATE TABLE table_name_19 (away_team VARCHAR, ground VARCHAR)
SELECT away FROM table_name_7 WHERE opponent = "slavia prague"
Which Away has an Opponent of slavia prague?
CREATE TABLE table_name_7 (away VARCHAR, opponent VARCHAR)
SELECT Fname, Lname FROM Student WHERE Major = 600
List all students' first names and last names who majored in 600.
CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Major VARCHAR)
SELECT incumbent FROM table_2668374_18 WHERE district = "Virginia 3"
Who was the incumbent in Virginia 3?
CREATE TABLE table_2668374_18 (incumbent VARCHAR, district VARCHAR)
SELECT score FROM table_17001658_5 WHERE game = 15
What was the final score in game 15?
CREATE TABLE table_17001658_5 (score VARCHAR, game VARCHAR)
SELECT COUNT(touchdowns) FROM table_name_73 WHERE field_goals > 0
How many Touchdowns have Field goals larger than 0?
CREATE TABLE table_name_73 (touchdowns VARCHAR, field_goals INTEGER)
SELECT MAX(home_games), MIN(home_games), AVG(home_games) FROM stadium
What are the maximum, minimum and average home games each stadium held?
CREATE TABLE stadium (home_games INTEGER)
SELECT MAX(game) FROM table_27715173_2
What is the maximum basketball game?
CREATE TABLE table_27715173_2 (game INTEGER)
SELECT gender FROM table_name_62 WHERE roll = 627
Which gender had a roll of 627?
CREATE TABLE table_name_62 (gender VARCHAR, roll VARCHAR)
SELECT years_in_orlando FROM table_15621965_10 WHERE position = "Forward"
Name the years in orlando for forward
CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, position VARCHAR)
SELECT SUM(season) FROM table_name_18 WHERE level = "tier 4" AND position = "11th"
Which Season has a Level of tier 4, and a Position of 11th?
CREATE TABLE table_name_18 (season INTEGER, level VARCHAR, position VARCHAR)
SELECT record FROM table_name_51 WHERE february < 8 AND opponent = "montreal canadiens"
Which Record has a February smaller than 8, and an Opponent of montreal canadiens?
CREATE TABLE table_name_51 (record VARCHAR, february VARCHAR, opponent VARCHAR)
SELECT COUNT(time) FROM table_name_15 WHERE react = 0.155 AND athlete = "kristof beyens" AND rank < 3
How much Time has a Reaction of 0.155, and an Athlete of kristof beyens, and a Rank smaller than 3?
CREATE TABLE table_name_15 (time VARCHAR, rank VARCHAR, react VARCHAR, athlete VARCHAR)
SELECT year FROM table_1986692_1 WHERE playoffs = "divisional Semifinals"
When divisional semifinals are the playoffs what is the year?
CREATE TABLE table_1986692_1 (year VARCHAR, playoffs VARCHAR)
SELECT COUNT(*) FROM albums AS T1 JOIN artists AS T2 ON T1.artist_id = T2.id WHERE T2.name = "Billy Cobham"
How many albums does Billy Cobham has?
CREATE TABLE artists (id VARCHAR, name VARCHAR); CREATE TABLE albums (artist_id VARCHAR)
SELECT exit_date FROM table_name_14 WHERE to_club = "doncaster rovers"
What was the date that a player went to the club Doncaster Rovers?
CREATE TABLE table_name_14 (exit_date VARCHAR, to_club VARCHAR)
SELECT record FROM table_name_66 WHERE opponent = "vs. calgary stampeders" AND week < 15
What was the record the the match against vs. calgary stampeders before week 15?
CREATE TABLE table_name_66 (record VARCHAR, opponent VARCHAR, week VARCHAR)
SELECT COUNT(draws) FROM table_name_66 WHERE against > 924 AND club = "mortlake" AND losses < 14
Mortlake club has more than 924 against, less than 14 losses, and how many total draws?
CREATE TABLE table_name_66 (draws VARCHAR, losses VARCHAR, against VARCHAR, club VARCHAR)
SELECT player FROM table_name_81 WHERE college_junior_club_team__league_ = "hc cska moscow (russia)"
Which Player has a Hc Cska Moscow (Russia)?
CREATE TABLE table_name_81 (player VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT format FROM table_name_25 WHERE catalog = "865 821-1"
what is the format of catalog 865 821-1?
CREATE TABLE table_name_25 (format VARCHAR, catalog VARCHAR)
SELECT COUNT(*) FROM stadium
How many stadiums are there?
CREATE TABLE stadium (Id VARCHAR)
SELECT methyl_red FROM table_name_77 WHERE species = "proteus mirabilis"
What is the methyl red reading for proteus mirabilis?
CREATE TABLE table_name_77 (methyl_red VARCHAR, species VARCHAR)
SELECT weekly_schedule FROM table_name_75 WHERE timeslot = "11:00"
Which days of the week does the telenovela play that is aired at 11:00?
CREATE TABLE table_name_75 (weekly_schedule VARCHAR, timeslot VARCHAR)
SELECT home_team AS score FROM table_name_92 WHERE home_team = "essendon"
What is the team of Essendon's score in the game where they were the home team?
CREATE TABLE table_name_92 (home_team VARCHAR)
SELECT res FROM table_name_83 WHERE event = "ft 6 - full throttle 6"
What is Res., when Event is "FT 6 - Full Throttle 6"?
CREATE TABLE table_name_83 (res VARCHAR, event 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 MIN(first_elected) FROM table_1342393_23 WHERE incumbent = "Jeff Busby"
What is the least first elected for jeff busby?
CREATE TABLE table_1342393_23 (first_elected INTEGER, incumbent VARCHAR)
SELECT category FROM table_name_41 WHERE year = 1991
Which category had a year of 1991?
CREATE TABLE table_name_41 (category VARCHAR, year VARCHAR)
SELECT melbourne FROM table_name_1 WHERE gold_coast = "no" AND perth = "no" AND auckland = "no" AND sydney = "no"
What is the result for Melbourne when Gold Coast, Perth, Auckland, and Sydney are no?
CREATE TABLE table_name_1 (melbourne VARCHAR, sydney VARCHAR, auckland VARCHAR, gold_coast VARCHAR, perth VARCHAR)
SELECT MAX(yards) FROM table_19418696_3 WHERE name = "Bobby Layne"
How many total yards for Bobby Layne?
CREATE TABLE table_19418696_3 (yards INTEGER, name VARCHAR)
SELECT score FROM table_name_58 WHERE opposition = "leicestershire" AND year > 1906
What score has Leicestershire as the opponent after 1906?
CREATE TABLE table_name_58 (score VARCHAR, opposition VARCHAR, year VARCHAR)
SELECT year_built FROM table_name_54 WHERE current_status = "tbsc" AND boat_builder = "j. jones, trearddur bay"
What year did J. Jones, trearddur bay build a boat with a current status of tbsc?
CREATE TABLE table_name_54 (year_built VARCHAR, current_status VARCHAR, boat_builder VARCHAR)
SELECT COUNT(song_title) FROM table_21500850_1 WHERE artist = "Ratt"
How many song titles belong to the artist Ratt?
CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR)
SELECT name FROM table_name_61 WHERE developer = "yes" AND personal_sites = "no"
What is the name of the entry that has a developer entry of Yes and a personal sites entry of No?
CREATE TABLE table_name_61 (name VARCHAR, developer VARCHAR, personal_sites VARCHAR)
SELECT best_fit__all_data_ FROM table_name_18 WHERE parameter = "fluctuation amplitude at 8h −1 mpc"
What is the best fit (all data) when the parameter shows fluctuation amplitude at 8h −1 mpc?
CREATE TABLE table_name_18 (best_fit__all_data_ VARCHAR, parameter VARCHAR)
SELECT venue FROM table_name_3 WHERE city = "villanova"
Which venue is in the city of Villanova?
CREATE TABLE table_name_3 (venue VARCHAR, city VARCHAR)
SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = "Green"
What is the attribute data type of the attribute with name "Green"?
CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR, attribute_name VARCHAR)
SELECT america FROM table_22860_1 WHERE atlantic_europe = "Hoxniense"
What is every entry for America when Atlantic Europe is Hoxniense?
CREATE TABLE table_22860_1 (america VARCHAR, atlantic_europe VARCHAR)
SELECT AVG(capacity) FROM table_name_72 WHERE home_team_s_ = "vélez sársfield"
What was the average capacity for vélez sársfield?
CREATE TABLE table_name_72 (capacity INTEGER, home_team_s_ VARCHAR)
SELECT sign_of_zodiac FROM table_169955_1 WHERE tamil_calendar = "Chithirai"
Name the sign of zodiac for chithirai
CREATE TABLE table_169955_1 (sign_of_zodiac VARCHAR, tamil_calendar VARCHAR)
SELECT distance FROM table_24850630_4 WHERE race = "Mooresbridge Stakes"
What is the distance of the Mooresbridge Stakes race?
CREATE TABLE table_24850630_4 (distance VARCHAR, race VARCHAR)
SELECT MAX(number_of_tropical_storms) FROM table_2930244_4 WHERE deaths = "34"
What is the maximum number of tropical storms in the year that had exactly 34 deaths?
CREATE TABLE table_2930244_4 (number_of_tropical_storms INTEGER, deaths VARCHAR)
SELECT fatalities FROM table_229917_2 WHERE brief_description = "Ditched 300 m short of runway"
How many fatalities were there in the crash described as ditched 300 m short of runway?
CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR)
SELECT MAX(jews_and_others_1) FROM table_25947046_1
What is the highest Jews and others 1?
CREATE TABLE table_25947046_1 (jews_and_others_1 INTEGER)
SELECT scores_by_each_individual_judge FROM table_18278508_6 WHERE main_contestant = "Karanvir Bohra" AND date_performed = "August 13"
What were the scores by the individual judges for Karanvir Bohra on August 13?
CREATE TABLE table_18278508_6 (scores_by_each_individual_judge VARCHAR, main_contestant VARCHAR, date_performed VARCHAR)
SELECT T1.owner_id, T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY COUNT(*) DESC LIMIT 1
Which owner has paid for the most treatments on his or her dogs? List the owner id and last name.
CREATE TABLE Owners (owner_id VARCHAR, last_name VARCHAR); CREATE TABLE Dogs (owner_id VARCHAR, dog_id VARCHAR); CREATE TABLE Treatments (dog_id VARCHAR)
SELECT attendance FROM table_name_75 WHERE venue = "mandalay bay resort"
Which Attendance has Mandalay Bay Resort
CREATE TABLE table_name_75 (attendance VARCHAR, venue VARCHAR)
SELECT score FROM table_name_99 WHERE attendance = "31,178"
Which score has an Attendance of 31,178?
CREATE TABLE table_name_99 (score VARCHAR, attendance VARCHAR)
SELECT human_gene__protein_ FROM table_name_27 WHERE mouse_ortholog = "lig1"
What is the human gene that has a mouse ortholog of LIG1?
CREATE TABLE table_name_27 (human_gene__protein_ VARCHAR, mouse_ortholog VARCHAR)
SELECT foreign_nationality FROM table_17964087_2 WHERE romanised_name = "Cheung, Raymond Man-to"
The name cheung, raymond man-to is listed as a romanised name is cheung, raymond man-to?
CREATE TABLE table_17964087_2 (foreign_nationality VARCHAR, romanised_name VARCHAR)
SELECT MAX(car) FROM table_name_56 WHERE yards > 155
What is the highest Car with more than 155 yards?
CREATE TABLE table_name_56 (car INTEGER, yards INTEGER)
SELECT q1 + q2_time FROM table_name_35 WHERE q1_order = 13
What is the Q1+Q2 time for the driver whose Q1 order was 13?
CREATE TABLE table_name_35 (q1 VARCHAR, q2_time VARCHAR, q1_order 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 MAX(no) FROM table_15621965_16 WHERE school_club_team = "Delta State"
What is the number of the player who attended Delta State?
CREATE TABLE table_15621965_16 (no INTEGER, school_club_team VARCHAR)
SELECT T1.student_id, T2.login_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1
Find the student ID and login name of the student with the most course enrollments
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (login_name VARCHAR, student_id VARCHAR)
SELECT COUNT(year) FROM table_name_47 WHERE title = "black swan" AND award = "gotham awards"
What year was Black Swan up for the Gotham Awards?
CREATE TABLE table_name_47 (year VARCHAR, title VARCHAR, award VARCHAR)
SELECT MIN(w) FROM table_25933764_1 WHERE locale = Ontario
If the locale is Ontario, what is the W minimum?
CREATE TABLE table_25933764_1 (w INTEGER, locale VARCHAR, Ontario VARCHAR)
SELECT total FROM table_name_96 WHERE finish = "t39"
What is the total for the player with a Finish of T39?
CREATE TABLE table_name_96 (total VARCHAR, finish VARCHAR)
SELECT time_retired FROM table_name_6 WHERE laps > 56 AND grid = 5
What is the Time/Retired with over 56 laps and a grid of 5?
CREATE TABLE table_name_6 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT terminus FROM table_name_4 WHERE color = "sapphire"
The color sapphire is assigned to which Terminus?
CREATE TABLE table_name_4 (terminus VARCHAR, color VARCHAR)
SELECT region FROM table_name_46 WHERE label = "alfa records" AND date = "january 23, 1987"
What region has the label of alfa records and the date of January 23, 1987?
CREATE TABLE table_name_46 (region VARCHAR, label VARCHAR, date VARCHAR)
SELECT total FROM table_name_77 WHERE fa_cup = "1 0 (3)"
What is Total, when FA Cup is 1 0 (3)?
CREATE TABLE table_name_77 (total VARCHAR, fa_cup VARCHAR)
SELECT record FROM table_name_4 WHERE result = "w 33-3"
What is the record for the result w 33-3?
CREATE TABLE table_name_4 (record VARCHAR, result VARCHAR)
SELECT team FROM table_name_78 WHERE day_2 = "3:47.761"
Which team was 3:47.761 on day 2?
CREATE TABLE table_name_78 (team VARCHAR, day_2 VARCHAR)
SELECT australian_open FROM table_name_71 WHERE year = 2010
What is the Australian open in 2010?
CREATE TABLE table_name_71 (australian_open VARCHAR, year VARCHAR)
SELECT premier FROM table_10566855_1 WHERE season = 1970
who's the premier with in 1970
CREATE TABLE table_10566855_1 (premier VARCHAR, season VARCHAR)
SELECT accreditation_type FROM table_name_22 WHERE company_name = "vodacom group pty ltd (vodafone group)"
What is the accreditation type of Vodacom Group PTY LTD (Vodafone group)?
CREATE TABLE table_name_22 (accreditation_type VARCHAR, company_name VARCHAR)
SELECT record FROM table_name_12 WHERE high_points = "leandro barbosa (32)"
What's the record of the game that Leandro Barbosa (32) had the high points?
CREATE TABLE table_name_12 (record VARCHAR, high_points VARCHAR)
SELECT japanese FROM table_name_71 WHERE region = "tōhoku"
What kind of Japanese has a Region of tōhoku?
CREATE TABLE table_name_71 (japanese VARCHAR, region VARCHAR)
SELECT MAX(no_in_series) FROM table_228973_9 WHERE directed_by = "Harvey S. Laidman"
What is the maximum number in the series for the episode directed by Harvey S. Laidman?
CREATE TABLE table_228973_9 (no_in_series INTEGER, directed_by VARCHAR)
SELECT constructor FROM table_name_4 WHERE grid < 7 AND laps > 35 AND driver = "alberto ascari"
Who made the car that Alberto Ascari went more than 35 laps on a grid less than 7?
CREATE TABLE table_name_4 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT engine FROM table_22915134_2 WHERE example = "1985-2007 Yamaha V-Max Honda VFR800"
When 1985-2007 yamaha v-max honda vfr800 is the example what is the engine is it?
CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR)