Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
46,900 | <question>: Which details of journey had simon hoggart as a narrator? <context>: CREATE TABLE table_name_48 (details_of_journey VARCHAR, narrator VARCHAR) | SELECT details_of_journey FROM table_name_48 WHERE narrator = "simon hoggart" |
46,901 | <question>: Which countries visited had an episode number of less than 7 when Ray Gosling was the writer? <context>: CREATE TABLE table_name_26 (countries_visited VARCHAR, episode_no VARCHAR, writer VARCHAR) | SELECT countries_visited FROM table_name_26 WHERE episode_no < 7 AND writer = "ray gosling" |
46,902 | <question>: How tall is Zipp Duncan? <context>: CREATE TABLE table_name_30 (height VARCHAR, name VARCHAR) | SELECT height FROM table_name_30 WHERE name = "zipp duncan" |
46,903 | <question>: What is the average games of Tony Dixon? <context>: CREATE TABLE table_name_51 (games INTEGER, name VARCHAR) | SELECT AVG(games) AS ↑ FROM table_name_51 WHERE name = "tony dixon" |
46,904 | <question>: What is the total of wins where the top 25 is 6, top 10 is more than 2, and the event number is less than 19? <context>: CREATE TABLE table_name_55 (wins INTEGER, events VARCHAR, top_25 VARCHAR, top_10 VARCHAR) | SELECT SUM(wins) FROM table_name_55 WHERE top_25 = 6 AND top_10 > 2 AND events < 19 |
46,905 | <question>: What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0? <context>: CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_5 VARCHAR) | SELECT SUM(cuts_made) FROM table_name_90 WHERE top_25 < 6 AND top_5 > 0 |
46,906 | <question>: How many top-10 numbers had a top 25 of more than 6 with less than 2 wins? <context>: CREATE TABLE table_name_61 (top_10 VARCHAR, top_25 VARCHAR, wins VARCHAR) | SELECT COUNT(top_10) FROM table_name_61 WHERE top_25 > 6 AND wins < 2 |
46,907 | <question>: Name the 2011 with 2010 of 1r and 2012 of sf <context>: CREATE TABLE table_name_35 (Id VARCHAR) | SELECT 2011 FROM table_name_35 WHERE 2010 = "1r" AND 2012 = "sf" |
46,908 | <question>: Name the 2008 with 2012 of 2r and 2006 of 2r <context>: CREATE TABLE table_name_39 (Id VARCHAR) | SELECT 2008 FROM table_name_39 WHERE 2012 = "2r" AND 2006 = "2r" |
46,909 | <question>: Name the 2008 for 2012 of sf <context>: CREATE TABLE table_name_41 (Id VARCHAR) | SELECT 2008 FROM table_name_41 WHERE 2012 = "sf" |
46,910 | <question>: Name the 2013 for 2011 of 1r <context>: CREATE TABLE table_name_9 (Id VARCHAR) | SELECT 2013 FROM table_name_9 WHERE 2011 = "1r" |
46,911 | <question>: Name the 2011 with 2006 of 2r and 2008 of 2r <context>: CREATE TABLE table_name_22 (Id VARCHAR) | SELECT 2011 FROM table_name_22 WHERE 2006 = "2r" AND 2008 = "2r" |
46,912 | <question>: Name the 2012 with 2013 of 2r and 2009 of 3r <context>: CREATE TABLE table_name_69 (Id VARCHAR) | SELECT 2012 FROM table_name_69 WHERE 2013 = "2r" AND 2009 = "3r" |
46,913 | <question>: How many Field goals have Points larger than 5, and Touchdowns larger than 2, and an Extra points smaller than 0? <context>: CREATE TABLE table_name_33 (field_goals VARCHAR, extra_points VARCHAR, points VARCHAR, touchdowns VARCHAR) | SELECT COUNT(field_goals) FROM table_name_33 WHERE points > 5 AND touchdowns > 2 AND extra_points < 0 |
46,914 | <question>: How many Touchdowns have Extra points larger than 0, and Points of 48? <context>: CREATE TABLE table_name_84 (touchdowns VARCHAR, extra_points VARCHAR, points VARCHAR) | SELECT COUNT(touchdowns) FROM table_name_84 WHERE extra_points > 0 AND points = 48 |
46,915 | <question>: Which Touchdowns have an Extra points smaller than 5, and a Player of clark, and Field goals larger than 0? <context>: CREATE TABLE table_name_8 (touchdowns INTEGER, field_goals VARCHAR, extra_points VARCHAR, player VARCHAR) | SELECT AVG(touchdowns) FROM table_name_8 WHERE extra_points < 5 AND player = "clark" AND field_goals > 0 |
46,916 | <question>: Which Points have Touchdowns larger than 0, and an Extra points smaller than 0? <context>: CREATE TABLE table_name_70 (points INTEGER, touchdowns VARCHAR, extra_points VARCHAR) | SELECT SUM(points) FROM table_name_70 WHERE touchdowns > 0 AND extra_points < 0 |
46,917 | <question>: Which Semifinalists has a Champions of michael chang 6-0 6-4? <context>: CREATE TABLE table_name_86 (semifinalists VARCHAR, champions VARCHAR) | SELECT semifinalists FROM table_name_86 WHERE champions = "michael chang 6-0 6-4" |
46,918 | <question>: Whose Runner-up has a Semifinalist of guillermo pérez-roldán andrea gaudenzi? <context>: CREATE TABLE table_name_68 (runners_up VARCHAR, semifinalists VARCHAR) | SELECT runners_up FROM table_name_68 WHERE semifinalists = "guillermo pérez-roldán andrea gaudenzi" |
46,919 | <question>: Tell me the least season with level less than 1 <context>: CREATE TABLE table_name_5 (season INTEGER, level INTEGER) | SELECT MIN(season) FROM table_name_5 WHERE level < 1 |
46,920 | <question>: What was the Attendance on September 11, 1983? <context>: CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_49 WHERE date = "september 11, 1983" |
46,921 | <question>: What was the Opponent during the game with a Result of W 37-21? <context>: CREATE TABLE table_name_73 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_73 WHERE result = "w 37-21" |
46,922 | <question>: What was the Result on Week 8? <context>: CREATE TABLE table_name_50 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_50 WHERE week = 8 |
46,923 | <question>: What is the lowest number of games with less than 1 loss? <context>: CREATE TABLE table_name_12 (games INTEGER, lost INTEGER) | SELECT MIN(games) FROM table_name_12 WHERE lost < 1 |
46,924 | <question>: What was the nationality of the skater with 108.8 points? <context>: CREATE TABLE table_name_52 (nation VARCHAR, points VARCHAR) | SELECT nation FROM table_name_52 WHERE points = 108.8 |
46,925 | <question>: How many points for the skater from club btsc? <context>: CREATE TABLE table_name_43 (points VARCHAR, club VARCHAR) | SELECT COUNT(points) FROM table_name_43 WHERE club = "btsc" |
46,926 | <question>: Which Original title has a Year of 1983, and a Country of italy? <context>: CREATE TABLE table_name_78 (original_title VARCHAR, year VARCHAR, country VARCHAR) | SELECT original_title FROM table_name_78 WHERE year = 1983 AND country = "italy" |
46,927 | <question>: How many years have an Original title of иваново детство? <context>: CREATE TABLE table_name_87 (year VARCHAR, original_title VARCHAR) | SELECT COUNT(year) FROM table_name_87 WHERE original_title = "иваново детство" |
46,928 | <question>: Which Length has a Country of soviet union, and a Year larger than 1975? <context>: CREATE TABLE table_name_52 (length VARCHAR, country VARCHAR, year VARCHAR) | SELECT length FROM table_name_52 WHERE country = "soviet union" AND year > 1975 |
46,929 | <question>: What is listed as the lowest Year with a Wins that's smaller than 0? <context>: CREATE TABLE table_name_25 (year INTEGER, wins INTEGER) | SELECT MIN(year) FROM table_name_25 WHERE wins < 0 |
46,930 | <question>: What is listed for the Wins with a Year of 1989? <context>: CREATE TABLE table_name_84 (wins VARCHAR, year VARCHAR) | SELECT wins FROM table_name_84 WHERE year = 1989 |
46,931 | <question>: What is listed for the Class that's got a Team of Cagiva and Points of 4? <context>: CREATE TABLE table_name_17 (class VARCHAR, team VARCHAR, points VARCHAR) | SELECT class FROM table_name_17 WHERE team = "cagiva" AND points = 4 |
46,932 | <question>: What is the number of Population 2001 Census that has 476,815 in Population 1991 Census? <context>: CREATE TABLE table_name_10 (population_2001_census INTEGER, population_1991_census VARCHAR) | SELECT SUM(population_2001_census) FROM table_name_10 WHERE population_1991_census = 476 OFFSET 815 |
46,933 | <question>: What played has 3 as the losing bonus? <context>: CREATE TABLE table_name_91 (played VARCHAR, losing_bonus VARCHAR) | SELECT played FROM table_name_91 WHERE losing_bonus = "3" |
46,934 | <question>: What is the try bonus that has llangefni rfc as the club? <context>: CREATE TABLE table_name_22 (try_bonus VARCHAR, club VARCHAR) | SELECT try_bonus FROM table_name_22 WHERE club = "llangefni rfc" |
46,935 | <question>: What played has 247 as the points? <context>: CREATE TABLE table_name_63 (played VARCHAR, points_for VARCHAR) | SELECT played FROM table_name_63 WHERE points_for = "247" |
46,936 | <question>: What try bonus has 19 as the tries against? <context>: CREATE TABLE table_name_17 (try_bonus VARCHAR, tries_against VARCHAR) | SELECT try_bonus FROM table_name_17 WHERE tries_against = "19" |
46,937 | <question>: What points has 18 for the played and bala rfc as the club? <context>: CREATE TABLE table_name_31 (points_for VARCHAR, played VARCHAR, club VARCHAR) | SELECT points_for FROM table_name_31 WHERE played = "18" AND club = "bala rfc" |
46,938 | <question>: What try bonus has 18 as the played of and 204 as the points? <context>: CREATE TABLE table_name_83 (try_bonus VARCHAR, played VARCHAR, points_for VARCHAR) | SELECT try_bonus FROM table_name_83 WHERE played = "18" AND points_for = "204" |
46,939 | <question>: What record has montreal as the visitor, and february 2 as the date? <context>: CREATE TABLE table_name_4 (record VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT record FROM table_name_4 WHERE visitor = "montreal" AND date = "february 2" |
46,940 | <question>: What record has February 25 as the date? <context>: CREATE TABLE table_name_7 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_7 WHERE date = "february 25" |
46,941 | <question>: What date has boston as the visitor? <context>: CREATE TABLE table_name_21 (date VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_21 WHERE visitor = "boston" |
46,942 | <question>: What score has vancouver as the home, and february 16 as the date? <context>: CREATE TABLE table_name_81 (score VARCHAR, home VARCHAR, date VARCHAR) | SELECT score FROM table_name_81 WHERE home = "vancouver" AND date = "february 16" |
46,943 | <question>: Team of corinthians, and a Lost larger than 15 has which highest drawn? <context>: CREATE TABLE table_name_80 (drawn INTEGER, team VARCHAR, lost VARCHAR) | SELECT MAX(drawn) FROM table_name_80 WHERE team = "corinthians" AND lost > 15 |
46,944 | <question>: Difference of - 20, and a Position smaller than 17 is the highest against? <context>: CREATE TABLE table_name_47 (against INTEGER, difference VARCHAR, position VARCHAR) | SELECT MAX(against) FROM table_name_47 WHERE difference = "- 20" AND position < 17 |
46,945 | <question>: Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points? <context>: CREATE TABLE table_name_88 (points INTEGER, played VARCHAR, against VARCHAR, drawn VARCHAR) | SELECT AVG(points) FROM table_name_88 WHERE against < 53 AND drawn < 10 AND played < 38 |
46,946 | <question>: Which score was for Toronto Maple Leafs at home on November 12? <context>: CREATE TABLE table_name_66 (score VARCHAR, home VARCHAR, date VARCHAR) | SELECT score FROM table_name_66 WHERE home = "toronto maple leafs" AND date = "november 12" |
46,947 | <question>: Which home team had a visitor of Chicago Black Hawks with a score of 2–3? <context>: CREATE TABLE table_name_87 (home VARCHAR, visitor VARCHAR, score VARCHAR) | SELECT home FROM table_name_87 WHERE visitor = "chicago black hawks" AND score = "2–3" |
46,948 | <question>: Who was home on November 26? <context>: CREATE TABLE table_name_73 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_73 WHERE date = "november 26" |
46,949 | <question>: What was the visitor with a record of 5–8–4? <context>: CREATE TABLE table_name_10 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_10 WHERE record = "5–8–4" |
46,950 | <question>: What was the average rank of a player with more than 52 points, fewer than 10 draws, a goal loss under 44, and a loss under 15? <context>: CREATE TABLE table_name_66 (rank INTEGER, lose VARCHAR, goal_loss VARCHAR, point VARCHAR, draw VARCHAR) | SELECT AVG(rank) FROM table_name_66 WHERE point > 52 AND draw < 10 AND goal_loss < 44 AND lose < 15 |
46,951 | <question>: What was the highest number of lose for a player named Santos with more than 45 points? <context>: CREATE TABLE table_name_88 (lose INTEGER, name VARCHAR, point VARCHAR) | SELECT MAX(lose) FROM table_name_88 WHERE name = "santos" AND point > 45 |
46,952 | <question>: What report has a score of 0-0 with Sydney FC? <context>: CREATE TABLE table_name_49 (report VARCHAR, score VARCHAR, away_team VARCHAR) | SELECT report FROM table_name_49 WHERE score = "0-0" AND away_team = "sydney fc" |
46,953 | <question>: On what date was the score 0-0? <context>: CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_33 WHERE score = "0-0" |
46,954 | <question>: Which home team had the score 1-3? <context>: CREATE TABLE table_name_6 (home_team VARCHAR, score VARCHAR) | SELECT home_team FROM table_name_6 WHERE score = "1-3" |
46,955 | <question>: Where did the away team have round 2? <context>: CREATE TABLE table_name_71 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_71 WHERE away_team = "round 2" |
46,956 | <question>: When did the venue of round 3 happen? <context>: CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_23 WHERE venue = "round 3" |
46,957 | <question>: What is the lowest density of a town with a 13,708 2011 population census ? <context>: CREATE TABLE table_name_74 (density INTEGER, population_2011_census VARCHAR) | SELECT MIN(density) FROM table_name_74 WHERE population_2011_census = 13 OFFSET 708 |
46,958 | <question>: specific orbital energy of −29.8 mj/kg has what orbit? <context>: CREATE TABLE table_name_14 (orbit VARCHAR, specific_orbital_energy VARCHAR) | SELECT orbit FROM table_name_14 WHERE specific_orbital_energy = "−29.8 mj/kg" |
46,959 | <question>: Orbital period of 89 to 128 min has what specific orbital energy? <context>: CREATE TABLE table_name_73 (specific_orbital_energy VARCHAR, orbital_period VARCHAR) | SELECT specific_orbital_energy FROM table_name_73 WHERE orbital_period = "89 to 128 min" |
46,960 | <question>: center-to-center distance of 6,900 to 46,300 km involves which orbital period? <context>: CREATE TABLE table_name_69 (orbital_period VARCHAR, center_to_center_distance VARCHAR) | SELECT orbital_period FROM table_name_69 WHERE center_to_center_distance = "6,900 to 46,300 km" |
46,961 | <question>: What was the lowest FA Cup for a Malaysia Cup of 0? <context>: CREATE TABLE table_name_64 (fa_cup INTEGER, malaysia_cup INTEGER) | SELECT MIN(fa_cup) FROM table_name_64 WHERE malaysia_cup < 0 |
46,962 | <question>: What is Zamri Hassan's lowest Malaysia Cup when there were an FA Cup of 0? <context>: CREATE TABLE table_name_74 (malaysia_cup INTEGER, player VARCHAR, fa_cup VARCHAR) | SELECT MIN(malaysia_cup) FROM table_name_74 WHERE player = "zamri hassan" AND fa_cup < 0 |
46,963 | <question>: What is the lowest league for the Malaysia Cup when it was larger than 0? <context>: CREATE TABLE table_name_98 (league INTEGER, malaysia_cup INTEGER) | SELECT MIN(league) FROM table_name_98 WHERE malaysia_cup > 0 |
46,964 | <question>: How many Bronze medals did Switzerland with less than 3 Silver medals receive? <context>: CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, silver VARCHAR) | SELECT MIN(bronze) FROM table_name_75 WHERE nation = "switzerland" AND silver < 3 |
46,965 | <question>: What is the least amount of Silver medals that have more than 3 Bronze? <context>: CREATE TABLE table_name_39 (silver INTEGER, bronze INTEGER) | SELECT MIN(silver) FROM table_name_39 WHERE bronze > 3 |
46,966 | <question>: What is the average game for March 8 with less than 84 points? <context>: CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, march VARCHAR) | SELECT AVG(game) FROM table_name_23 WHERE points < 84 AND march = 8 |
46,967 | <question>: What is the latest in March when the record of 35–16–6–3? <context>: CREATE TABLE table_name_34 (march INTEGER, record VARCHAR) | SELECT MAX(march) FROM table_name_34 WHERE record = "35–16–6–3" |
46,968 | <question>: Name the competition for score of 3-0 <context>: CREATE TABLE table_name_42 (competition VARCHAR, score VARCHAR) | SELECT competition FROM table_name_42 WHERE score = "3-0" |
46,969 | <question>: Name the competition for september 10, 2008 <context>: CREATE TABLE table_name_21 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_21 WHERE date = "september 10, 2008" |
46,970 | <question>: Name the sscore for world cup qualifying october 15, 2008 <context>: CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, date VARCHAR) | SELECT score FROM table_name_49 WHERE competition = "world cup qualifying" AND date = "october 15, 2008" |
46,971 | <question>: Name the competition for november 19, 2008 <context>: CREATE TABLE table_name_82 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_82 WHERE date = "november 19, 2008" |
46,972 | <question>: Name the date for rio de janeiro <context>: CREATE TABLE table_name_55 (date VARCHAR, city VARCHAR) | SELECT date FROM table_name_55 WHERE city = "rio de janeiro" |
46,973 | <question>: What number is Fall 08 from the state with 57 in Fall 06 and 74 or less in Fall 05? <context>: CREATE TABLE table_name_52 (fall_08 VARCHAR, fall_06 VARCHAR, fall_05 VARCHAR) | SELECT COUNT(fall_08) FROM table_name_52 WHERE fall_06 = 57 AND fall_05 < 74 |
46,974 | <question>: What number is Fall 06 from the state with 79 or less in Fall 08, 36 or greater in Fall 07 and greater than 74 in Fall 05? <context>: CREATE TABLE table_name_92 (fall_06 INTEGER, fall_05 VARCHAR, fall_08 VARCHAR, fall_07 VARCHAR) | SELECT AVG(fall_06) FROM table_name_92 WHERE fall_08 < 79 AND fall_07 > 36 AND fall_05 > 74 |
46,975 | <question>: What number is Fall 06 from the state with 34 for Fall 09? <context>: CREATE TABLE table_name_97 (fall_06 INTEGER, fall_09 VARCHAR) | SELECT AVG(fall_06) FROM table_name_97 WHERE fall_09 = 34 |
46,976 | <question>: What was the record when the visitor was toronto maple leafs and the score was 3–10? <context>: CREATE TABLE table_name_67 (record VARCHAR, visitor VARCHAR, score VARCHAR) | SELECT record FROM table_name_67 WHERE visitor = "toronto maple leafs" AND score = "3–10" |
46,977 | <question>: What was the score when the visitor was toronto maple leafs on march 22? <context>: CREATE TABLE table_name_53 (score VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT score FROM table_name_53 WHERE visitor = "toronto maple leafs" AND date = "march 22" |
46,978 | <question>: What was the Visitor when the home was toronto maple leafs and the score was 4–1? <context>: CREATE TABLE table_name_63 (visitor VARCHAR, home VARCHAR, score VARCHAR) | SELECT visitor FROM table_name_63 WHERE home = "toronto maple leafs" AND score = "4–1" |
46,979 | <question>: How many total episodes aired over all seasons with 7.79 million viewers? <context>: CREATE TABLE table_name_86 (episode_count VARCHAR, viewers__in_millions_ VARCHAR) | SELECT COUNT(episode_count) FROM table_name_86 WHERE viewers__in_millions_ = 7.79 |
46,980 | <question>: Was the semi-final round held at home or away? <context>: CREATE TABLE table_name_53 (h___a VARCHAR, round VARCHAR) | SELECT h___a FROM table_name_53 WHERE round = "semi-final" |
46,981 | <question>: Which opponent made it to the final round? <context>: CREATE TABLE table_name_33 (opponents VARCHAR, round VARCHAR) | SELECT opponents FROM table_name_33 WHERE round = "final" |
46,982 | <question>: What was the result of the game played in hurst? <context>: CREATE TABLE table_name_39 (result_f___a VARCHAR, h___a VARCHAR) | SELECT result_f___a FROM table_name_39 WHERE h___a = "hurst" |
46,983 | <question>: When did the game in whalley range take place? <context>: CREATE TABLE table_name_87 (date VARCHAR, h___a VARCHAR) | SELECT date FROM table_name_87 WHERE h___a = "whalley range" |
46,984 | <question>: Which ERP W is the lowest one that has a Frequency MHz of 91.3? <context>: CREATE TABLE table_name_58 (erp_w INTEGER, frequency_mhz VARCHAR) | SELECT MIN(erp_w) FROM table_name_58 WHERE frequency_mhz = 91.3 |
46,985 | <question>: Which Class has a Frequency MHz of 107.5? <context>: CREATE TABLE table_name_76 (class VARCHAR, frequency_mhz VARCHAR) | SELECT class FROM table_name_76 WHERE frequency_mhz = 107.5 |
46,986 | <question>: Which Frequency MHz is the highest one that has a City of license of byron, ga? <context>: CREATE TABLE table_name_38 (frequency_mhz INTEGER, city_of_license VARCHAR) | SELECT MAX(frequency_mhz) FROM table_name_38 WHERE city_of_license = "byron, ga" |
46,987 | <question>: Which FCC info has a Call sign of wsja? <context>: CREATE TABLE table_name_75 (fcc_info VARCHAR, call_sign VARCHAR) | SELECT fcc_info FROM table_name_75 WHERE call_sign = "wsja" |
46,988 | <question>: Which District has a Party of republican and a Result of lost re-election democratic gain? <context>: CREATE TABLE table_name_82 (district VARCHAR, party VARCHAR, result VARCHAR) | SELECT district FROM table_name_82 WHERE party = "republican" AND result = "lost re-election democratic gain" |
46,989 | <question>: What is First elected that has republican Party and a Result of retired democratic gain? <context>: CREATE TABLE table_name_61 (first_elected VARCHAR, party VARCHAR, result VARCHAR) | SELECT first_elected FROM table_name_61 WHERE party = "republican" AND result = "retired democratic gain" |
46,990 | <question>: What is the First elected of california 3? <context>: CREATE TABLE table_name_55 (first_elected VARCHAR, district VARCHAR) | SELECT first_elected FROM table_name_55 WHERE district = "california 3" |
46,991 | <question>: Which Incumbent has a Result of retired democratic gain? <context>: CREATE TABLE table_name_35 (incumbent VARCHAR, result VARCHAR) | SELECT incumbent FROM table_name_35 WHERE result = "retired democratic gain" |
46,992 | <question>: Which First elected has a Incumbent of none (new seat)? <context>: CREATE TABLE table_name_15 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_name_15 WHERE incumbent = "none (new seat)" |
46,993 | <question>: What is the First elected that has a republican party and california 4? <context>: CREATE TABLE table_name_4 (first_elected VARCHAR, party VARCHAR, district VARCHAR) | SELECT first_elected FROM table_name_4 WHERE party = "republican" AND district = "california 4" |
46,994 | <question>: What was the result when Dundee was the opponent? <context>: CREATE TABLE table_name_74 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_74 WHERE opponent = "dundee" |
46,995 | <question>: Who entered on day 1 and exited on day 20? <context>: CREATE TABLE table_name_94 (celebrity VARCHAR, entered VARCHAR, exited VARCHAR) | SELECT celebrity FROM table_name_94 WHERE entered = "day 1" AND exited = "day 20" |
46,996 | <question>: When did lucy benjamin exit? <context>: CREATE TABLE table_name_18 (exited VARCHAR, celebrity VARCHAR) | SELECT exited FROM table_name_18 WHERE celebrity = "lucy benjamin" |
46,997 | <question>: When did camilla dallerup finish? <context>: CREATE TABLE table_name_84 (finished VARCHAR, celebrity VARCHAR) | SELECT finished FROM table_name_84 WHERE celebrity = "camilla dallerup" |
46,998 | <question>: When did kim woodburn enter? <context>: CREATE TABLE table_name_92 (entered VARCHAR, celebrity VARCHAR) | SELECT entered FROM table_name_92 WHERE celebrity = "kim woodburn" |
46,999 | <question>: What was the score of the game with a record of 37–26–9? <context>: CREATE TABLE table_name_5 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_5 WHERE record = "37–26–9" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.