combined_text stringlengths 106 1.05k |
|---|
###question:What is the Team on January 20?###answer:SELECT team FROM table_name_97 WHERE date = "january 20"###context:CREATE TABLE table_name_97 (team VARCHAR, date VARCHAR) |
###question:What venue had an event on 17 November 1963?###answer:SELECT venue FROM table_name_16 WHERE season = 1963 AND date = "17 november 1963"###context:CREATE TABLE table_name_16 (venue VARCHAR, season VARCHAR, date VARCHAR) |
###question:What is the most recent season with a date of 27 October 1957?###answer:SELECT MAX(season) FROM table_name_43 WHERE date = "27 october 1957"###context:CREATE TABLE table_name_43 (season INTEGER, date VARCHAR) |
###question:Who was the winner on 15 December 1957?###answer:SELECT winner FROM table_name_6 WHERE date = "15 december 1957"###context:CREATE TABLE table_name_6 (winner VARCHAR, date VARCHAR) |
###question:What is the score of the event that Alianza Lima won in 1965?###answer:SELECT score_[c_] FROM table_name_76 WHERE winner = "alianza lima" AND season = 1965###context:CREATE TABLE table_name_76 (score_ VARCHAR, c_ VARCHAR, winner VARCHAR, season VARCHAR) |
###question:Which Seasons has a Name of joe grugin, and a Lost larger than 8?###answer:SELECT COUNT(seasons) FROM table_name_98 WHERE name = "joe grugin" AND lost > 8###context:CREATE TABLE table_name_98 (seasons VARCHAR, name VARCHAR, lost VARCHAR) |
###question:what is the location/attendance when the record is 9-2?###answer:SELECT location_attendance FROM table_name_23 WHERE record = "9-2"###context:CREATE TABLE table_name_23 (location_attendance VARCHAR, record VARCHAR) |
###question:what is the game on june 29?###answer:SELECT SUM(game) FROM table_name_75 WHERE date = "june 29"###context:CREATE TABLE table_name_75 (game INTEGER, date VARCHAR) |
###question:who had the high points on june 8?###answer:SELECT high_points FROM table_name_42 WHERE date = "june 8"###context:CREATE TABLE table_name_42 (high_points VARCHAR, date VARCHAR) |
###question:who had the high assists when the game was less than 13 and the score was w 75-66?###answer:SELECT high_assists FROM table_name_41 WHERE game < 13 AND score = "w 75-66"###context:CREATE TABLE table_name_41 (high_assists VARCHAR, game VARCHAR, score VARCHAR) |
###question:What was the result of Frank Langella?###answer:SELECT result FROM table_name_64 WHERE nominee = "frank langella"###context:CREATE TABLE table_name_64 (result VARCHAR, nominee VARCHAR) |
###question:Can you tell me the sum of Goals against that has the Goals for larger than 10, and the Position of 3, and the Wins smaller than 6?###answer:SELECT SUM(goals_against) FROM table_name_14 WHERE goals_for > 10 AND position = 3 AND wins < 6###context:CREATE TABLE table_name_14 (goals_against INTEGER, wins VARCH... |
###question:Can you tell me the lowest Played that has the Position larger than 2, and the Draws smaller than 2, and the Goals against smaller than 18?###answer:SELECT MIN(played) FROM table_name_90 WHERE position > 2 AND draws < 2 AND goals_against < 18###context:CREATE TABLE table_name_90 (played INTEGER, goals_again... |
###question:Can you tell me the total number of Wins that has the Draws larger than 0, and the Points of 11?###answer:SELECT COUNT(wins) FROM table_name_48 WHERE draws > 0 AND points = 11###context:CREATE TABLE table_name_48 (wins VARCHAR, draws VARCHAR, points VARCHAR) |
###question:In what city does the tallest building have 35 floors?###answer:SELECT city FROM table_name_32 WHERE floors = 35###context:CREATE TABLE table_name_32 (city VARCHAR, floors VARCHAR) |
###question:What building in Louisville had more than 35 floors?###answer:SELECT name FROM table_name_56 WHERE city = "louisville" AND floors > 35###context:CREATE TABLE table_name_56 (name VARCHAR, city VARCHAR, floors VARCHAR) |
###question:What was the venue where goal #2 occured?###answer:SELECT venue FROM table_name_11 WHERE goal__number = 2###context:CREATE TABLE table_name_11 (venue VARCHAR, goal__number VARCHAR) |
###question:What was the flyers' record when the visitors were florida?###answer:SELECT record FROM table_name_63 WHERE visitor = "florida"###context:CREATE TABLE table_name_63 (record VARCHAR, visitor VARCHAR) |
###question:Who were the visitors when the home team were the ny rangers?###answer:SELECT visitor FROM table_name_76 WHERE home = "ny rangers"###context:CREATE TABLE table_name_76 (visitor VARCHAR, home VARCHAR) |
###question:What car/motorcycle goes 91.813mph?###answer:SELECT car___motorcycle FROM table_name_14 WHERE speed = "91.813mph"###context:CREATE TABLE table_name_14 (car___motorcycle VARCHAR, speed VARCHAR) |
###question:Which driver is Indian?###answer:SELECT driver___rider FROM table_name_58 WHERE car___motorcycle = "indian"###context:CREATE TABLE table_name_58 (driver___rider VARCHAR, car___motorcycle VARCHAR) |
###question:What is the Full Word, when Case Suffix (case) is "-sa (dative)"?###answer:SELECT full_word FROM table_name_46 WHERE case_suffix__case_ = "-sa (dative)"###context:CREATE TABLE table_name_46 (full_word VARCHAR, case_suffix__case_ VARCHAR) |
###question:What is English Meaning, when Full Word is "Shens Gamo"?###answer:SELECT english_meaning FROM table_name_22 WHERE full_word = "shens gamo"###context:CREATE TABLE table_name_22 (english_meaning VARCHAR, full_word VARCHAR) |
###question:What is Case Suffix (Case), when English Meaning is "to Georgia, in Georgia"?###answer:SELECT case_suffix__case_ FROM table_name_54 WHERE english_meaning = "to georgia, in georgia"###context:CREATE TABLE table_name_54 (case_suffix__case_ VARCHAR, english_meaning VARCHAR) |
###question:What is Postposition, when Noun Root (Meaning) is "mshobl- (parent)"?###answer:SELECT postposition FROM table_name_75 WHERE noun_root__meaning_ = "mshobl- (parent)"###context:CREATE TABLE table_name_75 (postposition VARCHAR, noun_root__meaning_ VARCHAR) |
###question:What is English Meaning, when Case Suffix (Case) is "-sa (dative)"?###answer:SELECT english_meaning FROM table_name_40 WHERE case_suffix__case_ = "-sa (dative)"###context:CREATE TABLE table_name_40 (english_meaning VARCHAR, case_suffix__case_ VARCHAR) |
###question:What is Case Suffix (Case), when Postposition is "-mde (drops d)"?###answer:SELECT case_suffix__case_ FROM table_name_94 WHERE postposition = "-mde (drops d)"###context:CREATE TABLE table_name_94 (case_suffix__case_ VARCHAR, postposition VARCHAR) |
###question:What is the total years for roots and branches?###answer:SELECT SUM(year) FROM table_name_5 WHERE album = "roots and branches"###context:CREATE TABLE table_name_5 (year INTEGER, album VARCHAR) |
###question:What is the average number of podiums in the 32nd position with less than 0 wins?###answer:SELECT AVG(podiums) FROM table_name_64 WHERE position = "32nd" AND wins < 0###context:CREATE TABLE table_name_64 (podiums INTEGER, position VARCHAR, wins VARCHAR) |
###question:What is the race in the 8th position?###answer:SELECT races FROM table_name_43 WHERE position = "8th"###context:CREATE TABLE table_name_43 (races VARCHAR, position VARCHAR) |
###question:What is the sum of Overall, when College is "Arkansas State", and when Pick is less than 17?###answer:SELECT SUM(overall) FROM table_name_22 WHERE college = "arkansas state" AND pick < 17###context:CREATE TABLE table_name_22 (overall INTEGER, college VARCHAR, pick VARCHAR) |
###question:What is the average Pick, when Name is "Lybrant Robinson", and when Overall is less than 139?###answer:SELECT AVG(pick) FROM table_name_30 WHERE name = "lybrant robinson" AND overall < 139###context:CREATE TABLE table_name_30 (pick INTEGER, name VARCHAR, overall VARCHAR) |
###question:What is the sum of Overall, when Name is "Tim Smiley", and when Round is less than 5?###answer:SELECT SUM(overall) FROM table_name_22 WHERE name = "tim smiley" AND round < 5###context:CREATE TABLE table_name_22 (overall INTEGER, name VARCHAR, round VARCHAR) |
###question:What is Score In The Final, when Championship is "Athens , Greece", and when Outcome is "Winner"?###answer:SELECT score_in_the_final FROM table_name_96 WHERE championship = "athens , greece" AND outcome = "winner"###context:CREATE TABLE table_name_96 (score_in_the_final VARCHAR, championship VARCHAR, outcom... |
###question:What is Opponent In The Final, when Date is before 1991, and when Outcome is "Runner-Up"?###answer:SELECT opponent_in_the_final FROM table_name_30 WHERE date < 1991 AND outcome = "runner-up"###context:CREATE TABLE table_name_30 (opponent_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR) |
###question:What was the religious affiliation for the athletics nicknamed lords/ladies?###answer:SELECT religious_affiliation FROM table_name_34 WHERE athletics_nickname = "lords/ladies"###context:CREATE TABLE table_name_34 (religious_affiliation VARCHAR, athletics_nickname VARCHAR) |
###question:What is Tournament, when Career SR is "ATP Masters Series"?###answer:SELECT tournament FROM table_name_73 WHERE career_sr = "atp masters series"###context:CREATE TABLE table_name_73 (tournament VARCHAR, career_sr VARCHAR) |
###question:What is 1995, when Tournament is "Miami"?###answer:SELECT 1995 FROM table_name_36 WHERE tournament = "miami"###context:CREATE TABLE table_name_36 (tournament VARCHAR) |
###question:What is 1997, when 1996 is "1R", when 1990 is "2R", and when 1991 is "F"?###answer:SELECT 1997 FROM table_name_63 WHERE 1996 = "1r" AND 1990 = "2r" AND 1991 = "f"###context:CREATE TABLE table_name_63 (Id VARCHAR) |
###question:What is 1996, when 1992 is "ATP Masters Series"?###answer:SELECT 1996 FROM table_name_29 WHERE 1992 = "atp masters series"###context:CREATE TABLE table_name_29 (Id VARCHAR) |
###question:What is 1994, when 1991 is "QF", and when Tournament is "Australian Open"?###answer:SELECT 1994 FROM table_name_59 WHERE 1991 = "qf" AND tournament = "australian open"###context:CREATE TABLE table_name_59 (tournament VARCHAR) |
###question:When was the venue named nassau veterans memorial coliseum established??###answer:SELECT MAX(established) FROM table_name_45 WHERE venue = "nassau veterans memorial coliseum"###context:CREATE TABLE table_name_45 (established INTEGER, venue VARCHAR) |
###question:Who was the opponent with the record of 15-21-6?###answer:SELECT opponent FROM table_name_23 WHERE record = "15-21-6"###context:CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR) |
###question:What day in January was the game greater than 49 and had @ Montreal Canadiens as opponents?###answer:SELECT SUM(january) FROM table_name_70 WHERE opponent = "@ montreal canadiens" AND game > 49###context:CREATE TABLE table_name_70 (january INTEGER, opponent VARCHAR, game VARCHAR) |
###question:What was the total number of games on January 20?###answer:SELECT COUNT(game) FROM table_name_75 WHERE january = 20###context:CREATE TABLE table_name_75 (game VARCHAR, january VARCHAR) |
###question:What is Votes (%), when Episode is "1x03"?###answer:SELECT votes___percentage_ FROM table_name_14 WHERE episode = "1x03"###context:CREATE TABLE table_name_14 (votes___percentage_ VARCHAR, episode VARCHAR) |
###question:What is Votes (%), when First Broadcast is "13 March 1998"?###answer:SELECT votes___percentage_ FROM table_name_41 WHERE first_broadcast = "13 march 1998"###context:CREATE TABLE table_name_41 (votes___percentage_ VARCHAR, first_broadcast VARCHAR) |
###question:Who had the high rebounds of the game that Deron Williams (5) had the high assists?###answer:SELECT high_rebounds FROM table_name_4 WHERE high_assists = "deron williams (5)"###context:CREATE TABLE table_name_4 (high_rebounds VARCHAR, high_assists VARCHAR) |
###question:What was the score of Game 48?###answer:SELECT score FROM table_name_33 WHERE game = 48###context:CREATE TABLE table_name_33 (score VARCHAR, game VARCHAR) |
###question:Who had the high rebounds on January 24?###answer:SELECT high_rebounds FROM table_name_68 WHERE date = "january 24"###context:CREATE TABLE table_name_68 (high_rebounds VARCHAR, date VARCHAR) |
###question:How big is the area that has a population density of 113 and a population larger than 184,531?###answer:SELECT COUNT(area) FROM table_name_31 WHERE pop_dens = 113 AND population > 184 OFFSET 531###context:CREATE TABLE table_name_31 (area VARCHAR, pop_dens VARCHAR, population VARCHAR) |
###question:What is the population density of the area with a population larger than 92,719?###answer:SELECT COUNT(pop_dens) FROM table_name_83 WHERE population > 92 OFFSET 719###context:CREATE TABLE table_name_83 (pop_dens VARCHAR, population INTEGER) |
###question:What is the population with an area of 1,126.84?###answer:SELECT MIN(population) FROM table_name_44 WHERE area = 1 OFFSET 126.84###context:CREATE TABLE table_name_44 (population INTEGER, area VARCHAR) |
###question:How many settlements are in český krumlov (ck) with a population density higher than 38?###answer:SELECT SUM(noof_settlements) FROM table_name_76 WHERE district = "český krumlov (ck)" AND pop_dens > 38###context:CREATE TABLE table_name_76 (noof_settlements INTEGER, district VARCHAR, pop_dens VARCHAR) |
###question:What is the lowest population density of Strakonice (st) with more than 112 settlements?###answer:SELECT MIN(pop_dens) FROM table_name_66 WHERE district = "strakonice (st)" AND noof_settlements > 112###context:CREATE TABLE table_name_66 (pop_dens INTEGER, district VARCHAR, noof_settlements VARCHAR) |
###question:Who presented their credentials at an unknown date?###answer:SELECT name FROM table_name_11 WHERE presentation_of_credentials = "unknown"###context:CREATE TABLE table_name_11 (name VARCHAR, presentation_of_credentials VARCHAR) |
###question:When did Robert G. Miner present his credentials?###answer:SELECT presentation_of_credentials FROM table_name_62 WHERE name = "robert g. miner"###context:CREATE TABLE table_name_62 (presentation_of_credentials VARCHAR, name VARCHAR) |
###question:When was William A. Costello appointed?###answer:SELECT appointment FROM table_name_31 WHERE name = "william a. costello"###context:CREATE TABLE table_name_31 (appointment VARCHAR, name VARCHAR) |
###question:Who was appointed on October 24, 1997?###answer:SELECT name FROM table_name_63 WHERE appointment = "october 24, 1997"###context:CREATE TABLE table_name_63 (name VARCHAR, appointment VARCHAR) |
###question:What was Anthony D. Marshall's title?###answer:SELECT title FROM table_name_14 WHERE name = "anthony d. marshall"###context:CREATE TABLE table_name_14 (title VARCHAR, name VARCHAR) |
###question:What is Nationality, when Position is "G", and when Pick is greater than 26?###answer:SELECT nationality FROM table_name_44 WHERE position = "g" AND pick > 26###context:CREATE TABLE table_name_44 (nationality VARCHAR, position VARCHAR, pick VARCHAR) |
###question:What is Player, when Round is "2", and when School/Club Team is "Xavier"?###answer:SELECT player FROM table_name_49 WHERE round = 2 AND school_club_team = "xavier"###context:CREATE TABLE table_name_49 (player VARCHAR, round VARCHAR, school_club_team VARCHAR) |
###question:What is the highest Pick, when Position is "G/F"?###answer:SELECT MAX(pick) FROM table_name_39 WHERE position = "g/f"###context:CREATE TABLE table_name_39 (pick INTEGER, position VARCHAR) |
###question:What was the average place for the song that had 69 points and a draw smaller than 13?###answer:SELECT AVG(place) FROM table_name_49 WHERE points = 69 AND draw < 13###context:CREATE TABLE table_name_49 (place INTEGER, points VARCHAR, draw VARCHAR) |
###question:What was the english translation for the song by svetlana loboda?###answer:SELECT english_translation FROM table_name_77 WHERE artist = "svetlana loboda"###context:CREATE TABLE table_name_77 (english_translation VARCHAR, artist VARCHAR) |
###question:What song was in french?###answer:SELECT song FROM table_name_98 WHERE language = "french"###context:CREATE TABLE table_name_98 (song VARCHAR, language VARCHAR) |
###question:what is the points against when drawn is drawn?###answer:SELECT points_against FROM table_name_96 WHERE "drawn" = "drawn"###context:CREATE TABLE table_name_96 (points_against VARCHAR) |
###question:what is the points against when the losing bonus is 0 and the club is banwen rfc?###answer:SELECT points_against FROM table_name_32 WHERE losing_bonus = "0" AND club = "banwen rfc"###context:CREATE TABLE table_name_32 (points_against VARCHAR, losing_bonus VARCHAR, club VARCHAR) |
###question:what is the points when the club blaengarw rfc?###answer:SELECT points FROM table_name_62 WHERE club = "blaengarw rfc"###context:CREATE TABLE table_name_62 (points VARCHAR, club VARCHAR) |
###question:what is the tries fow when losing bonus is losing bonus?###answer:SELECT tries_for FROM table_name_47 WHERE losing_bonus = "losing bonus"###context:CREATE TABLE table_name_47 (tries_for VARCHAR, losing_bonus VARCHAR) |
###question:what is drawn when the club is hirwaun rfc?###answer:SELECT drawn FROM table_name_80 WHERE club = "hirwaun rfc"###context:CREATE TABLE table_name_80 (drawn VARCHAR, club VARCHAR) |
###question:what is lost when the points against is 231?###answer:SELECT lost FROM table_name_28 WHERE points_against = "231"###context:CREATE TABLE table_name_28 (lost VARCHAR, points_against VARCHAR) |
###question:Who was the away team against the home team Sheffield United?###answer:SELECT away_team FROM table_name_18 WHERE home_team = "sheffield united"###context:CREATE TABLE table_name_18 (away_team VARCHAR, home_team VARCHAR) |
###question:Who was the away team with a tie of 14?###answer:SELECT away_team FROM table_name_4 WHERE tie_no = "14"###context:CREATE TABLE table_name_4 (away_team VARCHAR, tie_no VARCHAR) |
###question:What is the latest year of the album with the release title death valley?###answer:SELECT MAX(year_of_release) FROM table_name_98 WHERE title = "death valley"###context:CREATE TABLE table_name_98 (year_of_release INTEGER, title VARCHAR) |
###question:What is the total year of release of the title what goes around comes around?###answer:SELECT COUNT(year_of_release) FROM table_name_75 WHERE title = "what goes around comes around"###context:CREATE TABLE table_name_75 (year_of_release VARCHAR, title VARCHAR) |
###question:What percent is the lead margin of 25 that Republican: Jeff Beatty has according to poll source Rasmussen Reports?###answer:SELECT republican AS :_jeff_beatty FROM table_name_79 WHERE lead_margin = 25 AND poll_source = "rasmussen reports"###context:CREATE TABLE table_name_79 (republican VARCHAR, lead_margin... |
###question:How did the ship named proletarij finish its service?###answer:SELECT fate FROM table_name_7 WHERE name_of_ship = "proletarij"###context:CREATE TABLE table_name_7 (fate VARCHAR, name_of_ship VARCHAR) |
###question:What is the average tonnage of the ship named proletarij?###answer:SELECT AVG(tonnage) FROM table_name_81 WHERE name_of_ship = "proletarij"###context:CREATE TABLE table_name_81 (tonnage INTEGER, name_of_ship VARCHAR) |
###question:What is the area in square kilometers of Studholm?###answer:SELECT COUNT(area_km_2) FROM table_name_87 WHERE official_name = "studholm"###context:CREATE TABLE table_name_87 (area_km_2 VARCHAR, official_name VARCHAR) |
###question:For what week was the attendance 40,429?###answer:SELECT SUM(week) FROM table_name_2 WHERE attendance = 40 OFFSET 429###context:CREATE TABLE table_name_2 (week INTEGER, attendance VARCHAR) |
###question:The Detroit Lions were played against what week?###answer:SELECT week FROM table_name_17 WHERE opponent = "detroit lions"###context:CREATE TABLE table_name_17 (week VARCHAR, opponent VARCHAR) |
###question:On September 10, 1989 how many people attended the game?###answer:SELECT attendance FROM table_name_65 WHERE date = "september 10, 1989"###context:CREATE TABLE table_name_65 (attendance VARCHAR, date VARCHAR) |
###question:Which Poll source has a Peg Luksik of 9%, and Dates administered of may 12, 2010?###answer:SELECT poll_source FROM table_name_2 WHERE peg_luksik = "9%" AND dates_administered = "may 12, 2010"###context:CREATE TABLE table_name_2 (poll_source VARCHAR, peg_luksik VARCHAR, dates_administered VARCHAR) |
###question:Which Poll source has Pat Toomey of 23%?###answer:SELECT poll_source FROM table_name_5 WHERE pat_toomey = "23%"###context:CREATE TABLE table_name_5 (poll_source VARCHAR, pat_toomey VARCHAR) |
###question:How many total silvers does Russia have?###answer:SELECT COUNT(silver) FROM table_name_51 WHERE nation = "russia"###context:CREATE TABLE table_name_51 (silver VARCHAR, nation VARCHAR) |
###question:What is the average number of bronze medals of the Philippines, which has more than 0 gold?###answer:SELECT AVG(bronze) FROM table_name_63 WHERE nation = "philippines" AND gold > 0###context:CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, gold VARCHAR) |
###question:What is the average number of bronze of the nation with more than 1 gold and 1 silver medal?###answer:SELECT AVG(bronze) FROM table_name_96 WHERE gold > 1 AND silver = 1###context:CREATE TABLE table_name_96 (bronze INTEGER, gold VARCHAR, silver VARCHAR) |
###question:What is the average total medals of the nation ranked 1 with less than 1 silver?###answer:SELECT AVG(total) FROM table_name_62 WHERE rank = "1" AND silver < 1###context:CREATE TABLE table_name_62 (total INTEGER, rank VARCHAR, silver VARCHAR) |
###question:What is the lowest number of gold medals the nation with less than 0 silver medals has?###answer:SELECT MIN(gold) FROM table_name_67 WHERE silver < 0###context:CREATE TABLE table_name_67 (gold INTEGER, silver INTEGER) |
###question:What was the Location/Attendance on september 11?###answer:SELECT location_attendance FROM table_name_3 WHERE date = "september 11"###context:CREATE TABLE table_name_3 (location_attendance VARCHAR, date VARCHAR) |
###question:What were the high rebounds on september 11?###answer:SELECT high_rebounds FROM table_name_35 WHERE date = "september 11"###context:CREATE TABLE table_name_35 (high_rebounds VARCHAR, date VARCHAR) |
###question:When did indiana play?###answer:SELECT date FROM table_name_8 WHERE opponent = "indiana"###context:CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR) |
###question:Which Location/Attendance has High rebounds of lennox (7)?###answer:SELECT location_attendance FROM table_name_29 WHERE high_rebounds = "lennox (7)"###context:CREATE TABLE table_name_29 (location_attendance VARCHAR, high_rebounds VARCHAR) |
###question:What team has tony parker (10) as the high assists, kurt thomas (12) as the high rebounds?###answer:SELECT team FROM table_name_57 WHERE high_assists = "tony parker (10)" AND high_rebounds = "kurt thomas (12)"###context:CREATE TABLE table_name_57 (team VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR) |
###question:What score has tim duncan (14) as the high rebounds?###answer:SELECT score FROM table_name_17 WHERE high_rebounds = "tim duncan (14)"###context:CREATE TABLE table_name_17 (score VARCHAR, high_rebounds VARCHAR) |
###question:What is the lowest round for an overall pick of 349 with a pick number in the round over 11?###answer:SELECT MIN(round) FROM table_name_28 WHERE overall = 349 AND pick > 11###context:CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, pick VARCHAR) |
###question:Where was the fight located that lasted 1 round against luiz claudio das dores?###answer:SELECT location FROM table_name_77 WHERE round = "1" AND opponent = "luiz claudio das dores"###context:CREATE TABLE table_name_77 (location VARCHAR, round VARCHAR, opponent VARCHAR) |
###question:Which date was game 35 on?###answer:SELECT date FROM table_name_2 WHERE game = 35###context:CREATE TABLE table_name_2 (date VARCHAR, game VARCHAR) |
###question:What was the record after game 37?###answer:SELECT record FROM table_name_70 WHERE game = 37###context:CREATE TABLE table_name_70 (record VARCHAR, game VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.