text stringlengths 114 1.06k |
|---|
### question: What is the School/Junior/Club Group (Class) that has a Nationality of canada, and a Place of goalie? ### answer: SELECT college_junior_club_team__league_ FROM table_name_69 WHERE nationality = "canada" AND position = "goalie" ### context: CREATE TABLE table_name_69 (college_junior_club_team__league_ VARC... |
### question: What is the Nationality for alexandre jacques? ### answer: SELECT nationality FROM table_name_2 WHERE player = "alexandre jacques" ### context: CREATE TABLE table_name_2 (nationality VARCHAR, player VARCHAR) |
### question: What is the highest Pick that is wide receiver with overall of 29? ### answer: SELECT MAX(pick__number) FROM table_name_60 WHERE position = "wide receiver" AND overall = 29 ### context: CREATE TABLE table_name_60 (pick__number INTEGER, position VARCHAR, overall VARCHAR) |
### question: What is the lowest Round with Overall of 247 and pick less than 41? ### answer: SELECT MIN(round) FROM table_name_39 WHERE overall = 247 AND pick__number < 41 ### context: CREATE TABLE table_name_39 (round INTEGER, overall VARCHAR, pick__number VARCHAR) |
### question: What is the Position with a round 3 pick for r. jay soward? ### answer: SELECT position FROM table_name_20 WHERE round < 3 AND name = "r. jay soward" ### context: CREATE TABLE table_name_20 (position VARCHAR, round VARCHAR, name VARCHAR) |
### question: What is the average Round for wide receiver r. jay soward and Overall smaller than 29? ### answer: SELECT AVG(round) FROM table_name_16 WHERE position = "wide receiver" AND name = "r. jay soward" AND overall < 29 ### context: CREATE TABLE table_name_16 (round INTEGER, overall VARCHAR, position VARCHAR, na... |
### question: Which Points is the lowest one that has Touchdowns smaller than 2, and an Extra points of 7, and a Field goals smaller than 0? ### answer: SELECT MIN(points) FROM table_name_85 WHERE touchdowns < 2 AND extra_points = 7 AND field_goals < 0 ### context: CREATE TABLE table_name_85 (points INTEGER, field_goal... |
### question: How many Touchdowns have a Player of rolla bigelow, and an Extra points smaller than 0? ### answer: SELECT SUM(touchdowns) FROM table_name_33 WHERE player = "rolla bigelow" AND extra_points < 0 ### context: CREATE TABLE table_name_33 (touchdowns INTEGER, player VARCHAR, extra_points VARCHAR) |
### question: Which Longi- tude is on jun 6? ### answer: SELECT longi__tude FROM table_name_28 WHERE date_³ = "jun 6" ### context: CREATE TABLE table_name_28 (longi__tude VARCHAR, date_³ VARCHAR) |
### question: When has a Korean name ² of 청명 (清明) cheongmyeong? ### answer: SELECT date_³ FROM table_name_88 WHERE korean_name_² = "청명 (清明) cheongmyeong" ### context: CREATE TABLE table_name_88 (date_³ VARCHAR, korean_name_² VARCHAR) |
### question: WHICH Vietnamese name has a Chinese name ¹ of 芒種 (芒种) mángzhòng? ### answer: SELECT vietnamese_name FROM table_name_23 WHERE chinese_name_¹ = "芒種 (芒种) mángzhòng" ### context: CREATE TABLE table_name_23 (vietnamese_name VARCHAR, chinese_name_¹ VARCHAR) |
### question: WHICH Usual translation is on jun 21? ### answer: SELECT usual_translation FROM table_name_98 WHERE date_³ = "jun 21" ### context: CREATE TABLE table_name_98 (usual_translation VARCHAR, date_³ VARCHAR) |
### question: Which Japanese name has a Korean name ² of 경칩 (驚蟄) gyeongchip? ### answer: SELECT japanese_name FROM table_name_8 WHERE korean_name_² = "경칩 (驚蟄) gyeongchip" ### context: CREATE TABLE table_name_8 (japanese_name VARCHAR, korean_name_² VARCHAR) |
### question: WHich Usual translation is on sep 23? ### answer: SELECT usual_translation FROM table_name_80 WHERE date_³ = "sep 23" ### context: CREATE TABLE table_name_80 (usual_translation VARCHAR, date_³ VARCHAR) |
### question: What is the average Week for the game at three rivers stadium, with a Record of 3–2? ### answer: SELECT AVG(week) FROM table_name_44 WHERE location = "three rivers stadium" AND record = "3–2" ### context: CREATE TABLE table_name_44 (week INTEGER, location VARCHAR, record VARCHAR) |
### question: What is the result of the game at three rivers stadium with a Record of 6–3? ### answer: SELECT result FROM table_name_20 WHERE location = "three rivers stadium" AND record = "6–3" ### context: CREATE TABLE table_name_20 (result VARCHAR, location VARCHAR, record VARCHAR) |
### question: What is the earliest week that shows a record of 8–5? ### answer: SELECT MIN(week) FROM table_name_40 WHERE record = "8–5" ### context: CREATE TABLE table_name_40 (week INTEGER, record VARCHAR) |
### question: What is the record of the game that has a result of w 45–17? ### answer: SELECT record FROM table_name_31 WHERE result = "w 45–17" ### context: CREATE TABLE table_name_31 (record VARCHAR, result VARCHAR) |
### question: What week that shows a game record of 0–1? ### answer: SELECT AVG(week) FROM table_name_94 WHERE record = "0–1" ### context: CREATE TABLE table_name_94 (week INTEGER, record VARCHAR) |
### question: Which driver has less than 37 wins and at 14.12%? ### answer: SELECT AVG(entries) FROM table_name_64 WHERE wins < 37 AND percentage = "14.12%" ### context: CREATE TABLE table_name_64 (entries INTEGER, wins VARCHAR, percentage VARCHAR) |
### question: Which driver has 162 entries? ### answer: SELECT driver FROM table_name_74 WHERE entries = 162 ### context: CREATE TABLE table_name_74 (driver VARCHAR, entries VARCHAR) |
### question: Which season did jackie stewart enter with entries less than 215? ### answer: SELECT seasons FROM table_name_67 WHERE entries < 215 AND driver = "jackie stewart" ### context: CREATE TABLE table_name_67 (seasons VARCHAR, entries VARCHAR, driver VARCHAR) |
### question: How many ERP W is it that has a Call sign of w273bs? ### answer: SELECT SUM(erp_w) FROM table_name_40 WHERE call_sign = "w273bs" ### context: CREATE TABLE table_name_40 (erp_w INTEGER, call_sign VARCHAR) |
### question: Which City of license has a Frequency MHz smaller than 100.9, and a ERP W larger than 100? ### answer: SELECT city_of_license FROM table_name_45 WHERE frequency_mhz < 100.9 AND erp_w > 100 ### context: CREATE TABLE table_name_45 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) |
### question: What is the number of Frequency MHz in woodstock, georgia? ### answer: SELECT SUM(frequency_mhz) FROM table_name_91 WHERE city_of_license = "woodstock, georgia" ### context: CREATE TABLE table_name_91 (frequency_mhz INTEGER, city_of_license VARCHAR) |
### question: What is the lowest ERP W of w223bp? ### answer: SELECT MIN(erp_w) FROM table_name_6 WHERE call_sign = "w223bp" ### context: CREATE TABLE table_name_6 (erp_w INTEGER, call_sign VARCHAR) |
### question: What was the highest points where there were less than 2 drawn and the games were less than 6? ### answer: SELECT MAX(points) FROM table_name_26 WHERE drawn < 2 AND games < 6 ### context: CREATE TABLE table_name_26 (points INTEGER, drawn VARCHAR, games VARCHAR) |
### question: What is the license plate code for the country with an area of 784? ### answer: SELECT license_plate_code FROM table_name_52 WHERE area__sqmi_ = 784 ### context: CREATE TABLE table_name_52 (license_plate_code VARCHAR, area__sqmi_ VARCHAR) |
### question: What is the country seat for the license plate code 5c? ### answer: SELECT county AS seat FROM table_name_72 WHERE license_plate_code = "5c" ### context: CREATE TABLE table_name_72 (county VARCHAR, license_plate_code VARCHAR) |
### question: Which Pada 3 has a Pada 1 of टे te? ### answer: SELECT pada_3 FROM table_name_41 WHERE pada_1 = "टे te" ### context: CREATE TABLE table_name_41 (pada_3 VARCHAR, pada_1 VARCHAR) |
### question: which Pada 4 has a Pada 2 of थ tha? ### answer: SELECT pada_4 FROM table_name_32 WHERE pada_2 = "थ tha" ### context: CREATE TABLE table_name_32 (pada_4 VARCHAR, pada_2 VARCHAR) |
### question: which Pada 3 has a Pada 2 of चे che? ### answer: SELECT pada_3 FROM table_name_27 WHERE pada_2 = "चे che" ### context: CREATE TABLE table_name_27 (pada_3 VARCHAR, pada_2 VARCHAR) |
### question: What is the Name of ङ ng/na? ### answer: SELECT name FROM table_name_87 WHERE pada_3 = "ङ ng/na" ### context: CREATE TABLE table_name_87 (name VARCHAR, pada_3 VARCHAR) |
### question: What kind of Pada 4 has a Pada 1 of खी ju/khi? ### answer: SELECT pada_4 FROM table_name_90 WHERE pada_1 = "खी ju/khi" ### context: CREATE TABLE table_name_90 (pada_4 VARCHAR, pada_1 VARCHAR) |
### question: What kind of Pada 1 has a Pada 2 of सा sa? ### answer: SELECT pada_1 FROM table_name_8 WHERE pada_2 = "सा sa" ### context: CREATE TABLE table_name_8 (pada_1 VARCHAR, pada_2 VARCHAR) |
### question: Name the points classification for stage of 18b ### answer: SELECT points_classification FROM table_name_86 WHERE stage = "18b" ### context: CREATE TABLE table_name_86 (points_classification VARCHAR, stage VARCHAR) |
### question: Name the points classification of stage 16 ### answer: SELECT points_classification FROM table_name_31 WHERE stage = "16" ### context: CREATE TABLE table_name_31 (points_classification VARCHAR, stage VARCHAR) |
### question: What is the round of the match with Emanuel Newton as the opponent? ### answer: SELECT round FROM table_name_70 WHERE opponent = "emanuel newton" ### context: CREATE TABLE table_name_70 (round VARCHAR, opponent VARCHAR) |
### question: What is the location of the match with Aron Lofton as the opponent? ### answer: SELECT location FROM table_name_29 WHERE opponent = "aron lofton" ### context: CREATE TABLE table_name_29 (location VARCHAR, opponent VARCHAR) |
### question: What is the location of the match with an event of ecc 8: comeback? ### answer: SELECT location FROM table_name_49 WHERE event = "ecc 8: comeback" ### context: CREATE TABLE table_name_49 (location VARCHAR, event VARCHAR) |
### question: Who is the opponent of the match with a win result and a time of 3:02? ### answer: SELECT opponent FROM table_name_13 WHERE res = "win" AND time = "3:02" ### context: CREATE TABLE table_name_13 (opponent VARCHAR, res VARCHAR, time VARCHAR) |
### question: What is the method of the match with 1 round and a time of 1:58? ### answer: SELECT method FROM table_name_60 WHERE round = 1 AND time = "1:58" ### context: CREATE TABLE table_name_60 (method VARCHAR, round VARCHAR, time VARCHAR) |
### question: How many people attended the game on September 19, 1976? ### answer: SELECT COUNT(attendance) FROM table_name_29 WHERE date = "september 19, 1976" ### context: CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR) |
### question: What is the lowest week number where they played against the Detroit Lions? ### answer: SELECT MIN(week) FROM table_name_94 WHERE opponent = "detroit lions" ### context: CREATE TABLE table_name_94 (week INTEGER, opponent VARCHAR) |
### question: What is the average attendance for the game on September 26, 1976? ### answer: SELECT AVG(attendance) FROM table_name_48 WHERE date = "september 26, 1976" ### context: CREATE TABLE table_name_48 (attendance INTEGER, date VARCHAR) |
### question: Which pick has a school/club team that is kentucky? ### answer: SELECT pick FROM table_name_26 WHERE school_club_team = "kentucky" ### context: CREATE TABLE table_name_26 (pick VARCHAR, school_club_team VARCHAR) |
### question: Which player is it that has a pick of 147? ### answer: SELECT player FROM table_name_22 WHERE pick = "147" ### context: CREATE TABLE table_name_22 (player VARCHAR, pick VARCHAR) |
### question: Which round has a position that is cornerback? ### answer: SELECT round FROM table_name_19 WHERE position = "cornerback" ### context: CREATE TABLE table_name_19 (round VARCHAR, position VARCHAR) |
### question: What is the height of the building named 555 17th street? ### answer: SELECT height_ft___m FROM table_name_77 WHERE name = "555 17th street" ### context: CREATE TABLE table_name_77 (height_ft___m VARCHAR, name VARCHAR) |
### question: What is the height of the building with 40 floors? ### answer: SELECT height_ft___m FROM table_name_77 WHERE floors = 40 ### context: CREATE TABLE table_name_77 (height_ft___m VARCHAR, floors VARCHAR) |
### question: What is the per capital income for Charles county? ### answer: SELECT per_capita_income FROM table_name_9 WHERE county = "charles" ### context: CREATE TABLE table_name_9 (per_capita_income VARCHAR, county VARCHAR) |
### question: What is the per capital income for Washington county? ### answer: SELECT per_capita_income FROM table_name_12 WHERE county = "washington" ### context: CREATE TABLE table_name_12 (per_capita_income VARCHAR, county VARCHAR) |
### question: what builder is now retired ### answer: SELECT pennant_number FROM table_name_20 WHERE current_status = "retired" ### context: CREATE TABLE table_name_20 (pennant_number VARCHAR, current_status VARCHAR) |
### question: what builder launched the name minerva ### answer: SELECT launched FROM table_name_97 WHERE name = "minerva" ### context: CREATE TABLE table_name_97 (launched VARCHAR, name VARCHAR) |
### question: what is the name of the builder who launched in danaide ### answer: SELECT launched FROM table_name_97 WHERE name = "danaide" ### context: CREATE TABLE table_name_97 (launched VARCHAR, name VARCHAR) |
### question: How many wins did he have when he played under 2 events? ### answer: SELECT COUNT(wins) FROM table_name_22 WHERE events < 2 ### context: CREATE TABLE table_name_22 (wins VARCHAR, events INTEGER) |
### question: What is his highest number of top 25s when eh played over 2 events and under 0 wins? ### answer: SELECT MAX(top_25) FROM table_name_28 WHERE events > 2 AND wins < 0 ### context: CREATE TABLE table_name_28 (top_25 INTEGER, events VARCHAR, wins VARCHAR) |
### question: What is his low win total when he has over 3 top 25s and under 9 cuts made? ### answer: SELECT MIN(wins) FROM table_name_95 WHERE top_25 = 3 AND cuts_made < 9 ### context: CREATE TABLE table_name_95 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR) |
### question: What opponent had an attendance of 10,089? ### answer: SELECT opponent FROM table_name_11 WHERE attendance = "10,089" ### context: CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR) |
### question: What was the score of the game against the Braves with a record of 41–27? ### answer: SELECT score FROM table_name_25 WHERE opponent = "braves" AND record = "41–27" ### context: CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, record VARCHAR) |
### question: Who was the opponent for the match were the outcome was runner-up and the score was 5-7, 1-6? ### answer: SELECT opponent FROM table_name_79 WHERE outcome = "runner-up" AND score = "5-7, 1-6" ### context: CREATE TABLE table_name_79 (opponent VARCHAR, outcome VARCHAR, score VARCHAR) |
### question: What was the outcome of the match against Stacy Margolin? ### answer: SELECT outcome FROM table_name_79 WHERE opponent = "stacy margolin" ### context: CREATE TABLE table_name_79 (outcome VARCHAR, opponent VARCHAR) |
### question: What was the score of the match against duk-hee lee? ### answer: SELECT score FROM table_name_43 WHERE opponent = "duk-hee lee" ### context: CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR) |
### question: How many Points have a Rank of 17th, and Wins larger than 0? ### answer: SELECT COUNT(points) FROM table_name_29 WHERE rank = "17th" AND wins > 0 ### context: CREATE TABLE table_name_29 (points VARCHAR, rank VARCHAR, wins VARCHAR) |
### question: Which Wins have a Class of 500cc, and a Year smaller than 1975? ### answer: SELECT wins FROM table_name_46 WHERE class = "500cc" AND year < 1975 ### context: CREATE TABLE table_name_46 (wins VARCHAR, class VARCHAR, year VARCHAR) |
### question: Which Wins is the highest one that has a Class of 500cc, and Points smaller than 6? ### answer: SELECT MAX(wins) FROM table_name_99 WHERE class = "500cc" AND points < 6 ### context: CREATE TABLE table_name_99 (wins INTEGER, class VARCHAR, points VARCHAR) |
### question: Which Points is the lowest one that has a Year larger than 1974, and a Rank of 15th? ### answer: SELECT MIN(points) FROM table_name_75 WHERE year > 1974 AND rank = "15th" ### context: CREATE TABLE table_name_75 (points INTEGER, year VARCHAR, rank VARCHAR) |
### question: Frequency MHz of 88.7 had what average erp w? ### answer: SELECT AVG(erp_w) FROM table_name_50 WHERE frequency_mhz = 88.7 ### context: CREATE TABLE table_name_50 (erp_w INTEGER, frequency_mhz VARCHAR) |
### question: Frequency MHz smaller than 95.3, and a Call sign of k234ag is what class? ### answer: SELECT class FROM table_name_69 WHERE frequency_mhz < 95.3 AND call_sign = "k234ag" ### context: CREATE TABLE table_name_69 (class VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR) |
### question: Call sign of k231bg has what sum of erp w? ### answer: SELECT SUM(erp_w) FROM table_name_30 WHERE call_sign = "k231bg" ### context: CREATE TABLE table_name_30 (erp_w INTEGER, call_sign VARCHAR) |
### question: Class of d, and a Frequency MHz smaller than 107.7, and a ERP W smaller than 232 has what call sign? ### answer: SELECT call_sign FROM table_name_24 WHERE class = "d" AND frequency_mhz < 107.7 AND erp_w < 232 ### context: CREATE TABLE table_name_24 (call_sign VARCHAR, erp_w VARCHAR, class VARCHAR, frequen... |
### question: ERP W that has a Class of d, and a Call sign of k299ar is what total number? ### answer: SELECT COUNT(erp_w) FROM table_name_84 WHERE class = "d" AND call_sign = "k299ar" ### context: CREATE TABLE table_name_84 (erp_w VARCHAR, class VARCHAR, call_sign VARCHAR) |
### question: Name the date for loss of ruffin (3-5) ### answer: SELECT date FROM table_name_44 WHERE loss = "ruffin (3-5)" ### context: CREATE TABLE table_name_44 (date VARCHAR, loss VARCHAR) |
### question: Name the date with loss of carman (3-12) ### answer: SELECT date FROM table_name_59 WHERE loss = "carman (3-12)" ### context: CREATE TABLE table_name_59 (date VARCHAR, loss VARCHAR) |
### question: Name the score for save of lancaster (3) ### answer: SELECT score FROM table_name_7 WHERE save = "lancaster (3)" ### context: CREATE TABLE table_name_7 (score VARCHAR, save VARCHAR) |
### question: Name the opponent with loss of sanderson (9-8) ### answer: SELECT opponent FROM table_name_80 WHERE loss = "sanderson (9-8)" ### context: CREATE TABLE table_name_80 (opponent VARCHAR, loss VARCHAR) |
### question: Which game has the highest score in October with 9? ### answer: SELECT MAX(october) FROM table_name_41 WHERE game = 9 ### context: CREATE TABLE table_name_41 (october INTEGER, game VARCHAR) |
### question: What was the average game with a record of 4-4-0? ### answer: SELECT AVG(game) FROM table_name_58 WHERE record = "4-4-0" ### context: CREATE TABLE table_name_58 (game INTEGER, record VARCHAR) |
### question: What was the literacy rate published in the 2001 census for the state that saw a 12.66% increase? ### answer: SELECT literacy_rate___percentage____2001_census FROM table_name_80 WHERE _percentage_increase = "12.66%" ### context: CREATE TABLE table_name_80 (literacy_rate___percentage____2001_census VARCHAR... |
### question: Who earned the save in the game against the Sinon Bulls when Jeriome Robertson took the loss? ### answer: SELECT save FROM table_name_32 WHERE opponent = "sinon bulls" AND loss = "jeriome robertson" ### context: CREATE TABLE table_name_32 (save VARCHAR, opponent VARCHAR, loss VARCHAR) |
### question: what number of people went to the tiger stadium ### answer: SELECT result FROM table_name_89 WHERE venue = "tiger stadium" ### context: CREATE TABLE table_name_89 (result VARCHAR, venue VARCHAR) |
### question: What is the undecided percentage of the poll where Goldberg had 6%? ### answer: SELECT undecided FROM table_name_51 WHERE goldberg = "6%" ### context: CREATE TABLE table_name_51 (undecided VARCHAR, goldberg VARCHAR) |
### question: What is the date of the poll where Murray had 11% from the Suffolk University source? ### answer: SELECT date FROM table_name_1 WHERE source = "suffolk university" AND murray = "11%" ### context: CREATE TABLE table_name_1 (date VARCHAR, source VARCHAR, murray VARCHAR) |
### question: What is the undecided percentage of the poll from Suffolk University with Murray at 11%? ### answer: SELECT undecided FROM table_name_80 WHERE source = "suffolk university" AND murray = "11%" ### context: CREATE TABLE table_name_80 (undecided VARCHAR, source VARCHAR, murray VARCHAR) |
### question: What is the date of the poll with Silbert at 18%? ### answer: SELECT date FROM table_name_53 WHERE silbert = "18%" ### context: CREATE TABLE table_name_53 (date VARCHAR, silbert VARCHAR) |
### question: What is the date of the poll with Silbert at 10.0%? ### answer: SELECT date FROM table_name_48 WHERE silbert = "10.0%" ### context: CREATE TABLE table_name_48 (date VARCHAR, silbert VARCHAR) |
### question: What is the date of the poll with Goldberg at 26%? ### answer: SELECT date FROM table_name_12 WHERE goldberg = "26%" ### context: CREATE TABLE table_name_12 (date VARCHAR, goldberg VARCHAR) |
### question: What is the smallest number of tries with conversions more than 0? ### answer: SELECT MIN(tries) FROM table_name_22 WHERE conversions > 0 ### context: CREATE TABLE table_name_22 (tries INTEGER, conversions INTEGER) |
### question: What is the average number of tries for British and Irish Lions with less than 2 games? ### answer: SELECT AVG(tries) FROM table_name_82 WHERE team = "british and irish lions" AND games < 2 ### context: CREATE TABLE table_name_82 (tries INTEGER, team VARCHAR, games VARCHAR) |
### question: What is the average number of conversions for the Cardiff Blues with less than 14 tries? ### answer: SELECT AVG(conversions) FROM table_name_91 WHERE team = "cardiff blues" AND tries < 14 ### context: CREATE TABLE table_name_91 (conversions INTEGER, team VARCHAR, tries VARCHAR) |
### question: What is the Median family income when the Median household income is $38,137? ### answer: SELECT median_family_income FROM table_name_8 WHERE median_household_income = "$38,137" ### context: CREATE TABLE table_name_8 (median_family_income VARCHAR, median_household_income VARCHAR) |
### question: What County has a Median household income of $46,872? ### answer: SELECT county FROM table_name_36 WHERE median_household_income = "$46,872" ### context: CREATE TABLE table_name_36 (county VARCHAR, median_household_income VARCHAR) |
### question: What is the average number of field goals scored by a right halfback who had more than 3 touchdowns? ### answer: SELECT AVG(field_goals) FROM table_name_80 WHERE position = "right halfback" AND touchdowns > 3 ### context: CREATE TABLE table_name_80 (field_goals INTEGER, position VARCHAR, touchdowns VARCHA... |
### question: What is the week of the game played on November 28, 1974? ### answer: SELECT MIN(week) FROM table_name_94 WHERE date = "november 28, 1974" ### context: CREATE TABLE table_name_94 (week INTEGER, date VARCHAR) |
### question: What Year was james mcclure Deputy, and the Name is robert mcphearson? ### answer: SELECT year FROM table_name_44 WHERE deputy = "james mcclure" AND name = "robert mcphearson" ### context: CREATE TABLE table_name_44 (year VARCHAR, deputy VARCHAR, name VARCHAR) |
### question: What is the name of the Deputy when the Name was elizabeth black? ### answer: SELECT deputy FROM table_name_88 WHERE name = "elizabeth black" ### context: CREATE TABLE table_name_88 (deputy VARCHAR, name VARCHAR) |
### question: What is the Name for 1997–99? ### answer: SELECT name FROM table_name_76 WHERE year = "1997–99" ### context: CREATE TABLE table_name_76 (name VARCHAR, year VARCHAR) |
### question: What is the Political affiliation of deputy john dallat? ### answer: SELECT political_affiliation FROM table_name_39 WHERE deputy = "john dallat" ### context: CREATE TABLE table_name_39 (political_affiliation VARCHAR, deputy VARCHAR) |
### question: What is the name of the deputy in 1992–93? ### answer: SELECT deputy FROM table_name_41 WHERE year = "1992–93" ### context: CREATE TABLE table_name_41 (deputy VARCHAR, year VARCHAR) |
### question: How many civil liberties 2013 values are associated with a 2010 political rights value of 6, civil liberties 2012 values over 5, and political rights 2011 under 6? ### answer: SELECT COUNT(civil_liberties_2013) FROM table_name_42 WHERE political_rights_2010 = 6 AND civil_liberties_2012 > 5 AND political_r... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.