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