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