question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which Coach has a Most Improved of rory thompson? | CREATE TABLE table_name_75 (coach VARCHAR, most_improved VARCHAR) | SELECT coach FROM table_name_75 WHERE most_improved = "rory thompson" | ### Context: CREATE TABLE table_name_75 (coach VARCHAR, most_improved VARCHAR) ### Question: Which Coach has a Most Improved of rory thompson? ### Answer: SELECT coach FROM table_name_75 WHERE most_improved = "rory thompson" |
Which Year has a Community Award of jarrod harbrow? | CREATE TABLE table_name_85 (year INTEGER, community_award VARCHAR) | SELECT SUM(year) FROM table_name_85 WHERE community_award = "jarrod harbrow" | ### Context: CREATE TABLE table_name_85 (year INTEGER, community_award VARCHAR) ### Question: Which Year has a Community Award of jarrod harbrow? ### Answer: SELECT SUM(year) FROM table_name_85 WHERE community_award = "jarrod harbrow" |
what is the capacity for the team šibenik? | CREATE TABLE table_name_35 (capacity INTEGER, team VARCHAR) | SELECT MIN(capacity) FROM table_name_35 WHERE team = "šibenik" | ### Context: CREATE TABLE table_name_35 (capacity INTEGER, team VARCHAR) ### Question: what is the capacity for the team šibenik? ### Answer: SELECT MIN(capacity) FROM table_name_35 WHERE team = "šibenik" |
what is the stadium for čakovec? | CREATE TABLE table_name_81 (stadium VARCHAR, team VARCHAR) | SELECT stadium FROM table_name_81 WHERE team = "čakovec" | ### Context: CREATE TABLE table_name_81 (stadium VARCHAR, team VARCHAR) ### Question: what is the stadium for čakovec? ### Answer: SELECT stadium FROM table_name_81 WHERE team = "čakovec" |
what is the capacity when the home city is zagreb and the manager is zlatko kranjčar? | CREATE TABLE table_name_88 (capacity INTEGER, home_city VARCHAR, manager VARCHAR) | SELECT AVG(capacity) FROM table_name_88 WHERE home_city = "zagreb" AND manager = "zlatko kranjčar" | ### Context: CREATE TABLE table_name_88 (capacity INTEGER, home_city VARCHAR, manager VARCHAR) ### Question: what is the capacity when the home city is zagreb and the manager is zlatko kranjčar? ### Answer: SELECT AVG(capacity) FROM table_name_88 WHERE home_city = "zagreb" AND manager = "zlatko kranjčar" |
what is the home city for the stadion src mladost? | CREATE TABLE table_name_29 (home_city VARCHAR, stadium VARCHAR) | SELECT home_city FROM table_name_29 WHERE stadium = "stadion src mladost" | ### Context: CREATE TABLE table_name_29 (home_city VARCHAR, stadium VARCHAR) ### Question: what is the home city for the stadion src mladost? ### Answer: SELECT home_city FROM table_name_29 WHERE stadium = "stadion src mladost" |
What is the grid for the driver with an electrical time/retired and 51 laps? | CREATE TABLE table_name_43 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR) | SELECT grid FROM table_name_43 WHERE time_retired = "electrical" AND laps = 51 | ### Context: CREATE TABLE table_name_43 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR) ### Question: What is the grid for the driver with an electrical time/retired and 51 laps? ### Answer: SELECT grid FROM table_name_43 WHERE time_retired = "electrical" AND laps = 51 |
Who is the driver with 1 grid? | CREATE TABLE table_name_30 (driver VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_30 WHERE grid = 1 | ### Context: CREATE TABLE table_name_30 (driver VARCHAR, grid VARCHAR) ### Question: Who is the driver with 1 grid? ### Answer: SELECT driver FROM table_name_30 WHERE grid = 1 |
What place was Mark Carnevale in? | CREATE TABLE table_name_32 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_32 WHERE player = "mark carnevale" | ### Context: CREATE TABLE table_name_32 (place VARCHAR, player VARCHAR) ### Question: What place was Mark Carnevale in? ### Answer: SELECT place FROM table_name_32 WHERE player = "mark carnevale" |
What was the highest attendance against Real Juventud? | CREATE TABLE table_name_14 (attendance INTEGER, away VARCHAR) | SELECT MAX(attendance) FROM table_name_14 WHERE away = "real juventud" | ### Context: CREATE TABLE table_name_14 (attendance INTEGER, away VARCHAR) ### Question: What was the highest attendance against Real Juventud? ### Answer: SELECT MAX(attendance) FROM table_name_14 WHERE away = "real juventud" |
Who is the away captain for the matches dated 7,8,10,11 feb 1908? | CREATE TABLE table_name_47 (away_captain VARCHAR, date VARCHAR) | SELECT away_captain FROM table_name_47 WHERE date = "7,8,10,11 feb 1908" | ### Context: CREATE TABLE table_name_47 (away_captain VARCHAR, date VARCHAR) ### Question: Who is the away captain for the matches dated 7,8,10,11 feb 1908? ### Answer: SELECT away_captain FROM table_name_47 WHERE date = "7,8,10,11 feb 1908" |
Who is the home captain at the Adelaide Oval? | CREATE TABLE table_name_14 (home_captain VARCHAR, venue VARCHAR) | SELECT home_captain FROM table_name_14 WHERE venue = "adelaide oval" | ### Context: CREATE TABLE table_name_14 (home_captain VARCHAR, venue VARCHAR) ### Question: Who is the home captain at the Adelaide Oval? ### Answer: SELECT home_captain FROM table_name_14 WHERE venue = "adelaide oval" |
Who is the home captain that won AUS by 245 runs? | CREATE TABLE table_name_93 (home_captain VARCHAR, result VARCHAR) | SELECT home_captain FROM table_name_93 WHERE result = "aus by 245 runs" | ### Context: CREATE TABLE table_name_93 (home_captain VARCHAR, result VARCHAR) ### Question: Who is the home captain that won AUS by 245 runs? ### Answer: SELECT home_captain FROM table_name_93 WHERE result = "aus by 245 runs" |
What was the venue for the dates 1,2,3,4,6,7 jan 1908? | CREATE TABLE table_name_64 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_64 WHERE date = "1,2,3,4,6,7 jan 1908" | ### Context: CREATE TABLE table_name_64 (venue VARCHAR, date VARCHAR) ### Question: What was the venue for the dates 1,2,3,4,6,7 jan 1908? ### Answer: SELECT venue FROM table_name_64 WHERE date = "1,2,3,4,6,7 jan 1908" |
What was the venue for the dates 7,8,10,11 Feb 1908? | CREATE TABLE table_name_67 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_67 WHERE date = "7,8,10,11 feb 1908" | ### Context: CREATE TABLE table_name_67 (venue VARCHAR, date VARCHAR) ### Question: What was the venue for the dates 7,8,10,11 Feb 1908? ### Answer: SELECT venue FROM table_name_67 WHERE date = "7,8,10,11 feb 1908" |
What's the production if the technology is sodium-sulfur batteries and yes to toxic materials? | CREATE TABLE table_name_39 (in_production VARCHAR, toxic_materials VARCHAR, technology VARCHAR) | SELECT in_production FROM table_name_39 WHERE toxic_materials = "yes" AND technology = "sodium-sulfur batteries" | ### Context: CREATE TABLE table_name_39 (in_production VARCHAR, toxic_materials VARCHAR, technology VARCHAR) ### Question: What's the production if the technology is sodium-sulfur batteries and yes to toxic materials? ### Answer: SELECT in_production FROM table_name_39 WHERE toxic_materials = "yes" AND technology = "sodium-sulfur batteries" |
What are the moving parts of lead-acid? | CREATE TABLE table_name_74 (moving_parts VARCHAR, technology VARCHAR) | SELECT moving_parts FROM table_name_74 WHERE technology = "lead-acid" | ### Context: CREATE TABLE table_name_74 (moving_parts VARCHAR, technology VARCHAR) ### Question: What are the moving parts of lead-acid? ### Answer: SELECT moving_parts FROM table_name_74 WHERE technology = "lead-acid" |
What's the room temperature with no toxic materials and no ln production? | CREATE TABLE table_name_67 (room_temperature VARCHAR, in_production VARCHAR, toxic_materials VARCHAR) | SELECT room_temperature FROM table_name_67 WHERE in_production = "no" AND toxic_materials = "no" | ### Context: CREATE TABLE table_name_67 (room_temperature VARCHAR, in_production VARCHAR, toxic_materials VARCHAR) ### Question: What's the room temperature with no toxic materials and no ln production? ### Answer: SELECT room_temperature FROM table_name_67 WHERE in_production = "no" AND toxic_materials = "no" |
What's the technology when there are no moving parts but yes to toxic materials? | CREATE TABLE table_name_20 (technology VARCHAR, toxic_materials VARCHAR, moving_parts VARCHAR) | SELECT technology FROM table_name_20 WHERE toxic_materials = "yes" AND moving_parts = "no" | ### Context: CREATE TABLE table_name_20 (technology VARCHAR, toxic_materials VARCHAR, moving_parts VARCHAR) ### Question: What's the technology when there are no moving parts but yes to toxic materials? ### Answer: SELECT technology FROM table_name_20 WHERE toxic_materials = "yes" AND moving_parts = "no" |
What was the Score for T9 United States Player Kirk Triplett? | CREATE TABLE table_name_14 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR) | SELECT score FROM table_name_14 WHERE place = "t9" AND country = "united states" AND player = "kirk triplett" | ### Context: CREATE TABLE table_name_14 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR) ### Question: What was the Score for T9 United States Player Kirk Triplett? ### Answer: SELECT score FROM table_name_14 WHERE place = "t9" AND country = "united states" AND player = "kirk triplett" |
What country is Tiger Woods from? | CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_22 WHERE player = "tiger woods" | ### Context: CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR) ### Question: What country is Tiger Woods from? ### Answer: SELECT country FROM table_name_22 WHERE player = "tiger woods" |
what is the assists when the club is chicago fire and goals is more than 2? | CREATE TABLE table_name_82 (assists INTEGER, club VARCHAR, goals VARCHAR) | SELECT SUM(assists) FROM table_name_82 WHERE club = "chicago fire" AND goals > 2 | ### Context: CREATE TABLE table_name_82 (assists INTEGER, club VARCHAR, goals VARCHAR) ### Question: what is the assists when the club is chicago fire and goals is more than 2? ### Answer: SELECT SUM(assists) FROM table_name_82 WHERE club = "chicago fire" AND goals > 2 |
what is the most assists when the goals is less than 0? | CREATE TABLE table_name_48 (assists INTEGER, goals INTEGER) | SELECT MAX(assists) FROM table_name_48 WHERE goals < 0 | ### Context: CREATE TABLE table_name_48 (assists INTEGER, goals INTEGER) ### Question: what is the most assists when the goals is less than 0? ### Answer: SELECT MAX(assists) FROM table_name_48 WHERE goals < 0 |
What is Score in The Final, when Date is "1981"? | CREATE TABLE table_name_41 (score_in_the_final VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_41 WHERE date = 1981 | ### Context: CREATE TABLE table_name_41 (score_in_the_final VARCHAR, date VARCHAR) ### Question: What is Score in The Final, when Date is "1981"? ### Answer: SELECT score_in_the_final FROM table_name_41 WHERE date = 1981 |
What is Opponent in The Final, when Date is "1976"? | CREATE TABLE table_name_40 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_40 WHERE date = 1976 | ### Context: CREATE TABLE table_name_40 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: What is Opponent in The Final, when Date is "1976"? ### Answer: SELECT opponent_in_the_final FROM table_name_40 WHERE date = 1976 |
What is Location Attendance, when Date is "December 30"? | CREATE TABLE table_name_63 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_name_63 WHERE date = "december 30" | ### Context: CREATE TABLE table_name_63 (location_attendance VARCHAR, date VARCHAR) ### Question: What is Location Attendance, when Date is "December 30"? ### Answer: SELECT location_attendance FROM table_name_63 WHERE date = "december 30" |
What is Date, when High Rebounds is "Amar'e Stoudemire (13)"? | CREATE TABLE table_name_28 (date VARCHAR, high_rebounds VARCHAR) | SELECT date FROM table_name_28 WHERE high_rebounds = "amar'e stoudemire (13)" | ### Context: CREATE TABLE table_name_28 (date VARCHAR, high_rebounds VARCHAR) ### Question: What is Date, when High Rebounds is "Amar'e Stoudemire (13)"? ### Answer: SELECT date FROM table_name_28 WHERE high_rebounds = "amar'e stoudemire (13)" |
What is Score, when Location Attendance is "US Airways Center 18,422", and when Game is less than 22? | CREATE TABLE table_name_27 (score VARCHAR, location_attendance VARCHAR, game VARCHAR) | SELECT score FROM table_name_27 WHERE location_attendance = "us airways center 18,422" AND game < 22 | ### Context: CREATE TABLE table_name_27 (score VARCHAR, location_attendance VARCHAR, game VARCHAR) ### Question: What is Score, when Location Attendance is "US Airways Center 18,422", and when Game is less than 22? ### Answer: SELECT score FROM table_name_27 WHERE location_attendance = "us airways center 18,422" AND game < 22 |
What is Score, when Game is "19"? | CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_11 WHERE game = 19 | ### Context: CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR) ### Question: What is Score, when Game is "19"? ### Answer: SELECT score FROM table_name_11 WHERE game = 19 |
What is Location Attendance, when Team is "Orlando"? | CREATE TABLE table_name_16 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_name_16 WHERE team = "orlando" | ### Context: CREATE TABLE table_name_16 (location_attendance VARCHAR, team VARCHAR) ### Question: What is Location Attendance, when Team is "Orlando"? ### Answer: SELECT location_attendance FROM table_name_16 WHERE team = "orlando" |
What is Record, when Date is "December 30"? | CREATE TABLE table_name_22 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_22 WHERE date = "december 30" | ### Context: CREATE TABLE table_name_22 (record VARCHAR, date VARCHAR) ### Question: What is Record, when Date is "December 30"? ### Answer: SELECT record FROM table_name_22 WHERE date = "december 30" |
Name the Theaters that has a Rank larger than 7? | CREATE TABLE table_name_83 (theaters INTEGER, rank INTEGER) | SELECT MAX(theaters) FROM table_name_83 WHERE rank > 7 | ### Context: CREATE TABLE table_name_83 (theaters INTEGER, rank INTEGER) ### Question: Name the Theaters that has a Rank larger than 7? ### Answer: SELECT MAX(theaters) FROM table_name_83 WHERE rank > 7 |
Name the Gross-to-date which has a Date of august 23–25? | CREATE TABLE table_name_53 (gross_to_date VARCHAR, date VARCHAR) | SELECT gross_to_date FROM table_name_53 WHERE date = "august 23–25" | ### Context: CREATE TABLE table_name_53 (gross_to_date VARCHAR, date VARCHAR) ### Question: Name the Gross-to-date which has a Date of august 23–25? ### Answer: SELECT gross_to_date FROM table_name_53 WHERE date = "august 23–25" |
Name the Round which has a Position of defensive back and a Pick of 226? | CREATE TABLE table_name_84 (round INTEGER, position VARCHAR, pick VARCHAR) | SELECT MIN(round) FROM table_name_84 WHERE position = "defensive back" AND pick = 226 | ### Context: CREATE TABLE table_name_84 (round INTEGER, position VARCHAR, pick VARCHAR) ### Question: Name the Round which has a Position of defensive back and a Pick of 226? ### Answer: SELECT MIN(round) FROM table_name_84 WHERE position = "defensive back" AND pick = 226 |
Name the Round which has a Player of zack walz? | CREATE TABLE table_name_68 (round VARCHAR, player VARCHAR) | SELECT round FROM table_name_68 WHERE player = "zack walz" | ### Context: CREATE TABLE table_name_68 (round VARCHAR, player VARCHAR) ### Question: Name the Round which has a Player of zack walz? ### Answer: SELECT round FROM table_name_68 WHERE player = "zack walz" |
Name the Round which has a Position of defensive back and corey chavous? | CREATE TABLE table_name_57 (round INTEGER, position VARCHAR, player VARCHAR) | SELECT MIN(round) FROM table_name_57 WHERE position = "defensive back" AND player = "corey chavous" | ### Context: CREATE TABLE table_name_57 (round INTEGER, position VARCHAR, player VARCHAR) ### Question: Name the Round which has a Position of defensive back and corey chavous? ### Answer: SELECT MIN(round) FROM table_name_57 WHERE position = "defensive back" AND player = "corey chavous" |
Name all Pick that has a Round of 7, and a School/Club Team of arizona st.? | CREATE TABLE table_name_46 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR) | SELECT COUNT(pick) FROM table_name_46 WHERE round = 7 AND school_club_team = "arizona st." | ### Context: CREATE TABLE table_name_46 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR) ### Question: Name all Pick that has a Round of 7, and a School/Club Team of arizona st.? ### Answer: SELECT COUNT(pick) FROM table_name_46 WHERE round = 7 AND school_club_team = "arizona st." |
Which Year has a Regular Season of 7th? | CREATE TABLE table_name_18 (the_year INTEGER, regular_season VARCHAR) | SELECT MAX(the_year) FROM table_name_18 WHERE regular_season = "7th" | ### Context: CREATE TABLE table_name_18 (the_year INTEGER, regular_season VARCHAR) ### Question: Which Year has a Regular Season of 7th? ### Answer: SELECT MAX(the_year) FROM table_name_18 WHERE regular_season = "7th" |
Which Year has a Division larger than 3? | CREATE TABLE table_name_97 (the_year INTEGER, division INTEGER) | SELECT MAX(the_year) FROM table_name_97 WHERE division > 3 | ### Context: CREATE TABLE table_name_97 (the_year INTEGER, division INTEGER) ### Question: Which Year has a Division larger than 3? ### Answer: SELECT MAX(the_year) FROM table_name_97 WHERE division > 3 |
Which Year did not qualify for Playoffs, and had a Division smaller than 3? | CREATE TABLE table_name_97 (the_year INTEGER, playoffs VARCHAR, division VARCHAR) | SELECT SUM(the_year) FROM table_name_97 WHERE playoffs = "did not qualify" AND division < 3 | ### Context: CREATE TABLE table_name_97 (the_year INTEGER, playoffs VARCHAR, division VARCHAR) ### Question: Which Year did not qualify for Playoffs, and had a Division smaller than 3? ### Answer: SELECT SUM(the_year) FROM table_name_97 WHERE playoffs = "did not qualify" AND division < 3 |
Which league did not qualify for the Playoffs, and had a Year larger than 2008? | CREATE TABLE table_name_59 (league VARCHAR, playoffs VARCHAR, the_year VARCHAR) | SELECT league FROM table_name_59 WHERE playoffs = "did not qualify" AND the_year > 2008 | ### Context: CREATE TABLE table_name_59 (league VARCHAR, playoffs VARCHAR, the_year VARCHAR) ### Question: Which league did not qualify for the Playoffs, and had a Year larger than 2008? ### Answer: SELECT league FROM table_name_59 WHERE playoffs = "did not qualify" AND the_year > 2008 |
What is Lowest Crowd, when Home Team is Brisbane Lions? | CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_5 WHERE home_team = "brisbane lions" | ### Context: CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR) ### Question: What is Lowest Crowd, when Home Team is Brisbane Lions? ### Answer: SELECT MIN(crowd) FROM table_name_5 WHERE home_team = "brisbane lions" |
What is Date, when Away Team is Kangaroos? | CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_38 WHERE away_team = "kangaroos" | ### Context: CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR) ### Question: What is Date, when Away Team is Kangaroos? ### Answer: SELECT date FROM table_name_38 WHERE away_team = "kangaroos" |
What is the smallest round with a time of 1:12? | CREATE TABLE table_name_96 (round INTEGER, time VARCHAR) | SELECT MIN(round) FROM table_name_96 WHERE time = "1:12" | ### Context: CREATE TABLE table_name_96 (round INTEGER, time VARCHAR) ### Question: What is the smallest round with a time of 1:12? ### Answer: SELECT MIN(round) FROM table_name_96 WHERE time = "1:12" |
How long was the time for the Legacy Fighting Championship 12? | CREATE TABLE table_name_68 (time VARCHAR, event VARCHAR) | SELECT time FROM table_name_68 WHERE event = "legacy fighting championship 12" | ### Context: CREATE TABLE table_name_68 (time VARCHAR, event VARCHAR) ### Question: How long was the time for the Legacy Fighting Championship 12? ### Answer: SELECT time FROM table_name_68 WHERE event = "legacy fighting championship 12" |
WHAT COUNTRY HAS A TO PAR OF +1, WITH WOODY AUSTIN? | CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR, player VARCHAR) | SELECT country FROM table_name_68 WHERE to_par = "+1" AND player = "woody austin" | ### Context: CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR, player VARCHAR) ### Question: WHAT COUNTRY HAS A TO PAR OF +1, WITH WOODY AUSTIN? ### Answer: SELECT country FROM table_name_68 WHERE to_par = "+1" AND player = "woody austin" |
WHAT IS THE TO PAR FOR ERNIE ELS? | CREATE TABLE table_name_44 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_44 WHERE player = "ernie els" | ### Context: CREATE TABLE table_name_44 (to_par VARCHAR, player VARCHAR) ### Question: WHAT IS THE TO PAR FOR ERNIE ELS? ### Answer: SELECT to_par FROM table_name_44 WHERE player = "ernie els" |
WHAT PLACE DOES TOM LEHMAN HAVE? | CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_65 WHERE player = "tom lehman" | ### Context: CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR) ### Question: WHAT PLACE DOES TOM LEHMAN HAVE? ### Answer: SELECT place FROM table_name_65 WHERE player = "tom lehman" |
WHAT IS THE TO PAR FOR NUMBER 1? | CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR) | SELECT to_par FROM table_name_18 WHERE place = "1" | ### Context: CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR) ### Question: WHAT IS THE TO PAR FOR NUMBER 1? ### Answer: SELECT to_par FROM table_name_18 WHERE place = "1" |
WHAT IS TEH PLAYER WITH A TO PAR OF +1 FOR SCOTLAND? | CREATE TABLE table_name_29 (player VARCHAR, to_par VARCHAR, country VARCHAR) | SELECT player FROM table_name_29 WHERE to_par = "+1" AND country = "scotland" | ### Context: CREATE TABLE table_name_29 (player VARCHAR, to_par VARCHAR, country VARCHAR) ### Question: WHAT IS TEH PLAYER WITH A TO PAR OF +1 FOR SCOTLAND? ### Answer: SELECT player FROM table_name_29 WHERE to_par = "+1" AND country = "scotland" |
Who won the Paris-Roubaix in 2006? | CREATE TABLE table_name_33 (paris_roubaix___fra__ VARCHAR, year VARCHAR) | SELECT paris_roubaix___fra__ FROM table_name_33 WHERE year = 2006 | ### Context: CREATE TABLE table_name_33 (paris_roubaix___fra__ VARCHAR, year VARCHAR) ### Question: Who won the Paris-Roubaix in 2006? ### Answer: SELECT paris_roubaix___fra__ FROM table_name_33 WHERE year = 2006 |
Who built the conant creek pegram truss railroad bridge? | CREATE TABLE table_name_71 (built VARCHAR, name VARCHAR) | SELECT built FROM table_name_71 WHERE name = "conant creek pegram truss railroad bridge" | ### Context: CREATE TABLE table_name_71 (built VARCHAR, name VARCHAR) ### Question: Who built the conant creek pegram truss railroad bridge? ### Answer: SELECT built FROM table_name_71 WHERE name = "conant creek pegram truss railroad bridge" |
Where is the historic place that was built in 1910? | CREATE TABLE table_name_11 (location VARCHAR, built VARCHAR) | SELECT location FROM table_name_11 WHERE built = "1910" | ### Context: CREATE TABLE table_name_11 (location VARCHAR, built VARCHAR) ### Question: Where is the historic place that was built in 1910? ### Answer: SELECT location FROM table_name_11 WHERE built = "1910" |
What is the list date of the historic place that was built 1896, 1914? | CREATE TABLE table_name_88 (listed VARCHAR, built VARCHAR) | SELECT listed FROM table_name_88 WHERE built = "1896, 1914" | ### Context: CREATE TABLE table_name_88 (listed VARCHAR, built VARCHAR) ### Question: What is the list date of the historic place that was built 1896, 1914? ### Answer: SELECT listed FROM table_name_88 WHERE built = "1896, 1914" |
When was the historic place listed that's in canyon county? | CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR) | SELECT listed FROM table_name_79 WHERE county = "canyon" | ### Context: CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR) ### Question: When was the historic place listed that's in canyon county? ### Answer: SELECT listed FROM table_name_79 WHERE county = "canyon" |
what is the averaging time when the regulatory citation is 40 cfr 50.4(b)? | CREATE TABLE table_name_53 (averaging_time VARCHAR, regulatory_citation VARCHAR) | SELECT averaging_time FROM table_name_53 WHERE regulatory_citation = "40 cfr 50.4(b)" | ### Context: CREATE TABLE table_name_53 (averaging_time VARCHAR, regulatory_citation VARCHAR) ### Question: what is the averaging time when the regulatory citation is 40 cfr 50.4(b)? ### Answer: SELECT averaging_time FROM table_name_53 WHERE regulatory_citation = "40 cfr 50.4(b)" |
what is the regulatory citation when the standard is 15 μg/m³? | CREATE TABLE table_name_11 (regulatory_citation VARCHAR, standard VARCHAR) | SELECT regulatory_citation FROM table_name_11 WHERE standard = "15 μg/m³" | ### Context: CREATE TABLE table_name_11 (regulatory_citation VARCHAR, standard VARCHAR) ### Question: what is the regulatory citation when the standard is 15 μg/m³? ### Answer: SELECT regulatory_citation FROM table_name_11 WHERE standard = "15 μg/m³" |
what is the standard when the pollutant is o 3 and averaging time is 8-hour? | CREATE TABLE table_name_79 (standard VARCHAR, pollutant VARCHAR, averaging_time VARCHAR) | SELECT standard FROM table_name_79 WHERE pollutant = "o 3" AND averaging_time = "8-hour" | ### Context: CREATE TABLE table_name_79 (standard VARCHAR, pollutant VARCHAR, averaging_time VARCHAR) ### Question: what is the standard when the pollutant is o 3 and averaging time is 8-hour? ### Answer: SELECT standard FROM table_name_79 WHERE pollutant = "o 3" AND averaging_time = "8-hour" |
what is the polluntant when the regulatory citation is 40 cfr 50.7(a) and the type is primary? | CREATE TABLE table_name_27 (pollutant VARCHAR, regulatory_citation VARCHAR, type VARCHAR) | SELECT pollutant FROM table_name_27 WHERE regulatory_citation = "40 cfr 50.7(a)" AND type = "primary" | ### Context: CREATE TABLE table_name_27 (pollutant VARCHAR, regulatory_citation VARCHAR, type VARCHAR) ### Question: what is the polluntant when the regulatory citation is 40 cfr 50.7(a) and the type is primary? ### Answer: SELECT pollutant FROM table_name_27 WHERE regulatory_citation = "40 cfr 50.7(a)" AND type = "primary" |
what is the type when the averaging time is 1-hour and the standard is 0.12 ppm (235 μg/m³)? | CREATE TABLE table_name_62 (type VARCHAR, averaging_time VARCHAR, standard VARCHAR) | SELECT type FROM table_name_62 WHERE averaging_time = "1-hour" AND standard = "0.12 ppm (235 μg/m³)" | ### Context: CREATE TABLE table_name_62 (type VARCHAR, averaging_time VARCHAR, standard VARCHAR) ### Question: what is the type when the averaging time is 1-hour and the standard is 0.12 ppm (235 μg/m³)? ### Answer: SELECT type FROM table_name_62 WHERE averaging_time = "1-hour" AND standard = "0.12 ppm (235 μg/m³)" |
what is the type when the regulatory citation is 40 cfr 50.9(a)? | CREATE TABLE table_name_63 (type VARCHAR, regulatory_citation VARCHAR) | SELECT type FROM table_name_63 WHERE regulatory_citation = "40 cfr 50.9(a)" | ### Context: CREATE TABLE table_name_63 (type VARCHAR, regulatory_citation VARCHAR) ### Question: what is the type when the regulatory citation is 40 cfr 50.9(a)? ### Answer: SELECT type FROM table_name_63 WHERE regulatory_citation = "40 cfr 50.9(a)" |
What is the highest League, when Title Playoff is greater than 0? | CREATE TABLE table_name_7 (league INTEGER, title_playoff INTEGER) | SELECT MAX(league) FROM table_name_7 WHERE title_playoff > 0 | ### Context: CREATE TABLE table_name_7 (league INTEGER, title_playoff INTEGER) ### Question: What is the highest League, when Title Playoff is greater than 0? ### Answer: SELECT MAX(league) FROM table_name_7 WHERE title_playoff > 0 |
What is the lowest Title Playoff, when Total is less than 3, and when League is greater than "2"? | CREATE TABLE table_name_93 (title_playoff INTEGER, total VARCHAR, league VARCHAR) | SELECT MIN(title_playoff) FROM table_name_93 WHERE total < 3 AND league > 2 | ### Context: CREATE TABLE table_name_93 (title_playoff INTEGER, total VARCHAR, league VARCHAR) ### Question: What is the lowest Title Playoff, when Total is less than 3, and when League is greater than "2"? ### Answer: SELECT MIN(title_playoff) FROM table_name_93 WHERE total < 3 AND league > 2 |
What is the lowest Title Playoff, when League is greater than 3, and when Super Cup is less than 0? | CREATE TABLE table_name_42 (title_playoff INTEGER, league VARCHAR, super_cup VARCHAR) | SELECT MIN(title_playoff) FROM table_name_42 WHERE league > 3 AND super_cup < 0 | ### Context: CREATE TABLE table_name_42 (title_playoff INTEGER, league VARCHAR, super_cup VARCHAR) ### Question: What is the lowest Title Playoff, when League is greater than 3, and when Super Cup is less than 0? ### Answer: SELECT MIN(title_playoff) FROM table_name_42 WHERE league > 3 AND super_cup < 0 |
What is the total number of Super Cup, when Title Playoff is "0", when Total is greater than 9, and when League is less than 11? | CREATE TABLE table_name_97 (super_cup VARCHAR, league VARCHAR, title_playoff VARCHAR, total VARCHAR) | SELECT COUNT(super_cup) FROM table_name_97 WHERE title_playoff = 0 AND total > 9 AND league < 11 | ### Context: CREATE TABLE table_name_97 (super_cup VARCHAR, league VARCHAR, title_playoff VARCHAR, total VARCHAR) ### Question: What is the total number of Super Cup, when Title Playoff is "0", when Total is greater than 9, and when League is less than 11? ### Answer: SELECT COUNT(super_cup) FROM table_name_97 WHERE title_playoff = 0 AND total > 9 AND league < 11 |
What was the score when the jazz played against toronto? | CREATE TABLE table_name_34 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_34 WHERE team = "toronto" | ### Context: CREATE TABLE table_name_34 (score VARCHAR, team VARCHAR) ### Question: What was the score when the jazz played against toronto? ### Answer: SELECT score FROM table_name_34 WHERE team = "toronto" |
What is the date of the game against miami? | CREATE TABLE table_name_41 (date VARCHAR, team VARCHAR) | SELECT date FROM table_name_41 WHERE team = "miami" | ### Context: CREATE TABLE table_name_41 (date VARCHAR, team VARCHAR) ### Question: What is the date of the game against miami? ### Answer: SELECT date FROM table_name_41 WHERE team = "miami" |
Who was the Opponent in Week 7? | CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_37 WHERE week = 7 | ### Context: CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR) ### Question: Who was the Opponent in Week 7? ### Answer: SELECT opponent FROM table_name_37 WHERE week = 7 |
What was the Attendance on November 7, 1999? | CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_86 WHERE date = "november 7, 1999" | ### Context: CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR) ### Question: What was the Attendance on November 7, 1999? ### Answer: SELECT attendance FROM table_name_86 WHERE date = "november 7, 1999" |
Who was the Opponent of the Game with a Result of l 23-41? | CREATE TABLE table_name_91 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_91 WHERE result = "l 23-41" | ### Context: CREATE TABLE table_name_91 (opponent VARCHAR, result VARCHAR) ### Question: Who was the Opponent of the Game with a Result of l 23-41? ### Answer: SELECT opponent FROM table_name_91 WHERE result = "l 23-41" |
What was the Attendance in Week 1? | CREATE TABLE table_name_7 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_7 WHERE week = 1 | ### Context: CREATE TABLE table_name_7 (attendance VARCHAR, week VARCHAR) ### Question: What was the Attendance in Week 1? ### Answer: SELECT attendance FROM table_name_7 WHERE week = 1 |
How much average Finish has Starts of 9, and a Top 10 smaller than 0? | CREATE TABLE table_name_78 (avg_finish INTEGER, starts VARCHAR, top_10 VARCHAR) | SELECT SUM(avg_finish) FROM table_name_78 WHERE starts = 9 AND top_10 < 0 | ### Context: CREATE TABLE table_name_78 (avg_finish INTEGER, starts VARCHAR, top_10 VARCHAR) ### Question: How much average Finish has Starts of 9, and a Top 10 smaller than 0? ### Answer: SELECT SUM(avg_finish) FROM table_name_78 WHERE starts = 9 AND top_10 < 0 |
Which Winnings have Starts larger than 34, and Poles smaller than 1, and a Top 10 of 5? | CREATE TABLE table_name_93 (winnings VARCHAR, top_10 VARCHAR, starts VARCHAR, poles VARCHAR) | SELECT winnings FROM table_name_93 WHERE starts > 34 AND poles < 1 AND top_10 = 5 | ### Context: CREATE TABLE table_name_93 (winnings VARCHAR, top_10 VARCHAR, starts VARCHAR, poles VARCHAR) ### Question: Which Winnings have Starts larger than 34, and Poles smaller than 1, and a Top 10 of 5? ### Answer: SELECT winnings FROM table_name_93 WHERE starts > 34 AND poles < 1 AND top_10 = 5 |
Which Diameter (km) has a Name of alma-merghen planitia, and a Year named smaller than 1997? | CREATE TABLE table_name_4 (diameter__km_ INTEGER, name VARCHAR, year_named VARCHAR) | SELECT MAX(diameter__km_) FROM table_name_4 WHERE name = "alma-merghen planitia" AND year_named < 1997 | ### Context: CREATE TABLE table_name_4 (diameter__km_ INTEGER, name VARCHAR, year_named VARCHAR) ### Question: Which Diameter (km) has a Name of alma-merghen planitia, and a Year named smaller than 1997? ### Answer: SELECT MAX(diameter__km_) FROM table_name_4 WHERE name = "alma-merghen planitia" AND year_named < 1997 |
Which Longitude has a Latitude of 73.0s, and a Name of aibarchin planitia? | CREATE TABLE table_name_87 (longitude VARCHAR, latitude VARCHAR, name VARCHAR) | SELECT longitude FROM table_name_87 WHERE latitude = "73.0s" AND name = "aibarchin planitia" | ### Context: CREATE TABLE table_name_87 (longitude VARCHAR, latitude VARCHAR, name VARCHAR) ### Question: Which Longitude has a Latitude of 73.0s, and a Name of aibarchin planitia? ### Answer: SELECT longitude FROM table_name_87 WHERE latitude = "73.0s" AND name = "aibarchin planitia" |
Which Year named has a Name of nuptadi planitia, and a Diameter (km) larger than 1,200.0? | CREATE TABLE table_name_84 (year_named INTEGER, name VARCHAR, diameter__km_ VARCHAR) | SELECT MIN(year_named) FROM table_name_84 WHERE name = "nuptadi planitia" AND diameter__km_ > 1 OFFSET 200.0 | ### Context: CREATE TABLE table_name_84 (year_named INTEGER, name VARCHAR, diameter__km_ VARCHAR) ### Question: Which Year named has a Name of nuptadi planitia, and a Diameter (km) larger than 1,200.0? ### Answer: SELECT MIN(year_named) FROM table_name_84 WHERE name = "nuptadi planitia" AND diameter__km_ > 1 OFFSET 200.0 |
Which Latitude has a Year named smaller than 1997, and a Name of aino planitia? | CREATE TABLE table_name_79 (latitude VARCHAR, year_named VARCHAR, name VARCHAR) | SELECT latitude FROM table_name_79 WHERE year_named < 1997 AND name = "aino planitia" | ### Context: CREATE TABLE table_name_79 (latitude VARCHAR, year_named VARCHAR, name VARCHAR) ### Question: Which Latitude has a Year named smaller than 1997, and a Name of aino planitia? ### Answer: SELECT latitude FROM table_name_79 WHERE year_named < 1997 AND name = "aino planitia" |
In what tournament did Cipolla face Sergio Roitman? | CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR) | SELECT tournament FROM table_name_5 WHERE opponent = "sergio roitman" | ### Context: CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR) ### Question: In what tournament did Cipolla face Sergio Roitman? ### Answer: SELECT tournament FROM table_name_5 WHERE opponent = "sergio roitman" |
What is the Rating/Share (18-49) that also has a Share greater than 10 and 12.42 million Viewers? | CREATE TABLE table_name_69 (rating VARCHAR, share VARCHAR, viewers__millions_ VARCHAR) | SELECT rating / SHARE(18 - 49) FROM table_name_69 WHERE share > 10 AND viewers__millions_ = 12.42 | ### Context: CREATE TABLE table_name_69 (rating VARCHAR, share VARCHAR, viewers__millions_ VARCHAR) ### Question: What is the Rating/Share (18-49) that also has a Share greater than 10 and 12.42 million Viewers? ### Answer: SELECT rating / SHARE(18 - 49) FROM table_name_69 WHERE share > 10 AND viewers__millions_ = 12.42 |
Which Week has a Record of 2-9? | CREATE TABLE table_name_6 (week INTEGER, record VARCHAR) | SELECT MIN(week) FROM table_name_6 WHERE record = "2-9" | ### Context: CREATE TABLE table_name_6 (week INTEGER, record VARCHAR) ### Question: Which Week has a Record of 2-9? ### Answer: SELECT MIN(week) FROM table_name_6 WHERE record = "2-9" |
What is the 1993 finish for the event that had a 1990 of QF and 1995 of 2R? | CREATE TABLE table_name_44 (Id VARCHAR) | SELECT 1993 FROM table_name_44 WHERE 1990 = "qf" AND 1995 = "2r" | ### Context: CREATE TABLE table_name_44 (Id VARCHAR) ### Question: What is the 1993 finish for the event that had a 1990 of QF and 1995 of 2R? ### Answer: SELECT 1993 FROM table_name_44 WHERE 1990 = "qf" AND 1995 = "2r" |
What is the 1994 finish for the Miami tournament? | CREATE TABLE table_name_14 (tournament VARCHAR) | SELECT 1994 FROM table_name_14 WHERE tournament = "miami" | ### Context: CREATE TABLE table_name_14 (tournament VARCHAR) ### Question: What is the 1994 finish for the Miami tournament? ### Answer: SELECT 1994 FROM table_name_14 WHERE tournament = "miami" |
What is the to par score from Brad Faxon of the United States with a score of 73-68=141? | CREATE TABLE table_name_88 (to_par VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_88 WHERE country = "united states" AND score = 73 - 68 = 141 AND player = "brad faxon" | ### Context: CREATE TABLE table_name_88 (to_par VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR) ### Question: What is the to par score from Brad Faxon of the United States with a score of 73-68=141? ### Answer: SELECT to_par FROM table_name_88 WHERE country = "united states" AND score = 73 - 68 = 141 AND player = "brad faxon" |
What's the to par score in T8 place from Zimbabwe and has a score of 73-68=141? | CREATE TABLE table_name_1 (to_par VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_1 WHERE place = "t8" AND score = 73 - 68 = 141 AND country = "zimbabwe" | ### Context: CREATE TABLE table_name_1 (to_par VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR) ### Question: What's the to par score in T8 place from Zimbabwe and has a score of 73-68=141? ### Answer: SELECT to_par FROM table_name_1 WHERE place = "t8" AND score = 73 - 68 = 141 AND country = "zimbabwe" |
What's the score of Lee Janzen in T4 place? | CREATE TABLE table_name_94 (score VARCHAR, place VARCHAR, player VARCHAR) | SELECT score FROM table_name_94 WHERE place = "t4" AND player = "lee janzen" | ### Context: CREATE TABLE table_name_94 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: What's the score of Lee Janzen in T4 place? ### Answer: SELECT score FROM table_name_94 WHERE place = "t4" AND player = "lee janzen" |
What's the score of Jeff Maggert in T2 place? | CREATE TABLE table_name_36 (score VARCHAR, place VARCHAR, player VARCHAR) | SELECT score FROM table_name_36 WHERE place = "t2" AND player = "jeff maggert" | ### Context: CREATE TABLE table_name_36 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: What's the score of Jeff Maggert in T2 place? ### Answer: SELECT score FROM table_name_36 WHERE place = "t2" AND player = "jeff maggert" |
What's the to par when the score was 68-73=141? | CREATE TABLE table_name_46 (to_par VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_46 WHERE score = 68 - 73 = 141 | ### Context: CREATE TABLE table_name_46 (to_par VARCHAR, score VARCHAR) ### Question: What's the to par when the score was 68-73=141? ### Answer: SELECT to_par FROM table_name_46 WHERE score = 68 - 73 = 141 |
What's the total number of game that has 377 points? | CREATE TABLE table_name_75 (games INTEGER, points VARCHAR) | SELECT SUM(games) FROM table_name_75 WHERE points = 377 | ### Context: CREATE TABLE table_name_75 (games INTEGER, points VARCHAR) ### Question: What's the total number of game that has 377 points? ### Answer: SELECT SUM(games) FROM table_name_75 WHERE points = 377 |
What's the total number of points that the rank is less than 5 and has Tiago Splitter? | CREATE TABLE table_name_11 (points VARCHAR, name VARCHAR, rank VARCHAR) | SELECT COUNT(points) FROM table_name_11 WHERE name = "tiago splitter" AND rank < 5 | ### Context: CREATE TABLE table_name_11 (points VARCHAR, name VARCHAR, rank VARCHAR) ### Question: What's the total number of points that the rank is less than 5 and has Tiago Splitter? ### Answer: SELECT COUNT(points) FROM table_name_11 WHERE name = "tiago splitter" AND rank < 5 |
What is the total number of games that has Juan Carlos Navarro and more than 266 points? | CREATE TABLE table_name_77 (games INTEGER, points VARCHAR, name VARCHAR) | SELECT SUM(games) FROM table_name_77 WHERE points > 266 AND name = "juan carlos navarro" | ### Context: CREATE TABLE table_name_77 (games INTEGER, points VARCHAR, name VARCHAR) ### Question: What is the total number of games that has Juan Carlos Navarro and more than 266 points? ### Answer: SELECT SUM(games) FROM table_name_77 WHERE points > 266 AND name = "juan carlos navarro" |
What's the rank of Igor Rakočević of Tau Cerámica with more than 377 points? | CREATE TABLE table_name_87 (rank INTEGER, points VARCHAR, team VARCHAR, name VARCHAR) | SELECT SUM(rank) FROM table_name_87 WHERE team = "tau cerámica" AND name = "igor rakočević" AND points > 377 | ### Context: CREATE TABLE table_name_87 (rank INTEGER, points VARCHAR, team VARCHAR, name VARCHAR) ### Question: What's the rank of Igor Rakočević of Tau Cerámica with more than 377 points? ### Answer: SELECT SUM(rank) FROM table_name_87 WHERE team = "tau cerámica" AND name = "igor rakočević" AND points > 377 |
What's the rank of the Tau Cerámica that has 377 points and more than 21 games? | CREATE TABLE table_name_62 (rank VARCHAR, games VARCHAR, team VARCHAR, points VARCHAR) | SELECT COUNT(rank) FROM table_name_62 WHERE team = "tau cerámica" AND points = 377 AND games > 21 | ### Context: CREATE TABLE table_name_62 (rank VARCHAR, games VARCHAR, team VARCHAR, points VARCHAR) ### Question: What's the rank of the Tau Cerámica that has 377 points and more than 21 games? ### Answer: SELECT COUNT(rank) FROM table_name_62 WHERE team = "tau cerámica" AND points = 377 AND games > 21 |
What are the dates of squadron 33? | CREATE TABLE table_name_6 (dates VARCHAR, squadron VARCHAR) | SELECT dates FROM table_name_6 WHERE squadron = "squadron 33" | ### Context: CREATE TABLE table_name_6 (dates VARCHAR, squadron VARCHAR) ### Question: What are the dates of squadron 33? ### Answer: SELECT dates FROM table_name_6 WHERE squadron = "squadron 33" |
What institution won 2nd more recently than 2007 with Peter Agre as Chief Judge? | CREATE TABLE table_name_67 (institution VARCHAR, chief_judge VARCHAR, year VARCHAR, award VARCHAR) | SELECT institution FROM table_name_67 WHERE year > 2007 AND award = "2nd" AND chief_judge = "peter agre" | ### Context: CREATE TABLE table_name_67 (institution VARCHAR, chief_judge VARCHAR, year VARCHAR, award VARCHAR) ### Question: What institution won 2nd more recently than 2007 with Peter Agre as Chief Judge? ### Answer: SELECT institution FROM table_name_67 WHERE year > 2007 AND award = "2nd" AND chief_judge = "peter agre" |
What student won 3rd with Peter Agre as Chief Judge? | CREATE TABLE table_name_78 (name VARCHAR, chief_judge VARCHAR, award VARCHAR) | SELECT name FROM table_name_78 WHERE chief_judge = "peter agre" AND award = "3rd" | ### Context: CREATE TABLE table_name_78 (name VARCHAR, chief_judge VARCHAR, award VARCHAR) ### Question: What student won 3rd with Peter Agre as Chief Judge? ### Answer: SELECT name FROM table_name_78 WHERE chief_judge = "peter agre" AND award = "3rd" |
What institution won in 2010 with student Cheng Herng Yi? | CREATE TABLE table_name_82 (institution VARCHAR, year VARCHAR, name VARCHAR) | SELECT institution FROM table_name_82 WHERE year > 2010 AND name = "cheng herng yi" | ### Context: CREATE TABLE table_name_82 (institution VARCHAR, year VARCHAR, name VARCHAR) ### Question: What institution won in 2010 with student Cheng Herng Yi? ### Answer: SELECT institution FROM table_name_82 WHERE year > 2010 AND name = "cheng herng yi" |
What was the lowest postion of ehc straubing ii when they played less than 10 games? | CREATE TABLE table_name_70 (position INTEGER, name VARCHAR, played VARCHAR) | SELECT MIN(position) FROM table_name_70 WHERE name = "ehc straubing ii" AND played < 10 | ### Context: CREATE TABLE table_name_70 (position INTEGER, name VARCHAR, played VARCHAR) ### Question: What was the lowest postion of ehc straubing ii when they played less than 10 games? ### Answer: SELECT MIN(position) FROM table_name_70 WHERE name = "ehc straubing ii" AND played < 10 |
What was the drawn amount for teams with points of 12 and played smaller than 10? | CREATE TABLE table_name_13 (drawn INTEGER, points VARCHAR, played VARCHAR) | SELECT AVG(drawn) FROM table_name_13 WHERE points = 12 AND played < 10 | ### Context: CREATE TABLE table_name_13 (drawn INTEGER, points VARCHAR, played VARCHAR) ### Question: What was the drawn amount for teams with points of 12 and played smaller than 10? ### Answer: SELECT AVG(drawn) FROM table_name_13 WHERE points = 12 AND played < 10 |
How many games were played by the team with 2 draws, less than 16 points and a position higher than 5? | CREATE TABLE table_name_74 (played VARCHAR, position VARCHAR, drawn VARCHAR, points VARCHAR) | SELECT COUNT(played) FROM table_name_74 WHERE drawn = 2 AND points < 16 AND position > 5 | ### Context: CREATE TABLE table_name_74 (played VARCHAR, position VARCHAR, drawn VARCHAR, points VARCHAR) ### Question: How many games were played by the team with 2 draws, less than 16 points and a position higher than 5? ### Answer: SELECT COUNT(played) FROM table_name_74 WHERE drawn = 2 AND points < 16 AND position > 5 |
What was the grid of Buddy Rice? | CREATE TABLE table_name_91 (grid VARCHAR, driver VARCHAR) | SELECT grid FROM table_name_91 WHERE driver = "buddy rice" | ### Context: CREATE TABLE table_name_91 (grid VARCHAR, driver VARCHAR) ### Question: What was the grid of Buddy Rice? ### Answer: SELECT grid FROM table_name_91 WHERE driver = "buddy rice" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.