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