training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_26967904_2 (chambering VARCHAR, f_bolt___kgf__ VARCHAR) ###human: What is the chambering for the 8339 f bolt ( kgf )? ###assistant: SELECT chambering FROM table_26967904_2 WHERE f_bolt___kgf__ = 8339
###context:CREATE TABLE table_26967904_2 (f_bolt VARCHAR, p1_diameter__mm_ VARCHAR) ###human: What is the f bolt for 11.35 p1 diameter (mm)? ###assistant: SELECT f_bolt FROM table_26967904_2 WHERE p1_diameter__mm_ = "11.35"
###context:CREATE TABLE table_26967904_2 (a_external__cm_2__ VARCHAR, chambering VARCHAR) ###human: How many external (cm 2 ) are there for the .338 lapua magnum chambering? ###assistant: SELECT COUNT(a_external__cm_2__) FROM table_26967904_2 WHERE chambering = ".338 Lapua Magnum"
###context:CREATE TABLE table_26967904_1 (chambering VARCHAR, f_bolt VARCHAR, p_max___bar__ VARCHAR) ###human: With what type of chambering is the F bolt n (lbf) and the P max (bar) 3900? ###assistant: SELECT chambering FROM table_26967904_1 WHERE f_bolt = "N (lbf)" AND p_max___bar__ = 3900
###context:CREATE TABLE table_26967904_1 (p_max___bar__ VARCHAR, p1_diameter__mm_ VARCHAR) ###human: What is the p max (bar) of the pistol with a P1 diameter of 9.70 mm? ###assistant: SELECT p_max___bar__ FROM table_26967904_1 WHERE p1_diameter__mm_ = "9.70"
###context:CREATE TABLE table_26967904_1 (p_max___bar__ INTEGER, chambering VARCHAR) ###human: What is the p max (bar) in the pistol where the chambering is .45 ACP? ###assistant: SELECT MAX(p_max___bar__) FROM table_26967904_1 WHERE chambering = ".45 ACP"
###context:CREATE TABLE table_26967904_1 (p_max___bar__ VARCHAR, p1_diameter__mm_ VARCHAR) ###human: What is the P max (bar) of the pistol with a P1 diameter of 12.09 mm? ###assistant: SELECT p_max___bar__ FROM table_26967904_1 WHERE p1_diameter__mm_ = "12.09"
###context:CREATE TABLE table_26976615_3 (incoming_manager VARCHAR, date_of_appointment VARCHAR) ###human: Who was the incoming manager for the date of appointment of 15 january 2011? ###assistant: SELECT incoming_manager FROM table_26976615_3 WHERE date_of_appointment = "15 January 2011"
###context:CREATE TABLE table_26976615_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) ###human: What is the date of appointment for the date of vacancy of 22 august 2010? ###assistant: SELECT date_of_appointment FROM table_26976615_3 WHERE date_of_vacancy = "22 August 2010"
###context:CREATE TABLE table_26976615_3 (outgoing_manager VARCHAR, team VARCHAR) ###human: Who was the outgoing manager for the team of târgu mureş? ###assistant: SELECT outgoing_manager FROM table_26976615_3 WHERE team = "Târgu Mureş"
###context:CREATE TABLE table_26976615_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) ###human: How many date of appointments are there when the date of vacancy was 2 october 2010? ###assistant: SELECT COUNT(date_of_appointment) FROM table_26976615_3 WHERE date_of_vacancy = "2 October 2010"
###context:CREATE TABLE table_26976615_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR) ###human: Who was the outgoing manager when the incoming manager was laurenţiu reghecampf? ###assistant: SELECT outgoing_manager FROM table_26976615_3 WHERE incoming_manager = "Laurenţiu Reghecampf"
###context:CREATE TABLE table_26976615_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) ###human: What was the manner of departure when the outgoing manager was andrea mandorlini? ###assistant: SELECT manner_of_departure FROM table_26976615_3 WHERE outgoing_manager = "Andrea Mandorlini"
###context:CREATE TABLE table_26980923_2 (capacity VARCHAR, team VARCHAR) ###human: What is the capacity for dundee united? ###assistant: SELECT capacity FROM table_26980923_2 WHERE team = "Dundee United"
###context:CREATE TABLE table_26980923_2 (total VARCHAR, stadium VARCHAR) ###human: What was the total attendance at rugby park? ###assistant: SELECT total FROM table_26980923_2 WHERE stadium = "Rugby Park"
###context:CREATE TABLE table_26980923_2 (total INTEGER, team VARCHAR) ###human: What is the total attended for kilmarnock? ###assistant: SELECT MIN(total) FROM table_26980923_2 WHERE team = "Kilmarnock"
###context:CREATE TABLE table_26986076_1 (mon_23_aug VARCHAR, fri_27_aug VARCHAR) ###human: How many times was the time 19' 38.87 115.219mph on Fri Aug 27? ###assistant: SELECT COUNT(mon_23_aug) FROM table_26986076_1 WHERE fri_27_aug = "19' 38.87 115.219mph"
###context:CREATE TABLE table_26986076_1 (fri_27_aug VARCHAR, tues_24_aug VARCHAR) ###human: If the time on Tues Aug 24 is 20' 49.46 108.709mph, what is the time on Fri Aug 27? ###assistant: SELECT fri_27_aug FROM table_26986076_1 WHERE tues_24_aug = "20' 49.46 108.709mph"
###context:CREATE TABLE table_26986076_1 (sat_21_aug VARCHAR, wed_25_aug VARCHAR) ###human: If Wed Aug 25 is —— no time, what is Sat aug 21? ###assistant: SELECT sat_21_aug FROM table_26986076_1 WHERE wed_25_aug = "—— No Time"
###context:CREATE TABLE table_26986076_1 (sat_28_aug VARCHAR, rank VARCHAR) ###human: If the Rank is 10, what was the time on Sat aug 28? ###assistant: SELECT sat_28_aug FROM table_26986076_1 WHERE rank = 10
###context:CREATE TABLE table_26986076_1 (sat_21_aug VARCHAR, thurs_26_aug VARCHAR) ###human: How many times was the time 20' 05.19 112.703mph on Thurs Aug 26th? ###assistant: SELECT COUNT(sat_21_aug) FROM table_26986076_1 WHERE thurs_26_aug = "20' 05.19 112.703mph"
###context:CREATE TABLE table_26986076_1 (sat_28_aug VARCHAR, wed_25_aug VARCHAR) ###human: If the time on Wed aug 25 was 20' 09.25 112.324mph, what was the time on sat Aug 28? ###assistant: SELECT sat_28_aug FROM table_26986076_1 WHERE wed_25_aug = "20' 09.25 112.324mph"
###context:CREATE TABLE table_26986076_2 (rank VARCHAR, tues_24_aug VARCHAR) ###human: How many times was tues 24 aug 19' 19.83 117.110mph? ###assistant: SELECT COUNT(rank) FROM table_26986076_2 WHERE tues_24_aug = "19' 19.83 117.110mph"
###context:CREATE TABLE table_26986076_2 (sat_29_aug VARCHAR, fri_27_aug VARCHAR) ###human: how many time is fri 27 aug 19' 38.87 115.219mph? ###assistant: SELECT COUNT(sat_29_aug) FROM table_26986076_2 WHERE fri_27_aug = "19' 38.87 115.219mph"
###context:CREATE TABLE table_26986076_2 (wed_25_aug VARCHAR, mon_23_aug VARCHAR) ###human: what is wed 25 aug when mon 23 aug is 26' 57.82 89.957mph? ###assistant: SELECT wed_25_aug FROM table_26986076_2 WHERE mon_23_aug = "26' 57.82 89.957mph"
###context:CREATE TABLE table_26986076_2 (thurs_26_aug VARCHAR, wed_25_aug VARCHAR) ###human: What is thurs 26 aug when wed 25 aug is 19' 59.98 113.192mph? ###assistant: SELECT thurs_26_aug FROM table_26986076_2 WHERE wed_25_aug = "19' 59.98 113.192mph"
###context:CREATE TABLE table_26986076_2 (mon_23_aug VARCHAR, fri_27_aug VARCHAR) ###human: what is mon 23 aug when fri 27 aug is 18' 59.25 119.226mph? ###assistant: SELECT mon_23_aug FROM table_26986076_2 WHERE fri_27_aug = "18' 59.25 119.226mph"
###context:CREATE TABLE table_26986076_5 (sat_21_aug VARCHAR, rank VARCHAR) ###human: When 8 is the rank what is the Saturday August 21st? ###assistant: SELECT sat_21_aug FROM table_26986076_5 WHERE rank = 8
###context:CREATE TABLE table_26986076_5 (tues_24_aug VARCHAR, fri_27_aug VARCHAR) ###human: When 20' 58.50 107.929mph is Friday August 27th What is Tuesday 24th August? ###assistant: SELECT tues_24_aug FROM table_26986076_5 WHERE fri_27_aug = "20' 58.50 107.929mph"
###context:CREATE TABLE table_26986076_5 (mon_23_aug VARCHAR, tues_24_aug VARCHAR) ###human: When 21' 18.87 106.209mph is Tuesday August 24th what is Monday August 23rd? ###assistant: SELECT mon_23_aug FROM table_26986076_5 WHERE tues_24_aug = "21' 18.87 106.209mph"
###context:CREATE TABLE table_26986076_5 (sat_29_aug VARCHAR, tues_24_aug VARCHAR) ###human: When 21' 10.25 106.930mph is Tuesday August 24th what is Saturday August 29th? ###assistant: SELECT sat_29_aug FROM table_26986076_5 WHERE tues_24_aug = "21' 10.25 106.930mph"
###context:CREATE TABLE table_26986076_5 (fri_27_aug VARCHAR, wed_25_aug VARCHAR) ###human: When 21' 05.83 107.304mph is Wednesday August 25th what is Friday August 27th? ###assistant: SELECT fri_27_aug FROM table_26986076_5 WHERE wed_25_aug = "21' 05.83 107.304mph"
###context:CREATE TABLE table_26986076_5 (mon_23_aug VARCHAR, rider VARCHAR) ###human: When tom snow 250cc honda is the rider what is Monday August 23rd? ###assistant: SELECT mon_23_aug FROM table_26986076_5 WHERE rider = "Tom Snow 250cc Honda"
###context:CREATE TABLE table_26982362_2 (directed_by VARCHAR, original_airdate VARCHAR) ###human: The episode with the original airdate October 8, 2010, is directed by who? ###assistant: SELECT directed_by FROM table_26982362_2 WHERE original_airdate = "October 8, 2010"
###context:CREATE TABLE table_26982362_2 (directed_by VARCHAR, production_code VARCHAR) ###human: Who directed the episode with production code 693-004? ###assistant: SELECT directed_by FROM table_26982362_2 WHERE production_code = "693-004"
###context:CREATE TABLE table_26982362_2 (original_airdate VARCHAR, production_code VARCHAR) ###human: The episode with production code 693-002, has how many original airdates? ###assistant: SELECT COUNT(original_airdate) FROM table_26982362_2 WHERE production_code = "693-002"
###context:CREATE TABLE table_26982362_2 (title VARCHAR, original_airdate VARCHAR) ###human: What is the title of the episode whose original airdate is April 23, 2010? ###assistant: SELECT title FROM table_26982362_2 WHERE original_airdate = "April 23, 2010"
###context:CREATE TABLE table_26986076_7 (rider VARCHAR, tues_24_aug VARCHAR) ###human: Who had the time of 22' 09.44 93.840mph on Tuesday August 24th? ###assistant: SELECT rider FROM table_26986076_7 WHERE tues_24_aug = "22' 09.44 93.840mph"
###context:CREATE TABLE table_269920_16 (l3_cache__mb_ VARCHAR, speed__ghz_ VARCHAR) ###human: What is the L3 cache for the processor having a speed of 2.93 GHz? ###assistant: SELECT l3_cache__mb_ FROM table_269920_16 WHERE speed__ghz_ = "2.93"
###context:CREATE TABLE table_269920_16 (cores VARCHAR, speed__ghz_ VARCHAR) ###human: How many entries have a speed of exactly 2.53 GHz? ###assistant: SELECT COUNT(cores) FROM table_269920_16 WHERE speed__ghz_ = "2.53"
###context:CREATE TABLE table_269920_16 (speed__ghz_ VARCHAR, model VARCHAR) ###human: What is the speed of the model whose number is W3540? ###assistant: SELECT speed__ghz_ FROM table_269920_16 WHERE model = "W3540"
###context:CREATE TABLE table_26986076_6 (wed_25_aug VARCHAR, fri_27_aug VARCHAR) ###human: What was the Weds 25 Aug time for the driver whose Aug 27 time was 22' 23.97 101.065mph? ###assistant: SELECT wed_25_aug FROM table_26986076_6 WHERE fri_27_aug = "22' 23.97 101.065mph"
###context:CREATE TABLE table_26986076_6 (sat_21_aug VARCHAR, thurs_26_aug VARCHAR) ###human: What was the Sat 21 Aug time for the driver whose Thurs 26 Aug time was 20' 56.01 108.143mph? ###assistant: SELECT sat_21_aug FROM table_26986076_6 WHERE thurs_26_aug = "20' 56.01 108.143mph"
###context:CREATE TABLE table_26986076_6 (sat_21_aug VARCHAR, tues_24_aug VARCHAR) ###human: What was the Sat 21 Aug time for the rider whose Tues 24 Aug time was 20' 38.40 109.680mph? ###assistant: SELECT sat_21_aug FROM table_26986076_6 WHERE tues_24_aug = "20' 38.40 109.680mph"
###context:CREATE TABLE table_269888_1 (area__km²_ VARCHAR, population__2010_ VARCHAR) ###human: Name the area for population of 53542 ###assistant: SELECT area__km²_ FROM table_269888_1 WHERE population__2010_ = 53542
###context:CREATE TABLE table_269888_1 (no_of_s_barangay VARCHAR, pop_density__per_km²_ VARCHAR) ###human: Name the number of barangay for 205.4 density ###assistant: SELECT no_of_s_barangay FROM table_269888_1 WHERE pop_density__per_km²_ = "205.4"
###context:CREATE TABLE table_269920_3 (fsb__mhz_ VARCHAR, model VARCHAR) ###human: How many different FSB are there for the 7140N model? ###assistant: SELECT COUNT(fsb__mhz_) FROM table_269920_3 WHERE model = "7140N"
###context:CREATE TABLE table_269920_3 (l2_cache__mb_ VARCHAR, model VARCHAR) ###human: How many different L2 cache numbers are there for the 7130M model? ###assistant: SELECT COUNT(l2_cache__mb_) FROM table_269920_3 WHERE model = "7130M"
###context:CREATE TABLE table_269920_3 (l2_cache__mb_ INTEGER) ###human: What's the maximal L3 cache for any of the models given? ###assistant: SELECT MAX(l2_cache__mb_) FROM table_269920_3
###context:CREATE TABLE table_269920_3 (tdp__w_ INTEGER, model VARCHAR) ###human: What's the TDP for the 7130N model? ###assistant: SELECT MIN(tdp__w_) FROM table_269920_3 WHERE model = "7130N"
###context:CREATE TABLE table_269920_3 (l2_cache__mb_ VARCHAR, model VARCHAR) ###human: What's the L2 cache for the 7140N model? ###assistant: SELECT l2_cache__mb_ FROM table_269920_3 WHERE model = "7140N"
###context:CREATE TABLE table_26996293_4 (cfl_team VARCHAR, college VARCHAR) ###human: what is the cfl team where college is waterloo? ###assistant: SELECT COUNT(cfl_team) FROM table_26996293_4 WHERE college = "Waterloo"
###context:CREATE TABLE table_26996293_1 (college VARCHAR, player VARCHAR) ###human: What college did Jim Bennett attend? ###assistant: SELECT college FROM table_26996293_1 WHERE player = "Jim Bennett"
###context:CREATE TABLE table_26996293_1 (cfl_team VARCHAR, player VARCHAR) ###human: What CFL Team was Barry Jamieson a part of? ###assistant: SELECT cfl_team FROM table_26996293_1 WHERE player = "Barry Jamieson"
###context:CREATE TABLE table_26996293_1 (college VARCHAR, position VARCHAR) ###human: What college did the player who played DE go to? ###assistant: SELECT college FROM table_26996293_1 WHERE position = "DE"
###context:CREATE TABLE table_26996293_1 (pick__number INTEGER, player VARCHAR) ###human: What was Barry Jamieson's pick number? ###assistant: SELECT MAX(pick__number) FROM table_26996293_1 WHERE player = "Barry Jamieson"
###context:CREATE TABLE table_26996293_1 (college VARCHAR, player VARCHAR) ###human: What college did Bob Larose attend? ###assistant: SELECT college FROM table_26996293_1 WHERE player = "Bob LaRose"
###context:CREATE TABLE table_26996293_2 (player VARCHAR, college VARCHAR) ###human: where college is british columbia what are all the player ###assistant: SELECT player FROM table_26996293_2 WHERE college = "British Columbia"
###context:CREATE TABLE table_26996293_2 (pick__number VARCHAR, college VARCHAR) ###human: where college is st. francis xavier what are all the pick # ###assistant: SELECT pick__number FROM table_26996293_2 WHERE college = "St. Francis Xavier"
###context:CREATE TABLE table_26996293_2 (position VARCHAR, player VARCHAR) ###human: player is jim henshall what are all the position ###assistant: SELECT position FROM table_26996293_2 WHERE player = "Jim Henshall"
###context:CREATE TABLE table_26996293_2 (position VARCHAR, cfl_team VARCHAR) ###human: where cfl team is edmonton (2) what are all the position ###assistant: SELECT position FROM table_26996293_2 WHERE cfl_team = "Edmonton (2)"
###context:CREATE TABLE table_26996293_2 (player VARCHAR, cfl_team VARCHAR) ###human: where cfl team is winnipeg (3) via hamilton what are all the player ###assistant: SELECT player FROM table_26996293_2 WHERE cfl_team = "Winnipeg (3) via Hamilton"
###context:CREATE TABLE table_26996293_3 (cfl_team VARCHAR, college VARCHAR) ###human: How many CFL teams drafted someone from mount allison college? ###assistant: SELECT COUNT(cfl_team) FROM table_26996293_3 WHERE college = "Mount Allison"
###context:CREATE TABLE table_26996293_3 (player VARCHAR, position VARCHAR) ###human: What player drafted was an OG? ###assistant: SELECT player FROM table_26996293_3 WHERE position = "OG"
###context:CREATE TABLE table_26996293_7 (position VARCHAR, player VARCHAR) ###human: What is the position of the player bill simmons? ###assistant: SELECT position FROM table_26996293_7 WHERE player = "Bill Simmons"
###context:CREATE TABLE table_26996293_7 (position VARCHAR, cfl_team VARCHAR) ###human: What is the position of cfl team saskatchewan (7)? ###assistant: SELECT position FROM table_26996293_7 WHERE cfl_team = "Saskatchewan (7)"
###context:CREATE TABLE table_26996293_7 (pick__number VARCHAR, player VARCHAR) ###human: How many times was player brian currie picked? ###assistant: SELECT COUNT(pick__number) FROM table_26996293_7 WHERE player = "Brian Currie"
###context:CREATE TABLE table_26996293_7 (position VARCHAR, pick__number VARCHAR) ###human: What position was pick # 54? ###assistant: SELECT position FROM table_26996293_7 WHERE pick__number = 54
###context:CREATE TABLE table_26996293_7 (pick__number VARCHAR, cfl_team VARCHAR) ###human: What is the pick # of cfl team bc lions (7) ###assistant: SELECT pick__number FROM table_26996293_7 WHERE cfl_team = "BC Lions (7)"
###context:CREATE TABLE table_26996293_7 (college VARCHAR, player VARCHAR) ###human: What is the college where player terry moss attended? ###assistant: SELECT college FROM table_26996293_7 WHERE player = "Terry Moss"
###context:CREATE TABLE table_26998135_2 (outgoing_manager VARCHAR, team VARCHAR) ###human: What is the outgoing manager for the team kasımpaşa? ###assistant: SELECT outgoing_manager FROM table_26998135_2 WHERE team = "Kasımpaşa"
###context:CREATE TABLE table_26998135_2 (replaced_by VARCHAR, date_of_vacancy VARCHAR) ###human: Who is the replaced by when the date of vacancy is 27 december 2010? ###assistant: SELECT replaced_by FROM table_26998135_2 WHERE date_of_vacancy = "27 December 2010"
###context:CREATE TABLE table_26998135_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) ###human: What is the manner of departure for the date of appointment 24 may 2010? ###assistant: SELECT manner_of_departure FROM table_26998135_2 WHERE date_of_appointment = "24 May 2010"
###context:CREATE TABLE table_26998135_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) ###human: What is the date of appointment when the outgoing manager was mustafa denizli? ###assistant: SELECT date_of_appointment FROM table_26998135_2 WHERE outgoing_manager = "Mustafa Denizli"
###context:CREATE TABLE table_26998135_2 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) ###human: What is the date of appointment when the date of vacancy is 15 march 2011? ###assistant: SELECT date_of_appointment FROM table_26998135_2 WHERE date_of_vacancy = "15 March 2011"
###context:CREATE TABLE table_27003223_4 (population INTEGER, democratic VARCHAR) ###human: What is the lowest population in which 28.0% are democrat? ###assistant: SELECT MIN(population) FROM table_27003223_4 WHERE democratic = "28.0%"
###context:CREATE TABLE table_27003223_4 (democratic VARCHAR, registered_voters VARCHAR) ###human: what is the percentage of democratic voters in which the registered voters is 67.8%? ###assistant: SELECT democratic FROM table_27003223_4 WHERE registered_voters = "67.8%"
###context:CREATE TABLE table_27003223_4 (registered_voters VARCHAR, d_r_spread VARCHAR) ###human: What is the percentage of registered voters in which the d-r spread is +10.4%? ###assistant: SELECT registered_voters FROM table_27003223_4 WHERE d_r_spread = "+10.4%"
###context:CREATE TABLE table_27003223_4 (registered_voters VARCHAR, d_r_spread VARCHAR) ###human: What is the percentage of registered voters in which the d-r spread is +14.3%? ###assistant: SELECT registered_voters FROM table_27003223_4 WHERE d_r_spread = "+14.3%"
###context:CREATE TABLE table_27003223_4 (republican VARCHAR, d_r_spread VARCHAR) ###human: What is the percentage of republican voters in which the d-r spread is -14.1%? ###assistant: SELECT republican FROM table_27003223_4 WHERE d_r_spread = "-14.1%"
###context:CREATE TABLE table_27003223_4 (no_party_preference VARCHAR, democratic VARCHAR) ###human: What is the percentage of "no party preference" where the democratic percentage is 24.8%? ###assistant: SELECT no_party_preference FROM table_27003223_4 WHERE democratic = "24.8%"
###context:CREATE TABLE table_27011761_2 (train_no VARCHAR, departure VARCHAR) ###human: How many trains depart at 17:30? ###assistant: SELECT COUNT(train_no) FROM table_27011761_2 WHERE departure = "17:30"
###context:CREATE TABLE table_27011761_2 (train_no VARCHAR, arrival VARCHAR) ###human: How many trains arrive at 11:00? ###assistant: SELECT COUNT(train_no) FROM table_27011761_2 WHERE arrival = "11:00"
###context:CREATE TABLE table_27003186_3 (no_party_preference VARCHAR, city VARCHAR) ###human: What is the no party preference when the city is murrieta? ###assistant: SELECT no_party_preference FROM table_27003186_3 WHERE city = "Murrieta"
###context:CREATE TABLE table_27003186_3 (no_party_preference VARCHAR, other VARCHAR) ###human: What is the no party preference when other is 10.1%? ###assistant: SELECT no_party_preference FROM table_27003186_3 WHERE other = "10.1%"
###context:CREATE TABLE table_27003186_3 (no_party_preference VARCHAR, republican VARCHAR) ###human: What is the no party preference when republican is 45.3%? ###assistant: SELECT no_party_preference FROM table_27003186_3 WHERE republican = "45.3%"
###context:CREATE TABLE table_27003186_3 (other VARCHAR, no_party_preference VARCHAR) ###human: What is other when no party preference is 19.1%? ###assistant: SELECT other FROM table_27003186_3 WHERE no_party_preference = "19.1%"
###context:CREATE TABLE table_27003186_3 (other VARCHAR, registered_voters VARCHAR) ###human: What is other when registered voters is 50.7%? ###assistant: SELECT other FROM table_27003186_3 WHERE registered_voters = "50.7%"
###context:CREATE TABLE table_27021001_1 (district VARCHAR, incumbent VARCHAR) ###human: What is the district with the incumbent Charlie Norwood? ###assistant: SELECT district FROM table_27021001_1 WHERE incumbent = "Charlie Norwood"
###context:CREATE TABLE table_27021001_1 (elected VARCHAR, incumbent VARCHAR) ###human: What is the year elected for incumbent Cynthia Mckinney? ###assistant: SELECT elected FROM table_27021001_1 WHERE incumbent = "Cynthia McKinney"
###context:CREATE TABLE table_27021001_1 (incumbent VARCHAR, result VARCHAR) ###human: How many incumbents were the result of sanford bishop (d) 57% joseph mccormick (r) 43%? ###assistant: SELECT COUNT(incumbent) FROM table_27021001_1 WHERE result = "Sanford Bishop (D) 57% Joseph McCormick (R) 43%"
###context:CREATE TABLE table_27021001_1 (status VARCHAR, district VARCHAR) ###human: What is the status for district georgia's 10th? ###assistant: SELECT status FROM table_27021001_1 WHERE district = "Georgia's 10th"
###context:CREATE TABLE table_27021001_1 (result VARCHAR, district VARCHAR) ###human: What is the result of districk georgia's 1st? ###assistant: SELECT result FROM table_27021001_1 WHERE district = "Georgia's 1st"
###context:CREATE TABLE table_27021001_1 (district VARCHAR, result VARCHAR) ###human: What is the district with the result mac collins (r) unopposed? ###assistant: SELECT district FROM table_27021001_1 WHERE result = "Mac Collins (R) unopposed"
###context:CREATE TABLE table_2701851_3 (title VARCHAR, production_code VARCHAR) ###human: how many times is the production code is 201a? ###assistant: SELECT COUNT(title) FROM table_2701851_3 WHERE production_code = "201a"
###context:CREATE TABLE table_2701625_1 (overall_rank INTEGER, country VARCHAR) ###human: Name the most overall rank for czech republic ###assistant: SELECT MAX(overall_rank) FROM table_2701625_1 WHERE country = "Czech Republic"
###context:CREATE TABLE table_2701625_1 (male_rank VARCHAR, country VARCHAR) ###human: Name the total number of male rank for fiji ###assistant: SELECT COUNT(male_rank) FROM table_2701625_1 WHERE country = "Fiji"
###context:CREATE TABLE table_2701625_1 (female_life_expectancy INTEGER, country VARCHAR) ###human: Name the most female life expectancy for djibouti ###assistant: SELECT MAX(female_life_expectancy) FROM table_2701625_1 WHERE country = "Djibouti"
###context:CREATE TABLE table_2701625_1 (female_life_expectancy INTEGER, overall_rank VARCHAR) ###human: Name the most female life expectancy for overall rank of 61 ###assistant: SELECT MAX(female_life_expectancy) FROM table_2701625_1 WHERE overall_rank = 61
###context:CREATE TABLE table_2701625_1 (male_life_expectancy INTEGER, country VARCHAR) ###human: Name the most male life expectancy for pakistan ###assistant: SELECT MAX(male_life_expectancy) FROM table_2701625_1 WHERE country = "Pakistan"