Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
41,700 | <question>: Tell me the average Laps for grid larger than 22 <context>: CREATE TABLE table_name_39 (laps INTEGER, grid INTEGER) | SELECT AVG(laps) FROM table_name_39 WHERE grid > 22 |
41,701 | <question>: Tell me the constructor for grid of 17 <context>: CREATE TABLE table_name_9 (constructor VARCHAR, grid VARCHAR) | SELECT constructor FROM table_name_9 WHERE grid = 17 |
41,702 | <question>: What years had a manager who lost more than 1 and drawn more than 11? <context>: CREATE TABLE table_name_26 (ukraine_career VARCHAR, lost VARCHAR, drawn VARCHAR) | SELECT ukraine_career FROM table_name_26 WHERE lost > 1 AND drawn > 11 |
41,703 | <question>: what is the total win % of manager viktor prokopenko, when he lost fewer than 2? <context>: CREATE TABLE table_name_43 (win__percentage VARCHAR, manager VARCHAR, lost VARCHAR) | SELECT COUNT(win__percentage) FROM table_name_43 WHERE manager = "viktor prokopenko" AND lost < 2 |
41,704 | <question>: When 4 clubs are involved, what is the average number of fixtures? <context>: CREATE TABLE table_name_3 (fixtures INTEGER, clubs_involved VARCHAR) | SELECT AVG(fixtures) FROM table_name_3 WHERE clubs_involved = 4 |
41,705 | <question>: In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved? <context>: CREATE TABLE table_name_67 (fixtures INTEGER, round VARCHAR, clubs_involved VARCHAR) | SELECT SUM(fixtures) FROM table_name_67 WHERE round = "sixth round" AND clubs_involved > 15 |
41,706 | <question>: Tell me the league for year of 1915/16 <context>: CREATE TABLE table_name_3 (league VARCHAR, year VARCHAR) | SELECT league FROM table_name_3 WHERE year = "1915/16" |
41,707 | <question>: What is the make of the car that drove 54 laps? <context>: CREATE TABLE table_name_26 (constructor VARCHAR, laps VARCHAR) | SELECT constructor FROM table_name_26 WHERE laps = 54 |
41,708 | <question>: Who has a 59 cap? <context>: CREATE TABLE table_name_9 (name VARCHAR, caps VARCHAR) | SELECT name FROM table_name_9 WHERE caps = 59 |
41,709 | <question>: Tell me the sum of frequency for ERP W less than 1 <context>: CREATE TABLE table_name_43 (frequency_mhz INTEGER, erp_w INTEGER) | SELECT SUM(frequency_mhz) FROM table_name_43 WHERE erp_w < 1 |
41,710 | <question>: Tell me the lowest ties played with a debut of 1936 <context>: CREATE TABLE table_name_15 (ties_played INTEGER, debut VARCHAR) | SELECT MIN(ties_played) FROM table_name_15 WHERE debut = 1936 |
41,711 | <question>: Where did the Paris Marathon occur? <context>: CREATE TABLE table_name_47 (venue VARCHAR, competition VARCHAR) | SELECT venue FROM table_name_47 WHERE competition = "paris marathon" |
41,712 | <question>: Tell me the capacity for city park stadium <context>: CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR) | SELECT capacity FROM table_name_15 WHERE stadium = "city park stadium" |
41,713 | <question>: Tell me the tournament for opponents of andrei pavel rogier wassen <context>: CREATE TABLE table_name_53 (tournament VARCHAR, opponents_in_the_final VARCHAR) | SELECT tournament FROM table_name_53 WHERE opponents_in_the_final = "andrei pavel rogier wassen" |
41,714 | <question>: Tell me the tournament for score in the final of 1–6, 3–6 <context>: CREATE TABLE table_name_20 (tournament VARCHAR, score_in_the_final VARCHAR) | SELECT tournament FROM table_name_20 WHERE score_in_the_final = "1–6, 3–6" |
41,715 | <question>: Tell me the opponents for score in the final of 1–6, 2–6 <context>: CREATE TABLE table_name_68 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponents_in_the_final FROM table_name_68 WHERE score_in_the_final = "1–6, 2–6" |
41,716 | <question>: Tell me the surface for 16 april 2007 <context>: CREATE TABLE table_name_72 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_72 WHERE date = "16 april 2007" |
41,717 | <question>: I want the average pages for ISBN of 978-0-9766580-5-4 <context>: CREATE TABLE table_name_77 (pages INTEGER, isbn VARCHAR) | SELECT AVG(pages) FROM table_name_77 WHERE isbn = "978-0-9766580-5-4" |
41,718 | <question>: Tell me the sum of year for 244 pages <context>: CREATE TABLE table_name_84 (year INTEGER, pages VARCHAR) | SELECT SUM(year) FROM table_name_84 WHERE pages = 244 |
41,719 | <question>: Tell me the title for pages of 96 <context>: CREATE TABLE table_name_99 (title VARCHAR, pages VARCHAR) | SELECT title FROM table_name_99 WHERE pages = 96 |
41,720 | <question>: What was the date of birth of a republican member of the United States House of Representatives who held the term of 1863-1865? <context>: CREATE TABLE table_name_80 (date_of_birth VARCHAR, party VARCHAR, house_term VARCHAR) | SELECT date_of_birth FROM table_name_80 WHERE party = "republican" AND house_term = "1863-1865" |
41,721 | <question>: What was the age of the member of the United States House of Representatives that began their term on May 7, 1886? <context>: CREATE TABLE table_name_66 (age__years VARCHAR, _days_ VARCHAR, begin_date VARCHAR) | SELECT age__years, _days_ FROM table_name_66 WHERE begin_date = "may 7, 1886" |
41,722 | <question>: What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902? <context>: CREATE TABLE table_name_66 (date_of_birth VARCHAR, begin_date VARCHAR) | SELECT date_of_birth FROM table_name_66 WHERE begin_date = "april 24, 1902" |
41,723 | <question>: Which member of the United States House of Representatives began their term on January 4, 1997? <context>: CREATE TABLE table_name_72 (representative VARCHAR, begin_date VARCHAR) | SELECT representative FROM table_name_72 WHERE begin_date = "january 4, 1997" |
41,724 | <question>: Which state did Samuel Thatcher of the Federalist party represent? <context>: CREATE TABLE table_name_27 (state_served VARCHAR, party VARCHAR, representative VARCHAR) | SELECT state_served FROM table_name_27 WHERE party = "federalist" AND representative = "samuel thatcher" |
41,725 | <question>: What position does Hedo Türkoğlu play? <context>: CREATE TABLE table_name_93 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_93 WHERE player = "hedo türkoğlu" |
41,726 | <question>: How long has Sebastian Telfair played for Toronto? <context>: CREATE TABLE table_name_83 (years_in_toronto VARCHAR, player VARCHAR) | SELECT years_in_toronto FROM table_name_83 WHERE player = "sebastian telfair" |
41,727 | <question>: Tell me the title for japan august 23, 2012 <context>: CREATE TABLE table_name_30 (title VARCHAR, japan VARCHAR) | SELECT title FROM table_name_30 WHERE japan = "august 23, 2012" |
41,728 | <question>: Tell me the title for japan august 23, 2012 <context>: CREATE TABLE table_name_57 (title VARCHAR, japan VARCHAR) | SELECT title FROM table_name_57 WHERE japan = "august 23, 2012" |
41,729 | <question>: Tell me the Australia march 17, 2005 <context>: CREATE TABLE table_name_84 (australia VARCHAR, japan VARCHAR) | SELECT australia FROM table_name_84 WHERE japan = "march 17, 2005" |
41,730 | <question>: Tell me the Europe for z.h.p. unlosing ranger vs darkdeath evilman <context>: CREATE TABLE table_name_79 (europe VARCHAR, title VARCHAR) | SELECT europe FROM table_name_79 WHERE title = "z.h.p. unlosing ranger vs darkdeath evilman" |
41,731 | <question>: Name the total losses for 4 place and ties less than 0 <context>: CREATE TABLE table_name_35 (losses VARCHAR, place VARCHAR, ties VARCHAR) | SELECT COUNT(losses) FROM table_name_35 WHERE place = 4 AND ties < 0 |
41,732 | <question>: Name the average place for ties less than 1 and losess more than 3 with points of 6 qc <context>: CREATE TABLE table_name_70 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR) | SELECT AVG(place) FROM table_name_70 WHERE ties < 1 AND points = "6 qc" AND losses > 3 |
41,733 | <question>: Name the most wins for losses more than 2 and points of two with place larger than 7 <context>: CREATE TABLE table_name_4 (wins INTEGER, place VARCHAR, losses VARCHAR, points VARCHAR) | SELECT MAX(wins) FROM table_name_4 WHERE losses > "2" AND points = "2" AND place > 7 |
41,734 | <question>: Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2 <context>: CREATE TABLE table_name_58 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR) | SELECT SUM(place) FROM table_name_58 WHERE ties > 0 AND points = "7 qc" AND losses > 2 |
41,735 | <question>: Tell me the number range for 4vip <context>: CREATE TABLE table_name_36 (no_range VARCHAR, type VARCHAR) | SELECT no_range FROM table_name_36 WHERE type = "4vip" |
41,736 | <question>: Name the heat rank for senegal <context>: CREATE TABLE table_name_22 (heat_rank VARCHAR, country VARCHAR) | SELECT heat_rank FROM table_name_22 WHERE country = "senegal" |
41,737 | <question>: What is the value for 2010 when the 2012 value is Q2? <context>: CREATE TABLE table_name_95 (Id VARCHAR) | SELECT 2010 FROM table_name_95 WHERE 2012 = "q2" |
41,738 | <question>: What is the value for 2010 when the value for 2006 is A and the value for 2009 is 1R? <context>: CREATE TABLE table_name_59 (Id VARCHAR) | SELECT 2010 FROM table_name_59 WHERE 2006 = "a" AND 2009 = "1r" |
41,739 | <question>: What is the value for 2012 when the value for 2009 is 1R and the vale for 2007 is 2R? <context>: CREATE TABLE table_name_51 (Id VARCHAR) | SELECT 2012 FROM table_name_51 WHERE 2009 = "1r" AND 2007 = "2r" |
41,740 | <question>: What is the value for 2008 for the US Open Tournament? <context>: CREATE TABLE table_name_84 (tournament VARCHAR) | SELECT 2008 FROM table_name_84 WHERE tournament = "us open" |
41,741 | <question>: What is the value for 2009 when the value for 2011 is 138? <context>: CREATE TABLE table_name_87 (Id VARCHAR) | SELECT 2009 FROM table_name_87 WHERE 2011 = "138" |
41,742 | <question>: Tell me the highest series # for september 22, 1976 <context>: CREATE TABLE table_name_53 (series__number INTEGER, original_air_date VARCHAR) | SELECT MAX(series__number) FROM table_name_53 WHERE original_air_date = "september 22, 1976" |
41,743 | <question>: What is the screen size and pixel value when the dimensions are 115.5×83.7×102.5? <context>: CREATE TABLE table_name_7 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR) | SELECT screen_size, pixels FROM table_name_7 WHERE dimensions_w×h×d__mm_ = "115.5×83.7×102.5" |
41,744 | <question>: What is the screen size and pixel amount of model p5000 when the dimensions are 98×64.5×41? <context>: CREATE TABLE table_name_28 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR, model VARCHAR) | SELECT screen_size, pixels FROM table_name_28 WHERE dimensions_w×h×d__mm_ = "98×64.5×41" AND model = "p5000" |
41,745 | <question>: Tell me the championship game for big eight <context>: CREATE TABLE table_name_29 (championship_game VARCHAR, conference VARCHAR) | SELECT championship_game FROM table_name_29 WHERE conference = "big eight" |
41,746 | <question>: Name the lowest total for rank of 13 with bronze less than 1 <context>: CREATE TABLE table_name_20 (total INTEGER, rank VARCHAR, bronze VARCHAR) | SELECT MIN(total) FROM table_name_20 WHERE rank = 13 AND bronze < 1 |
41,747 | <question>: Tell me the sum of original week for september 16, 1982 <context>: CREATE TABLE table_name_51 (original_week INTEGER, date VARCHAR) | SELECT SUM(original_week) FROM table_name_51 WHERE date = "september 16, 1982" |
41,748 | <question>: Tell me the average original week for soldier field <context>: CREATE TABLE table_name_18 (original_week INTEGER, venue VARCHAR) | SELECT AVG(original_week) FROM table_name_18 WHERE venue = "soldier field" |
41,749 | <question>: Tell me the date for original week less than 16 and result of l 23–22 <context>: CREATE TABLE table_name_81 (date VARCHAR, original_week VARCHAR, result VARCHAR) | SELECT date FROM table_name_81 WHERE original_week < 16 AND result = "l 23–22" |
41,750 | <question>: Tell me the call sign for frequency of 0 97.3 fm <context>: CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR) | SELECT call_sign FROM table_name_67 WHERE frequency = "0 97.3 fm" |
41,751 | <question>: Tell me the owner for classical <context>: CREATE TABLE table_name_81 (owner VARCHAR, format VARCHAR) | SELECT owner FROM table_name_81 WHERE format = "classical" |
41,752 | <question>: Tell me the city of license for 0 106.9 fm <context>: CREATE TABLE table_name_1 (city_of_license VARCHAR, frequency VARCHAR) | SELECT city_of_license FROM table_name_1 WHERE frequency = "0 106.9 fm" |
41,753 | <question>: What year(s) did Hakeem Olajuwon play Center for Toronto? <context>: CREATE TABLE table_name_33 (years_in_toronto VARCHAR, player VARCHAR) | SELECT years_in_toronto FROM table_name_33 WHERE player = "hakeem olajuwon" |
41,754 | <question>: What position did Jimmy Oliver of the United States play? <context>: CREATE TABLE table_name_75 (position VARCHAR, nationality VARCHAR, player VARCHAR) | SELECT position FROM table_name_75 WHERE nationality = "united states" AND player = "jimmy oliver" |
41,755 | <question>: Tell me the total number of crest length for year construction larger than 1957 for mattmark <context>: CREATE TABLE table_name_87 (crest_length__meters_ VARCHAR, year_of_construction VARCHAR, name VARCHAR) | SELECT COUNT(crest_length__meters_) FROM table_name_87 WHERE year_of_construction > 1957 AND name = "mattmark" |
41,756 | <question>: Tell me the % of wt 2nd for bp 3rd comp of 98.4 <context>: CREATE TABLE table_name_77 (_percentage_wt_2nd VARCHAR, bp_3rd_comp__˚c_ VARCHAR) | SELECT _percentage_wt_2nd FROM table_name_77 WHERE bp_3rd_comp__˚c_ = "98.4" |
41,757 | <question>: Tell me the 3rd component for bp azeo of 62.1 <context>: CREATE TABLE table_name_49 (bp_azeo__˚c_ VARCHAR) | SELECT 3 AS rd_component FROM table_name_49 WHERE bp_azeo__˚c_ = "62.1" |
41,758 | <question>: Tell me the name with sør-trøndelag <context>: CREATE TABLE table_name_64 (name VARCHAR, county VARCHAR) | SELECT name FROM table_name_64 WHERE county = "sør-trøndelag" |
41,759 | <question>: Tell me the elevation for oslo <context>: CREATE TABLE table_name_20 (elevation VARCHAR, county VARCHAR) | SELECT elevation FROM table_name_20 WHERE county = "oslo" |
41,760 | <question>: What was the result of the match against Pat Lawlor? <context>: CREATE TABLE table_name_46 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_46 WHERE opponent = "pat lawlor" |
41,761 | <question>: Tell me the sum of cars per set for operator of london midland <context>: CREATE TABLE table_name_3 (cars_per_set INTEGER, operator VARCHAR) | SELECT SUM(cars_per_set) FROM table_name_3 WHERE operator = "london midland" |
41,762 | <question>: Tell me the title of japan january 31, 2008 <context>: CREATE TABLE table_name_74 (title VARCHAR, japan VARCHAR) | SELECT title FROM table_name_74 WHERE japan = "january 31, 2008" |
41,763 | <question>: Tell me japan for jigsaw land: japan graffiti <context>: CREATE TABLE table_name_14 (japan VARCHAR, title VARCHAR) | SELECT japan FROM table_name_14 WHERE title = "jigsaw land: japan graffiti" |
41,764 | <question>: Tell me north america for january 23, 2013 <context>: CREATE TABLE table_name_83 (north_america VARCHAR, japan VARCHAR) | SELECT north_america FROM table_name_83 WHERE japan = "january 23, 2013" |
41,765 | <question>: Tell me the north america for september 18, 2009 <context>: CREATE TABLE table_name_64 (north_america VARCHAR, europe VARCHAR) | SELECT north_america FROM table_name_64 WHERE europe = "september 18, 2009" |
41,766 | <question>: Tell me europe for japan of january 28, 2010 <context>: CREATE TABLE table_name_72 (europe VARCHAR, japan VARCHAR) | SELECT europe FROM table_name_72 WHERE japan = "january 28, 2010" |
41,767 | <question>: Tell me the north america for phantom brave <context>: CREATE TABLE table_name_74 (north_america VARCHAR, title VARCHAR) | SELECT north_america FROM table_name_74 WHERE title = "phantom brave" |
41,768 | <question>: What is the average played value in Belgrade with attendance greater than 26,222? <context>: CREATE TABLE table_name_83 (played INTEGER, city VARCHAR, average_attendance VARCHAR) | SELECT AVG(played) FROM table_name_83 WHERE city = "belgrade" AND average_attendance > 26 OFFSET 222 |
41,769 | <question>: Tell me the role of festival theatre <context>: CREATE TABLE table_name_35 (role VARCHAR, theatre VARCHAR) | SELECT role FROM table_name_35 WHERE theatre = "festival theatre" |
41,770 | <question>: Tell me the lowest year for shubert theatre <context>: CREATE TABLE table_name_72 (year INTEGER, theatre VARCHAR) | SELECT MIN(year) FROM table_name_72 WHERE theatre = "shubert theatre" |
41,771 | <question>: Tell me the total number of years for lady cecily waynflete and opera house, kennedy center <context>: CREATE TABLE table_name_51 (year VARCHAR, role VARCHAR, theatre VARCHAR) | SELECT COUNT(year) FROM table_name_51 WHERE role = "lady cecily waynflete" AND theatre = "opera house, kennedy center" |
41,772 | <question>: Tell me the role for tea and sympathy <context>: CREATE TABLE table_name_83 (role VARCHAR, play VARCHAR) | SELECT role FROM table_name_83 WHERE play = "tea and sympathy" |
41,773 | <question>: When was the first beatification in Korea that was canonised before 1984? <context>: CREATE TABLE table_name_12 (beatified INTEGER, place VARCHAR, canonised VARCHAR) | SELECT MIN(beatified) FROM table_name_12 WHERE place = "korea" AND canonised < 1984 |
41,774 | <question>: When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred? <context>: CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR) | SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = "laurent-marie-joseph imbert / st. imbert" AND canonised > 1984 |
41,775 | <question>: When was the person(s) who were canonised before 1988 beatified? <context>: CREATE TABLE table_name_17 (beatified VARCHAR, canonised INTEGER) | SELECT beatified FROM table_name_17 WHERE canonised < 1988 |
41,776 | <question>: When was John Hoan Trinh Doan / St. John Hoan, who was beatified in 1909 and canonised after 1988, martyred? <context>: CREATE TABLE table_name_64 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR) | SELECT MAX(martyred) FROM table_name_64 WHERE beatified = 1909 AND name = "john hoan trinh doan / st. john hoan" AND canonised > 1988 |
41,777 | <question>: What is the sum of year with the local host Sai? <context>: CREATE TABLE table_name_37 (year INTEGER, local_host_s_ VARCHAR) | SELECT SUM(year) FROM table_name_37 WHERE local_host_s_ = "sai" |
41,778 | <question>: Who are the local hosts for the United States in years earlier than 2007? <context>: CREATE TABLE table_name_86 (local_host_s_ VARCHAR, country VARCHAR, year VARCHAR) | SELECT local_host_s_ FROM table_name_86 WHERE country = "united states" AND year < 2007 |
41,779 | <question>: Which city has a conference of LCC2 and a year earlier than 2009? <context>: CREATE TABLE table_name_70 (city VARCHAR, year VARCHAR, conference VARCHAR) | SELECT city FROM table_name_70 WHERE year < 2009 AND conference = "lcc2" |
41,780 | <question>: Tell me the class with rank of 89th <context>: CREATE TABLE table_name_12 (class VARCHAR, rank VARCHAR) | SELECT class FROM table_name_12 WHERE rank = "89th" |
41,781 | <question>: Tell me the most year for 3 points <context>: CREATE TABLE table_name_30 (year INTEGER, points VARCHAR) | SELECT MAX(year) FROM table_name_30 WHERE points = 3 |
41,782 | <question>: Which lane is Goksu Bicer in? <context>: CREATE TABLE table_name_37 (lane VARCHAR, swimmer VARCHAR) | SELECT lane FROM table_name_37 WHERE swimmer = "goksu bicer" |
41,783 | <question>: Which Driver that has a Grid less than 9 and a Time/Retired of 2:06:26.358? <context>: CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_59 WHERE grid < 9 AND time_retired = "2:06:26.358" |
41,784 | <question>: Which driver drove a Ferrari in the 2007 European Grand Prix with a grid less than 3? <context>: CREATE TABLE table_name_78 (driver VARCHAR, constructor VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_78 WHERE constructor = "ferrari" AND grid < 3 |
41,785 | <question>: Name the location of ufc 98 <context>: CREATE TABLE table_name_51 (location VARCHAR, event VARCHAR) | SELECT location FROM table_name_51 WHERE event = "ufc 98" |
41,786 | <question>: What is the smallest number of wins for the Totals Tournament with a Top-25 value greater than 3? <context>: CREATE TABLE table_name_25 (wins INTEGER, tournament VARCHAR, top_25 VARCHAR) | SELECT MIN(wins) FROM table_name_25 WHERE tournament = "totals" AND top_25 > 3 |
41,787 | <question>: What is the sum of Top-5 values with events values less than 2? <context>: CREATE TABLE table_name_35 (top_5 INTEGER, events INTEGER) | SELECT SUM(top_5) FROM table_name_35 WHERE events < 2 |
41,788 | <question>: What is the smallest value for Wins when the number of cuts is greater than 4 and the Top-5 value is less than 1? <context>: CREATE TABLE table_name_51 (wins INTEGER, cuts_made VARCHAR, top_5 VARCHAR) | SELECT MIN(wins) FROM table_name_51 WHERE cuts_made > 4 AND top_5 < 1 |
41,789 | <question>: Tell me the competition for 2nd position with year more than 2005 <context>: CREATE TABLE table_name_23 (competition VARCHAR, position VARCHAR, year VARCHAR) | SELECT competition FROM table_name_23 WHERE position = "2nd" AND year > 2005 |
41,790 | <question>: Name the sum of year for 2nd position for junior race <context>: CREATE TABLE table_name_40 (year INTEGER, position VARCHAR, event VARCHAR) | SELECT SUM(year) FROM table_name_40 WHERE position = "2nd" AND event = "junior race" |
41,791 | <question>: Name the venue for 2nd position of year before 2008 <context>: CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, position VARCHAR) | SELECT venue FROM table_name_83 WHERE year < 2008 AND position = "2nd" |
41,792 | <question>: Which circuit did Raymond Mays win? <context>: CREATE TABLE table_name_17 (circuit VARCHAR, winning_driver VARCHAR) | SELECT circuit FROM table_name_17 WHERE winning_driver = "raymond mays" |
41,793 | <question>: Which Circuit did Johnny Wakefield win? <context>: CREATE TABLE table_name_3 (circuit VARCHAR, winning_driver VARCHAR) | SELECT circuit FROM table_name_3 WHERE winning_driver = "johnny wakefield" |
41,794 | <question>: Tell me the lowest bronze for panama and total larger than 8 <context>: CREATE TABLE table_name_84 (bronze INTEGER, nation VARCHAR, total VARCHAR) | SELECT MIN(bronze) FROM table_name_84 WHERE nation = "panama" AND total > 8 |
41,795 | <question>: Tell me the average total for guatemala and bronze less than 2 <context>: CREATE TABLE table_name_32 (total INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT AVG(total) FROM table_name_32 WHERE nation = "guatemala" AND bronze < 2 |
41,796 | <question>: Tell me the number of bronze for silver of 0 and total less than 1 <context>: CREATE TABLE table_name_54 (bronze VARCHAR, silver VARCHAR, total VARCHAR) | SELECT COUNT(bronze) FROM table_name_54 WHERE silver = 0 AND total < 1 |
41,797 | <question>: Tell me the sum of total for rank of 1 <context>: CREATE TABLE table_name_35 (total INTEGER, rank VARCHAR) | SELECT SUM(total) FROM table_name_35 WHERE rank = 1 |
41,798 | <question>: Tell me the total number for costa rica and rank more than 8 <context>: CREATE TABLE table_name_82 (total VARCHAR, nation VARCHAR, rank VARCHAR) | SELECT COUNT(total) FROM table_name_82 WHERE nation = "costa rica" AND rank > 8 |
41,799 | <question>: What years did Tymerlan Huseynov, whose average is larger than 0.361, play? <context>: CREATE TABLE table_name_94 (career VARCHAR, average VARCHAR, player VARCHAR) | SELECT career FROM table_name_94 WHERE average > 0.361 AND player = "tymerlan huseynov" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.