text stringlengths 114 1.06k |
|---|
### question: Name the least goals when position is more than 4 and draws is more than 11 ### answer: SELECT MIN(goals_for) FROM table_name_67 WHERE position > 4 AND draws > 11 ### context: CREATE TABLE table_name_67 (goals_for INTEGER, position VARCHAR, draws VARCHAR) |
### question: Name the most wins which have clubbed of elche cf and goals against more than 43 ### answer: SELECT MAX(wins) FROM table_name_51 WHERE club = "elche cf" AND goals_against > 43 ### context: CREATE TABLE table_name_51 (wins INTEGER, club VARCHAR, goals_against VARCHAR) |
### question: Birth Date of 8 November 1980, and a Weight smaller than 93 has what sum of a shirt number? ### answer: SELECT SUM(shirt_no) FROM table_name_6 WHERE birth_date = "8 november 1980" AND weight < 93 ### context: CREATE TABLE table_name_6 (shirt_no INTEGER, birth_date VARCHAR, weight VARCHAR) |
### question: Shirt number of 18, and a Height larger than 195 has how much weight? ### answer: SELECT COUNT(weight) FROM table_name_63 WHERE shirt_no = 18 AND height > 195 ### context: CREATE TABLE table_name_63 (weight VARCHAR, shirt_no VARCHAR, height VARCHAR) |
### question: Name the To par for leland gibson ### answer: SELECT to_par FROM table_name_59 WHERE player = "leland gibson" ### context: CREATE TABLE table_name_59 (to_par VARCHAR, player VARCHAR) |
### question: Name the place for ed oliver ### answer: SELECT place FROM table_name_47 WHERE player = "ed oliver" ### context: CREATE TABLE table_name_47 (place VARCHAR, player VARCHAR) |
### question: Name the player with score of 74-68-71=213 ### answer: SELECT player FROM table_name_4 WHERE score = 74 - 68 - 71 = 213 ### context: CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR) |
### question: Name the To par for dick metz ### answer: SELECT to_par FROM table_name_61 WHERE player = "dick metz" ### context: CREATE TABLE table_name_61 (to_par VARCHAR, player VARCHAR) |
### question: What year was there no competition in Mixed Doubles? ### answer: SELECT year FROM table_name_45 WHERE mixed_doubles = "no competition" ### context: CREATE TABLE table_name_45 (year VARCHAR, mixed_doubles VARCHAR) |
### question: what was the score for the game on 14 april 2001? ### answer: SELECT score FROM table_name_67 WHERE date = "14 april 2001" ### context: CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR) |
### question: what is the score for the game on 21 april 2001? ### answer: SELECT score FROM table_name_25 WHERE date = "21 april 2001" ### context: CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR) |
### question: what is the competition on 21 april 2001? ### answer: SELECT competition FROM table_name_75 WHERE date = "21 april 2001" ### context: CREATE TABLE table_name_75 (competition VARCHAR, date VARCHAR) |
### question: Who is the opponent the Seattle Seahawks played when their record was 1-3? ### answer: SELECT opponent FROM table_name_57 WHERE record = "1-3" ### context: CREATE TABLE table_name_57 (opponent VARCHAR, record VARCHAR) |
### question: On what date was the crowd size of 71,789? ### answer: SELECT date FROM table_name_35 WHERE attendance = "71,789" ### context: CREATE TABLE table_name_35 (date VARCHAR, attendance VARCHAR) |
### question: Which week did the Seattle Seahawks have a record of 6-6? ### answer: SELECT AVG(week) FROM table_name_7 WHERE record = "6-6" ### context: CREATE TABLE table_name_7 (week INTEGER, record VARCHAR) |
### question: What was the final score (result) for the game where 51,100 attended? ### answer: SELECT result FROM table_name_36 WHERE attendance = "51,100" ### context: CREATE TABLE table_name_36 (result VARCHAR, attendance VARCHAR) |
### question: Where was the game held when the attendance was 56,770? ### answer: SELECT game_site FROM table_name_63 WHERE attendance = "56,770" ### context: CREATE TABLE table_name_63 (game_site VARCHAR, attendance VARCHAR) |
### question: Which week was the game held at Kingdome on October 13, 1991? ### answer: SELECT MIN(week) FROM table_name_71 WHERE game_site = "kingdome" AND date = "october 13, 1991" ### context: CREATE TABLE table_name_71 (week INTEGER, game_site VARCHAR, date VARCHAR) |
### question: Who was the opponent at the game that had a loss of Harden (9-6)? ### answer: SELECT opponent FROM table_name_27 WHERE loss = "harden (9-6)" ### context: CREATE TABLE table_name_27 (opponent VARCHAR, loss VARCHAR) |
### question: Name the sum of Laps for co-drivers of oliver gavin jan magnussen and class of gts with year less than 2004 ### answer: SELECT SUM(laps) FROM table_name_17 WHERE co_drivers = "oliver gavin jan magnussen" AND class = "gts" AND year < 2004 ### context: CREATE TABLE table_name_17 (laps INTEGER, year VARCHAR,... |
### question: Name the team with laps more than 333 and year less than 2004 ### answer: SELECT team FROM table_name_84 WHERE laps > 333 AND year < 2004 ### context: CREATE TABLE table_name_84 (team VARCHAR, laps VARCHAR, year VARCHAR) |
### question: Name the team with Laps of 333 ### answer: SELECT team FROM table_name_92 WHERE laps = 333 ### context: CREATE TABLE table_name_92 (team VARCHAR, laps VARCHAR) |
### question: What is the points for where the tries for is 29? ### answer: SELECT points_for FROM table_name_34 WHERE tries_for = "29" ### context: CREATE TABLE table_name_34 (points_for VARCHAR, tries_for VARCHAR) |
### question: What is the points for of Club of penallta rfc? ### answer: SELECT points_for FROM table_name_17 WHERE club = "penallta rfc" ### context: CREATE TABLE table_name_17 (points_for VARCHAR, club VARCHAR) |
### question: What is the try bonus for ynysybwl rfc? ### answer: SELECT try_bonus FROM table_name_12 WHERE club = "ynysybwl rfc" ### context: CREATE TABLE table_name_12 (try_bonus VARCHAR, club VARCHAR) |
### question: What is the points against for the team that played 22 and lost 6? ### answer: SELECT points_against FROM table_name_81 WHERE played = "22" AND lost = "6" ### context: CREATE TABLE table_name_81 (points_against VARCHAR, played VARCHAR, lost VARCHAR) |
### question: What is the score of Tommy Bolt ### answer: SELECT MIN(score) FROM table_name_23 WHERE player = "tommy bolt" ### context: CREATE TABLE table_name_23 (score INTEGER, player VARCHAR) |
### question: WHich Places have a score smaller than 69? ### answer: SELECT place FROM table_name_12 WHERE score < 69 ### context: CREATE TABLE table_name_12 (place VARCHAR, score INTEGER) |
### question: What is the To Par that has Tommy Bolt with a Place of t6? ### answer: SELECT to_par FROM table_name_6 WHERE place = "t6" AND player = "tommy bolt" ### context: CREATE TABLE table_name_6 (to_par VARCHAR, place VARCHAR, player VARCHAR) |
### question: Who is the entrant with a cooper t43 chassis before 1958? ### answer: SELECT entrant FROM table_name_47 WHERE year < 1958 AND chassis = "cooper t43" ### context: CREATE TABLE table_name_47 (entrant VARCHAR, year VARCHAR, chassis VARCHAR) |
### question: Name the 2006 when the 2010 is 27 ### answer: SELECT 2006 FROM table_name_26 WHERE 2010 = "27" ### context: CREATE TABLE table_name_26 (Id VARCHAR) |
### question: Which main cast seasons were portrayed by Joe Jonas? ### answer: SELECT main_cast_seasons FROM table_name_13 WHERE portrayed_by = "joe jonas" ### context: CREATE TABLE table_name_13 (main_cast_seasons VARCHAR, portrayed_by VARCHAR) |
### question: How many episodes were portrayed by Nick Jonas? ### answer: SELECT COUNT(_number_of_episodes) FROM table_name_81 WHERE portrayed_by = "nick jonas" ### context: CREATE TABLE table_name_81 (_number_of_episodes VARCHAR, portrayed_by VARCHAR) |
### question: How many episodes had the character of Nick Lucas? ### answer: SELECT SUM(_number_of_episodes) FROM table_name_91 WHERE character = "nick lucas" ### context: CREATE TABLE table_name_91 (_number_of_episodes INTEGER, character VARCHAR) |
### question: What character is portrayed by Joe Jonas? ### answer: SELECT character FROM table_name_59 WHERE portrayed_by = "joe jonas" ### context: CREATE TABLE table_name_59 (character VARCHAR, portrayed_by VARCHAR) |
### question: What was the extra info for the Commonwealth Games? ### answer: SELECT extra FROM table_name_90 WHERE tournament = "commonwealth games" ### context: CREATE TABLE table_name_90 (extra VARCHAR, tournament VARCHAR) |
### question: What year was the Commonwealth Games? ### answer: SELECT SUM(year) FROM table_name_16 WHERE tournament = "commonwealth games" ### context: CREATE TABLE table_name_16 (year INTEGER, tournament VARCHAR) |
### question: What job is at red bank? ### answer: SELECT occupation FROM table_name_90 WHERE residence = "red bank" ### context: CREATE TABLE table_name_90 (occupation VARCHAR, residence VARCHAR) |
### question: What year did Ecurie Bleue score more than 0 points? ### answer: SELECT AVG(year) FROM table_name_34 WHERE pts > 0 AND entrant = "ecurie bleue" ### context: CREATE TABLE table_name_34 (year INTEGER, pts VARCHAR, entrant VARCHAR) |
### question: What is the starting point of the north/south operating Palafox Street route? ### answer: SELECT starting_point FROM table_name_66 WHERE operates = "north/south" AND name = "palafox street" ### context: CREATE TABLE table_name_66 (starting_point VARCHAR, operates VARCHAR, name VARCHAR) |
### question: Which bi-directional route has a terminus at Ecat/Rosa Park Transit Center? ### answer: SELECT name FROM table_name_50 WHERE direction = "bi-directional" AND terminus = "ecat/rosa park transit center" ### context: CREATE TABLE table_name_50 (name VARCHAR, direction VARCHAR, terminus VARCHAR) |
### question: Which route has a terminus of pine Forest? ### answer: SELECT name FROM table_name_57 WHERE terminus = "pine forest" ### context: CREATE TABLE table_name_57 (name VARCHAR, terminus VARCHAR) |
### question: What is the starting point of the route that has its terminus at Ecat/Rosa Park Transit Center? ### answer: SELECT starting_point FROM table_name_27 WHERE terminus = "ecat/rosa park transit center" ### context: CREATE TABLE table_name_27 (starting_point VARCHAR, terminus VARCHAR) |
### question: What is the direction of the route that stars at downtown transit center and has a terminus point at Pensacola Beach? ### answer: SELECT direction FROM table_name_50 WHERE starting_point = "downtown transit center" AND terminus = "pensacola beach" ### context: CREATE TABLE table_name_50 (direction VARCHAR... |
### question: Where does the Bayou Blvd./12th Avenue route that has a terminus at the downtown transit center operate? ### answer: SELECT operates FROM table_name_5 WHERE terminus = "downtown transit center" AND name = "bayou blvd./12th avenue" ### context: CREATE TABLE table_name_5 (operates VARCHAR, terminus VARCHAR,... |
### question: How many full professors work under Hartmut Kliemt with more than 0 lecturers? ### answer: SELECT COUNT(full_professors) FROM table_name_72 WHERE head = "hartmut kliemt" AND lecturers > 0 ### context: CREATE TABLE table_name_72 (full_professors VARCHAR, head VARCHAR, lecturers VARCHAR) |
### question: What is the least amount of lecturers in the accounting department with less than 5 full professors? ### answer: SELECT MIN(lecturers) FROM table_name_86 WHERE department = "accounting" AND full_professors < 5 ### context: CREATE TABLE table_name_86 (lecturers INTEGER, department VARCHAR, full_professors ... |
### question: What is the average number of honorary professors in the economics department with 1 lecturer? ### answer: SELECT AVG(honorary_professors) FROM table_name_9 WHERE lecturers = 1 AND department = "economics" ### context: CREATE TABLE table_name_9 (honorary_professors INTEGER, lecturers VARCHAR, department V... |
### question: What Loss occured on the Date of June 12? ### answer: SELECT loss FROM table_name_39 WHERE date = "june 12" ### context: CREATE TABLE table_name_39 (loss VARCHAR, date VARCHAR) |
### question: What Loss had an Attendance of 17,675? ### answer: SELECT loss FROM table_name_27 WHERE attendance = "17,675" ### context: CREATE TABLE table_name_27 (loss VARCHAR, attendance VARCHAR) |
### question: What Loss had an Attendance of 17,675? ### answer: SELECT loss FROM table_name_35 WHERE attendance = "17,675" ### context: CREATE TABLE table_name_35 (loss VARCHAR, attendance VARCHAR) |
### question: On what Date had a Score of 5-2 and a Loss of Greinke (1-2)? ### answer: SELECT date FROM table_name_84 WHERE score = "5-2" AND loss = "greinke (1-2)" ### context: CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR, loss VARCHAR) |
### question: What was the Score that has an Attendance of 39,446? ### answer: SELECT score FROM table_name_3 WHERE attendance = "39,446" ### context: CREATE TABLE table_name_3 (score VARCHAR, attendance VARCHAR) |
### question: What was the Loss that had a Score of 9-1? ### answer: SELECT loss FROM table_name_87 WHERE score = "9-1" ### context: CREATE TABLE table_name_87 (loss VARCHAR, score VARCHAR) |
### question: What counties represented have a democratic committee, and a committee of ways and means? ### answer: SELECT counties_represented FROM table_name_17 WHERE party = "democratic" AND committee = "ways and means" ### context: CREATE TABLE table_name_17 (counties_represented VARCHAR, party VARCHAR, committee V... |
### question: What is the average first elected year that has a district of 11 and a committee of environmental matters? ### answer: SELECT AVG(first_elected) FROM table_name_18 WHERE district = "11" AND committee = "environmental matters" ### context: CREATE TABLE table_name_18 (first_elected INTEGER, district VARCHAR... |
### question: What is the total number of First elected that has a country represented in Baltimore county, a district of 06.0 6, and a committee of economic matters? ### answer: SELECT COUNT(first_elected) FROM table_name_80 WHERE counties_represented = "baltimore county" AND district = "06.0 6" AND committee = "econo... |
### question: What district has counties represented by Baltimore county, a committee of health and government operations, and a first elected smaller than 2002? ### answer: SELECT district FROM table_name_86 WHERE counties_represented = "baltimore county" AND committee = "health and government operations" AND first_el... |
### question: What is the Highest first elected year that has a district of 06.0 6, and a committee of economic matters? ### answer: SELECT MAX(first_elected) FROM table_name_99 WHERE district = "06.0 6" AND committee = "economic matters" ### context: CREATE TABLE table_name_99 (first_elected INTEGER, district VARCHAR,... |
### question: Who was from Morocco and scored 6 goals? ### answer: SELECT name FROM table_name_57 WHERE goals = 6 AND nationality = "morocco" ### context: CREATE TABLE table_name_57 (name VARCHAR, goals VARCHAR, nationality VARCHAR) |
### question: Who has the highest ranking from 1996β13, and more than 17 goals? ### answer: SELECT MAX(ranking) FROM table_name_80 WHERE years = "1996β13" AND goals > 17 ### context: CREATE TABLE table_name_80 (ranking INTEGER, years VARCHAR, goals VARCHAR) |
### question: What was the average ranking of Saudi Arabia in the years of 2000β? ### answer: SELECT AVG(ranking) FROM table_name_53 WHERE nationality = "saudi arabia" AND years = "2000β" ### context: CREATE TABLE table_name_53 (ranking INTEGER, nationality VARCHAR, years VARCHAR) |
### question: Which nation had 14 goals? ### answer: SELECT nationality FROM table_name_89 WHERE goals = 14 ### context: CREATE TABLE table_name_89 (nationality VARCHAR, goals VARCHAR) |
### question: What nationality is hamzah idris? ### answer: SELECT nationality FROM table_name_28 WHERE name = "hamzah idris" ### context: CREATE TABLE table_name_28 (nationality VARCHAR, name VARCHAR) |
### question: Who had fewer goals than 4 during the years of 1996β13? ### answer: SELECT MIN(goals) FROM table_name_76 WHERE ranking < 4 AND years = "1996β13" ### context: CREATE TABLE table_name_76 (goals INTEGER, ranking VARCHAR, years VARCHAR) |
### question: what is the lowest top-25 when the events is less than 17 and top-5 is more than 0? ### answer: SELECT MIN(top_25) FROM table_name_47 WHERE events < 17 AND top_5 > 0 ### context: CREATE TABLE table_name_47 (top_25 INTEGER, events VARCHAR, top_5 VARCHAR) |
### question: what is the top-5 when the tournament is totals and the top-25 is more than 4? ### answer: SELECT AVG(top_5) FROM table_name_80 WHERE tournament = "totals" AND top_25 > 4 ### context: CREATE TABLE table_name_80 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR) |
### question: what is the average number of events when the top-5 is less than 1 and top 25 more than 1 ### answer: SELECT AVG(events) FROM table_name_89 WHERE top_5 < 1 AND top_25 > 1 ### context: CREATE TABLE table_name_89 (events INTEGER, top_5 VARCHAR, top_25 VARCHAR) |
### question: what is the highest top-5 when the top-25 is less than 4, cuts made is more than 3 and wins is 0? ### answer: SELECT MAX(top_5) FROM table_name_29 WHERE top_25 < 4 AND cuts_made > 3 AND wins < 0 ### context: CREATE TABLE table_name_29 (top_5 INTEGER, wins VARCHAR, top_25 VARCHAR, cuts_made VARCHAR) |
### question: what is the total number of times the tournament was pga championship and evens is less than 4? ### answer: SELECT COUNT(top_5) FROM table_name_95 WHERE tournament = "pga championship" AND events < 4 ### context: CREATE TABLE table_name_95 (top_5 VARCHAR, tournament VARCHAR, events VARCHAR) |
### question: What year did Elf Team Tyrrell have 34 points? ### answer: SELECT AVG(year) FROM table_name_59 WHERE entrant = "elf team tyrrell" AND points = "34" ### context: CREATE TABLE table_name_59 (year INTEGER, entrant VARCHAR, points VARCHAR) |
### question: After 1972, how many points did Marlboro Team Alfa Romeo have? ### answer: SELECT points FROM table_name_84 WHERE year > 1972 AND entrant = "marlboro team alfa romeo" ### context: CREATE TABLE table_name_84 (points VARCHAR, year VARCHAR, entrant VARCHAR) |
### question: What chassis had 39 points? ### answer: SELECT chassis FROM table_name_5 WHERE points = "39" ### context: CREATE TABLE table_name_5 (chassis VARCHAR, points VARCHAR) |
### question: How many points did the Ford V8 with a Tyrrell 007 have? ### answer: SELECT points FROM table_name_3 WHERE engine = "ford v8" AND chassis = "tyrrell 007" ### context: CREATE TABLE table_name_3 (points VARCHAR, engine VARCHAR, chassis VARCHAR) |
### question: Before 1976 and with 12 points, what chassis did the Ford V8 have? ### answer: SELECT chassis FROM table_name_66 WHERE engine = "ford v8" AND year < 1976 AND points = "12" ### context: CREATE TABLE table_name_66 (chassis VARCHAR, points VARCHAR, engine VARCHAR, year VARCHAR) |
### question: What year did Elf Team Tyrrell have 39 points and a Tyrrell 007 Chassis? ### answer: SELECT SUM(year) FROM table_name_75 WHERE entrant = "elf team tyrrell" AND points = "39" AND chassis = "tyrrell 007" ### context: CREATE TABLE table_name_75 (year INTEGER, chassis VARCHAR, entrant VARCHAR, points VARCHAR) |
### question: What position does the player who played for butler cc (ks) play? ### answer: SELECT position FROM table_10015132_11 WHERE school_club_team = "Butler CC (KS)" ### context: CREATE TABLE table_10015132_11 (position VARCHAR, school_club_team VARCHAR) |
### question: How many schools did player number 3 play at? ### answer: SELECT COUNT(school_club_team) FROM table_10015132_11 WHERE no = "3" ### context: CREATE TABLE table_10015132_11 (school_club_team VARCHAR, no VARCHAR) |
### question: What school did player number 21 play for? ### answer: SELECT school_club_team FROM table_10015132_11 WHERE no = "21" ### context: CREATE TABLE table_10015132_11 (school_club_team VARCHAR, no VARCHAR) |
### question: Who is the player that wears number 42? ### answer: SELECT player FROM table_10015132_11 WHERE no = "42" ### context: CREATE TABLE table_10015132_11 (player VARCHAR, no VARCHAR) |
### question: What player played guard for toronto in 1996-97? ### answer: SELECT player FROM table_10015132_11 WHERE position = "Guard" AND years_in_toronto = "1996-97" ### context: CREATE TABLE table_10015132_11 (player VARCHAR, position VARCHAR, years_in_toronto VARCHAR) |
### question: Who are all of the players on the Westchester High School club team? ### answer: SELECT player FROM table_10015132_9 WHERE school_club_team = "Westchester High School" ### context: CREATE TABLE table_10015132_9 (player VARCHAR, school_club_team VARCHAR) |
### question: What school/club team is Amir Johnson on? ### answer: SELECT school_club_team FROM table_10015132_9 WHERE player = "Amir Johnson" ### context: CREATE TABLE table_10015132_9 (school_club_team VARCHAR, player VARCHAR) |
### question: What are the total amount of numbers on the Toronto team in 2005-06? ### answer: SELECT COUNT(no) FROM table_10015132_9 WHERE years_in_toronto = "2005-06" ### context: CREATE TABLE table_10015132_9 (no VARCHAR, years_in_toronto VARCHAR) |
### question: What are the total number of positions on the Toronto team in 2006-07? ### answer: SELECT COUNT(position) FROM table_10015132_9 WHERE years_in_toronto = "2006-07" ### context: CREATE TABLE table_10015132_9 (position VARCHAR, years_in_toronto VARCHAR) |
### question: What are the nationality of the players on the Fresno State school/club team? ### answer: SELECT nationality FROM table_10015132_9 WHERE school_club_team = "Fresno State" ### context: CREATE TABLE table_10015132_9 (nationality VARCHAR, school_club_team VARCHAR) |
### question: What school/club team is Trey Johnson on? ### answer: SELECT school_club_team FROM table_10015132_9 WHERE player = "Trey Johnson" ### context: CREATE TABLE table_10015132_9 (school_club_team VARCHAR, player VARCHAR) |
### question: When did Jacques Chirac stop being a G8 leader? ### answer: SELECT ended_time_as_senior_g8_leader FROM table_10026563_1 WHERE person = "Jacques Chirac" ### context: CREATE TABLE table_10026563_1 (ended_time_as_senior_g8_leader VARCHAR, person VARCHAR) |
### question: When did the Prime Minister of Italy take office? ### answer: SELECT entered_office_as_head_of_state_or_government FROM table_10026563_1 WHERE office = "Prime Minister of Italy" ### context: CREATE TABLE table_10026563_1 (entered_office_as_head_of_state_or_government VARCHAR, office VARCHAR) |
### question: What is the English name of the country whose official native language is Dutch Papiamento? ### answer: SELECT country___exonym__ FROM table_1008653_1 WHERE official_or_native_language_s___alphabet_script_ = "Dutch Papiamento" ### context: CREATE TABLE table_1008653_1 (country___exonym__ VARCHAR, official... |
### question: What official or native languages are spoken in the country whose capital city is Canberra? ### answer: SELECT official_or_native_language_s___alphabet_script_ FROM table_1008653_1 WHERE capital___exonym__ = "Canberra" ### context: CREATE TABLE table_1008653_1 (official_or_native_language_s___alphabet_scr... |
### question: What is the local name given to the city of Canberra? ### answer: SELECT capital___endonym__ FROM table_1008653_1 WHERE capital___exonym__ = "Canberra" ### context: CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, capital___exonym__ VARCHAR) |
### question: What is the local name given to the capital of Anguilla? ### answer: SELECT capital___endonym__ FROM table_1008653_1 WHERE country___endonym__ = "Anguilla" ### context: CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, country___endonym__ VARCHAR) |
### question: What is the English name given to the city of St. John's? ### answer: SELECT capital___exonym__ FROM table_1008653_1 WHERE capital___endonym__ = "St. John's" ### context: CREATE TABLE table_1008653_1 (capital___exonym__ VARCHAR, capital___endonym__ VARCHAR) |
### question: How many capital cities does Australia have? ### answer: SELECT COUNT(capital___endonym__) FROM table_1008653_1 WHERE country___endonym__ = "Australia" ### context: CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, country___endonym__ VARCHAR) |
### question: The episode with production code 9abx02 was originally aired on what date? ### answer: SELECT original_air_date FROM table_10088101_1 WHERE production_code = "9ABX02" ### context: CREATE TABLE table_10088101_1 (original_air_date VARCHAR, production_code VARCHAR) |
### question: What is the episode number that has production code 8abx15? ### answer: SELECT MIN(no_in_series) FROM table_10088101_1 WHERE production_code = "8ABX15" ### context: CREATE TABLE table_10088101_1 (no_in_series INTEGER, production_code VARCHAR) |
### question: Name the minimum tiesplayed for 6 years ### answer: SELECT MIN(ties_played) FROM table_10295819_2 WHERE years_played = 6 ### context: CREATE TABLE table_10295819_2 (ties_played INTEGER, years_played VARCHAR) |
### question: What is the amount of trees, that require replacement when district is leninsky? ### answer: SELECT amount_of_trees, _that_require_replacement FROM table_10342194_3 WHERE district = "Leninsky" ### context: CREATE TABLE table_10342194_3 (amount_of_trees VARCHAR, _that_require_replacement VARCHAR, district ... |
### question: What is the district when the total amount of trees is smaller than 150817.6878461314 and amount of old trees is 1,928 (1.89%)? ### answer: SELECT district FROM table_10342194_3 WHERE total_amount_of_trees < 150817.6878461314 AND amount_of_old_trees = "1,928 (1.89%)" ### context: CREATE TABLE table_103421... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.