combined_text
stringlengths
106
1.05k
###question:Name the least date for the place which has a building of victoria hall###answer:SELECT MIN(date) FROM table_name_37 WHERE building = "victoria hall"###context:CREATE TABLE table_name_37 (date INTEGER, building VARCHAR)
###question:Name the size which is past 2000###answer:SELECT size FROM table_name_94 WHERE date > 2000###context:CREATE TABLE table_name_94 (size VARCHAR, date INTEGER)
###question:Name the country that has mänttä###answer:SELECT country FROM table_name_2 WHERE place = "mänttä"###context:CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR)
###question:What round was Nick Gillis?###answer:SELECT round FROM table_name_32 WHERE player = "nick gillis"###context:CREATE TABLE table_name_32 (round VARCHAR, player VARCHAR)
###question:What is the distance to funao?###answer:SELECT distance__km_ FROM table_name_85 WHERE station = "funao"###context:CREATE TABLE table_name_85 (distance__km_ VARCHAR, station VARCHAR)
###question:What station has a Rapid of ↑, is 3.4 km away, and has a Japanese title of 下鴨生?###answer:SELECT station FROM table_name_91 WHERE rapid = "↑" AND distance__km_ > 3.4 AND japanese = "下鴨生"###context:CREATE TABLE table_name_91 (station VARCHAR, japanese VARCHAR, rapid VARCHAR, distance__km_ VARCHAR)
###question:What location is less than 7.1 km away, and has a Rapid of ●?###answer:SELECT location FROM table_name_77 WHERE distance__km_ < 7.1 AND rapid = "●"###context:CREATE TABLE table_name_77 (location VARCHAR, distance__km_ VARCHAR, rapid VARCHAR)
###question:What is the name of the father who was born in 1204 and married ottokar ii?###answer:SELECT father FROM table_name_89 WHERE spouse = "ottokar ii" AND birth = "1204"###context:CREATE TABLE table_name_89 (father VARCHAR, spouse VARCHAR, birth VARCHAR)
###question:What is the birth date of the woman who ceased to be Queen on 18 Jun 1297?###answer:SELECT birth FROM table_name_47 WHERE ceased_to_be_queen = "18 jun 1297"###context:CREATE TABLE table_name_47 (birth VARCHAR, ceased_to_be_queen VARCHAR)
###question:Leopold VI, Duke of Austria is the father-in-law of which person?###answer:SELECT spouse FROM table_name_26 WHERE father = "leopold vi, duke of austria"###context:CREATE TABLE table_name_26 (spouse VARCHAR, father VARCHAR)
###question:What is the birth date of the person who died on 18 October 1335?###answer:SELECT birth FROM table_name_94 WHERE death = "18 october 1335"###context:CREATE TABLE table_name_94 (birth VARCHAR, death VARCHAR)
###question:When did the person who died on 6 Dec 1240 get married?###answer:SELECT marriage FROM table_name_59 WHERE death = "6 dec 1240"###context:CREATE TABLE table_name_59 (marriage VARCHAR, death VARCHAR)
###question:What time/retired for a grid less than 19, under 21 laps, and made by aprilia?###answer:SELECT time_retired FROM table_name_38 WHERE grid < 19 AND manufacturer = "aprilia" AND laps < 21###context:CREATE TABLE table_name_38 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR, manufacturer VARCHAR)
###question:What is the grid for dirk heidolf?###answer:SELECT SUM(grid) FROM table_name_25 WHERE rider = "dirk heidolf"###context:CREATE TABLE table_name_25 (grid INTEGER, rider VARCHAR)
###question:What away team plays at Victoria Park?###answer:SELECT away_team FROM table_name_60 WHERE venue = "victoria park"###context:CREATE TABLE table_name_60 (away_team VARCHAR, venue VARCHAR)
###question:How many caps does stephen hoiles have?###answer:SELECT SUM(caps) FROM table_name_96 WHERE player = "stephen hoiles"###context:CREATE TABLE table_name_96 (caps INTEGER, player VARCHAR)
###question:Which Date has a Home team of st kilda?###answer:SELECT date FROM table_name_19 WHERE home_team = "st kilda"###context:CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR)
###question:Which Venue has an Away team of footscray?###answer:SELECT venue FROM table_name_6 WHERE away_team = "footscray"###context:CREATE TABLE table_name_6 (venue VARCHAR, away_team VARCHAR)
###question:Which Crowd has a Home team of geelong?###answer:SELECT crowd FROM table_name_86 WHERE home_team = "geelong"###context:CREATE TABLE table_name_86 (crowd VARCHAR, home_team VARCHAR)
###question:What is the most silver medals a team with 3 total medals and less than 1 bronze has?###answer:SELECT MAX(silver) FROM table_name_13 WHERE total = 3 AND bronze < 1###context:CREATE TABLE table_name_13 (silver INTEGER, total VARCHAR, bronze VARCHAR)
###question:What is the least amount of silver medals a team with less than 0 gold medals has?###answer:SELECT MIN(silver) FROM table_name_68 WHERE gold < 0###context:CREATE TABLE table_name_68 (silver INTEGER, gold INTEGER)
###question:What is the most bronze a team with more than 2 silvers has?###answer:SELECT MAX(bronze) FROM table_name_22 WHERE silver > 2###context:CREATE TABLE table_name_22 (bronze INTEGER, silver INTEGER)
###question:What is the total amount of bronze medals a team with 1 gold and more than 3 silver medals has?###answer:SELECT SUM(bronze) FROM table_name_67 WHERE gold = 1 AND silver > 3###context:CREATE TABLE table_name_67 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
###question:What is the draw number that has 59 points?###answer:SELECT AVG(draw) FROM table_name_86 WHERE points = 59###context:CREATE TABLE table_name_86 (draw INTEGER, points VARCHAR)
###question:What place for roger pontare?###answer:SELECT place FROM table_name_62 WHERE artist = "roger pontare"###context:CREATE TABLE table_name_62 (place VARCHAR, artist VARCHAR)
###question:What song has draw number less than 2?###answer:SELECT song FROM table_name_41 WHERE draw < 2###context:CREATE TABLE table_name_41 (song VARCHAR, draw INTEGER)
###question:What was the attendance when Essendon played as the home team?###answer:SELECT COUNT(crowd) FROM table_name_42 WHERE home_team = "essendon"###context:CREATE TABLE table_name_42 (crowd VARCHAR, home_team VARCHAR)
###question:Who played the home team at Windy Hill?###answer:SELECT home_team FROM table_name_3 WHERE venue = "windy hill"###context:CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)
###question:What was the date of the game that had a decision of wall?###answer:SELECT date FROM table_name_41 WHERE decision = "wall"###context:CREATE TABLE table_name_41 (date VARCHAR, decision VARCHAR)
###question:What is the name of the circuit when Jack Brabham is in the pole position and Graham Hill has the fastest lap?###answer:SELECT circuit FROM table_name_84 WHERE pole_position = "jack brabham" AND fastest_lap = "graham hill"###context:CREATE TABLE table_name_84 (circuit VARCHAR, pole_position VARCHAR, fastest...
###question:What race contains the Monaco circuit?###answer:SELECT race FROM table_name_90 WHERE circuit = "monaco"###context:CREATE TABLE table_name_90 (race VARCHAR, circuit VARCHAR)
###question:What is the date of the race when Jack Brabham is in the pole position and the circuit is Spa-Francorchamps?###answer:SELECT date FROM table_name_43 WHERE pole_position = "jack brabham" AND circuit = "spa-francorchamps"###context:CREATE TABLE table_name_43 (date VARCHAR, pole_position VARCHAR, circuit VARCH...
###question:What is the name of the circuit when Phil Hill has the fastest lap?###answer:SELECT circuit FROM table_name_1 WHERE fastest_lap = "phil hill"###context:CREATE TABLE table_name_1 (circuit VARCHAR, fastest_lap VARCHAR)
###question:What is the sum of every REG GP that Peter Andersson played as a pick# less than 143?###answer:SELECT SUM(reg_gp) FROM table_name_28 WHERE player = "peter andersson" AND pick__number < 143###context:CREATE TABLE table_name_28 (reg_gp INTEGER, player VARCHAR, pick__number VARCHAR)
###question:What is the total of PI GP played by Anton Rodin with a Reg GP less than 0?###answer:SELECT COUNT(pl_gp) FROM table_name_73 WHERE player = "anton rodin" AND reg_gp < 0###context:CREATE TABLE table_name_73 (pl_gp VARCHAR, player VARCHAR, reg_gp VARCHAR)
###question:What is the total pick# played by Anton Rodin with a Reg GP over 0?###answer:SELECT COUNT(pick__number) FROM table_name_32 WHERE player = "anton rodin" AND reg_gp > 0###context:CREATE TABLE table_name_32 (pick__number VARCHAR, player VARCHAR, reg_gp VARCHAR)
###question:What is the lowest grid that has over 67 laps with stefan bellof driving?###answer:SELECT MIN(grid) FROM table_name_52 WHERE laps > 67 AND driver = "stefan bellof"###context:CREATE TABLE table_name_52 (grid INTEGER, laps VARCHAR, driver VARCHAR)
###question:How many laps have a grid under 14 and a time/retired of out of fuel?###answer:SELECT SUM(laps) FROM table_name_2 WHERE grid < 14 AND time_retired = "out of fuel"###context:CREATE TABLE table_name_2 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
###question:Who drove the renault that went over 23 laps and had a grid under 11?###answer:SELECT driver FROM table_name_21 WHERE grid < 11 AND constructor = "renault" AND laps > 23###context:CREATE TABLE table_name_21 (driver VARCHAR, laps VARCHAR, grid VARCHAR, constructor VARCHAR)
###question:What is the average NGC number that has a Apparent magnitude greater than 14.2?###answer:SELECT AVG(ngc_number) FROM table_name_59 WHERE apparent_magnitude > 14.2###context:CREATE TABLE table_name_59 (ngc_number INTEGER, apparent_magnitude INTEGER)
###question:What is the highest NGC number that has a Declination ( J2000 ) of °04′58″ and a Apparent magnitude larger than 7.3?###answer:SELECT MAX(ngc_number) FROM table_name_5 WHERE declination___j2000__ = "°04′58″" AND apparent_magnitude > 7.3###context:CREATE TABLE table_name_5 (ngc_number INTEGER, declination___j...
###question:What Constellation has a Object type of globular cluster and a NGC number of 5986?###answer:SELECT constellation FROM table_name_17 WHERE object_type = "globular cluster" AND ngc_number = 5986###context:CREATE TABLE table_name_17 (constellation VARCHAR, object_type VARCHAR, ngc_number VARCHAR)
###question:For clubs that have 0 gold and less than 5 points, what is the average amount of bronze medals?###answer:SELECT AVG(bronze) FROM table_name_43 WHERE points < 5 AND gold < 0###context:CREATE TABLE table_name_43 (bronze INTEGER, points VARCHAR, gold VARCHAR)
###question:Club aik had over 9 small silver medals and more than 8 bronze medals, how many total points did they have?###answer:SELECT AVG(points) FROM table_name_78 WHERE small_silver > 9 AND club = "aik" AND bronze > 8###context:CREATE TABLE table_name_78 (points INTEGER, bronze VARCHAR, small_silver VARCHAR, club V...
###question:How many points did landskrona bois get when they were ranked below 18?###answer:SELECT COUNT(points) FROM table_name_68 WHERE club = "landskrona bois" AND rank < 18###context:CREATE TABLE table_name_68 (points VARCHAR, club VARCHAR, rank VARCHAR)
###question:Who was the opponent for game 5?###answer:SELECT opponent FROM table_name_29 WHERE game = 5###context:CREATE TABLE table_name_29 (opponent VARCHAR, game VARCHAR)
###question:Name the team for pick more than 30 and position of c with round more than 4###answer:SELECT team FROM table_name_28 WHERE pick > 30 AND position = "c" AND round > 4###context:CREATE TABLE table_name_28 (team VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)
###question:What's the number of decimal digits when the total bits is more than 32 and the exponent is less than 15?###answer:SELECT number_of_decimal_digits FROM table_name_26 WHERE total_bits > 32 AND exponent < 15###context:CREATE TABLE table_name_26 (number_of_decimal_digits VARCHAR, total_bits VARCHAR, exponent V...
###question:What's the total number of signicand with ~34.0 decimal digits and more than 128 total bits?###answer:SELECT COUNT(significand) FROM table_name_41 WHERE number_of_decimal_digits = "~34.0" AND total_bits > 128###context:CREATE TABLE table_name_41 (significand VARCHAR, number_of_decimal_digits VARCHAR, total_...
###question:What's the sum of sign with more than 53 bits precision, double extended (80-bit) type, and more than 80 total bits?###answer:SELECT SUM(sign) FROM table_name_98 WHERE bits_precision > 53 AND type = "double extended (80-bit)" AND total_bits > 80###context:CREATE TABLE table_name_98 (sign INTEGER, total_bits...
###question:What's the lowest bits precision when the total bits are less than 16?###answer:SELECT MIN(bits_precision) FROM table_name_32 WHERE total_bits < 16###context:CREATE TABLE table_name_32 (bits_precision INTEGER, total_bits INTEGER)
###question:How many years did the team that has a Singles win-Loss of 4-9 and first played before 1999?###answer:SELECT SUM(years_played) FROM table_name_28 WHERE singles_win_loss = "4-9" AND first_year_played < 1999###context:CREATE TABLE table_name_28 (years_played INTEGER, singles_win_loss VARCHAR, first_year_playe...
###question:What is the highest game number with a record of 12-8-1?###answer:SELECT MAX(game) FROM table_name_29 WHERE record = "12-8-1"###context:CREATE TABLE table_name_29 (game INTEGER, record VARCHAR)
###question:What is the record when the decision was valiquette on November 23?###answer:SELECT record FROM table_name_46 WHERE decision = "valiquette" AND november = 23###context:CREATE TABLE table_name_46 (record VARCHAR, decision VARCHAR, november VARCHAR)
###question:I want the driver for Laps more than 8 and ferrari with Grid of 8###answer:SELECT driver FROM table_name_45 WHERE laps > 8 AND constructor = "ferrari" AND grid = 8###context:CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)
###question:Which title has the Translation of vesoul?###answer:SELECT title FROM table_name_28 WHERE translation = "vesoul"###context:CREATE TABLE table_name_28 (title VARCHAR, translation VARCHAR)
###question:What was the orignal title for the winner and nominee, Breaking the Waves, in 1996 (11th)?###answer:SELECT original_title FROM table_name_56 WHERE year = "1996 (11th)" AND winner_and_nominees = "breaking the waves"###context:CREATE TABLE table_name_56 (original_title VARCHAR, year VARCHAR, winner_and_nomine...
###question:What is the original title for the winner and nominees 'Secrets & Lies'?###answer:SELECT original_title FROM table_name_25 WHERE winner_and_nominees = "secrets & lies"###context:CREATE TABLE table_name_25 (original_title VARCHAR, winner_and_nominees VARCHAR)
###question:The winner and nominee 'Hidden Agenda' is from which country?###answer:SELECT country FROM table_name_69 WHERE winner_and_nominees = "hidden agenda"###context:CREATE TABLE table_name_69 (country VARCHAR, winner_and_nominees VARCHAR)
###question:What is the total amount of freight produced of u28c?###answer:SELECT total_produced FROM table_name_49 WHERE service = "freight" AND builder’s_model = "u28c"###context:CREATE TABLE table_name_49 (total_produced VARCHAR, service VARCHAR, builder’s_model VARCHAR)
###question:What is the build date for PRR Class gf30a?###answer:SELECT build_date FROM table_name_80 WHERE prr_class = "gf30a"###context:CREATE TABLE table_name_80 (build_date VARCHAR, prr_class VARCHAR)
###question:What is the PRR class for wheel arrangement c-c and total less than 15?###answer:SELECT prr_class FROM table_name_80 WHERE wheel_arrangement = "c-c" AND total_produced < 15###context:CREATE TABLE table_name_80 (prr_class VARCHAR, wheel_arrangement VARCHAR, total_produced VARCHAR)
###question:What was the model for PRR class of gf28a freight?###answer:SELECT builder’s_model FROM table_name_61 WHERE service = "freight" AND prr_class = "gf28a"###context:CREATE TABLE table_name_61 (builder’s_model VARCHAR, service VARCHAR, prr_class VARCHAR)
###question:Who got 189,524 votes?###answer:SELECT queens FROM table_name_21 WHERE manhattan = "189,524"###context:CREATE TABLE table_name_21 (queens VARCHAR, manhattan VARCHAR)
###question:Which owner has the frequency of 103.3 FM?###answer:SELECT owner FROM table_name_51 WHERE frequency = "103.3 fm"###context:CREATE TABLE table_name_51 (owner VARCHAR, frequency VARCHAR)
###question:What is the call sign of the Classic Country Music station?###answer:SELECT call_sign FROM table_name_25 WHERE format = "classic country"###context:CREATE TABLE table_name_25 (call_sign VARCHAR, format VARCHAR)
###question:Which owner has the call sign of KDSU?###answer:SELECT name FROM table_name_88 WHERE call_sign = "kdsu"###context:CREATE TABLE table_name_88 (name VARCHAR, call_sign VARCHAR)
###question:What is the call sign for Thunder 106.1?###answer:SELECT call_sign FROM table_name_62 WHERE name = "thunder 106.1"###context:CREATE TABLE table_name_62 (call_sign VARCHAR, name VARCHAR)
###question:Which owner has a Contemporary Christian music station on 97.9 FM?###answer:SELECT name FROM table_name_45 WHERE format = "contemporary christian music" AND frequency = "97.9 fm"###context:CREATE TABLE table_name_45 (name VARCHAR, format VARCHAR, frequency VARCHAR)
###question:Who was the leading scorer in the game where the visiting team was the Pistons?###answer:SELECT leading_scorer FROM table_name_35 WHERE visitor = "pistons"###context:CREATE TABLE table_name_35 (leading_scorer VARCHAR, visitor VARCHAR)
###question:How many people attended the game where the leading scorer was Tim Duncan (24), and the home team was the Spurs?###answer:SELECT MIN(attendance) FROM table_name_96 WHERE leading_scorer = "tim duncan (24)" AND home = "spurs"###context:CREATE TABLE table_name_96 (attendance INTEGER, leading_scorer VARCHAR, ho...
###question:What is the mean number of laps where Time/retired was a water leak and the grid number was bigger than 12?###answer:SELECT AVG(laps) FROM table_name_53 WHERE time_retired = "water leak" AND grid > 12###context:CREATE TABLE table_name_53 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
###question:What is the mean number of laps when time/retired was spun off and the driver was Nick Heidfeld?###answer:SELECT AVG(laps) FROM table_name_60 WHERE time_retired = "spun off" AND driver = "nick heidfeld"###context:CREATE TABLE table_name_60 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)
###question:What is the sum grid number when the driver was Luciano Burti?###answer:SELECT COUNT(grid) FROM table_name_55 WHERE driver = "luciano burti"###context:CREATE TABLE table_name_55 (grid VARCHAR, driver VARCHAR)
###question:Which constructor had a laps number bigger than 3 when the driver was Jarno Trulli?###answer:SELECT constructor FROM table_name_5 WHERE laps > 3 AND driver = "jarno trulli"###context:CREATE TABLE table_name_5 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)
###question:Name the head of household for married filing jointly or qualified widow(er) being $137,051–$208,850###answer:SELECT head_of_household FROM table_name_32 WHERE married_filing_jointly_or_qualified_widow_er_ = "$137,051–$208,850"###context:CREATE TABLE table_name_32 (head_of_household VARCHAR, married_filing_...
###question:Name the married filing jointly or qualified widow(er) with head of household being $117,451–$190,200###answer:SELECT married_filing_jointly_or_qualified_widow_er_ FROM table_name_61 WHERE head_of_household = "$117,451–$190,200"###context:CREATE TABLE table_name_61 (married_filing_jointly_or_qualified_widow...
###question:Name the married filing separately for single of $0–$8,350###answer:SELECT married_filing_separately FROM table_name_77 WHERE single = "$0–$8,350"###context:CREATE TABLE table_name_77 (married_filing_separately VARCHAR, single VARCHAR)
###question:Name the head of household that has married filing separately of $104,426–$186,475###answer:SELECT head_of_household FROM table_name_89 WHERE married_filing_separately = "$104,426–$186,475"###context:CREATE TABLE table_name_89 (head_of_household VARCHAR, married_filing_separately VARCHAR)
###question:Name the marginal ordinary income tax rate that has a head of household of $372,951+###answer:SELECT marginal_ordinary_income_tax_rate FROM table_name_40 WHERE head_of_household = "$372,951+"###context:CREATE TABLE table_name_40 (marginal_ordinary_income_tax_rate VARCHAR, head_of_household VARCHAR)
###question:What is the point average for the game that has FGM-FGA of 11-28 and a number smaller than 7?###answer:SELECT AVG(points) FROM table_name_48 WHERE fgm___fga = "11-28" AND number < 7###context:CREATE TABLE table_name_48 (points INTEGER, fgm___fga VARCHAR, number VARCHAR)
###question:What is the lowest number of floors recorded for buildings built by Dubai Marriott Harbour Hotel & Suites?###answer:SELECT MIN(floors) FROM table_name_82 WHERE name = "dubai marriott harbour hotel & suites"###context:CREATE TABLE table_name_82 (floors INTEGER, name VARCHAR)
###question:What is the name of the building housing more than 101 floors, that was built after 2006?###answer:SELECT name FROM table_name_55 WHERE year > 2006 AND floors > 101###context:CREATE TABLE table_name_55 (name VARCHAR, year VARCHAR, floors VARCHAR)
###question:What was the crowd size on 4 july 1981, and a Away team of essendon?###answer:SELECT crowd FROM table_name_41 WHERE date = "4 july 1981" AND away_team = "essendon"###context:CREATE TABLE table_name_41 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)
###question:When did essendon play away?###answer:SELECT date FROM table_name_53 WHERE away_team = "essendon"###context:CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR)
###question:Which category won the Sundance Film Festival award in 1998?###answer:SELECT category FROM table_name_95 WHERE result = "won" AND year = 1998 AND award = "sundance film festival"###context:CREATE TABLE table_name_95 (category VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR)
###question:Which award category was the film series The Wire nominated for after 2005?###answer:SELECT category FROM table_name_20 WHERE result = "nominated" AND film_or_series = "the wire" AND year > 2005###context:CREATE TABLE table_name_20 (category VARCHAR, year VARCHAR, result VARCHAR, film_or_series VARCHAR)
###question:What was the result for the nominee for Outstanding Supporting Actress in a Drama Series in 2009?###answer:SELECT result FROM table_name_43 WHERE category = "outstanding supporting actress in a drama series" AND year = 2009###context:CREATE TABLE table_name_43 (result VARCHAR, category VARCHAR, year VARCHAR...
###question:When st kilda played as the away team, what date was that?###answer:SELECT date FROM table_name_67 WHERE away_team = "st kilda"###context:CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)
###question:On what date did Fitzroy play as the home team?###answer:SELECT date FROM table_name_74 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)
###question:Name the antonio thomas for Hikaru Sato of tanaka (8:09)###answer:SELECT antonio_thomas FROM table_name_24 WHERE hikaru_sato = "tanaka (8:09)"###context:CREATE TABLE table_name_24 (antonio_thomas VARCHAR, hikaru_sato VARCHAR)
###question:Tell me the block A for antonio thomas of kondo (13:24)###answer:SELECT block_a FROM table_name_85 WHERE antonio_thomas = "kondo (13:24)"###context:CREATE TABLE table_name_85 (block_a VARCHAR, antonio_thomas VARCHAR)
###question:Name the minoru that has a hikaru sato of x and super crazy of yang (8:36)###answer:SELECT minoru FROM table_name_22 WHERE hikaru_sato = "x" AND super_crazy = "yang (8:36)"###context:CREATE TABLE table_name_22 (minoru VARCHAR, hikaru_sato VARCHAR, super_crazy VARCHAR)
###question:Atlanta was a visitor on December 8, what was their record?###answer:SELECT record FROM table_name_68 WHERE visitor = "atlanta"###context:CREATE TABLE table_name_68 (record VARCHAR, visitor VARCHAR)
###question:Tell me the team which has matches of 13###answer:SELECT team FROM table_name_43 WHERE matches = 13###context:CREATE TABLE table_name_43 (team VARCHAR, matches VARCHAR)
###question:Tell me the sum of win % for drawn being larger than 35###answer:SELECT SUM(win__percentage) FROM table_name_55 WHERE drawn > 35###context:CREATE TABLE table_name_55 (win__percentage INTEGER, drawn INTEGER)
###question:Name the most win % for 13 drawn###answer:SELECT MAX(win__percentage) FROM table_name_91 WHERE drawn = 13###context:CREATE TABLE table_name_91 (win__percentage INTEGER, drawn VARCHAR)
###question:Name the average lost for matches of 6###answer:SELECT AVG(lost) FROM table_name_53 WHERE matches = 6###context:CREATE TABLE table_name_53 (lost INTEGER, matches VARCHAR)
###question:What was the time recorded for grid 18?###answer:SELECT time_retired FROM table_name_89 WHERE grid = 18###context:CREATE TABLE table_name_89 (time_retired VARCHAR, grid VARCHAR)
###question:What catalogue has a track less than 16 and 2/3/56 recorded with a song titled Lawdy Miss Clawdy?###answer:SELECT catalogue FROM table_name_83 WHERE track < 16 AND recorded = "2/3/56" AND song_title = "lawdy miss clawdy"###context:CREATE TABLE table_name_83 (catalogue VARCHAR, song_title VARCHAR, track VARC...