text stringlengths 114 1.06k |
|---|
### question: Which Played has Draws smaller than 7, and Goals for smaller than 61, and Goals against smaller than 48, and a Position of 5? ### answer: SELECT MAX(played) FROM table_name_29 WHERE draws < 7 AND goals_for < 61 AND goals_against < 48 AND position = 5 ### context: CREATE TABLE table_name_29 (played INTEGER... |
### question: How many Goals against have Played more than 34? ### answer: SELECT COUNT(goals_against) FROM table_name_97 WHERE played > 34 ### context: CREATE TABLE table_name_97 (goals_against VARCHAR, played INTEGER) |
### question: Which Losses have a Goal Difference of -16, and less than 8 wins? ### answer: SELECT MIN(losses) FROM table_name_83 WHERE goal_difference = -16 AND wins < 8 ### context: CREATE TABLE table_name_83 (losses INTEGER, goal_difference VARCHAR, wins VARCHAR) |
### question: Which Wins have a Goal Difference larger than 0, and Goals against larger than 40, and a Position smaller than 6, and a Club of sd indauchu? ### answer: SELECT MIN(wins) FROM table_name_33 WHERE goal_difference > 0 AND goals_against > 40 AND position < 6 AND club = "sd indauchu" ### context: CREATE TABLE ... |
### question: What place did player mark brooks take? ### answer: SELECT place FROM table_name_84 WHERE player = "mark brooks" ### context: CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR) |
### question: What was the To par of the golfer that placed t5? ### answer: SELECT to_par FROM table_name_66 WHERE place = "t5" ### context: CREATE TABLE table_name_66 (to_par VARCHAR, place VARCHAR) |
### question: Which player had a score of 70? ### answer: SELECT player FROM table_name_96 WHERE score = 70 ### context: CREATE TABLE table_name_96 (player VARCHAR, score VARCHAR) |
### question: What was the highest score of t5 place finisher brandt jobe? ### answer: SELECT MAX(score) FROM table_name_51 WHERE place = "t5" AND player = "brandt jobe" ### context: CREATE TABLE table_name_51 (score INTEGER, place VARCHAR, player VARCHAR) |
### question: Which event had a total of defending champion? ### answer: SELECT event FROM table_name_39 WHERE total = "defending champion" ### context: CREATE TABLE table_name_39 (event VARCHAR, total VARCHAR) |
### question: How many weeks was there an attendance of 74,347? ### answer: SELECT SUM(week) FROM table_name_63 WHERE attendance = "74,347" ### context: CREATE TABLE table_name_63 (week INTEGER, attendance VARCHAR) |
### question: What is the latest week with an attendance of 74,162? ### answer: SELECT MAX(week) FROM table_name_72 WHERE attendance = "74,162" ### context: CREATE TABLE table_name_72 (week INTEGER, attendance VARCHAR) |
### question: Who is the opponent when the attendance is 57,331? ### answer: SELECT opponent FROM table_name_41 WHERE attendance = "57,331" ### context: CREATE TABLE table_name_41 (opponent VARCHAR, attendance VARCHAR) |
### question: What day was the attendance 74,285? ### answer: SELECT date FROM table_name_98 WHERE attendance = "74,285" ### context: CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR) |
### question: What was the result for week 16? ### answer: SELECT result FROM table_name_36 WHERE week = 16 ### context: CREATE TABLE table_name_36 (result VARCHAR, week VARCHAR) |
### question: Who are the Opponents in the final prior to 1998 in the Bucharest, Romania Tournament? ### answer: SELECT opponents_in_the_final FROM table_name_65 WHERE date < 1998 AND tournament = "bucharest, romania" ### context: CREATE TABLE table_name_65 (opponents_in_the_final VARCHAR, date VARCHAR, tournament VARC... |
### question: Which parish has an area of 750.51? ### answer: SELECT official_name FROM table_name_46 WHERE area_km_2 = 750.51 ### context: CREATE TABLE table_name_46 (official_name VARCHAR, area_km_2 VARCHAR) |
### question: What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008? ### answer: SELECT COUNT(area_km_2) FROM table_name_16 WHERE census_ranking = "1,871 of 5,008" AND population > 1 OFFSET 172 ### context: CREATE TABLE table_name_16 (area_km_2 VARCHAR, census_ranking... |
### question: When the position is less than 7, what is the appeared on album? ### answer: SELECT appeared_on_album FROM table_name_90 WHERE position < 7 ### context: CREATE TABLE table_name_90 (appeared_on_album VARCHAR, position INTEGER) |
### question: After 1996, what is the average position? ### answer: SELECT AVG(position) FROM table_name_96 WHERE year > 1996 ### context: CREATE TABLE table_name_96 (position INTEGER, year INTEGER) |
### question: Which To par has a Place of t4, and wayne grady is in? ### answer: SELECT to_par FROM table_name_87 WHERE place = "t4" AND player = "wayne grady" ### context: CREATE TABLE table_name_87 (to_par VARCHAR, place VARCHAR, player VARCHAR) |
### question: Name the Place of england with a Score larger than 66? ### answer: SELECT place FROM table_name_3 WHERE country = "england" AND score > 66 ### context: CREATE TABLE table_name_3 (place VARCHAR, country VARCHAR, score VARCHAR) |
### question: Name the Score united states of tom watson in united state? ### answer: SELECT score FROM table_name_40 WHERE country = "united states" AND player = "tom watson" ### context: CREATE TABLE table_name_40 (score VARCHAR, country VARCHAR, player VARCHAR) |
### question: Who has a To par of –2, and a Country of united states? ### answer: SELECT player FROM table_name_98 WHERE to_par = "–2" AND country = "united states" ### context: CREATE TABLE table_name_98 (player VARCHAR, to_par VARCHAR, country VARCHAR) |
### question: What is the time of Max Biaggi with more than 2 grids, 20 laps? ### answer: SELECT time FROM table_name_40 WHERE grid > 2 AND laps = 20 AND rider = "max biaggi" ### context: CREATE TABLE table_name_40 (time VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR) |
### question: What is the time of Troy Bayliss with less than 8 grids? ### answer: SELECT time FROM table_name_96 WHERE grid < 8 AND rider = "troy bayliss" ### context: CREATE TABLE table_name_96 (time VARCHAR, grid VARCHAR, rider VARCHAR) |
### question: Which Torque has a Model of s63 amg ('01)? ### answer: SELECT torque FROM table_name_91 WHERE model = "s63 amg ('01)" ### context: CREATE TABLE table_name_91 (torque VARCHAR, model VARCHAR) |
### question: Which Engine has a Model of s430? ### answer: SELECT engine FROM table_name_71 WHERE model = "s430" ### context: CREATE TABLE table_name_71 (engine VARCHAR, model VARCHAR) |
### question: Which Engine has a Model of s320 cdi? ### answer: SELECT engine FROM table_name_87 WHERE model = "s320 cdi" ### context: CREATE TABLE table_name_87 (engine VARCHAR, model VARCHAR) |
### question: Who won Division Southwest when Madžari Solidarnost won Division North? ### answer: SELECT division_southwest FROM table_name_4 WHERE division_north = "madžari solidarnost" ### context: CREATE TABLE table_name_4 (division_southwest VARCHAR, division_north VARCHAR) |
### question: Who won Division West when Division North was won by Alumina? ### answer: SELECT division_west FROM table_name_69 WHERE division_north = "alumina" ### context: CREATE TABLE table_name_69 (division_west VARCHAR, division_north VARCHAR) |
### question: Who won Division North when Division Southwest was won by Novaci and Division West by Vrapčište? ### answer: SELECT division_north FROM table_name_75 WHERE division_southwest = "novaci" AND division_west = "vrapčište" ### context: CREATE TABLE table_name_75 (division_north VARCHAR, division_southwest VARC... |
### question: Who won Division Southwest when the winner of Division North was Lepenec and Division South was won by 11 Oktomvri? ### answer: SELECT division_southwest FROM table_name_44 WHERE division_north = "lepenec" AND division_south = "11 oktomvri" ### context: CREATE TABLE table_name_44 (division_southwest VARCH... |
### question: What are the minutes of the Player from Real Madrid Club with a Rank of 7 or larger? ### answer: SELECT SUM(minutes) FROM table_name_73 WHERE rank > 7 AND club = "real madrid" ### context: CREATE TABLE table_name_73 (minutes INTEGER, rank VARCHAR, club VARCHAR) |
### question: For what award was there a nomination for Best Actress? ### answer: SELECT award FROM table_name_21 WHERE category = "best actress" ### context: CREATE TABLE table_name_21 (award VARCHAR, category VARCHAR) |
### question: What year was Teen Angels 2 nominated? ### answer: SELECT year FROM table_name_19 WHERE nominated = "teen angels 2" ### context: CREATE TABLE table_name_19 (year VARCHAR, nominated VARCHAR) |
### question: What year saw an award in the category of Revelation? ### answer: SELECT year FROM table_name_73 WHERE category = "revelation" ### context: CREATE TABLE table_name_73 (year VARCHAR, category VARCHAR) |
### question: Name the performance nominated for a Capif Award. ### answer: SELECT nominated FROM table_name_60 WHERE award = "capif award" ### context: CREATE TABLE table_name_60 (nominated VARCHAR, award VARCHAR) |
### question: In what category was Herself nominated? ### answer: SELECT category FROM table_name_21 WHERE nominated = "herself" ### context: CREATE TABLE table_name_21 (category VARCHAR, nominated VARCHAR) |
### question: What year was there a nomination for Best Actress at the Kids' Choice Awards Argentina? ### answer: SELECT year FROM table_name_36 WHERE award = "kids' choice awards argentina" AND category = "best actress" ### context: CREATE TABLE table_name_36 (year VARCHAR, award VARCHAR, category VARCHAR) |
### question: What is the average Draws, when Goal Difference is greater than -3, when Goals Against is 30, and when Points is greater than 45? ### answer: SELECT AVG(draws) FROM table_name_97 WHERE goal_difference > -3 AND goals_against = 30 AND points > 45 ### context: CREATE TABLE table_name_97 (draws INTEGER, point... |
### question: What is the average Played, when Club is "Burgos CF", and when Draws is less than 7? ### answer: SELECT AVG(played) FROM table_name_32 WHERE club = "burgos cf" AND draws < 7 ### context: CREATE TABLE table_name_32 (played INTEGER, club VARCHAR, draws VARCHAR) |
### question: What is the highest Goals Against, when Club is "Pontevedra CF", and when Played is less than 38? ### answer: SELECT MAX(goals_against) FROM table_name_74 WHERE club = "pontevedra cf" AND played < 38 ### context: CREATE TABLE table_name_74 (goals_against INTEGER, club VARCHAR, played VARCHAR) |
### question: What is T2 Place Player Steve Flesch's Score? ### answer: SELECT MAX(score) FROM table_name_97 WHERE place = "t2" AND player = "steve flesch" ### context: CREATE TABLE table_name_97 (score INTEGER, place VARCHAR, player VARCHAR) |
### question: What is the Place of the Player with a Score of 67? ### answer: SELECT place FROM table_name_16 WHERE score = 67 ### context: CREATE TABLE table_name_16 (place VARCHAR, score VARCHAR) |
### question: What Venue has a Year smaller than 1991, Time larger than 10.29, Competition of mediterranean games, and Event of 4x100 m relay? ### answer: SELECT venue FROM table_name_10 WHERE year < 1991 AND time > 10.29 AND competition = "mediterranean games" AND event = "4x100 m relay" ### context: CREATE TABLE tabl... |
### question: What Event has a Position of 1st, a Year of 1983, and a Venue of budapest? ### answer: SELECT event FROM table_name_34 WHERE position = "1st" AND year = 1983 AND venue = "budapest" ### context: CREATE TABLE table_name_34 (event VARCHAR, venue VARCHAR, position VARCHAR, year VARCHAR) |
### question: What Position has a Time of 20.66? ### answer: SELECT position FROM table_name_52 WHERE time = 20.66 ### context: CREATE TABLE table_name_52 (position VARCHAR, time VARCHAR) |
### question: What is the greatest Time with a Year of 1991, and Event of 4x100 m relay? ### answer: SELECT MAX(time) FROM table_name_89 WHERE year = 1991 AND event = "4x100 m relay" ### context: CREATE TABLE table_name_89 (time INTEGER, year VARCHAR, event VARCHAR) |
### question: When was the match that had Shaun Murphy as runner-up? ### answer: SELECT date FROM table_name_31 WHERE runner_up = "shaun murphy" ### context: CREATE TABLE table_name_31 (date VARCHAR, runner_up VARCHAR) |
### question: Who was the winner in the match that had John Higgins as runner-up? ### answer: SELECT winner FROM table_name_63 WHERE runner_up = "john higgins" ### context: CREATE TABLE table_name_63 (winner VARCHAR, runner_up VARCHAR) |
### question: What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ʏ"? ### answer: SELECT pronunciation_spelled_free FROM table_name_8 WHERE pronunciation_spelled_checked = "ʏ" ### context: CREATE TABLE table_name_8 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR) |
### question: What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ɛ"? ### answer: SELECT pronunciation_spelled_free FROM table_name_2 WHERE pronunciation_spelled_checked = "ɛ" ### context: CREATE TABLE table_name_2 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR) |
### question: What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ɑ"? ### answer: SELECT pronunciation_spelled_free FROM table_name_24 WHERE pronunciation_spelled_checked = "ɑ" ### context: CREATE TABLE table_name_24 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR) |
### question: What was the largest tie when the G.P was more than 5? ### answer: SELECT MAX(ties) FROM table_name_56 WHERE gp > 5 ### context: CREATE TABLE table_name_56 (ties INTEGER, gp INTEGER) |
### question: What is the highest number in attendance against the game at Kansas City Chiefs? ### answer: SELECT MAX(attendance) FROM table_name_47 WHERE opponent = "at kansas city chiefs" ### context: CREATE TABLE table_name_47 (attendance INTEGER, opponent VARCHAR) |
### question: What is the attendance for the game against the Kansas City Chiefs earlier than week 13? ### answer: SELECT AVG(attendance) FROM table_name_32 WHERE opponent = "kansas city chiefs" AND week < 13 ### context: CREATE TABLE table_name_32 (attendance INTEGER, opponent VARCHAR, week VARCHAR) |
### question: What is the result later than week 13? ### answer: SELECT result FROM table_name_64 WHERE week > 13 ### context: CREATE TABLE table_name_64 (result VARCHAR, week INTEGER) |
### question: What is the lowest To par of gary player, with more than 145 total? ### answer: SELECT MIN(to_par) FROM table_name_8 WHERE player = "gary player" AND total > 145 ### context: CREATE TABLE table_name_8 (to_par INTEGER, player VARCHAR, total VARCHAR) |
### question: How many Wins have Goals against smaller than 30, and Goals for larger than 25, and Draws larger than 5? ### answer: SELECT COUNT(wins) FROM table_name_66 WHERE goals_against < 30 AND goals_for > 25 AND draws > 5 ### context: CREATE TABLE table_name_66 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, ... |
### question: How many Draws have 30 Points, and less than 33 Goals against? ### answer: SELECT COUNT(draws) FROM table_name_44 WHERE points = 30 AND goals_against < 33 ### context: CREATE TABLE table_name_44 (draws VARCHAR, points VARCHAR, goals_against VARCHAR) |
### question: Which Wins have a Goal Difference larger than 12, and a Club of granada cf, and Played larger than 30? ### answer: SELECT AVG(wins) FROM table_name_91 WHERE goal_difference > 12 AND club = "granada cf" AND played > 30 ### context: CREATE TABLE table_name_91 (wins INTEGER, played VARCHAR, goal_difference V... |
### question: Which Played has a Club of atlético ceuta, and less than 11 Losses? ### answer: SELECT MAX(played) FROM table_name_40 WHERE club = "atlético ceuta" AND losses < 11 ### context: CREATE TABLE table_name_40 (played INTEGER, club VARCHAR, losses VARCHAR) |
### question: What is the place number for the player with a To Par score of 'E'? ### answer: SELECT place FROM table_name_85 WHERE to_par = "e" ### context: CREATE TABLE table_name_85 (place VARCHAR, to_par VARCHAR) |
### question: What is the To Par score for the player from South Africa? ### answer: SELECT to_par FROM table_name_76 WHERE country = "south africa" ### context: CREATE TABLE table_name_76 (to_par VARCHAR, country VARCHAR) |
### question: Which player from Scotland has a To Par score of +7? ### answer: SELECT player FROM table_name_50 WHERE to_par = "+7" AND country = "scotland" ### context: CREATE TABLE table_name_50 (player VARCHAR, to_par VARCHAR, country VARCHAR) |
### question: Player Craig Parry of Australia is in what place number? ### answer: SELECT place FROM table_name_86 WHERE country = "australia" AND player = "craig parry" ### context: CREATE TABLE table_name_86 (place VARCHAR, country VARCHAR, player VARCHAR) |
### question: Which player from the United States is in a place of T2? ### answer: SELECT player FROM table_name_49 WHERE place = "t2" AND country = "united states" ### context: CREATE TABLE table_name_49 (player VARCHAR, place VARCHAR, country VARCHAR) |
### question: For the match in which player David Frost scored a To Par of +7, what was the final score? ### answer: SELECT score FROM table_name_94 WHERE to_par = "+7" AND player = "david frost" ### context: CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR) |
### question: What was Tom Watson's lowest To par when the total was larger than 144? ### answer: SELECT MIN(to_par) FROM table_name_44 WHERE player = "tom watson" AND total > 144 ### context: CREATE TABLE table_name_44 (to_par INTEGER, player VARCHAR, total VARCHAR) |
### question: What was England's total? ### answer: SELECT total FROM table_name_75 WHERE country = "england" ### context: CREATE TABLE table_name_75 (total VARCHAR, country VARCHAR) |
### question: What player had a To par smaller than 9 and won in 1985? ### answer: SELECT player FROM table_name_9 WHERE to_par < 9 AND year_s__won = "1985" ### context: CREATE TABLE table_name_9 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR) |
### question: What is the seat percentage when vote percentage is 2.4% (-8.3)? ### answer: SELECT seat_percentage FROM table_name_73 WHERE vote_percentage = "2.4% (-8.3)" ### context: CREATE TABLE table_name_73 (seat_percentage VARCHAR, vote_percentage VARCHAR) |
### question: How many calories is 1 watt hour? ### answer: SELECT calorie FROM table_name_64 WHERE watt_hour = "1" ### context: CREATE TABLE table_name_64 (calorie VARCHAR, watt_hour VARCHAR) |
### question: How many electronvolts is 3,600 joules? ### answer: SELECT electronvolt FROM table_name_44 WHERE joule = "3,600" ### context: CREATE TABLE table_name_44 (electronvolt VARCHAR, joule VARCHAR) |
### question: What is the total number of Year, when Winner is "Johnathan Gray"? ### answer: SELECT COUNT(year) FROM table_name_81 WHERE winner = "johnathan gray" ### context: CREATE TABLE table_name_81 (year VARCHAR, winner VARCHAR) |
### question: What is Winner, when College is "Kentucky"? ### answer: SELECT winner FROM table_name_16 WHERE college = "kentucky" ### context: CREATE TABLE table_name_16 (winner VARCHAR, college VARCHAR) |
### question: What is Hometown, when Sport is "Basketball", and when Winner is "Dwight Howard"? ### answer: SELECT hometown FROM table_name_83 WHERE sport = "basketball" AND winner = "dwight howard" ### context: CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR) |
### question: What is the Duration for less than 53 consecutive wins? ### answer: SELECT duration FROM table_name_68 WHERE wins < 53 ### context: CREATE TABLE table_name_68 (duration VARCHAR, wins INTEGER) |
### question: How many wins were held before being defeated by toda? ### answer: SELECT COUNT(wins) FROM table_name_97 WHERE defeated_by = "toda" ### context: CREATE TABLE table_name_97 (wins VARCHAR, defeated_by VARCHAR) |
### question: What is the greatest goals for Curtis Davies if ends is greater than 2012? ### answer: SELECT MAX(goals) FROM table_name_9 WHERE name = "curtis davies" AND ends > 2012 ### context: CREATE TABLE table_name_9 (goals INTEGER, name VARCHAR, ends VARCHAR) |
### question: When the transfer fee is £8.5m, what is the total ends? ### answer: SELECT SUM(ends) FROM table_name_70 WHERE transfer_fee = "£8.5m" ### context: CREATE TABLE table_name_70 (ends INTEGER, transfer_fee VARCHAR) |
### question: On what Date was Henry I Latin Commander of the Battle of Boruy? ### answer: SELECT date FROM table_name_67 WHERE latin_commander = "henry i" AND battle = "battle of boruy" ### context: CREATE TABLE table_name_67 (date VARCHAR, latin_commander VARCHAR, battle VARCHAR) |
### question: Who is the Latin Commander of the Siege of Constantinople? ### answer: SELECT latin_commander FROM table_name_88 WHERE battle = "siege of constantinople" ### context: CREATE TABLE table_name_88 (latin_commander VARCHAR, battle VARCHAR) |
### question: What is the Result of the battle with Latin Commander Boniface of Montferrat? ### answer: SELECT result FROM table_name_3 WHERE latin_commander = "boniface of montferrat" ### context: CREATE TABLE table_name_3 (result VARCHAR, latin_commander VARCHAR) |
### question: What is the Battle with Bulgarian Commander Ivan Asen II? ### answer: SELECT battle FROM table_name_21 WHERE bulgarian_commander = "ivan asen ii" ### context: CREATE TABLE table_name_21 (battle VARCHAR, bulgarian_commander VARCHAR) |
### question: What is the Bulgarian Commander of the Battle of Rusion? ### answer: SELECT bulgarian_commander FROM table_name_39 WHERE battle = "battle of rusion" ### context: CREATE TABLE table_name_39 (bulgarian_commander VARCHAR, battle VARCHAR) |
### question: What is Type for Rite Albanian? ### answer: SELECT type FROM table_name_63 WHERE rite = "albanian" ### context: CREATE TABLE table_name_63 (type VARCHAR, rite VARCHAR) |
### question: What Area (km 2) is lowest with a type being Apostolic Administration? ### answer: SELECT MIN(area__km_2__) FROM table_name_47 WHERE type = "apostolic administration" ### context: CREATE TABLE table_name_47 (area__km_2__ INTEGER, type VARCHAR) |
### question: What Ecclesiastical Province has a type diocese and a latin name alexiensis? ### answer: SELECT ecclesiastical_province FROM table_name_21 WHERE type = "diocese" AND latin_name = "alexiensis" ### context: CREATE TABLE table_name_21 (ecclesiastical_province VARCHAR, type VARCHAR, latin_name VARCHAR) |
### question: What's the money that Sam Snead won? ### answer: SELECT money___$__ FROM table_name_52 WHERE player = "sam snead" ### context: CREATE TABLE table_name_52 (money___$__ VARCHAR, player VARCHAR) |
### question: What was the total To Par for Craig Wood? ### answer: SELECT SUM(to_par) FROM table_name_16 WHERE player = "craig wood" ### context: CREATE TABLE table_name_16 (to_par INTEGER, player VARCHAR) |
### question: What was the score for t9 place for Harold Mcspaden? ### answer: SELECT score FROM table_name_9 WHERE place = "t9" AND player = "harold mcspaden" ### context: CREATE TABLE table_name_9 (score VARCHAR, place VARCHAR, player VARCHAR) |
### question: What was the country for Sam Snead? ### answer: SELECT country FROM table_name_58 WHERE player = "sam snead" ### context: CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR) |
### question: What place had a ribbon below 9.8 and a 19.2 total? ### answer: SELECT MAX(place) FROM table_name_23 WHERE ribbon < 9.8 AND total = 19.2 ### context: CREATE TABLE table_name_23 (place INTEGER, ribbon VARCHAR, total VARCHAR) |
### question: Which Natural change has a Crude death rate (per 1000) larger than 9, and Deaths of 40 399? ### answer: SELECT natural_change FROM table_name_88 WHERE crude_death_rate__per_1000_ > 9 AND deaths = "40 399" ### context: CREATE TABLE table_name_88 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR,... |
### question: How many season have an average attendance league of 2.456? ### answer: SELECT SUM(season) FROM table_name_46 WHERE average_attendance_league = 2.456 ### context: CREATE TABLE table_name_46 (season INTEGER, average_attendance_league VARCHAR) |
### question: Which venue has more than 19 against? ### answer: SELECT venue FROM table_name_63 WHERE against > 19 ### context: CREATE TABLE table_name_63 (venue VARCHAR, against INTEGER) |
### question: How many against have a status of first test? ### answer: SELECT COUNT(against) FROM table_name_20 WHERE status = "first test" ### context: CREATE TABLE table_name_20 (against VARCHAR, status VARCHAR) |
### question: What is the Venue of the Competition on 2001-05-05? ### answer: SELECT venue FROM table_name_38 WHERE date = "2001-05-05" ### context: CREATE TABLE table_name_38 (venue VARCHAR, date VARCHAR) |
### question: What is the Date of the Fifa World Cup with a Score of 1-0? ### answer: SELECT date FROM table_name_15 WHERE score = "1-0" AND competition = "fifa world cup" ### context: CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, competition VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.