combined_text stringlengths 106 1.05k |
|---|
###question:What is the highest Top-5 when the Tournament is the open championship, with a Top-25 less than 9?###answer:SELECT MAX(top_5) FROM table_name_32 WHERE tournament = "the open championship" AND top_25 < 9###context:CREATE TABLE table_name_32 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR) |
###question:What is the average Top-25 that has a Top-10 less than 7, and the Tournament is the open championship, with a Top-5more than 1?###answer:SELECT AVG(top_25) FROM table_name_58 WHERE top_10 < 7 AND tournament = "the open championship" AND top_5 > 1###context:CREATE TABLE table_name_58 (top_25 INTEGER, top_5 V... |
###question:What is the total number of Top-5 when the Top-25 is 6, and a Cuts made are less than 12?###answer:SELECT COUNT(top_5) FROM table_name_40 WHERE top_25 = 6 AND cuts_made < 12###context:CREATE TABLE table_name_40 (top_5 VARCHAR, top_25 VARCHAR, cuts_made VARCHAR) |
###question:Which date had a home team of the Wizards?###answer:SELECT date FROM table_name_15 WHERE home = "wizards"###context:CREATE TABLE table_name_15 (date VARCHAR, home VARCHAR) |
###question:What was the latest week with a date of November 12, 1967 and less than 34,761 in attendance?###answer:SELECT MAX(week) FROM table_name_60 WHERE date = "november 12, 1967" AND attendance < 34 OFFSET 761###context:CREATE TABLE table_name_60 (week INTEGER, date VARCHAR, attendance VARCHAR) |
###question:What is the date for the game with an opponent of the Houston Oilers from before week 3?###answer:SELECT date FROM table_name_11 WHERE week < 3 AND opponent = "houston oilers"###context:CREATE TABLE table_name_11 (date VARCHAR, week VARCHAR, opponent VARCHAR) |
###question:What is the total for New York's game?###answer:SELECT SUM(game) FROM table_name_39 WHERE team = "new york"###context:CREATE TABLE table_name_39 (game INTEGER, team VARCHAR) |
###question:What round was a player from Indiana picked?###answer:SELECT round FROM table_name_71 WHERE college = "indiana"###context:CREATE TABLE table_name_71 (round VARCHAR, college VARCHAR) |
###question:How many losses had a total of 17 and more than 10 wins?###answer:SELECT COUNT(losses) FROM table_name_94 WHERE total = 17 AND wins > 10###context:CREATE TABLE table_name_94 (losses VARCHAR, total VARCHAR, wins VARCHAR) |
###question:What is the win percentage when there's more than 16 totals and less than 7 losses?###answer:SELECT _percentage_win FROM table_name_98 WHERE total > 16 AND losses < 7###context:CREATE TABLE table_name_98 (_percentage_win VARCHAR, total VARCHAR, losses VARCHAR) |
###question:What is the smallest no result when the year was 2012 and there were more than 10 wins?###answer:SELECT MIN(no_result) FROM table_name_57 WHERE year = "2012" AND wins > 10###context:CREATE TABLE table_name_57 (no_result INTEGER, year VARCHAR, wins VARCHAR) |
###question:What is the name on the Socialist ticket when the Democratic ticket is george k. shuler?###answer:SELECT socialist_ticket FROM table_name_6 WHERE democratic_ticket = "george k. shuler"###context:CREATE TABLE table_name_6 (socialist_ticket VARCHAR, democratic_ticket VARCHAR) |
###question:What is the name on the Democratic ticket when the Workers ticket is franklin p. brill?###answer:SELECT democratic_ticket FROM table_name_76 WHERE workers_ticket = "franklin p. brill"###context:CREATE TABLE table_name_76 (democratic_ticket VARCHAR, workers_ticket VARCHAR) |
###question:What is the name on the Democratic ticket when the Workers ticket is james p. cannon?###answer:SELECT democratic_ticket FROM table_name_32 WHERE workers_ticket = "james p. cannon"###context:CREATE TABLE table_name_32 (democratic_ticket VARCHAR, workers_ticket VARCHAR) |
###question:What is the Office when the Republican ticket shows seymour lowman?###answer:SELECT office FROM table_name_63 WHERE republican_ticket = "seymour lowman"###context:CREATE TABLE table_name_63 (office VARCHAR, republican_ticket VARCHAR) |
###question:What is the name on the Republican ticket when the Socialist ticket was louis waldman?###answer:SELECT republican_ticket FROM table_name_17 WHERE socialist_ticket = "louis waldman"###context:CREATE TABLE table_name_17 (republican_ticket VARCHAR, socialist_ticket VARCHAR) |
###question:What is the name on the Republican ticket when the Workers ticket is edward lindgren?###answer:SELECT republican_ticket FROM table_name_63 WHERE workers_ticket = "edward lindgren"###context:CREATE TABLE table_name_63 (republican_ticket VARCHAR, workers_ticket VARCHAR) |
###question:Who's the Democratic ticket with a Socialist Labor ticket of belle j. rosen?###answer:SELECT democratic_ticket FROM table_name_38 WHERE socialist_labor_ticket = "belle j. rosen"###context:CREATE TABLE table_name_38 (democratic_ticket VARCHAR, socialist_labor_ticket VARCHAR) |
###question:Who's the Socialist Labor ticket with a Republican ticket of cuthbert w. pound?###answer:SELECT socialist_labor_ticket FROM table_name_49 WHERE republican_ticket = "cuthbert w. pound"###context:CREATE TABLE table_name_49 (socialist_labor_ticket VARCHAR, republican_ticket VARCHAR) |
###question:Which Office has a Republican ticket of daniel h. conway?###answer:SELECT office FROM table_name_63 WHERE republican_ticket = "daniel h. conway"###context:CREATE TABLE table_name_63 (office VARCHAR, republican_ticket VARCHAR) |
###question:Who's the Socialist ticket with a Law Preservation ticket of (none), and a Socialist Labor ticket of belle j. rosen?###answer:SELECT socialist_ticket FROM table_name_74 WHERE law_preservation_ticket = "(none)" AND socialist_labor_ticket = "belle j. rosen"###context:CREATE TABLE table_name_74 (socialist_tick... |
###question:Which Office has a Democratic ticket of herbert h. lehman?###answer:SELECT office FROM table_name_88 WHERE democratic_ticket = "herbert h. lehman"###context:CREATE TABLE table_name_88 (office VARCHAR, democratic_ticket VARCHAR) |
###question:Who's the Socialist ticket with a Socialist Labor ticket of charles m. carlson?###answer:SELECT socialist_ticket FROM table_name_89 WHERE socialist_labor_ticket = "charles m. carlson"###context:CREATE TABLE table_name_89 (socialist_ticket VARCHAR, socialist_labor_ticket VARCHAR) |
###question:Which bowl game has a season greater than 2008, with new orleans, Louisiana as the location?###answer:SELECT bowl_game FROM table_name_47 WHERE season > 2008 AND location = "new orleans, louisiana"###context:CREATE TABLE table_name_47 (bowl_game VARCHAR, season VARCHAR, location VARCHAR) |
###question:What result has 1947 sun bowl as the bowl game?###answer:SELECT result FROM table_name_81 WHERE bowl_game = "1947 sun bowl"###context:CREATE TABLE table_name_81 (result VARCHAR, bowl_game VARCHAR) |
###question:What result has texas longhorns as the opponent?###answer:SELECT result FROM table_name_47 WHERE opponent = "texas longhorns"###context:CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR) |
###question:What location has 51,212 as the attendance?###answer:SELECT location FROM table_name_60 WHERE attendance = "51,212"###context:CREATE TABLE table_name_60 (location VARCHAR, attendance VARCHAR) |
###question:Which Pictorials is on 5-01?###answer:SELECT pictorials FROM table_name_40 WHERE date = "5-01"###context:CREATE TABLE table_name_40 (pictorials VARCHAR, date VARCHAR) |
###question:Which Cover model has a Pictorials of brande roderick-pmoy, naked news?###answer:SELECT cover_model FROM table_name_56 WHERE pictorials = "brande roderick-pmoy, naked news"###context:CREATE TABLE table_name_56 (cover_model VARCHAR, pictorials VARCHAR) |
###question:which Cover model has a Centerfold model of jennifer walcott?###answer:SELECT cover_model FROM table_name_77 WHERE centerfold_model = "jennifer walcott"###context:CREATE TABLE table_name_77 (cover_model VARCHAR, centerfold_model VARCHAR) |
###question:Which Centerfold model has a Cover model of irina voronina?###answer:SELECT centerfold_model FROM table_name_81 WHERE cover_model = "irina voronina"###context:CREATE TABLE table_name_81 (centerfold_model VARCHAR, cover_model VARCHAR) |
###question:Which Centerfold model has a Date of 3-01?###answer:SELECT centerfold_model FROM table_name_54 WHERE date = "3-01"###context:CREATE TABLE table_name_54 (centerfold_model VARCHAR, date VARCHAR) |
###question:What is the score on 15 Aug with a 17:30 time?###answer:SELECT score FROM table_name_66 WHERE date = "15 aug" AND time = "17:30"###context:CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR, time VARCHAR) |
###question:What is the total number of round values that had opponents named Paul Sutherland?###answer:SELECT COUNT(round) FROM table_name_93 WHERE opponent = "paul sutherland"###context:CREATE TABLE table_name_93 (round VARCHAR, opponent VARCHAR) |
###question:Which opponent led to a record of 10-6?###answer:SELECT opponent FROM table_name_94 WHERE record = "10-6"###context:CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR) |
###question:Which method led to a record of 9-4?###answer:SELECT method FROM table_name_61 WHERE record = "9-4"###context:CREATE TABLE table_name_61 (method VARCHAR, record VARCHAR) |
###question:What song had an index of m6?###answer:SELECT song FROM table_name_68 WHERE index = "m6"###context:CREATE TABLE table_name_68 (song VARCHAR, index VARCHAR) |
###question:For which song was the score 6.5 + 6.0 + 6.0 + 5.5 = 24.0?###answer:SELECT song FROM table_name_25 WHERE score = 6.5 + 6.0 + 6.0 + 5.5 = 24.0###context:CREATE TABLE table_name_25 (song VARCHAR, score VARCHAR) |
###question:When the played number is less than 8 and against is 23, what is the least amount of points?###answer:SELECT MIN(points) FROM table_name_76 WHERE against = 23 AND played < 8###context:CREATE TABLE table_name_76 (points INTEGER, against VARCHAR, played VARCHAR) |
###question:When the corinthians have a position of less than 5, what is the average against?###answer:SELECT AVG(against) FROM table_name_58 WHERE position < 5 AND team = "corinthians"###context:CREATE TABLE table_name_58 (against INTEGER, position VARCHAR, team VARCHAR) |
###question:What position has less than 6 Points?###answer:SELECT COUNT(position) FROM table_name_63 WHERE points < 6###context:CREATE TABLE table_name_63 (position VARCHAR, points INTEGER) |
###question:What is the number of against when the difference is 10 and played is greater than 8?###answer:SELECT COUNT(against) FROM table_name_3 WHERE difference = "10" AND played > 8###context:CREATE TABLE table_name_3 (against VARCHAR, difference VARCHAR, played VARCHAR) |
###question:What was the stake president when the organized date is April 18, 1965?###answer:SELECT stake AS President FROM table_name_77 WHERE organized = "april 18, 1965"###context:CREATE TABLE table_name_77 (stake VARCHAR, organized VARCHAR) |
###question:What is the name of the award given for the category Mercury Prize?###answer:SELECT award FROM table_name_58 WHERE category = "mercury prize"###context:CREATE TABLE table_name_58 (award VARCHAR, category VARCHAR) |
###question:How many years has the Mercury Prize award been given?###answer:SELECT COUNT(year) FROM table_name_47 WHERE award = "mercury prize"###context:CREATE TABLE table_name_47 (year VARCHAR, award VARCHAR) |
###question:For how many years has the Mercury Prize been awarded?###answer:SELECT COUNT(year) FROM table_name_71 WHERE award = "mercury prize"###context:CREATE TABLE table_name_71 (year VARCHAR, award VARCHAR) |
###question:In what year, prior to 2009, was the Mercury Prize awarded?###answer:SELECT result FROM table_name_50 WHERE year < 2009 AND award = "mercury prize"###context:CREATE TABLE table_name_50 (result VARCHAR, year VARCHAR, award VARCHAR) |
###question:What is the lowest Points when against is 50, and there are less than 20 played?###answer:SELECT MIN(points) FROM table_name_80 WHERE against = 50 AND played < 20###context:CREATE TABLE table_name_80 (points INTEGER, against VARCHAR, played VARCHAR) |
###question:What is the average Position with less than 57 against and the team is Juventus?###answer:SELECT AVG(position) FROM table_name_19 WHERE against < 57 AND team = "juventus"###context:CREATE TABLE table_name_19 (position INTEGER, against VARCHAR, team VARCHAR) |
###question:What is the highest Position when the against is less than 41, and lost is more than 7?###answer:SELECT MAX(position) FROM table_name_23 WHERE against < 41 AND lost > 7###context:CREATE TABLE table_name_23 (position INTEGER, against VARCHAR, lost VARCHAR) |
###question:What is the average Lost when there are 57 against?###answer:SELECT AVG(lost) FROM table_name_42 WHERE against = 57###context:CREATE TABLE table_name_42 (lost INTEGER, against VARCHAR) |
###question:What is the lowest Lost for são paulo railway, Points more than 21?###answer:SELECT MIN(lost) FROM table_name_46 WHERE team = "são paulo railway" AND points > 21###context:CREATE TABLE table_name_46 (lost INTEGER, team VARCHAR, points VARCHAR) |
###question:What unit is in Mongolia?###answer:SELECT unit FROM table_name_29 WHERE location = "mongolia"###context:CREATE TABLE table_name_29 (unit VARCHAR, location VARCHAR) |
###question:What unit is in Argentina?###answer:SELECT unit FROM table_name_94 WHERE location = "argentina"###context:CREATE TABLE table_name_94 (unit VARCHAR, location VARCHAR) |
###question:What name is located in China?###answer:SELECT name FROM table_name_8 WHERE location = "china"###context:CREATE TABLE table_name_8 (name VARCHAR, location VARCHAR) |
###question:What unit is located in China and has Zhou Zhang as an author?###answer:SELECT unit FROM table_name_53 WHERE location = "china" AND authors = "zhou zhang"###context:CREATE TABLE table_name_53 (unit VARCHAR, location VARCHAR, authors VARCHAR) |
###question:What kind of Manufacturer has a Laps smaller than 20 and a Grid of 21###answer:SELECT manufacturer FROM table_name_54 WHERE laps < 20 AND grid = 21###context:CREATE TABLE table_name_54 (manufacturer VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:Which Airline has a Fleet size larger than 17, and a IATA of pr?###answer:SELECT airline FROM table_name_98 WHERE fleet_size > 17 AND iata = "pr"###context:CREATE TABLE table_name_98 (airline VARCHAR, fleet_size VARCHAR, iata VARCHAR) |
###question:Which ICAO has a Fleet size of 2?###answer:SELECT icao FROM table_name_96 WHERE fleet_size = 2###context:CREATE TABLE table_name_96 (icao VARCHAR, fleet_size VARCHAR) |
###question:What is the of Fleet size with a IATA of pr, and a Commenced operations smaller than 1941?###answer:SELECT SUM(fleet_size) FROM table_name_4 WHERE iata = "pr" AND commenced_operations < 1941###context:CREATE TABLE table_name_4 (fleet_size INTEGER, iata VARCHAR, commenced_operations VARCHAR) |
###question:Which ICAO has a Commenced operations larger than 2011?###answer:SELECT icao FROM table_name_72 WHERE commenced_operations > 2011###context:CREATE TABLE table_name_72 (icao VARCHAR, commenced_operations INTEGER) |
###question:What is the Status with an Author that is woodruff?###answer:SELECT status FROM table_name_31 WHERE authors = "woodruff"###context:CREATE TABLE table_name_31 (status VARCHAR, authors VARCHAR) |
###question:What is the highest Pick # when the CFL Team is the Toronto Argonauts?###answer:SELECT MAX(pick__number) FROM table_name_95 WHERE cfl_team = "toronto argonauts"###context:CREATE TABLE table_name_95 (pick__number INTEGER, cfl_team VARCHAR) |
###question:What is the CFL Team with #48 as the pick number?###answer:SELECT cfl_team FROM table_name_98 WHERE pick__number = 48###context:CREATE TABLE table_name_98 (cfl_team VARCHAR, pick__number VARCHAR) |
###question:What is the College with a Position of db, and the CFL Team was Winnipeg Blue Bombers?###answer:SELECT college FROM table_name_59 WHERE position = "db" AND cfl_team = "winnipeg blue bombers"###context:CREATE TABLE table_name_59 (college VARCHAR, position VARCHAR, cfl_team VARCHAR) |
###question:What is the CFL Team with Will Grant?###answer:SELECT cfl_team FROM table_name_32 WHERE player = "will grant"###context:CREATE TABLE table_name_32 (cfl_team VARCHAR, player VARCHAR) |
###question:What is the latest year of a gratitude type mission with 99 in the entourage?###answer:SELECT MAX(year) FROM table_name_60 WHERE number_in_entourage = "99" AND mission_type = "gratitude"###context:CREATE TABLE table_name_60 (year INTEGER, number_in_entourage VARCHAR, mission_type VARCHAR) |
###question:Who was the lead envoy of the mission with the Ryūkyūan King shō eki?###answer:SELECT lead_envoy FROM table_name_62 WHERE ryūkyūan_king = "shō eki"###context:CREATE TABLE table_name_62 (lead_envoy VARCHAR, ryūkyūan_king VARCHAR) |
###question:Who was the lead envoy of the congratulation mission in 1718 with the Ryūkyūan King shō kei?###answer:SELECT lead_envoy FROM table_name_10 WHERE ryūkyūan_king = "shō kei" AND mission_type = "congratulation" AND year = 1718###context:CREATE TABLE table_name_10 (lead_envoy VARCHAR, year VARCHAR, ryūkyūan_king... |
###question:Who was the lead envoy with the Ryūkyūan King shō kō?###answer:SELECT lead_envoy FROM table_name_44 WHERE ryūkyūan_king = "shō kō"###context:CREATE TABLE table_name_44 (lead_envoy VARCHAR, ryūkyūan_king VARCHAR) |
###question:On 10/20/1979*, who was the Opponent?###answer:SELECT opponent FROM table_name_59 WHERE date = "10/20/1979*"###context:CREATE TABLE table_name_59 (opponent VARCHAR, date VARCHAR) |
###question:What is the average Attendance at a game with a Result of w 30-23?###answer:SELECT AVG(attendance) FROM table_name_16 WHERE result = "w 30-23"###context:CREATE TABLE table_name_16 (attendance INTEGER, result VARCHAR) |
###question:What is the lowest Attendance at a game with the Result of w 25-17?###answer:SELECT MIN(attendance) FROM table_name_58 WHERE result = "w 25-17"###context:CREATE TABLE table_name_58 (attendance INTEGER, result VARCHAR) |
###question:What is Score, when Leading Scorer is Tyrone Hill , 20 Points?###answer:SELECT score FROM table_name_6 WHERE leading_scorer = "tyrone hill , 20 points"###context:CREATE TABLE table_name_6 (score VARCHAR, leading_scorer VARCHAR) |
###question:What is Home, when Score is 103-93?###answer:SELECT home FROM table_name_95 WHERE score = "103-93"###context:CREATE TABLE table_name_95 (home VARCHAR, score VARCHAR) |
###question:What is Attendance, when Home is Cleveland, and when Date is January 30?###answer:SELECT attendance FROM table_name_74 WHERE home = "cleveland" AND date = "january 30"###context:CREATE TABLE table_name_74 (attendance VARCHAR, home VARCHAR, date VARCHAR) |
###question:What is Leading Scorer, when Attendance is Gund Arena 20,562, and when Record is 20-10?###answer:SELECT leading_scorer FROM table_name_65 WHERE attendance = "gund arena 20,562" AND record = "20-10"###context:CREATE TABLE table_name_65 (leading_scorer VARCHAR, attendance VARCHAR, record VARCHAR) |
###question:What is Score, when Date is January 12?###answer:SELECT score FROM table_name_37 WHERE date = "january 12"###context:CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR) |
###question:What is Score, when Attendance is Gund Arena 20,562, and when Date is January 27?###answer:SELECT score FROM table_name_33 WHERE attendance = "gund arena 20,562" AND date = "january 27"###context:CREATE TABLE table_name_33 (score VARCHAR, attendance VARCHAR, date VARCHAR) |
###question:What is the sum of Top-10(s), when Cuts made is less than 10, and when Top-5 is less than 0?###answer:SELECT SUM(top_10) FROM table_name_95 WHERE cuts_made < 10 AND top_5 < 0###context:CREATE TABLE table_name_95 (top_10 INTEGER, cuts_made VARCHAR, top_5 VARCHAR) |
###question:What is the lowest Top-25, when Events is 10, and when Wins is greater than 0?###answer:SELECT MIN(top_25) FROM table_name_31 WHERE events = 10 AND wins > 0###context:CREATE TABLE table_name_31 (top_25 INTEGER, events VARCHAR, wins VARCHAR) |
###question:What is the lowest Top-5, when Top-25 is less than 4, and when Cuts made is less than 7?###answer:SELECT MIN(top_5) FROM table_name_33 WHERE top_25 < 4 AND cuts_made < 7###context:CREATE TABLE table_name_33 (top_5 INTEGER, top_25 VARCHAR, cuts_made VARCHAR) |
###question:What is the Height of Junior Meghan Austin?###answer:SELECT height FROM table_name_59 WHERE year = "junior" AND name = "meghan austin"###context:CREATE TABLE table_name_59 (height VARCHAR, year VARCHAR, name VARCHAR) |
###question:What is Martina Wood's Position?###answer:SELECT position FROM table_name_46 WHERE name = "martina wood"###context:CREATE TABLE table_name_46 (position VARCHAR, name VARCHAR) |
###question:What is the Name of the Player from Charlotte, NC?###answer:SELECT name FROM table_name_91 WHERE home_town = "charlotte, nc"###context:CREATE TABLE table_name_91 (name VARCHAR, home_town VARCHAR) |
###question:What is 6-2 Martina Wood's Position?###answer:SELECT position FROM table_name_52 WHERE height = "6-2" AND name = "martina wood"###context:CREATE TABLE table_name_52 (position VARCHAR, height VARCHAR, name VARCHAR) |
###question:What is the Position of the Player from Temple Hills, MD?###answer:SELECT position FROM table_name_86 WHERE home_town = "temple hills, md"###context:CREATE TABLE table_name_86 (position VARCHAR, home_town VARCHAR) |
###question:What is the Name of the Junior from Fayetteville, NC?###answer:SELECT name FROM table_name_69 WHERE year = "junior" AND home_town = "fayetteville, nc"###context:CREATE TABLE table_name_69 (name VARCHAR, year VARCHAR, home_town VARCHAR) |
###question:What rank has jo angel (wa) as the player?###answer:SELECT rank FROM table_name_47 WHERE player = "jo angel (wa)"###context:CREATE TABLE table_name_47 (rank VARCHAR, player VARCHAR) |
###question:What average has 1 as rhe rank?###answer:SELECT average FROM table_name_61 WHERE rank = "1"###context:CREATE TABLE table_name_61 (average VARCHAR, rank VARCHAR) |
###question:What rank has andy bichel (qld) as the player?###answer:SELECT rank FROM table_name_80 WHERE player = "andy bichel (qld)"###context:CREATE TABLE table_name_80 (rank VARCHAR, player VARCHAR) |
###question:What is the average that has 2 for the rank?###answer:SELECT average FROM table_name_3 WHERE rank = "2"###context:CREATE TABLE table_name_3 (average VARCHAR, rank VARCHAR) |
###question:What playee has 24.21 as the average?###answer:SELECT player FROM table_name_46 WHERE average = "24.21"###context:CREATE TABLE table_name_46 (player VARCHAR, average VARCHAR) |
###question:What is the average that has 441 as wicket?###answer:SELECT average FROM table_name_31 WHERE s_wicket = "441"###context:CREATE TABLE table_name_31 (average VARCHAR, s_wicket VARCHAR) |
###question:What was the year Elected of Republican Incumbent Dave Reichert?###answer:SELECT elected FROM table_name_31 WHERE party = "republican" AND incumbent = "dave reichert"###context:CREATE TABLE table_name_31 (elected VARCHAR, party VARCHAR, incumbent VARCHAR) |
###question:What were the Results in the Washington 2 District?###answer:SELECT results FROM table_name_73 WHERE district = "washington 2"###context:CREATE TABLE table_name_73 (results VARCHAR, district VARCHAR) |
###question:What is the 2008 Candidates Elected before 1994 with Incumbent Jim McDermott?###answer:SELECT 2008 AS _candidates FROM table_name_18 WHERE elected < 1994 AND incumbent = "jim mcdermott"###context:CREATE TABLE table_name_18 (elected VARCHAR, incumbent VARCHAR) |
###question:Who is the Incumbent with Results of 68% 32%?###answer:SELECT incumbent FROM table_name_1 WHERE results = "68% 32%"###context:CREATE TABLE table_name_1 (incumbent VARCHAR, results VARCHAR) |
###question:What District had Republican Incumbent Cathy McMorris?###answer:SELECT district FROM table_name_75 WHERE party = "republican" AND incumbent = "cathy mcmorris"###context:CREATE TABLE table_name_75 (district VARCHAR, party VARCHAR, incumbent VARCHAR) |
###question:What was Italy's highest total when there were less than 4 bronze and 1 gold?###answer:SELECT MAX(total) FROM table_name_29 WHERE bronze < 4 AND gold = 1 AND nation = "italy"###context:CREATE TABLE table_name_29 (total INTEGER, nation VARCHAR, bronze VARCHAR, gold VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.