Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
16,000 | <question>: What is the Place of the Player with a Score of 69-72-72=213? <context>: CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_63 WHERE score = 69 - 72 - 72 = 213 |
16,001 | <question>: What was the result on September 20? <context>: CREATE TABLE table_name_99 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_99 WHERE date = "september 20" |
16,002 | <question>: The golfer who won in 1993 had what total has his total? <context>: CREATE TABLE table_name_97 (total INTEGER, year_s__won VARCHAR) | SELECT SUM(total) FROM table_name_97 WHERE year_s__won = "1993" |
16,003 | <question>: When the finish is t27 what is the year (s) won? <context>: CREATE TABLE table_name_57 (year_s__won VARCHAR, finish VARCHAR) | SELECT year_s__won FROM table_name_57 WHERE finish = "t27" |
16,004 | <question>: What total average has 1988 has the year (s) won? <context>: CREATE TABLE table_name_34 (total INTEGER, year_s__won VARCHAR) | SELECT AVG(total) FROM table_name_34 WHERE year_s__won = "1988" |
16,005 | <question>: In what place did Bob Tway finish? <context>: CREATE TABLE table_name_71 (finish VARCHAR, player VARCHAR) | SELECT finish FROM table_name_71 WHERE player = "bob tway" |
16,006 | <question>: What is the smallest draws for Byes less than 4? <context>: CREATE TABLE table_name_80 (draws INTEGER, byes INTEGER) | SELECT MIN(draws) FROM table_name_80 WHERE byes < 4 |
16,007 | <question>: When losses is 6 and draws is more than 0, what is the greatest byes? <context>: CREATE TABLE table_name_24 (byes INTEGER, losses VARCHAR, draws VARCHAR) | SELECT MAX(byes) FROM table_name_24 WHERE losses = 6 AND draws > 0 |
16,008 | <question>: When Benall DFL is Goorambat with less than 13 wins, what is the least amount of losses? <context>: CREATE TABLE table_name_15 (losses INTEGER, benalla_dfl VARCHAR, wins VARCHAR) | SELECT MIN(losses) FROM table_name_15 WHERE benalla_dfl = "goorambat" AND wins < 13 |
16,009 | <question>: When Benalla DFL is swanpool with less than 16 losses, what is the sum of Byes? <context>: CREATE TABLE table_name_39 (byes VARCHAR, benalla_dfl VARCHAR, losses VARCHAR) | SELECT COUNT(byes) FROM table_name_39 WHERE benalla_dfl = "swanpool" AND losses < 16 |
16,010 | <question>: What is the most wins for draws greater than 0? <context>: CREATE TABLE table_name_31 (wins INTEGER, draws INTEGER) | SELECT MAX(wins) FROM table_name_31 WHERE draws > 0 |
16,011 | <question>: What day did the Raiders score 17? <context>: CREATE TABLE table_name_11 (date VARCHAR, raiders_points VARCHAR) | SELECT date FROM table_name_11 WHERE raiders_points = 17 |
16,012 | <question>: What was the streak for the game after 8 on Nov 22? <context>: CREATE TABLE table_name_74 (streak VARCHAR, game VARCHAR, date VARCHAR) | SELECT streak FROM table_name_74 WHERE game > 8 AND date = "nov 22" |
16,013 | <question>: What is the total Goals with a Rank smaller than 10, a Name of nicolas anelka, and Appearances larger than 9? <context>: CREATE TABLE table_name_7 (goals INTEGER, appearances VARCHAR, rank VARCHAR, name VARCHAR) | SELECT SUM(goals) FROM table_name_7 WHERE rank < 10 AND name = "nicolas anelka" AND appearances > 9 |
16,014 | <question>: What is the total Goals with Rank larger than 10? <context>: CREATE TABLE table_name_71 (goals INTEGER, rank INTEGER) | SELECT SUM(goals) FROM table_name_71 WHERE rank > 10 |
16,015 | <question>: What is the greatest Goals with a Name of samuel eto'o? <context>: CREATE TABLE table_name_34 (goals INTEGER, name VARCHAR) | SELECT MAX(goals) FROM table_name_34 WHERE name = "samuel eto'o" |
16,016 | <question>: What Rank has a Team of roma? <context>: CREATE TABLE table_name_14 (rank VARCHAR, team VARCHAR) | SELECT rank FROM table_name_14 WHERE team = "roma" |
16,017 | <question>: What is the Country of the Player with a To par of +1 and a Score of 72-71=143? <context>: CREATE TABLE table_name_99 (country VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT country FROM table_name_99 WHERE to_par = "+1" AND score = 72 - 71 = 143 |
16,018 | <question>: What is Bob Tway's To par? <context>: CREATE TABLE table_name_27 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_27 WHERE player = "bob tway" |
16,019 | <question>: What is the to par when the score is 73-69-67-74=283? <context>: CREATE TABLE table_name_40 (to_par VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_40 WHERE score = 73 - 69 - 67 - 74 = 283 |
16,020 | <question>: What is the lowest weight snatched for a lifter who had a clean and jerk less than 185? <context>: CREATE TABLE table_name_21 (snatch INTEGER, clean_ VARCHAR, _jerk VARCHAR) | SELECT MIN(snatch) FROM table_name_21 WHERE clean_ & _jerk < 185 |
16,021 | <question>: Which Record has a Result of l 13–30? <context>: CREATE TABLE table_name_29 (record VARCHAR, result VARCHAR) | SELECT record FROM table_name_29 WHERE result = "l 13–30" |
16,022 | <question>: Which Opponent has a Week larger than 3, and a Game site of mile high stadium, and a Record of 3–3? <context>: CREATE TABLE table_name_46 (opponent VARCHAR, record VARCHAR, week VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_name_46 WHERE week > 3 AND game_site = "mile high stadium" AND record = "3–3" |
16,023 | <question>: What is the most recent year for a first elected republican? <context>: CREATE TABLE table_name_36 (first_elected INTEGER, party VARCHAR) | SELECT MAX(first_elected) FROM table_name_36 WHERE party = "republican" |
16,024 | <question>: What is the first elected for Jo Bonner? <context>: CREATE TABLE table_name_12 (first_elected INTEGER, incumbent VARCHAR) | SELECT MIN(first_elected) FROM table_name_12 WHERE incumbent = "jo bonner" |
16,025 | <question>: What is the party of the california 35 district? <context>: CREATE TABLE table_name_4 (party VARCHAR, district VARCHAR) | SELECT party FROM table_name_4 WHERE district = "california 35" |
16,026 | <question>: What is the earliest first elected date of incumbent howard mckeon? <context>: CREATE TABLE table_name_26 (first_elected INTEGER, incumbent VARCHAR) | SELECT MIN(first_elected) FROM table_name_26 WHERE incumbent = "howard mckeon" |
16,027 | <question>: What district has a democratic party? <context>: CREATE TABLE table_name_45 (district VARCHAR, party VARCHAR) | SELECT district FROM table_name_45 WHERE party = "democratic" |
16,028 | <question>: which Streak has a Location/Attendance of staples center, and a Score of 67–89? <context>: CREATE TABLE table_name_1 (streak VARCHAR, location_attendance VARCHAR, score VARCHAR) | SELECT streak FROM table_name_1 WHERE location_attendance = "staples center" AND score = "67–89" |
16,029 | <question>: Which game is on mar 12? <context>: CREATE TABLE table_name_81 (game INTEGER, date VARCHAR) | SELECT AVG(game) FROM table_name_81 WHERE date = "mar 12" |
16,030 | <question>: Which Opponent is on mar 10? <context>: CREATE TABLE table_name_63 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_63 WHERE date = "mar 10" |
16,031 | <question>: Which Streak is in new orleans arena and a Record of 31–33? <context>: CREATE TABLE table_name_75 (streak VARCHAR, location_attendance VARCHAR, record VARCHAR) | SELECT streak FROM table_name_75 WHERE location_attendance = "new orleans arena" AND record = "31–33" |
16,032 | <question>: Which Game has an Opponent of phoenix suns? <context>: CREATE TABLE table_name_22 (game VARCHAR, opponent VARCHAR) | SELECT game FROM table_name_22 WHERE opponent = "phoenix suns" |
16,033 | <question>: Which Opponent has a Score of 92–93? <context>: CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_52 WHERE score = "92–93" |
16,034 | <question>: What is the country of the player whose score is 71-69-70-69=279? <context>: CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_21 WHERE score = 71 - 69 - 70 - 69 = 279 |
16,035 | <question>: WHAT IS THE DIRECTOR WITH FILM hope and pain? <context>: CREATE TABLE table_name_28 (director VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT director FROM table_name_28 WHERE film_title_used_in_nomination = "hope and pain" |
16,036 | <question>: WHAT IS THE RESULT WITH FILM LAKE OF TEARS? <context>: CREATE TABLE table_name_28 (result VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT result FROM table_name_28 WHERE film_title_used_in_nomination = "lake of tears" |
16,037 | <question>: Which Opponent has a Date of september 20, 1992? <context>: CREATE TABLE table_name_92 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_92 WHERE date = "september 20, 1992" |
16,038 | <question>: Which Week has Attendance of 71,740? <context>: CREATE TABLE table_name_97 (week INTEGER, attendance VARCHAR) | SELECT SUM(week) FROM table_name_97 WHERE attendance = "71,740" |
16,039 | <question>: Which Week has a Date of october 4, 1992? <context>: CREATE TABLE table_name_52 (week INTEGER, date VARCHAR) | SELECT MAX(week) FROM table_name_52 WHERE date = "october 4, 1992" |
16,040 | <question>: Which Opponent has Attendance of 71,740? <context>: CREATE TABLE table_name_53 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_53 WHERE attendance = "71,740" |
16,041 | <question>: What 1976 has a 1978 of grand slam tournaments? <context>: CREATE TABLE table_name_57 (Id VARCHAR) | SELECT 1976 FROM table_name_57 WHERE 1978 = "grand slam tournaments" |
16,042 | <question>: What 1978 has a 1976 of 62%? <context>: CREATE TABLE table_name_99 (Id VARCHAR) | SELECT 1978 FROM table_name_99 WHERE 1976 = "62%" |
16,043 | <question>: What 1984 has a 1978 of 46–15? <context>: CREATE TABLE table_name_87 (Id VARCHAR) | SELECT 1984 FROM table_name_87 WHERE 1978 = "46–15" |
16,044 | <question>: What 1973 has a 1978 of 75%? <context>: CREATE TABLE table_name_31 (Id VARCHAR) | SELECT 1973 FROM table_name_31 WHERE 1978 = "75%" |
16,045 | <question>: What 1983 has a 1975 of career statistics? <context>: CREATE TABLE table_name_44 (Id VARCHAR) | SELECT 1983 FROM table_name_44 WHERE 1975 = "career statistics" |
16,046 | <question>: What 1976 has a Tournament of overall win – loss? <context>: CREATE TABLE table_name_67 (tournament VARCHAR) | SELECT 1976 FROM table_name_67 WHERE tournament = "overall win – loss" |
16,047 | <question>: What is the highest Wins, when Goals For is greater than 39, and when Points is less than 25? <context>: CREATE TABLE table_name_55 (wins INTEGER, goals_for VARCHAR, points VARCHAR) | SELECT MAX(wins) FROM table_name_55 WHERE goals_for > 39 AND points < 25 |
16,048 | <question>: What is the total number of Goals For, when Losses is greater than 16? <context>: CREATE TABLE table_name_99 (goals_for VARCHAR, losses INTEGER) | SELECT COUNT(goals_for) FROM table_name_99 WHERE losses > 16 |
16,049 | <question>: What is the average Position, when Goal Difference is "17", and when Wins is greater than 13? <context>: CREATE TABLE table_name_80 (position INTEGER, goal_difference VARCHAR, wins VARCHAR) | SELECT AVG(position) FROM table_name_80 WHERE goal_difference = 17 AND wins > 13 |
16,050 | <question>: What is the lowest Goals For, when Draws is less than 4, and when Points is less than 27? <context>: CREATE TABLE table_name_32 (goals_for INTEGER, draws VARCHAR, points VARCHAR) | SELECT MIN(goals_for) FROM table_name_32 WHERE draws < 4 AND points < 27 |
16,051 | <question>: What is the smallest capacity for Bursa? <context>: CREATE TABLE table_name_10 (capacity INTEGER, city VARCHAR) | SELECT MIN(capacity) FROM table_name_10 WHERE city = "bursa" |
16,052 | <question>: What city is Kara Ali Acar Sport Hall located in? <context>: CREATE TABLE table_name_4 (city VARCHAR, arena VARCHAR) | SELECT city FROM table_name_4 WHERE arena = "kara ali acar sport hall" |
16,053 | <question>: What is the capacity of Bandırma Banvit? <context>: CREATE TABLE table_name_28 (capacity INTEGER, club VARCHAR) | SELECT AVG(capacity) FROM table_name_28 WHERE club = "bandırma banvit" |
16,054 | <question>: What was the venue that had 5000 m after 2009? <context>: CREATE TABLE table_name_98 (venue VARCHAR, year VARCHAR, notes VARCHAR) | SELECT venue FROM table_name_98 WHERE year > 2009 AND notes = "5000 m" |
16,055 | <question>: What was the latest year with a position of 1st at Maputo, Mozambique? <context>: CREATE TABLE table_name_60 (year INTEGER, position VARCHAR, venue VARCHAR) | SELECT MAX(year) FROM table_name_60 WHERE position = "1st" AND venue = "maputo, mozambique" |
16,056 | <question>: Which position was in 2009? <context>: CREATE TABLE table_name_82 (position VARCHAR, year VARCHAR) | SELECT position FROM table_name_82 WHERE year = 2009 |
16,057 | <question>: What F Player was previously with the New York Knicks? <context>: CREATE TABLE table_name_73 (player VARCHAR, pos VARCHAR, previous_team VARCHAR) | SELECT player FROM table_name_73 WHERE pos = "f" AND previous_team = "new york knicks" |
16,058 | <question>: What is the Nationality of the G Player with 4 years NBA Experience? <context>: CREATE TABLE table_name_29 (nationality VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR) | SELECT nationality FROM table_name_29 WHERE years_of_nba_experience_[a_] = "4" AND pos = "g" |
16,059 | <question>: What Player has 10 Years of NBA experience? <context>: CREATE TABLE table_name_21 (player VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR) | SELECT player FROM table_name_21 WHERE years_of_nba_experience_[a_] = "10" |
16,060 | <question>: What G/F Player has 3 Years in the NBA? <context>: CREATE TABLE table_name_27 (player VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR) | SELECT player FROM table_name_27 WHERE pos = "g/f" AND years_of_nba_experience_[a_] = "3" |
16,061 | <question>: What source has delph as the name? <context>: CREATE TABLE table_name_53 (source VARCHAR, name VARCHAR) | SELECT source FROM table_name_53 WHERE name = "delph" |
16,062 | <question>: What is the total attendance when Stourbridge is the home team? <context>: CREATE TABLE table_name_25 (attendance VARCHAR, home_team VARCHAR) | SELECT COUNT(attendance) FROM table_name_25 WHERE home_team = "stourbridge" |
16,063 | <question>: What is the score when the attendance is greater than 134 and Workington is the home team? <context>: CREATE TABLE table_name_30 (score VARCHAR, attendance VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_30 WHERE attendance > 134 AND home_team = "workington" |
16,064 | <question>: Which coach has 0 conference titles, more than 2 seasons, higher than 87 losses and 0 NCAA? <context>: CREATE TABLE table_name_18 (coach VARCHAR, ncaa VARCHAR, losses VARCHAR, conference_titles VARCHAR, seasons VARCHAR) | SELECT coach FROM table_name_18 WHERE conference_titles = "0" AND seasons > 2 AND losses > 87 AND ncaa = "0" |
16,065 | <question>: What are coach Bill Henderson's highest wins with more than 233 losses? <context>: CREATE TABLE table_name_35 (wins INTEGER, coach VARCHAR, losses VARCHAR) | SELECT MAX(wins) FROM table_name_35 WHERE coach = "bill henderson" AND losses > 233 |
16,066 | <question>: What is the sum of the draws with less than 2284 against, 8 losses, and more than 10 wins? <context>: CREATE TABLE table_name_61 (draws INTEGER, wins VARCHAR, against VARCHAR, losses VARCHAR) | SELECT SUM(draws) FROM table_name_61 WHERE against < 2284 AND losses = 8 AND wins > 10 |
16,067 | <question>: What is the average number of against with 11 wins and less than 0 draws? <context>: CREATE TABLE table_name_31 (against INTEGER, wins VARCHAR, draws VARCHAR) | SELECT AVG(against) FROM table_name_31 WHERE wins = 11 AND draws < 0 |
16,068 | <question>: What is the total number of losses of the central murray of tooleybuc manangatang, which has less than 0 draws? <context>: CREATE TABLE table_name_65 (losses VARCHAR, central_murray VARCHAR, draws VARCHAR) | SELECT COUNT(losses) FROM table_name_65 WHERE central_murray = "tooleybuc manangatang" AND draws < 0 |
16,069 | <question>: What is the highest number of losses of the central murray of lake boga, which has less than 10 wins? <context>: CREATE TABLE table_name_91 (losses INTEGER, central_murray VARCHAR, wins VARCHAR) | SELECT MAX(losses) FROM table_name_91 WHERE central_murray = "lake boga" AND wins < 10 |
16,070 | <question>: What is the average number of draws of the central murray of leitchville gunbower, which has less than 0 byes? <context>: CREATE TABLE table_name_30 (draws INTEGER, central_murray VARCHAR, byes VARCHAR) | SELECT AVG(draws) FROM table_name_30 WHERE central_murray = "leitchville gunbower" AND byes < 0 |
16,071 | <question>: What is the total number of wins of the central murray of koondrook-barham, which has more than 0 draws? <context>: CREATE TABLE table_name_70 (wins VARCHAR, central_murray VARCHAR, draws VARCHAR) | SELECT COUNT(wins) FROM table_name_70 WHERE central_murray = "koondrook-barham" AND draws > 0 |
16,072 | <question>: What is the date when France is the opposing team? <context>: CREATE TABLE table_name_50 (date VARCHAR, opposing_teams VARCHAR) | SELECT date FROM table_name_50 WHERE opposing_teams = "france" |
16,073 | <question>: What is the venue with more than 3 against, and South Africa is the opposing team? <context>: CREATE TABLE table_name_55 (venue VARCHAR, against VARCHAR, opposing_teams VARCHAR) | SELECT venue FROM table_name_55 WHERE against > 3 AND opposing_teams = "south africa" |
16,074 | <question>: What is the venue for the Status of Five Nations and 0 againts? <context>: CREATE TABLE table_name_38 (venue VARCHAR, status VARCHAR, against VARCHAR) | SELECT venue FROM table_name_38 WHERE status = "five nations" AND against = 0 |
16,075 | <question>: What Upper stage has Launches to date of 0, and Version of 532? <context>: CREATE TABLE table_name_86 (upper_stage VARCHAR, launches_to_date VARCHAR, version VARCHAR) | SELECT upper_stage FROM table_name_86 WHERE launches_to_date = 0 AND version = "532" |
16,076 | <question>: What is the greatest CCBs with Launches to date of 4, and a Payload to GTO of 8,900kg? <context>: CREATE TABLE table_name_52 (ccbs INTEGER, launches_to_date VARCHAR, payload_to_gto VARCHAR) | SELECT MAX(ccbs) FROM table_name_52 WHERE launches_to_date = 4 AND payload_to_gto = "8,900kg" |
16,077 | <question>: What Payload to GTO has CCBs larger than 1, and a Payload to LEO of 29,400kg? <context>: CREATE TABLE table_name_95 (payload_to_gto VARCHAR, ccbs VARCHAR, payload_to_leo VARCHAR) | SELECT payload_to_gto FROM table_name_95 WHERE ccbs > 1 AND payload_to_leo = "29,400kg" |
16,078 | <question>: What is the greatest CCBs with a Payload to GTO of –, and an Upper stage of sec? <context>: CREATE TABLE table_name_13 (ccbs INTEGER, payload_to_gto VARCHAR, upper_stage VARCHAR) | SELECT MAX(ccbs) FROM table_name_13 WHERE payload_to_gto = "–" AND upper_stage = "sec" |
16,079 | <question>: What is the total Launches to date with a Version of 541, and CCBs smaller than 1? <context>: CREATE TABLE table_name_8 (launches_to_date VARCHAR, version VARCHAR, ccbs VARCHAR) | SELECT COUNT(launches_to_date) FROM table_name_8 WHERE version = "541" AND ccbs < 1 |
16,080 | <question>: What is the highest standard order for the Transcription based on Pinyin, She Jiang? <context>: CREATE TABLE table_name_93 (standard_order INTEGER, transcription__based_on_pinyin_ VARCHAR) | SELECT MAX(standard_order) FROM table_name_93 WHERE transcription__based_on_pinyin_ = "she jiang" |
16,081 | <question>: What is the english translation of the traditional Chinese word, 哀郢? <context>: CREATE TABLE table_name_73 (english_translation VARCHAR, traditional_chinese VARCHAR) | SELECT english_translation FROM table_name_73 WHERE traditional_chinese = "哀郢" |
16,082 | <question>: What is the simplified Chinese with a standard order over 4, and the transcription of Bei Hui Feng? <context>: CREATE TABLE table_name_43 (simplified_chinese VARCHAR, standard_order VARCHAR, transcription__based_on_pinyin_ VARCHAR) | SELECT simplified_chinese FROM table_name_43 WHERE standard_order > 4 AND transcription__based_on_pinyin_ = "bei hui feng" |
16,083 | <question>: What is the Date of the match against Guillermo Olaso? <context>: CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_7 WHERE opponent = "guillermo olaso" |
16,084 | <question>: What is the Category of the Rodez, France Tournament? <context>: CREATE TABLE table_name_69 (category VARCHAR, tournament VARCHAR) | SELECT category FROM table_name_69 WHERE tournament = "rodez, france" |
16,085 | <question>: What is the Date of the Rodez, France Tournament? <context>: CREATE TABLE table_name_63 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_63 WHERE tournament = "rodez, france" |
16,086 | <question>: What is the Score of the tournament played on Clay Surface against Pablo Martin-Adalia? <context>: CREATE TABLE table_name_97 (score VARCHAR, surface VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_97 WHERE surface = "clay" AND opponent = "pablo martin-adalia" |
16,087 | <question>: What was the venue in 1951 on November 4? <context>: CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, date VARCHAR) | SELECT venue FROM table_name_83 WHERE year = 1951 AND date = "november 4" |
16,088 | <question>: What is the latest year with a 34-0 result? <context>: CREATE TABLE table_name_60 (year INTEGER, result VARCHAR) | SELECT MAX(year) FROM table_name_60 WHERE result = "34-0" |
16,089 | <question>: What date was the visiting team of Los Angeles Rams, earlier than 1958? <context>: CREATE TABLE table_name_58 (date VARCHAR, visiting_team VARCHAR, year VARCHAR) | SELECT date FROM table_name_58 WHERE visiting_team = "los angeles rams" AND year < 1958 |
16,090 | <question>: What is the number in attendance at Los Angeles Memorial Coliseum? <context>: CREATE TABLE table_name_68 (attendance VARCHAR, venue VARCHAR) | SELECT COUNT(attendance) FROM table_name_68 WHERE venue = "los angeles memorial coliseum" |
16,091 | <question>: Which state has a 2010-05-01 (saa) association agreement? <context>: CREATE TABLE table_name_36 (state VARCHAR, association_agreement VARCHAR) | SELECT state FROM table_name_36 WHERE association_agreement = "2010-05-01 (saa)" |
16,092 | <question>: What is the acquis chapter open/closed dates with a membership application in 2009-04-28? <context>: CREATE TABLE table_name_44 (acquis_chapters_open_closed VARCHAR, membership_application VARCHAR) | SELECT acquis_chapters_open_closed FROM table_name_44 WHERE membership_application = "2009-04-28" |
16,093 | <question>: What is the status of the membership application on 2008-12-15? <context>: CREATE TABLE table_name_26 (status VARCHAR, membership_application VARCHAR) | SELECT status FROM table_name_26 WHERE membership_application = "2008-12-15" |
16,094 | <question>: What is the association agreement for bosnia and herzegovina? <context>: CREATE TABLE table_name_69 (association_agreement VARCHAR, state VARCHAR) | SELECT association_agreement FROM table_name_69 WHERE state = "bosnia and herzegovina" |
16,095 | <question>: What is the candidate status of macedonia? <context>: CREATE TABLE table_name_46 (candidate_status VARCHAR, state VARCHAR) | SELECT candidate_status FROM table_name_46 WHERE state = "macedonia" |
16,096 | <question>: What is the population with 41,511 households? <context>: CREATE TABLE table_name_92 (population VARCHAR, number_of_households VARCHAR) | SELECT COUNT(population) FROM table_name_92 WHERE number_of_households = 41 OFFSET 511 |
16,097 | <question>: What was the lowest attendance for a game played @ Nashville Predators? <context>: CREATE TABLE table_name_85 (attendance INTEGER, opponent VARCHAR) | SELECT MIN(attendance) FROM table_name_85 WHERE opponent = "@ nashville predators" |
16,098 | <question>: What was the highest attendance on December 23? <context>: CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR) | SELECT MAX(attendance) FROM table_name_91 WHERE date = "december 23" |
16,099 | <question>: What is the torque of a 2B engine? <context>: CREATE TABLE table_name_29 (torque VARCHAR, engine VARCHAR) | SELECT torque FROM table_name_29 WHERE engine = "2b" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.