Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
7,800 | <question>: What song was used resulting in the bottom 3? <context>: CREATE TABLE table_26250176_1 (song_choice VARCHAR, result VARCHAR) | SELECT song_choice FROM table_26250176_1 WHERE result = "Bottom 3" |
7,801 | <question>: What is the theme for Audition week? <context>: CREATE TABLE table_26250176_1 (theme VARCHAR, week__number VARCHAR) | SELECT theme FROM table_26250176_1 WHERE week__number = "Audition" |
7,802 | <question>: What was the results for top 12? <context>: CREATE TABLE table_26250176_1 (result VARCHAR, week__number VARCHAR) | SELECT result FROM table_26250176_1 WHERE week__number = "Top 12" |
7,803 | <question>: Who was the original artist for First Solo? <context>: CREATE TABLE table_26250176_1 (original_artist VARCHAR, theme VARCHAR) | SELECT original_artist FROM table_26250176_1 WHERE theme = "First Solo" |
7,804 | <question>: Which episode is #4? <context>: CREATE TABLE table_26250218_1 (episode VARCHAR, order__number VARCHAR) | SELECT episode FROM table_26250218_1 WHERE order__number = "4" |
7,805 | <question>: What is every year for joined with the Ravens nickname? <context>: CREATE TABLE table_262514_1 (joined VARCHAR, nickname VARCHAR) | SELECT joined FROM table_262514_1 WHERE nickname = "Ravens" |
7,806 | <question>: What is every institution with a nickname of Ravens? <context>: CREATE TABLE table_262514_1 (institution VARCHAR, nickname VARCHAR) | SELECT institution FROM table_262514_1 WHERE nickname = "Ravens" |
7,807 | <question>: how many revised hepburn when english is roman characters <context>: CREATE TABLE table_26263954_1 (revised_hepburn VARCHAR, english VARCHAR) | SELECT revised_hepburn FROM table_26263954_1 WHERE english = "Roman characters" |
7,808 | <question>: when chiji is revised hepburn what are all the english <context>: CREATE TABLE table_26263954_1 (english VARCHAR, revised_hepburn VARCHAR) | SELECT english FROM table_26263954_1 WHERE revised_hepburn = "chiji" |
7,809 | <question>: how many number of english when kunrei-shiki is otya <context>: CREATE TABLE table_26263954_1 (english VARCHAR, kunrei_shiki VARCHAR) | SELECT COUNT(english) FROM table_26263954_1 WHERE kunrei_shiki = "otya" |
7,810 | <question>: how many kana spelling when english is mount fuji <context>: CREATE TABLE table_26263954_1 (kana_spelling VARCHAR, english VARCHAR) | SELECT kana_spelling FROM table_26263954_1 WHERE english = "Mount Fuji" |
7,811 | <question>: when english is tea how many nihon-shiki <context>: CREATE TABLE table_26263954_1 (nihon_shiki VARCHAR, english VARCHAR) | SELECT nihon_shiki FROM table_26263954_1 WHERE english = "tea" |
7,812 | <question>: What was the original airdate of the episode with production number 2x03? <context>: CREATE TABLE table_26293875_3 (original_airdate VARCHAR, prod_no VARCHAR) | SELECT original_airdate FROM table_26293875_3 WHERE prod_no = "2x03" |
7,813 | <question>: How many episodes had production number 2x13? <context>: CREATE TABLE table_26293875_3 (season__number VARCHAR, prod_no VARCHAR) | SELECT COUNT(season__number) FROM table_26293875_3 WHERE prod_no = "2x13" |
7,814 | <question>: How many different kickoffs happened when the oppenent was at Rhein Fire? <context>: CREATE TABLE table_26275503_2 (kickoff VARCHAR, opponent VARCHAR) | SELECT COUNT(kickoff) FROM table_26275503_2 WHERE opponent = "at Rhein Fire" |
7,815 | <question>: How many different kickoffs happened when the opponent was the Scottish Claymores <context>: CREATE TABLE table_26275503_2 (kickoff VARCHAR, opponent VARCHAR) | SELECT COUNT(kickoff) FROM table_26275503_2 WHERE opponent = "Scottish Claymores" |
7,816 | <question>: What is the lowest enrollment for Eastern Michigan University? <context>: CREATE TABLE table_26351260_1 (enrollment INTEGER, institution VARCHAR) | SELECT MIN(enrollment) FROM table_26351260_1 WHERE institution = "Eastern Michigan University" |
7,817 | <question>: What is Kent State University's team nickname? <context>: CREATE TABLE table_26351260_1 (team_nickname VARCHAR, institution VARCHAR) | SELECT team_nickname FROM table_26351260_1 WHERE institution = "Kent State University" |
7,818 | <question>: How many Kent State University's are there? <context>: CREATE TABLE table_26351260_1 (location VARCHAR, institution VARCHAR) | SELECT COUNT(location) FROM table_26351260_1 WHERE institution = "Kent State University" |
7,819 | <question>: How many school teams are nicknamed "Bulldogs". <context>: CREATE TABLE table_26351260_1 (location VARCHAR, team_nickname VARCHAR) | SELECT location FROM table_26351260_1 WHERE team_nickname = "Bulldogs" |
7,820 | <question>: If the public is 4, what is the total? <context>: CREATE TABLE table_26375386_17 (total VARCHAR, public VARCHAR) | SELECT total FROM table_26375386_17 WHERE public = 4 |
7,821 | <question>: How many results where given for the vote percentage 3.1%? <context>: CREATE TABLE table_26375386_17 (result VARCHAR, vote_percentage VARCHAR) | SELECT COUNT(result) FROM table_26375386_17 WHERE vote_percentage = "3.1%" |
7,822 | <question>: What couple had a vote percentage of 5.2%? <context>: CREATE TABLE table_26375386_17 (couple VARCHAR, vote_percentage VARCHAR) | SELECT couple FROM table_26375386_17 WHERE vote_percentage = "5.2%" |
7,823 | <question>: What was the vote % of Heather and Matt? <context>: CREATE TABLE table_26375386_18 (vote_percentage VARCHAR, couple VARCHAR) | SELECT vote_percentage FROM table_26375386_18 WHERE couple = "Heather and Matt" |
7,824 | <question>: Who was the couple on the bottom two? <context>: CREATE TABLE table_26375386_18 (couple VARCHAR, result VARCHAR) | SELECT couple FROM table_26375386_18 WHERE result = "Bottom two" |
7,825 | <question>: WHat was the max public with danniella and matthew? <context>: CREATE TABLE table_26375386_18 (public INTEGER, couple VARCHAR) | SELECT MAX(public) FROM table_26375386_18 WHERE couple = "Danniella and Matthew" |
7,826 | <question>: If the overall viewers were 1.83 millions, what was the overall market share? <context>: CREATE TABLE table_2639433_4 (market_share__overall_ VARCHAR, viewers__in_millions_overall_ VARCHAR) | SELECT market_share__overall_ FROM table_2639433_4 WHERE viewers__in_millions_overall_ = "1.83" |
7,827 | <question>: If the episode was number 234, what was it's timeslot? <context>: CREATE TABLE table_2639433_4 (timeslot VARCHAR, episodes VARCHAR) | SELECT timeslot FROM table_2639433_4 WHERE episodes = 234 |
7,828 | <question>: What episode came out in the year 2007? <context>: CREATE TABLE table_2639433_4 (episodes VARCHAR, year VARCHAR) | SELECT episodes FROM table_2639433_4 WHERE year = 2007 |
7,829 | <question>: What was the timeslot for the episode in the year 2008? <context>: CREATE TABLE table_2639433_4 (timeslot VARCHAR, year VARCHAR) | SELECT timeslot FROM table_2639433_4 WHERE year = 2008 |
7,830 | <question>: How many times was the viewer target group 0.63? <context>: CREATE TABLE table_2639433_4 (market_share__target_group_14_49_ VARCHAR, viewers__in_millions_target_group_14_49_ VARCHAR) | SELECT COUNT(market_share__target_group_14_49_) FROM table_2639433_4 WHERE viewers__in_millions_target_group_14_49_ = "0.63" |
7,831 | <question>: Name the role for pick number 17 <context>: CREATE TABLE table_26397277_3 (role_s_ VARCHAR, pick__number VARCHAR) | SELECT role_s_ FROM table_26397277_3 WHERE pick__number = 17 |
7,832 | <question>: Name the brand for pick number 15 <context>: CREATE TABLE table_26397277_3 (brand__to_ VARCHAR, pick__number VARCHAR) | SELECT brand__to_ FROM table_26397277_3 WHERE pick__number = 15 |
7,833 | <question>: Name the employee real name for raw and superstar <context>: CREATE TABLE table_26397277_3 (employee__real_name_ VARCHAR, brand__from_ VARCHAR, role_s_ VARCHAR) | SELECT employee__real_name_ FROM table_26397277_3 WHERE brand__from_ = "Raw" AND role_s_ = "Superstar" |
7,834 | <question>: What smallest amount in the weeks at peak column? <context>: CREATE TABLE table_26399982_2 (weeks_at_peak INTEGER) | SELECT MIN(weeks_at_peak) FROM table_26399982_2 |
7,835 | <question>: In which series did Lecor Sports participate? <context>: CREATE TABLE table_26400438_1 (series VARCHAR, team VARCHAR) | SELECT series FROM table_26400438_1 WHERE team = "Lecor Sports" |
7,836 | <question>: How many times did he hold 12 poles? <context>: CREATE TABLE table_26400438_1 (f_laps VARCHAR, poles VARCHAR) | SELECT COUNT(f_laps) FROM table_26400438_1 WHERE poles = 12 |
7,837 | <question>: In how many races did he have 8 podium finishes? <context>: CREATE TABLE table_26400438_1 (races VARCHAR, podiums VARCHAR) | SELECT COUNT(races) FROM table_26400438_1 WHERE podiums = 8 |
7,838 | <question>: how many seasons did he race in team Carlin? <context>: CREATE TABLE table_26400438_1 (podiums VARCHAR, team VARCHAR) | SELECT COUNT(podiums) FROM table_26400438_1 WHERE team = "Carlin" |
7,839 | <question>: How many entries are in the ranking for jacqueline kohl? <context>: CREATE TABLE table_26427332_17 (place VARCHAR, contestant VARCHAR) | SELECT COUNT(place) FROM table_26427332_17 WHERE contestant = "Jacqueline Kohl" |
7,840 | <question>: what measurement does the contestant from sindelfingen have? <context>: CREATE TABLE table_26427332_17 (measurements__in_cm_ VARCHAR, city VARCHAR) | SELECT measurements__in_cm_ FROM table_26427332_17 WHERE city = "Sindelfingen" |
7,841 | <question>: for how many federal states is the city of lahnstein listed in the ranking? <context>: CREATE TABLE table_26427332_17 (federal_state VARCHAR, city VARCHAR) | SELECT COUNT(federal_state) FROM table_26427332_17 WHERE city = "Lahnstein" |
7,842 | <question>: who are the participants from hanover? <context>: CREATE TABLE table_26427332_17 (contestant VARCHAR, city VARCHAR) | SELECT contestant FROM table_26427332_17 WHERE city = "Hanover" |
7,843 | <question>: What is the highest numbred district that has brian w. thomas as an incumbent? <context>: CREATE TABLE table_26416704_2 (district INTEGER, incumbent VARCHAR) | SELECT MAX(district) FROM table_26416704_2 WHERE incumbent = "Brian W. Thomas" |
7,844 | <question>: What was the status of the election featuring incumbent margaret kaiser? <context>: CREATE TABLE table_26416704_2 (status VARCHAR, incumbent VARCHAR) | SELECT status FROM table_26416704_2 WHERE incumbent = "Margaret Kaiser" |
7,845 | <question>: How many episodes were directed by Arlene Sanford? <context>: CREATE TABLE table_26429658_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT COUNT(written_by) FROM table_26429658_1 WHERE directed_by = "Arlene Sanford" |
7,846 | <question>: What was the title of the episode with a production code of 2010? <context>: CREATE TABLE table_26429658_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_26429658_1 WHERE production_code = 2010 |
7,847 | <question>: How many production codes had a US viewership of 4.43 million? <context>: CREATE TABLE table_26429658_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(production_code) FROM table_26429658_1 WHERE us_viewers__millions_ = "4.43" |
7,848 | <question>: How many times is the opponents in the final is beti sekulovski cindy watson? <context>: CREATE TABLE table_26458137_2 (score VARCHAR, opponents_in_the_final VARCHAR) | SELECT COUNT(score) FROM table_26458137_2 WHERE opponents_in_the_final = "Beti Sekulovski Cindy Watson" |
7,849 | <question>: Who is the partner when the opponents in the final is stephanie dubois olga savchuk? <context>: CREATE TABLE table_26458137_2 (partner VARCHAR, opponents_in_the_final VARCHAR) | SELECT partner FROM table_26458137_2 WHERE opponents_in_the_final = "Stephanie Dubois Olga Savchuk" |
7,850 | <question>: Which artist had a result of 4? <context>: CREATE TABLE table_26485957_1 (artist VARCHAR, result VARCHAR) | SELECT artist FROM table_26485957_1 WHERE result = "4" |
7,851 | <question>: What is the minimum score given in judging panel points? <context>: CREATE TABLE table_26485957_1 (judging_panel_points INTEGER) | SELECT MIN(judging_panel_points) FROM table_26485957_1 |
7,852 | <question>: For the game whose developer was Ailive, is it a Move-only release? <context>: CREATE TABLE table_26538035_1 (move_only VARCHAR, developer VARCHAR) | SELECT move_only FROM table_26538035_1 WHERE developer = "AiLive" |
7,853 | <question>: How many titles/sources have a developer of Clover Studio? <context>: CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR) | SELECT COUNT(title_and_source) FROM table_26538035_1 WHERE developer = "Clover Studio" |
7,854 | <question>: What is the title and source for the game developed by Hydravision Entertainment? <context>: CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR) | SELECT title_and_source FROM table_26538035_1 WHERE developer = "Hydravision Entertainment" |
7,855 | <question>: What is the series # on airdate September 21, 2002? <context>: CREATE TABLE table_2655016_9 (series__number VARCHAR, original_air_date VARCHAR) | SELECT series__number FROM table_2655016_9 WHERE original_air_date = "September 21, 2002" |
7,856 | <question>: what was the name of episode 5? <context>: CREATE TABLE table_26565917_2 (title VARCHAR, no_in_season VARCHAR) | SELECT title FROM table_26565917_2 WHERE no_in_season = 5 |
7,857 | <question>: when did 14.55 people watch? <context>: CREATE TABLE table_26565917_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | SELECT original_air_date FROM table_26565917_2 WHERE us_viewers__millions_ = "14.55" |
7,858 | <question>: What is the smallest top 10 figure? <context>: CREATE TABLE table_26609690_1 (top_10 INTEGER) | SELECT MIN(top_10) FROM table_26609690_1 |
7,859 | <question>: What is the earliest year on the chart? <context>: CREATE TABLE table_26609690_1 (year INTEGER) | SELECT MIN(year) FROM table_26609690_1 |
7,860 | <question>: Which team had $15,785 in winnings? <context>: CREATE TABLE table_26609690_1 (team_s_ VARCHAR, winnings VARCHAR) | SELECT team_s_ FROM table_26609690_1 WHERE winnings = "$15,785" |
7,861 | <question>: How many positions are there for RB1 Motorsports? <context>: CREATE TABLE table_26609690_1 (position VARCHAR, team_s_ VARCHAR) | SELECT COUNT(position) FROM table_26609690_1 WHERE team_s_ = "RB1 Motorsports" |
7,862 | <question>: What is the highest number of wins? <context>: CREATE TABLE table_26609690_1 (wins INTEGER) | SELECT MAX(wins) FROM table_26609690_1 |
7,863 | <question>: Who is the captain of Cardiff City? <context>: CREATE TABLE table_26593762_2 (team VARCHAR) | SELECT team AS captain FROM table_26593762_2 WHERE team = "Cardiff City" |
7,864 | <question>: Who is the captain of Neil Warnock's team? <context>: CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR) | SELECT team AS captain FROM table_26593762_2 WHERE manager = "Neil Warnock" |
7,865 | <question>: Who is the captain of Dave Jones' team? <context>: CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR) | SELECT team AS captain FROM table_26593762_2 WHERE manager = "Dave Jones" |
7,866 | <question>: Who is the chairman of Mark Robins team? <context>: CREATE TABLE table_26593762_2 (chairman VARCHAR, manager VARCHAR) | SELECT chairman FROM table_26593762_2 WHERE manager = "Mark Robins" |
7,867 | <question>: Name the release date xbox 360 for sea wolf <context>: CREATE TABLE table_26631526_1 (release_date___xbox360__ VARCHAR, artist VARCHAR) | SELECT release_date___xbox360__ FROM table_26631526_1 WHERE artist = "Sea Wolf" |
7,868 | <question>: What party was represented by incumbent Richard Coulter ? <context>: CREATE TABLE table_2668243_20 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_2668243_20 WHERE incumbent = "Richard Coulter" |
7,869 | <question>: What was the result for Henry Daniel's race? <context>: CREATE TABLE table_2668243_8 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_2668243_8 WHERE incumbent = "Henry Daniel" |
7,870 | <question>: When was Henry Daniel first elected? <context>: CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_2668243_8 WHERE incumbent = "Henry Daniel" |
7,871 | <question>: How many first elected years are provided for Thomas P. Moore? <context>: CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR) | SELECT COUNT(first_elected) FROM table_2668243_8 WHERE incumbent = "Thomas P. Moore" |
7,872 | <question>: What district is Joseph Lecompte in office in? <context>: CREATE TABLE table_2668243_8 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_2668243_8 WHERE incumbent = "Joseph Lecompte" |
7,873 | <question>: What party does joel r. poinsett represent? <context>: CREATE TABLE table_2668264_22 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_2668264_22 WHERE incumbent = "Joel R. Poinsett" |
7,874 | <question>: What was the first elected year that featured incumbent andrew r. govan? <context>: CREATE TABLE table_2668264_22 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_2668264_22 WHERE incumbent = "Andrew R. Govan" |
7,875 | <question>: In what district is the incumbent Charles Fisher? <context>: CREATE TABLE table_2668336_17 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_2668336_17 WHERE incumbent = "Charles Fisher" |
7,876 | <question>: First elected in 1807 1817 in what district? <context>: CREATE TABLE table_2668336_17 (district VARCHAR, first_elected VARCHAR) | SELECT district FROM table_2668336_17 WHERE first_elected = "1807 1817" |
7,877 | <question>: The candidates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% is for what incumbent? <context>: CREATE TABLE table_2668336_17 (incumbent VARCHAR, candidates VARCHAR) | SELECT incumbent FROM table_2668336_17 WHERE candidates = "Charles Fisher (DR) 65.1% W. Jones (F) 34.9%" |
7,878 | <question>: In district North Carolina 10, what are the candidates? <context>: CREATE TABLE table_2668336_17 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_2668336_17 WHERE district = "North Carolina 10" |
7,879 | <question>: Candiates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% had what result? <context>: CREATE TABLE table_2668336_17 (result VARCHAR, candidates VARCHAR) | SELECT result FROM table_2668336_17 WHERE candidates = "Charles Fisher (DR) 65.1% W. Jones (F) 34.9%" |
7,880 | <question>: Who were the incumbent(s) in the election featuring john murray (dr) 50.4% george denison (dr) 49.6% with a result of a retired democratic-republican hold? <context>: CREATE TABLE table_2668336_19 (incumbent VARCHAR, candidates VARCHAR, result VARCHAR) | SELECT incumbent FROM table_2668336_19 WHERE candidates = "John Murray (DR) 50.4% George Denison (DR) 49.6%" AND result = "Retired Democratic-Republican hold" |
7,881 | <question>: Who were the incumbent(s) when the result was a retired democratic-republican hold and the first elected representative was in 1816> <context>: CREATE TABLE table_2668336_19 (incumbent VARCHAR, result VARCHAR, first_elected VARCHAR) | SELECT incumbent FROM table_2668336_19 WHERE result = "Retired Democratic-Republican hold" AND first_elected = "1816" |
7,882 | <question>: Who were the candidates in the election where william wilson was the incumbent? <context>: CREATE TABLE table_2668336_19 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_2668336_19 WHERE incumbent = "William Wilson" |
7,883 | <question>: Name the result for pennsylvania 8 <context>: CREATE TABLE table_2668352_14 (result VARCHAR, district VARCHAR) | SELECT result FROM table_2668352_14 WHERE district = "Pennsylvania 8" |
7,884 | <question>: Name the result for 1810 <context>: CREATE TABLE table_2668352_14 (result VARCHAR, first_elected VARCHAR) | SELECT result FROM table_2668352_14 WHERE first_elected = "1810" |
7,885 | <question>: Name the district for hugh glasgow <context>: CREATE TABLE table_2668352_14 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_2668352_14 WHERE incumbent = "Hugh Glasgow" |
7,886 | <question>: Name the incumbent for lost re-election democratic-republican hold <context>: CREATE TABLE table_2668352_14 (incumbent VARCHAR, result VARCHAR) | SELECT incumbent FROM table_2668352_14 WHERE result = "Lost re-election Democratic-Republican hold" |
7,887 | <question>: Name the district for first elected 1810 <context>: CREATE TABLE table_2668352_14 (district VARCHAR, first_elected VARCHAR) | SELECT district FROM table_2668352_14 WHERE first_elected = "1810" |
7,888 | <question>: What party does James Pleasants belong to? <context>: CREATE TABLE table_2668352_19 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_2668352_19 WHERE incumbent = "James Pleasants" |
7,889 | <question>: When was William Kennedy first elected? <context>: CREATE TABLE table_2668374_11 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_2668374_11 WHERE incumbent = "William Kennedy" |
7,890 | <question>: what was the section where the winner is william hoge <context>: CREATE TABLE table_2668378_13 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_2668378_13 WHERE incumbent = "William Hoge" |
7,891 | <question>: who was running where the winner is daniel montgomery <context>: CREATE TABLE table_2668378_13 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_2668378_13 WHERE incumbent = "Daniel Montgomery" |
7,892 | <question>: who was running in the section pennsylvania 5 <context>: CREATE TABLE table_2668378_13 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_2668378_13 WHERE district = "Pennsylvania 5" |
7,893 | <question>: Who was the incumbent in the district that first elected someone in 1807? <context>: CREATE TABLE table_2668378_18 (incumbent VARCHAR, first_elected VARCHAR) | SELECT incumbent FROM table_2668378_18 WHERE first_elected = "1807" |
7,894 | <question>: When was someone first elected in the district with incumbent john smith? <context>: CREATE TABLE table_2668378_18 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_2668378_18 WHERE incumbent = "John Smith" |
7,895 | <question>: What party represents the district with incumbent matthew clay? <context>: CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_2668378_18 WHERE incumbent = "Matthew Clay" |
7,896 | <question>: What party represents the district with john g. jackson? <context>: CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_2668378_18 WHERE incumbent = "John G. Jackson" |
7,897 | <question>: How many times was the incumbent john dawson redistricted from the 15th district? <context>: CREATE TABLE table_2668393_18 (candidates VARCHAR, incumbent VARCHAR) | SELECT COUNT(candidates) FROM table_2668393_18 WHERE incumbent = "John Dawson Redistricted from the 15th district" |
7,898 | <question>: What is the party for the candidates edwin gray (dr)? <context>: CREATE TABLE table_2668393_18 (party VARCHAR, candidates VARCHAR) | SELECT party FROM table_2668393_18 WHERE candidates = "Edwin Gray (DR)" |
7,899 | <question>: What is the result in the virginia 11 district? <context>: CREATE TABLE table_2668393_18 (result VARCHAR, district VARCHAR) | SELECT result FROM table_2668393_18 WHERE district = "Virginia 11" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.