text
stringlengths
114
1.06k
### question: What is the Time of the match with a Record of 3-3? ### answer: SELECT time FROM table_name_30 WHERE record = "3-3" ### context: CREATE TABLE table_name_30 (time VARCHAR, record VARCHAR)
### question: What is the Method of the match with a Time of 4:07? ### answer: SELECT method FROM table_name_53 WHERE time = "4:07" ### context: CREATE TABLE table_name_53 (method VARCHAR, time VARCHAR)
### question: Which Published as serial has a Published as novel of october 1917, mcclurg? ### answer: SELECT published_as_serial FROM table_name_82 WHERE published_as_novel = "october 1917, mcclurg" ### context: CREATE TABLE table_name_82 (published_as_serial VARCHAR, published_as_novel VARCHAR)
### question: Which Fictional narrator has a Published as serial of february–july 1912, all-story? ### answer: SELECT fictional_narrator FROM table_name_63 WHERE published_as_serial = "february–july 1912, all-story" ### context: CREATE TABLE table_name_63 (fictional_narrator VARCHAR, published_as_serial VARCHAR)
### question: Which year in novel has a Published as serial of november 1934-april 1935, blue book? ### answer: SELECT year_in_novel FROM table_name_18 WHERE published_as_serial = "november 1934-april 1935, blue book" ### context: CREATE TABLE table_name_18 (year_in_novel VARCHAR, published_as_serial VARCHAR)
### question: How many Goals have Games smaller than 6, and a Debut year of 1939, and Years at club of 1939, 1941? ### answer: SELECT COUNT(goals) FROM table_name_48 WHERE games < 6 AND debut_year = 1939 AND years_at_club = "1939, 1941" ### context: CREATE TABLE table_name_48 (goals VARCHAR, years_at_club VARCHAR, game...
### question: Which Years at club have a Debut year of 1930, and Games larger than 7, and a Player of colin benham? ### answer: SELECT years_at_club FROM table_name_38 WHERE debut_year = 1930 AND games > 7 AND player = "colin benham" ### context: CREATE TABLE table_name_38 (years_at_club VARCHAR, player VARCHAR, debut_...
### question: WhichPlayer has a Debut year larger than 1930, and Goals smaller than 95, and Years at club of 1938, and Games of 6? ### answer: SELECT player FROM table_name_6 WHERE debut_year > 1930 AND goals < 95 AND years_at_club = "1938" AND games = 6 ### context: CREATE TABLE table_name_6 (player VARCHAR, games VAR...
### question: What is the cores when the L3 cache is 8 mb, and the frequency is 2.5 ghz? ### answer: SELECT cores FROM table_name_58 WHERE l3_cache = "8 mb" AND frequency = "2.5 ghz" ### context: CREATE TABLE table_name_58 (cores VARCHAR, l3_cache VARCHAR, frequency VARCHAR)
### question: What is the model number with a release price of $303, and a sSpec number of sr14q(c0)? ### answer: SELECT model_number FROM table_name_2 WHERE release_price___usd__ = "$303" AND sspec_number = "sr14q(c0)" ### context: CREATE TABLE table_name_2 (model_number VARCHAR, release_price___usd__ VARCHAR, sspec_n...
### question: What turbo has a L2 cache of 4 × 256 kb, a release date of June 2013, and a Model number of core i7-4770s? ### answer: SELECT turbo FROM table_name_78 WHERE l2_cache = "4 × 256 kb" AND release_date = "june 2013" AND model_number = "core i7-4770s" ### context: CREATE TABLE table_name_78 (turbo VARCHAR, mod...
### question: What is the socket when the sSpec number is standard power? ### answer: SELECT socket FROM table_name_96 WHERE sspec_number = "standard power" ### context: CREATE TABLE table_name_96 (socket VARCHAR, sspec_number VARCHAR)
### question: What is the GPU model when the L3 cache is standard power? ### answer: SELECT gpu_model FROM table_name_74 WHERE l3_cache = "standard power" ### context: CREATE TABLE table_name_74 (gpu_model VARCHAR, l3_cache VARCHAR)
### question: What cores has an L2 cache of low power? ### answer: SELECT cores FROM table_name_16 WHERE l2_cache = "low power" ### context: CREATE TABLE table_name_16 (cores VARCHAR, l2_cache VARCHAR)
### question: What is the position for Discus in 2013? ### answer: SELECT position FROM table_name_98 WHERE event = "discus" AND year = 2013 ### context: CREATE TABLE table_name_98 (position VARCHAR, event VARCHAR, year VARCHAR)
### question: What event was the competition World Junior Championships in 2010? ### answer: SELECT event FROM table_name_16 WHERE competition = "world junior championships" AND year = 2010 ### context: CREATE TABLE table_name_16 (event VARCHAR, competition VARCHAR, year VARCHAR)
### question: Which year had a vehicle of Mitsubishi? ### answer: SELECT year FROM table_name_88 WHERE vehicle = "mitsubishi" ### context: CREATE TABLE table_name_88 (year VARCHAR, vehicle VARCHAR)
### question: Which class had a vehicle of Nissan in 2007? ### answer: SELECT class FROM table_name_31 WHERE vehicle = "nissan" AND year = 2007 ### context: CREATE TABLE table_name_31 (class VARCHAR, vehicle VARCHAR, year VARCHAR)
### question: Which vehicle had a class of car in years after 2009 with 0 stages won and position of 5? ### answer: SELECT vehicle FROM table_name_87 WHERE class = "car" AND year > 2009 AND stages_won = "0" AND position = "5" ### context: CREATE TABLE table_name_87 (vehicle VARCHAR, position VARCHAR, stages_won VARCHAR...
### question: Which year had a position of 9? ### answer: SELECT year FROM table_name_45 WHERE position = "9" ### context: CREATE TABLE table_name_45 (year VARCHAR, position VARCHAR)
### question: What county is the team with the mascot of the Tigers in? ### answer: SELECT county FROM table_name_89 WHERE mascot = "tigers" ### context: CREATE TABLE table_name_89 (county VARCHAR, mascot VARCHAR)
### question: What county is the team with the mascot of the Tigers in? ### answer: SELECT county FROM table_name_2 WHERE mascot = "tigers" ### context: CREATE TABLE table_name_2 (county VARCHAR, mascot VARCHAR)
### question: What is the enrollment at Lanesville? ### answer: SELECT AVG(enrollment) FROM table_name_21 WHERE school = "lanesville" ### context: CREATE TABLE table_name_21 (enrollment INTEGER, school VARCHAR)
### question: What is the IHSAA class for the school in 10 Clark county with mascot of the Mustangs? ### answer: SELECT ihsaa_class FROM table_name_73 WHERE county = "10 clark" AND mascot = "mustangs" ### context: CREATE TABLE table_name_73 (ihsaa_class VARCHAR, county VARCHAR, mascot VARCHAR)
### question: What is the mascot at Borden? ### answer: SELECT mascot FROM table_name_48 WHERE school = "borden" ### context: CREATE TABLE table_name_48 (mascot VARCHAR, school VARCHAR)
### question: What is the mascot of the school in New Washington in 10 Clark county? ### answer: SELECT mascot FROM table_name_50 WHERE county = "10 clark" AND location = "new washington" ### context: CREATE TABLE table_name_50 (mascot VARCHAR, county VARCHAR, location VARCHAR)
### question: Which Owner(s) has a Description of hunslet engine company 0-6-0st? ### answer: SELECT owner_s_ FROM table_name_18 WHERE description = "hunslet engine company 0-6-0st" ### context: CREATE TABLE table_name_18 (owner_s_ VARCHAR, description VARCHAR)
### question: What is the number of electorates (2009) for Constituency number 182? ### answer: SELECT number_of_electorates__2009_ FROM table_name_13 WHERE constituency_number = "182" ### context: CREATE TABLE table_name_13 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)
### question: What is the Constituency number for Pandhana? ### answer: SELECT constituency_number FROM table_name_62 WHERE name = "pandhana" ### context: CREATE TABLE table_name_62 (constituency_number VARCHAR, name VARCHAR)
### question: Which Name has a Number of electorates (2009) greater than 188,799? ### answer: SELECT name FROM table_name_56 WHERE number_of_electorates__2009_ > 188 OFFSET 799 ### context: CREATE TABLE table_name_56 (name VARCHAR, number_of_electorates__2009_ INTEGER)
### question: What is the Constituency number for Bikhangaon with a Reserved for ( SC / ST /None) of st? ### answer: SELECT constituency_number FROM table_name_11 WHERE reserved_for___sc___st__none_ = "st" AND name = "bikhangaon" ### context: CREATE TABLE table_name_11 (constituency_number VARCHAR, reserved_for___sc___...
### question: How many silver medals for germany with a bronze count more than 0? ### answer: SELECT MAX(silver) FROM table_name_81 WHERE nation = "germany" AND bronze > 0 ### context: CREATE TABLE table_name_81 (silver INTEGER, nation VARCHAR, bronze VARCHAR)
### question: How many gold medals when the total is more than 1 and 18 silver? ### answer: SELECT MIN(gold) FROM table_name_80 WHERE total > 1 AND silver = 18 ### context: CREATE TABLE table_name_80 (gold INTEGER, total VARCHAR, silver VARCHAR)
### question: How many bronze medals has a total less than 3 with a silver less than 1 and gold more than 1? ### answer: SELECT AVG(bronze) FROM table_name_66 WHERE total < 3 AND silver < 1 AND gold > 1 ### context: CREATE TABLE table_name_66 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)
### question: what is the venue on october 28, 2008? ### answer: SELECT venue FROM table_name_43 WHERE date = "october 28, 2008" ### context: CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)
### question: what is the result on september 10, 2008? ### answer: SELECT result FROM table_name_43 WHERE date = "september 10, 2008" ### context: CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)
### question: What is the name of the player with more than 0 assists, a position of forward, 19 goals, and more than 84 apps? ### answer: SELECT name FROM table_name_22 WHERE assists > 0 AND position = "forward" AND apps > 84 AND goals = 19 ### context: CREATE TABLE table_name_22 (name VARCHAR, goals VARCHAR, apps VAR...
### question: What is the total goals with 12 assists, and less than 291 apps? ### answer: SELECT SUM(goals) FROM table_name_52 WHERE assists = 12 AND apps < 291 ### context: CREATE TABLE table_name_52 (goals INTEGER, assists VARCHAR, apps VARCHAR)
### question: What is the total of apps for Keith Treacy? ### answer: SELECT SUM(apps) FROM table_name_37 WHERE name = "keith treacy" ### context: CREATE TABLE table_name_37 (apps INTEGER, name VARCHAR)
### question: What nationality is Erin Donohue? ### answer: SELECT nationality FROM table_name_12 WHERE name = "erin donohue" ### context: CREATE TABLE table_name_12 (nationality VARCHAR, name VARCHAR)
### question: How many heats did Runners from Guinea-Bissau run, with rank higher than 33? ### answer: SELECT SUM(heat) FROM table_name_78 WHERE nationality = "guinea-bissau" AND rank < 33 ### context: CREATE TABLE table_name_78 (heat INTEGER, nationality VARCHAR, rank VARCHAR)
### question: what is the 1st round when team 1 is stade lavallois (d2)? ### answer: SELECT 1 AS st_round FROM table_name_56 WHERE team_1 = "stade lavallois (d2)" ### context: CREATE TABLE table_name_56 (team_1 VARCHAR)
### question: what is the 1st round when team 2 is usl dunkerque (d2)? ### answer: SELECT 1 AS st_round FROM table_name_73 WHERE team_2 = "usl dunkerque (d2)" ### context: CREATE TABLE table_name_73 (team_2 VARCHAR)
### question: who is team 1 when team 2 is usl dunkerque (d2)? ### answer: SELECT team_1 FROM table_name_87 WHERE team_2 = "usl dunkerque (d2)" ### context: CREATE TABLE table_name_87 (team_1 VARCHAR, team_2 VARCHAR)
### question: What is the Hometown of Candidate Lenny Veltman? ### answer: SELECT hometown FROM table_name_73 WHERE candidate = "lenny veltman" ### context: CREATE TABLE table_name_73 (hometown VARCHAR, candidate VARCHAR)
### question: What is the Background of the Candidate from Barrington, Illinois? ### answer: SELECT background FROM table_name_82 WHERE hometown = "barrington, illinois" ### context: CREATE TABLE table_name_82 (background VARCHAR, hometown VARCHAR)
### question: What is the Original Team of the Clothing Company Owner Candidate? ### answer: SELECT original_team FROM table_name_37 WHERE background = "clothing company owner" ### context: CREATE TABLE table_name_37 (original_team VARCHAR, background VARCHAR)
### question: what is the average place when the artist is juliana pasha & luiz ejlli and the points is more than 119? ### answer: SELECT AVG(place) FROM table_name_99 WHERE artist = "juliana pasha & luiz ejlli" AND points > 119 ### context: CREATE TABLE table_name_99 (place INTEGER, artist VARCHAR, points VARCHAR)
### question: what is the song that has 17 points? ### answer: SELECT song FROM table_name_38 WHERE points = 17 ### context: CREATE TABLE table_name_38 (song VARCHAR, points VARCHAR)
### question: What is the shortest Time for David Neville when his React time was greater than 0.183? ### answer: SELECT MIN(time) FROM table_name_35 WHERE react > 0.183 AND athlete = "david neville" ### context: CREATE TABLE table_name_35 (time INTEGER, react VARCHAR, athlete VARCHAR)
### question: What is the Title of the LT Series Filmography with a Release date of 1964-02-08? ### answer: SELECT title FROM table_name_89 WHERE series = "lt" AND release_date = "1964-02-08" ### context: CREATE TABLE table_name_89 (title VARCHAR, series VARCHAR, release_date VARCHAR)
### question: What is the Series of the Filmography by Directory Friz Freleng? ### answer: SELECT series FROM table_name_93 WHERE director = "friz freleng" ### context: CREATE TABLE table_name_93 (series VARCHAR, director VARCHAR)
### question: What is the Release date of the Filmography directed by Robert McKimson in MM Series with Production Number 1665? ### answer: SELECT release_date FROM table_name_16 WHERE director = "robert mckimson" AND series = "mm" AND production_number = "1665" ### context: CREATE TABLE table_name_16 (release_date VAR...
### question: What is the Director of the Filmography The Iceman Ducketh? ### answer: SELECT director FROM table_name_82 WHERE title = "the iceman ducketh" ### context: CREATE TABLE table_name_82 (director VARCHAR, title VARCHAR)
### question: What is the Production Number of the Filmography in MM Series with a Release date of 1964-06-27? ### answer: SELECT production_number FROM table_name_96 WHERE series = "mm" AND release_date = "1964-06-27" ### context: CREATE TABLE table_name_96 (production_number VARCHAR, series VARCHAR, release_date VARC...
### question: What is the Date of the Game with a Record of 46-22? ### answer: SELECT date FROM table_name_17 WHERE record = "46-22" ### context: CREATE TABLE table_name_17 (date VARCHAR, record VARCHAR)
### question: What is the Date of the Game with a Score of w 112-107 (ot)? ### answer: SELECT date FROM table_name_29 WHERE score = "w 112-107 (ot)" ### context: CREATE TABLE table_name_29 (date VARCHAR, score VARCHAR)
### question: What is the athlete muna lee lowest time? ### answer: SELECT MIN(time) FROM table_name_45 WHERE athlete = "muna lee" ### context: CREATE TABLE table_name_45 (time INTEGER, athlete VARCHAR)
### question: What is the sum of rank for the athlete kerron stewart, and a time smaller than 11.05? ### answer: SELECT SUM(rank) FROM table_name_10 WHERE athlete = "kerron stewart" AND time < 11.05 ### context: CREATE TABLE table_name_10 (rank INTEGER, athlete VARCHAR, time VARCHAR)
### question: What is a highest time for the heat smaller than 1? ### answer: SELECT MAX(time) FROM table_name_39 WHERE heat < 1 ### context: CREATE TABLE table_name_39 (time INTEGER, heat INTEGER)
### question: What is the highest time for athlete torri edwards, and a rank larger than 6? ### answer: SELECT MAX(time) FROM table_name_31 WHERE athlete = "torri edwards" AND rank > 6 ### context: CREATE TABLE table_name_31 (time INTEGER, athlete VARCHAR, rank VARCHAR)
### question: What's the IS-2 when the KV-1S is 114? ### answer: SELECT is_2_m1945 FROM table_name_91 WHERE kv_1s_m1942 = "114" ### context: CREATE TABLE table_name_91 (is_2_m1945 VARCHAR, kv_1s_m1942 VARCHAR)
### question: What's the IS-3 when the KV-1S is 45? ### answer: SELECT is_3_m1945 FROM table_name_72 WHERE kv_1s_m1942 = "45" ### context: CREATE TABLE table_name_72 (is_3_m1945 VARCHAR, kv_1s_m1942 VARCHAR)
### question: What's the T-100 when the IS-3 is 150 (225)? ### answer: SELECT t_100 FROM table_name_51 WHERE is_3_m1945 = "150 (225)" ### context: CREATE TABLE table_name_51 (t_100 VARCHAR, is_3_m1945 VARCHAR)
### question: What's the IS-3 when the KV-85 is 40? ### answer: SELECT is_3_m1945 FROM table_name_11 WHERE kv_85_m1943 = "40" ### context: CREATE TABLE table_name_11 (is_3_m1945 VARCHAR, kv_85_m1943 VARCHAR)
### question: What's the KV-85 when the KV-1S is 45? ### answer: SELECT kv_85_m1943 FROM table_name_51 WHERE kv_1s_m1942 = "45" ### context: CREATE TABLE table_name_51 (kv_85_m1943 VARCHAR, kv_1s_m1942 VARCHAR)
### question: What is the sum of the bronze medals won by south korea? ### answer: SELECT SUM(bronze) FROM table_name_67 WHERE nation = "south korea" ### context: CREATE TABLE table_name_67 (bronze INTEGER, nation VARCHAR)
### question: Which IHSAA class does speedway school belong to? ### answer: SELECT ihsaa_class FROM table_name_85 WHERE school = "speedway" ### context: CREATE TABLE table_name_85 (ihsaa_class VARCHAR, school VARCHAR)
### question: Which ISHAA school joined in 2012 and has a mascot of the panthers? ### answer: SELECT ihsaa_class FROM table_name_64 WHERE year_joined < 2012 AND mascot = "panthers" ### context: CREATE TABLE table_name_64 (ihsaa_class VARCHAR, year_joined VARCHAR, mascot VARCHAR)
### question: Which Tries against has Points against larger than 156, and Points for of 127, and Tries for larger than 17? ### answer: SELECT AVG(tries_against) FROM table_name_8 WHERE points_against > 156 AND points_for = 127 AND tries_for > 17 ### context: CREATE TABLE table_name_8 (tries_against INTEGER, tries_for V...
### question: Which Try diff has Tries for of 12? ### answer: SELECT try_diff FROM table_name_34 WHERE tries_for = 12 ### context: CREATE TABLE table_name_34 (try_diff VARCHAR, tries_for VARCHAR)
### question: What is SS Player Rich McKinney's Team? ### answer: SELECT team FROM table_name_19 WHERE position = "ss" AND player = "rich mckinney" ### context: CREATE TABLE table_name_19 (team VARCHAR, position VARCHAR, player VARCHAR)
### question: What is the Player from Dayton, Oh with a Pick of 15 or larger? ### answer: SELECT player FROM table_name_99 WHERE pick > 15 AND hometown_school = "dayton, oh" ### context: CREATE TABLE table_name_99 (player VARCHAR, pick VARCHAR, hometown_school VARCHAR)
### question: What is the Pick of the Player from Stamford, CT? ### answer: SELECT MAX(pick) FROM table_name_25 WHERE hometown_school = "stamford, ct" ### context: CREATE TABLE table_name_25 (pick INTEGER, hometown_school VARCHAR)
### question: What is the county with an AA IHSAA class in ferdinand? ### answer: SELECT county FROM table_name_90 WHERE ihsaa_class = "aa" AND location = "ferdinand" ### context: CREATE TABLE table_name_90 (county VARCHAR, ihsaa_class VARCHAR, location VARCHAR)
### question: What is the lowest size of the school with titans as the mascot? ### answer: SELECT MIN(size) FROM table_name_93 WHERE mascot = "titans" ### context: CREATE TABLE table_name_93 (size INTEGER, mascot VARCHAR)
### question: What school has a size less than 674, has a county of 19 dubois, and has the rangers as their mascot? ### answer: SELECT school FROM table_name_43 WHERE size < 674 AND county = "19 dubois" AND mascot = "rangers" ### context: CREATE TABLE table_name_43 (school VARCHAR, mascot VARCHAR, size VARCHAR, county ...
### question: Which player has a score of 71-69-71-67=278? ### answer: SELECT player FROM table_name_81 WHERE score = 71 - 69 - 71 - 67 = 278 ### context: CREATE TABLE table_name_81 (player VARCHAR, score VARCHAR)
### question: How many Wins have Winnings of $184,190, and a Top 10 larger than 1? ### answer: SELECT COUNT(wins) FROM table_name_8 WHERE winnings = "$184,190" AND top_10 > 1 ### context: CREATE TABLE table_name_8 (wins VARCHAR, winnings VARCHAR, top_10 VARCHAR)
### question: What is the highest col in m of the puncak jaya (carstensz pyramid) peak, which is ranked lower than 7 and has a prominence less than 4,884 m? ### answer: SELECT MAX(col__m_) FROM table_name_91 WHERE rank < 7 AND peak = "puncak jaya (carstensz pyramid)" AND prominence__m_ < 4 OFFSET 884 ### context: CREAT...
### question: What is the highest elevation in m of the bon irau peak, which has a col greater than 0 m and a prominence less than 1,900 m? ### answer: SELECT MAX(elevation__m_) FROM table_name_11 WHERE col__m_ > 0 AND peak = "bon irau" AND prominence__m_ < 1 OFFSET 900 ### context: CREATE TABLE table_name_11 (elevatio...
### question: Which round was the defensive tackle picked after 187? ### answer: SELECT AVG(round) FROM table_name_8 WHERE position = "defensive tackle" AND pick__number > 187 ### context: CREATE TABLE table_name_8 (round INTEGER, position VARCHAR, pick__number VARCHAR)
### question: What was the title for the label mother / mvp / polydor? ### answer: SELECT title FROM table_name_80 WHERE label = "mother / mvp / polydor" ### context: CREATE TABLE table_name_80 (title VARCHAR, label VARCHAR)
### question: What was the label for Shake Your Groove Thing in USA? ### answer: SELECT label FROM table_name_59 WHERE country_of_release = "usa" AND title = "shake your groove thing" ### context: CREATE TABLE table_name_59 (label VARCHAR, country_of_release VARCHAR, title VARCHAR)
### question: What is listed as the Place of birth for the Elector of Soffredo? ### answer: SELECT place_of_birth FROM table_name_31 WHERE elector = "soffredo" ### context: CREATE TABLE table_name_31 (place_of_birth VARCHAR, elector VARCHAR)
### question: What's the Place of birth listed that has an Elevator of ALexander III, and an Elector of Ruggiero Di San Severino? ### answer: SELECT place_of_birth FROM table_name_51 WHERE elevator = "alexander iii" AND elector = "ruggiero di san severino" ### context: CREATE TABLE table_name_51 (place_of_birth VARCHAR...
### question: What is listed for the Elevator, that also has the Cardinalatial title of Deacon of S. Maria in Portico? ### answer: SELECT elevator FROM table_name_78 WHERE cardinalatial_title = "deacon of s. maria in portico" ### context: CREATE TABLE table_name_78 (elevator VARCHAR, cardinalatial_title VARCHAR)
### question: What is listed for the Elector that also has the Cardinalatial title of Priest of S. Marco? ### answer: SELECT elector FROM table_name_86 WHERE cardinalatial_title = "priest of s. marco" ### context: CREATE TABLE table_name_86 (elector VARCHAR, cardinalatial_title VARCHAR)
### question: What is listed for the Elevator that has the Elector of Gerardo? ### answer: SELECT elevator FROM table_name_10 WHERE elector = "gerardo" ### context: CREATE TABLE table_name_10 (elevator VARCHAR, elector VARCHAR)
### question: What is listed as the Place of Birth for the Elector of Pandolfo? ### answer: SELECT place_of_birth FROM table_name_40 WHERE elector = "pandolfo" ### context: CREATE TABLE table_name_40 (place_of_birth VARCHAR, elector VARCHAR)
### question: what is the least density (per km²) when the rank is 5 and the Area (km²) is less than 125,755? ### answer: SELECT MIN(density__per_km²_) FROM table_name_77 WHERE rank = "5" AND area__km²_ < 125 OFFSET 755 ### context: CREATE TABLE table_name_77 (density__per_km²_ INTEGER, rank VARCHAR, area__km²_ VARCHAR...
### question: what is the turbo when the frequency is 2.2 ghz? ### answer: SELECT turbo FROM table_name_63 WHERE frequency = "2.2 ghz" ### context: CREATE TABLE table_name_63 (turbo VARCHAR, frequency VARCHAR)
### question: what is the gpu frequency when the part number is cw8064701470702? ### answer: SELECT gpu_frequency FROM table_name_50 WHERE part_number_s_ = "cw8064701470702" ### context: CREATE TABLE table_name_50 (gpu_frequency VARCHAR, part_number_s_ VARCHAR)
### question: what is the release date when the sspec number is sr15h(c0)? ### answer: SELECT release_date FROM table_name_98 WHERE sspec_number = "sr15h(c0)" ### context: CREATE TABLE table_name_98 (release_date VARCHAR, sspec_number VARCHAR)
### question: what is the sspec number when the part number is cw8064701470802? ### answer: SELECT sspec_number FROM table_name_2 WHERE part_number_s_ = "cw8064701470802" ### context: CREATE TABLE table_name_2 (sspec_number VARCHAR, part_number_s_ VARCHAR)
### question: what is the average rank when the cyclist is alexandr pliuschin? ### answer: SELECT AVG(rank) FROM table_name_71 WHERE cyclist = "alexandr pliuschin" ### context: CREATE TABLE table_name_71 (rank INTEGER, cyclist VARCHAR)
### question: what is the rank when heat is 9 and the nation is great britain? ### answer: SELECT SUM(rank) FROM table_name_21 WHERE heat = 9 AND nation = "great britain" ### context: CREATE TABLE table_name_21 (rank INTEGER, heat VARCHAR, nation VARCHAR)
### question: what is the result when the rank is 12? ### answer: SELECT result FROM table_name_13 WHERE rank = 12 ### context: CREATE TABLE table_name_13 (result VARCHAR, rank VARCHAR)
### question: Which competition had a year of 2010 with Snatch weight of 185kg? ### answer: SELECT competition FROM table_name_23 WHERE year = 2010 AND snatch = "185kg" ### context: CREATE TABLE table_name_23 (competition VARCHAR, year VARCHAR, snatch VARCHAR)
### question: What was the Snatch weight for the year that had a total of 409kg? ### answer: SELECT snatch FROM table_name_92 WHERE total = "409kg" ### context: CREATE TABLE table_name_92 (snatch VARCHAR, total VARCHAR)