question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
who is the champion when the year is earlier than 2012, the runner-up (average in final) is steve beaton (97.16)?
CREATE TABLE table_name_25 (champion VARCHAR, year VARCHAR, runner_up__average_in_final_ VARCHAR)
SELECT champion FROM table_name_25 WHERE year < 2012 AND runner_up__average_in_final_ = "steve beaton (97.16)"
what is the venue when the runner-up is £20,000, the champion (average in final) is phil taylor (109.35)?
CREATE TABLE table_name_86 (venue VARCHAR, runner_up VARCHAR, champion__average_in_final_ VARCHAR)
SELECT venue FROM table_name_86 WHERE runner_up = "£20,000" AND champion__average_in_final_ = "phil taylor (109.35)"
what is the legs when the year is earlier than 2009?
CREATE TABLE table_name_8 (legs VARCHAR, year INTEGER)
SELECT legs FROM table_name_8 WHERE year < 2009
what is the venue when the runner-up (average in final) is wayne jones (94.64)?
CREATE TABLE table_name_6 (venue VARCHAR, runner_up__average_in_final_ VARCHAR)
SELECT venue FROM table_name_6 WHERE runner_up__average_in_final_ = "wayne jones (94.64)"
What is the legs when the venue is rwe-sporthalle, mülheim and the runner-up (average in final) is simon whitlock (99.59)?
CREATE TABLE table_name_81 (legs VARCHAR, venue VARCHAR, runner_up__average_in_final_ VARCHAR)
SELECT legs FROM table_name_81 WHERE venue = "rwe-sporthalle, mülheim" AND runner_up__average_in_final_ = "simon whitlock (99.59)"
What is the 110m H number when the overall points are 7835 (sb)?
CREATE TABLE table_name_85 (overall_points VARCHAR)
SELECT 110 AS _m_h FROM table_name_85 WHERE overall_points = "7835 (sb)"
Which Result has a Venue of kinnarps arena, and a Date of thursday, february 19?
CREATE TABLE table_name_86 (result VARCHAR, venue VARCHAR, date VARCHAR)
SELECT result FROM table_name_86 WHERE venue = "kinnarps arena" AND date = "thursday, february 19"
Which Attendance has a Home of djurgårdens if, and a Round of 53?
CREATE TABLE table_name_54 (attendance INTEGER, home VARCHAR, round VARCHAR)
SELECT MAX(attendance) FROM table_name_54 WHERE home = "djurgårdens if" AND round = 53
Which Attendance has a Round of 52, and a Home of södertälje sk?
CREATE TABLE table_name_67 (attendance INTEGER, round VARCHAR, home VARCHAR)
SELECT MIN(attendance) FROM table_name_67 WHERE round = 52 AND home = "södertälje sk"
What is the Record of the game with an Attendance of 70,604?
CREATE TABLE table_name_92 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_92 WHERE attendance = "70,604"
Who is the Opponent in the game with a Record of 1–3–0?
CREATE TABLE table_name_26 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_26 WHERE record = "1–3–0"
What is the Record of the game with an Attendance of 70,479?
CREATE TABLE table_name_41 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_41 WHERE attendance = "70,479"
What was the winning score on Aug 21, 1977?
CREATE TABLE table_name_92 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_92 WHERE date = "aug 21, 1977"
What's the margin of victory during the Pocono Northeast Classic?
CREATE TABLE table_name_55 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_55 WHERE tournament = "pocono northeast classic"
What's the winning score on Feb 12, 1978?
CREATE TABLE table_name_49 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_49 WHERE date = "feb 12, 1978"
Which Name has a Year larger than 2001, and a Length of 52 x 20 mins?
CREATE TABLE table_name_9 (name VARCHAR, year VARCHAR, length VARCHAR)
SELECT name FROM table_name_9 WHERE year > 2001 AND length = "52 x 20 mins"
What was the type after 2004?
CREATE TABLE table_name_14 (type VARCHAR, year INTEGER)
SELECT type FROM table_name_14 WHERE year > 2004
Which Relation has a Year larger than 2000, and a Length of 8 x 20 mins?
CREATE TABLE table_name_12 (relation VARCHAR, year VARCHAR, length VARCHAR)
SELECT relation FROM table_name_12 WHERE year > 2000 AND length = "8 x 20 mins"
Which Relation has a Type of tv, and a Name of ohanami?
CREATE TABLE table_name_71 (relation VARCHAR, type VARCHAR, name VARCHAR)
SELECT relation FROM table_name_71 WHERE type = "tv" AND name = "ohanami"
What is the majority when the clone independence is no?
CREATE TABLE table_name_8 (majority VARCHAR, clone_independence VARCHAR)
SELECT majority FROM table_name_8 WHERE clone_independence = "no"
what is the consistency & participation when pareto efficiency is yes and condorcet is no?
CREATE TABLE table_name_83 (consistency_ VARCHAR, _participation VARCHAR, pareto_efficiency VARCHAR, condorcet VARCHAR)
SELECT consistency_ & _participation FROM table_name_83 WHERE pareto_efficiency = "yes" AND condorcet = "no"
what is the reversal symmetry when non-dictatorship is yes, consistency & participation is no, and clone independence is yes?
CREATE TABLE table_name_1 (reversal_symmetry VARCHAR, clone_independence VARCHAR, non_dictatorship VARCHAR, consistency_ VARCHAR, _participation VARCHAR)
SELECT reversal_symmetry FROM table_name_1 WHERE non_dictatorship = "yes" AND consistency_ & _participation = "no" AND clone_independence = "yes"
what is the monotone when pareto efficiency is yes, non-dictatorship is yes, and clone independence is yes?
CREATE TABLE table_name_41 (monotone VARCHAR, clone_independence VARCHAR, pareto_efficiency VARCHAR, non_dictatorship VARCHAR)
SELECT monotone FROM table_name_41 WHERE pareto_efficiency = "yes" AND non_dictatorship = "yes" AND clone_independence = "yes"
For the English translation Someone Like You, what is the lowest draw?
CREATE TABLE table_name_76 (draw INTEGER, english_translation VARCHAR)
SELECT MIN(draw) FROM table_name_76 WHERE english_translation = "someone like you"
The English translation of Sing has what average points?
CREATE TABLE table_name_86 (points INTEGER, english_translation VARCHAR)
SELECT AVG(points) FROM table_name_86 WHERE english_translation = "sing"
What is Germany's lowest heat ranked after 24?
CREATE TABLE table_name_84 (heat INTEGER, nationality VARCHAR, rank VARCHAR)
SELECT MIN(heat) FROM table_name_84 WHERE nationality = "germany" AND rank > 24
What is the rank for Denmark?
CREATE TABLE table_name_33 (rank VARCHAR, nationality VARCHAR)
SELECT COUNT(rank) FROM table_name_33 WHERE nationality = "denmark"
What is the highest lane for Christine Mailliet ranked less than 39?
CREATE TABLE table_name_31 (lane INTEGER, name VARCHAR, rank VARCHAR)
SELECT MAX(lane) FROM table_name_31 WHERE name = "christine mailliet" AND rank < 39
What was the title of the episode written by Robert Haywood?
CREATE TABLE table_name_83 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_name_83 WHERE written_by = "robert haywood"
Which Player has Goals larger than 10, and a Debut year smaller than 1993, and Years at club of 1990–1993?
CREATE TABLE table_name_71 (player VARCHAR, years_at_club VARCHAR, goals VARCHAR, debut_year VARCHAR)
SELECT player FROM table_name_71 WHERE goals > 10 AND debut_year < 1993 AND years_at_club = "1990–1993"
Which Goals have Games of 51, and a Debut year smaller than 1992?
CREATE TABLE table_name_87 (goals INTEGER, games VARCHAR, debut_year VARCHAR)
SELECT MIN(goals) FROM table_name_87 WHERE games = 51 AND debut_year < 1992
Which Year Joined has an Enrollment smaller than 726, and a School of tri-west?
CREATE TABLE table_name_97 (year_joined INTEGER, enrollment VARCHAR, school VARCHAR)
SELECT MAX(year_joined) FROM table_name_97 WHERE enrollment < 726 AND school = "tri-west"
What is lebanon's enrollment?
CREATE TABLE table_name_99 (enrollment INTEGER, school VARCHAR)
SELECT AVG(enrollment) FROM table_name_99 WHERE school = "lebanon"
What is the enrollment of the school whose mascot is hot dogs?
CREATE TABLE table_name_53 (enrollment INTEGER, mascot VARCHAR)
SELECT SUM(enrollment) FROM table_name_53 WHERE mascot = "hot dogs"
When did crawfordsville join?
CREATE TABLE table_name_10 (year_joined INTEGER, location VARCHAR)
SELECT MAX(year_joined) FROM table_name_10 WHERE location = "crawfordsville"
what is the average b score when the gymnast is kōhei uchimura ( jpn )?
CREATE TABLE table_name_20 (b_score INTEGER, gymnast VARCHAR)
SELECT AVG(b_score) FROM table_name_20 WHERE gymnast = "kōhei uchimura ( jpn )"
what is the b score when the a score is 6.9?
CREATE TABLE table_name_6 (b_score VARCHAR, a_score VARCHAR)
SELECT b_score FROM table_name_6 WHERE a_score = 6.9
what is the sum of the b score when the a score is 6.6 and the total is 15.6?
CREATE TABLE table_name_37 (b_score INTEGER, a_score VARCHAR, total VARCHAR)
SELECT SUM(b_score) FROM table_name_37 WHERE a_score = 6.6 AND total = 15.6
What is Myron Walwyn with a Territorial at-large Constiuency's First Elected Date
CREATE TABLE table_name_87 (first_elected VARCHAR, constiuency VARCHAR, name VARCHAR)
SELECT first_elected FROM table_name_87 WHERE constiuency = "territorial at-large" AND name = "myron walwyn"
What is the Party of the council member for the Fifth District?
CREATE TABLE table_name_77 (party VARCHAR, constiuency VARCHAR)
SELECT party FROM table_name_77 WHERE constiuency = "council member for the fifth district"
What is the medal total when there is 2 gold medals, and Brazil (BRA) is the nation?
CREATE TABLE table_name_2 (total VARCHAR, gold VARCHAR, nation VARCHAR)
SELECT total FROM table_name_2 WHERE gold = 2 AND nation = "brazil (bra)"
Which nation has the number of silver medals greater than 1, and bronze medals as 1?
CREATE TABLE table_name_7 (nation VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_7 WHERE silver > 1 AND bronze = 1
What is the least total number of medals when the bronze medals is 1, and Czech Republic (CZE) is the nation?
CREATE TABLE table_name_46 (total INTEGER, bronze VARCHAR, nation VARCHAR)
SELECT MIN(total) FROM table_name_46 WHERE bronze = 1 AND nation = "czech republic (cze)"
For what nation is the gold medals 0, and the bronze medals less than 1?
CREATE TABLE table_name_28 (nation VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_28 WHERE gold = 0 AND bronze < 1
What is the most gold medals when the bronze medals were 0, and the silver medals greater than 1?
CREATE TABLE table_name_75 (gold INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT MAX(gold) FROM table_name_75 WHERE bronze = 0 AND silver > 1
What is the total bronze medals when the silver medals is 0, and 1 is the rank, Brazil (BRA) is the nation, and the gold medals is less than 2?
CREATE TABLE table_name_28 (bronze INTEGER, gold VARCHAR, nation VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT SUM(bronze) FROM table_name_28 WHERE silver = 0 AND rank = "1" AND nation = "brazil (bra)" AND gold < 2
What Nation has more than 4 silver, more than 3 gold and 18 total medals?
CREATE TABLE table_name_76 (nation VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT nation FROM table_name_76 WHERE silver > 4 AND gold > 3 AND total = 18
Who is listed as the Runners-up that also has a Winner of Hajduk Split (3)?
CREATE TABLE table_name_63 (runners_up VARCHAR, winner VARCHAR)
SELECT runners_up FROM table_name_63 WHERE winner = "hajduk split (3)"
What is the Japanese Title of the Episode on NTV Station with a Romaji Title of Kuitan 2?
CREATE TABLE table_name_42 (japanese_title VARCHAR, tv_station VARCHAR, romaji_title VARCHAR)
SELECT japanese_title FROM table_name_42 WHERE tv_station = "ntv" AND romaji_title = "kuitan 2"
What are the Ratings of Japanese Title プロポーズ大作戦 episode 11 on Fuji TV station?
CREATE TABLE table_name_32 (average_ratings VARCHAR, japanese_title VARCHAR, episodes VARCHAR, tv_station VARCHAR)
SELECT average_ratings FROM table_name_32 WHERE episodes = "11" AND tv_station = "fuji tv" AND japanese_title = "プロポーズ大作戦"
What Episode on TV Asahi Station has Rating of 12.0%?
CREATE TABLE table_name_17 (episodes VARCHAR, average_ratings VARCHAR, tv_station VARCHAR)
SELECT episodes FROM table_name_17 WHERE average_ratings = "12.0%" AND tv_station = "tv asahi"
What is the TV Station of the episode with a Romaji Title of Tokkyuu Tanaka Sangou?
CREATE TABLE table_name_84 (tv_station VARCHAR, romaji_title VARCHAR)
SELECT tv_station FROM table_name_84 WHERE romaji_title = "tokkyuu tanaka sangou"
Which class had a rank of 2nd?
CREATE TABLE table_name_52 (class VARCHAR, rank VARCHAR)
SELECT class FROM table_name_52 WHERE rank = "2nd"
How many wins did the 500cc class have in 1979?
CREATE TABLE table_name_20 (wins VARCHAR, class VARCHAR, year VARCHAR)
SELECT wins FROM table_name_20 WHERE class = "500cc" AND year = 1979
What is the total of the points for wins under 6 and a rank of 2nd?
CREATE TABLE table_name_59 (points INTEGER, rank VARCHAR, wins VARCHAR)
SELECT SUM(points) FROM table_name_59 WHERE rank = "2nd" AND wins < 6
Which class had 110 points?
CREATE TABLE table_name_23 (class VARCHAR, points VARCHAR)
SELECT class FROM table_name_23 WHERE points = 110
What is the average year having 142 points?
CREATE TABLE table_name_61 (year INTEGER, points VARCHAR)
SELECT AVG(year) FROM table_name_61 WHERE points = 142
On what date were the 1997 Bridgetown games in which a Martinique girl competed?
CREATE TABLE table_name_20 (date VARCHAR, nationality VARCHAR, games VARCHAR)
SELECT date FROM table_name_20 WHERE nationality = "martinique" AND games = "1997 bridgetown"
What is the date of the games that saw a record of 43.66 m?
CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_25 WHERE record = "43.66 m"
On which date was the record of 43.89 m set?
CREATE TABLE table_name_35 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_35 WHERE record = "43.89 m"
Which games saw a record set in the long jump event?
CREATE TABLE table_name_94 (games VARCHAR, event VARCHAR)
SELECT games FROM table_name_94 WHERE event = "long jump"
Which manufacturer has a year made of 4-6-0 — ooooo — ten-wheeler?
CREATE TABLE table_name_22 (manufacturer VARCHAR, year_made VARCHAR)
SELECT manufacturer FROM table_name_22 WHERE year_made = "4-6-0 — ooooo — ten-wheeler"
What is the quantity made number for the quantity preserved 4-6-0 — ooooo — ten-wheeler?
CREATE TABLE table_name_65 (quantity_made VARCHAR, quantity_preserved VARCHAR)
SELECT quantity_made FROM table_name_65 WHERE quantity_preserved = "4-6-0 — ooooo — ten-wheeler"
Which Average has a Tally of 2-12, and a Total larger than 18?
CREATE TABLE table_name_23 (average INTEGER, tally VARCHAR, total VARCHAR)
SELECT AVG(average) FROM table_name_23 WHERE tally = "2-12" AND total > 18
What is the ISHAA class for the International School?
CREATE TABLE table_name_64 (ihsaa_class VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_64 WHERE school = "international"
What school is in 41 Johnson county?
CREATE TABLE table_name_56 (school VARCHAR, county VARCHAR)
SELECT school FROM table_name_56 WHERE county = "41 johnson"
What is the mascot for the team smaller than 154 from 49 Marion?
CREATE TABLE table_name_21 (mascot VARCHAR, size VARCHAR, county VARCHAR)
SELECT mascot FROM table_name_21 WHERE size < 154 AND county = "49 marion"
What is the size of the International school?
CREATE TABLE table_name_94 (size INTEGER, school VARCHAR)
SELECT MIN(size) FROM table_name_94 WHERE school = "international"
What was the score that has a To par of −3, for Branden Grace?
CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT score FROM table_name_94 WHERE to_par = "−3" AND player = "branden grace"
What player has a score less than 66, and a Place of t2, in the United States?
CREATE TABLE table_name_72 (player VARCHAR, country VARCHAR, score VARCHAR, place VARCHAR)
SELECT player FROM table_name_72 WHERE score < 66 AND place = "t2" AND country = "united states"
What is the score when To par was −3, in South Africa, for Richard Sterne?
CREATE TABLE table_name_74 (score INTEGER, player VARCHAR, to_par VARCHAR, country VARCHAR)
SELECT AVG(score) FROM table_name_74 WHERE to_par = "−3" AND country = "south africa" AND player = "richard sterne"
What is the average number of goals for games played that total more than 8?
CREATE TABLE table_name_75 (goals_for INTEGER, games_played INTEGER)
SELECT AVG(goals_for) FROM table_name_75 WHERE games_played > 8
What is the sum of wins and the sum of losses less than 4 for teams larger than 20?
CREATE TABLE table_name_55 (wins INTEGER, losses VARCHAR, goals_against VARCHAR)
SELECT SUM(wins) FROM table_name_55 WHERE losses < 4 AND goals_against > 20
What are the sales in Japan for the release totaling 1.82 million?
CREATE TABLE table_name_88 (japan VARCHAR, total VARCHAR)
SELECT japan FROM table_name_88 WHERE total = "1.82 million"
Which date had Japanese sales of 0.61 million?
CREATE TABLE table_name_93 (date VARCHAR, japan VARCHAR)
SELECT date FROM table_name_93 WHERE japan = "0.61 million"
Which date had Japanese sales of 0.57 million?
CREATE TABLE table_name_60 (date VARCHAR, japan VARCHAR)
SELECT date FROM table_name_60 WHERE japan = "0.57 million"
Which date had Japanese sales of 0.59 million?
CREATE TABLE table_name_70 (date VARCHAR, japan VARCHAR)
SELECT date FROM table_name_70 WHERE japan = "0.59 million"
what is the highest attendance for week 6?
CREATE TABLE table_name_82 (attendance INTEGER, week VARCHAR)
SELECT MAX(attendance) FROM table_name_82 WHERE week = 6
what is the highest week when the date is october 6, 1975 and attendance is higher than 79,384?
CREATE TABLE table_name_80 (week INTEGER, date VARCHAR, attendance VARCHAR)
SELECT MAX(week) FROM table_name_80 WHERE date = "october 6, 1975" AND attendance > 79 OFFSET 384
what is the geo id when the land (sqmi) is less than 36.112, the latitude is more than 47.536618, the township is west bay and water (sqmi) is more than 0.209?
CREATE TABLE table_name_21 (geo_id INTEGER, water__sqmi_ VARCHAR, township VARCHAR, land___sqmi__ VARCHAR, latitude VARCHAR)
SELECT SUM(geo_id) FROM table_name_21 WHERE land___sqmi__ < 36.112 AND latitude > 47.536618 AND township = "west bay" AND water__sqmi_ > 0.209
what is the township when the land (sqmi) is more than 36.112, the geo id is higher than 3801985060 and the latitude is 46.062384?
CREATE TABLE table_name_20 (township VARCHAR, latitude VARCHAR, land___sqmi__ VARCHAR, geo_id VARCHAR)
SELECT township FROM table_name_20 WHERE land___sqmi__ > 36.112 AND geo_id > 3801985060 AND latitude = 46.062384
what is the longitude when the water (sqmi) is 0.317 and the ansi code is higher than 1759695?
CREATE TABLE table_name_75 (longitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR)
SELECT AVG(longitude) FROM table_name_75 WHERE water__sqmi_ = 0.317 AND ansi_code > 1759695
what is the county when the latitude is more than 48.581299, ansi code is more than 1037103 and the geo id is 3801985060?
CREATE TABLE table_name_74 (county VARCHAR, geo_id VARCHAR, latitude VARCHAR, ansi_code VARCHAR)
SELECT county FROM table_name_74 WHERE latitude > 48.581299 AND ansi_code > 1037103 AND geo_id = 3801985060
what is the highest longitude for county mountrail and the water (sqmi) is less than 0.075?
CREATE TABLE table_name_38 (longitude INTEGER, county VARCHAR, water__sqmi_ VARCHAR)
SELECT MAX(longitude) FROM table_name_38 WHERE county = "mountrail" AND water__sqmi_ < 0.075
What is the nation when gold is 0, bronze is more than 0 and rank is 16?
CREATE TABLE table_name_98 (nation VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_98 WHERE gold = 0 AND bronze > 0 AND rank = "16"
what is the silver when the nation is syria (syr) and gold is more than 0?
CREATE TABLE table_name_38 (silver INTEGER, nation VARCHAR, gold VARCHAR)
SELECT SUM(silver) FROM table_name_38 WHERE nation = "syria (syr)" AND gold > 0
what is the average gold when rank is total and silver is more than 20?
CREATE TABLE table_name_32 (gold INTEGER, rank VARCHAR, silver VARCHAR)
SELECT AVG(gold) FROM table_name_32 WHERE rank = "total" AND silver > 20
what is the most silver when bronze is more than 0, total is more than 1, gold is more than 0 and the nation is china (chn)?
CREATE TABLE table_name_62 (silver INTEGER, nation VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT MAX(silver) FROM table_name_62 WHERE bronze > 0 AND total > 1 AND gold > 0 AND nation = "china (chn)"
Where was the London Marathon held?
CREATE TABLE table_name_19 (venue VARCHAR, event VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_19 WHERE event = "marathon" AND competition = "london marathon"
In what years did Salina Kosgei compete in Singapore?
CREATE TABLE table_name_70 (year VARCHAR, venue VARCHAR)
SELECT COUNT(year) FROM table_name_70 WHERE venue = "singapore"
In what position did Salina Kosgei finish in the Tokyo Marathon?
CREATE TABLE table_name_23 (position VARCHAR, competition VARCHAR)
SELECT position FROM table_name_23 WHERE competition = "tokyo marathon"
What is the Heat of the 34 Rank swimmer with a Time of 49.49 or less?
CREATE TABLE table_name_97 (heat INTEGER, rank VARCHAR, time VARCHAR)
SELECT AVG(heat) FROM table_name_97 WHERE rank = 34 AND time < 49.49
What is Dominik Meichtry's Time in Heat 7 or lower?
CREATE TABLE table_name_24 (time VARCHAR, name VARCHAR, heat VARCHAR)
SELECT COUNT(time) FROM table_name_24 WHERE name = "dominik meichtry" AND heat < 7
What is the comp for games less than 2?
CREATE TABLE table_name_63 (comp VARCHAR, games INTEGER)
SELECT comp FROM table_name_63 WHERE games < 2
What is the highest comp for ratings less than 52.8 and yards less than 0?
CREATE TABLE table_name_97 (comp INTEGER, rating VARCHAR, yards VARCHAR)
SELECT MAX(comp) FROM table_name_97 WHERE rating < 52.8 AND yards < 0
What is the sum of yards for a 118.7 rating?
CREATE TABLE table_name_43 (yards INTEGER, rating VARCHAR)
SELECT SUM(yards) FROM table_name_43 WHERE rating = 118.7
What is the highest yards for a rating larger than 52.8 and more than 13 games?
CREATE TABLE table_name_47 (yards INTEGER, rating VARCHAR, games VARCHAR)
SELECT MAX(yards) FROM table_name_47 WHERE rating > 52.8 AND games > 13
What is the release date when the release price (usd) is $346 and the turbo is 9/11?
CREATE TABLE table_name_23 (release_date VARCHAR, release_price___usd__ VARCHAR, turbo VARCHAR)
SELECT release_date FROM table_name_23 WHERE release_price___usd__ = "$346" AND turbo = "9/11"
what is the i/o bus when the sspec numebr is sr0n5(l1)?
CREATE TABLE table_name_28 (i_o_bus VARCHAR, sspec_number VARCHAR)
SELECT i_o_bus FROM table_name_28 WHERE sspec_number = "sr0n5(l1)"
What is the l3 cache when the sspec number is sr0r2(l1)sr0t6(l1)?
CREATE TABLE table_name_88 (l3_cache VARCHAR, sspec_number VARCHAR)
SELECT l3_cache FROM table_name_88 WHERE sspec_number = "sr0r2(l1)sr0t6(l1)"