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