combined_text
stringlengths
106
1.05k
###question:Which county has the mascot of Bruins?###answer:SELECT county FROM table_name_81 WHERE mascot = "bruins"###context:CREATE TABLE table_name_81 (county VARCHAR, mascot VARCHAR)
###question:Which school joined in 1971 and left in 1975?###answer:SELECT school FROM table_name_15 WHERE year_joined = "1971" AND year_left = "1975"###context:CREATE TABLE table_name_15 (school VARCHAR, year_joined VARCHAR, year_left VARCHAR)
###question:Which IHSAA class A school are the Cavaliers from?###answer:SELECT county FROM table_name_38 WHERE ihsaa_class = "a" AND mascot = "cavaliers"###context:CREATE TABLE table_name_38 (county VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)
###question:Which county do the Trojans come from?###answer:SELECT county FROM table_name_87 WHERE mascot = "trojans"###context:CREATE TABLE table_name_87 (county VARCHAR, mascot VARCHAR)
###question:What is the average ranking for a react of 0.17300000000000001 and less than 5 lanes?###answer:SELECT AVG(rank) FROM table_name_78 WHERE react = 0.17300000000000001 AND lane < 5###context:CREATE TABLE table_name_78 (rank INTEGER, react VARCHAR, lane VARCHAR)
###question:What was the 4th day in the year before 2012 that the finish is 33rd?###answer:SELECT 4 AS th_day FROM table_name_52 WHERE year < 2012 AND finish_position = "33rd"###context:CREATE TABLE table_name_52 (year VARCHAR, finish_position VARCHAR)
###question:What is the sum of gold medals won by teams that won 5 total medals and fewer than 2 bronze medals?###answer:SELECT SUM(gold) FROM table_name_23 WHERE total = 5 AND bronze < 2###context:CREATE TABLE table_name_23 (gold INTEGER, total VARCHAR, bronze VARCHAR)
###question:What is the sum of gold medals won by teams that won fewer than 3 silver medals, more than 1 total medal, and rank 10?###answer:SELECT SUM(gold) FROM table_name_51 WHERE silver < 3 AND rank = "10" AND total > 1###context:CREATE TABLE table_name_51 (gold INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)
###question:What nation won fewer than 14 total medals, 1 silver medal, and rank 5?###answer:SELECT nation FROM table_name_62 WHERE total < 14 AND silver = 1 AND rank = "5"###context:CREATE TABLE table_name_62 (nation VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR)
###question:Which IHSAA Football Class has an IHSAA Class of aa, and an Enrollment of 475?###answer:SELECT ihsaa_football_class FROM table_name_14 WHERE ihsaa_class = "aa" AND enrollment = 475###context:CREATE TABLE table_name_14 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)
###question:Which School has a Location of peru?###answer:SELECT school FROM table_name_37 WHERE location = "peru"###context:CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR)
###question:Which Mascot has an IHSAA Class of aaa, and a Location of russiaville?###answer:SELECT mascot FROM table_name_53 WHERE ihsaa_class = "aaa" AND location = "russiaville"###context:CREATE TABLE table_name_53 (mascot VARCHAR, ihsaa_class VARCHAR, location VARCHAR)
###question:Which IHSAA Class has a School of taylor?###answer:SELECT ihsaa_class FROM table_name_51 WHERE school = "taylor"###context:CREATE TABLE table_name_51 (ihsaa_class VARCHAR, school VARCHAR)
###question:what is the date when the opponent is leeds united?###answer:SELECT date FROM table_name_80 WHERE opponent = "leeds united"###context:CREATE TABLE table_name_80 (date VARCHAR, opponent VARCHAR)
###question:what is the date when scorers is parkinson?###answer:SELECT date FROM table_name_23 WHERE scorers = "parkinson"###context:CREATE TABLE table_name_23 (date VARCHAR, scorers VARCHAR)
###question:who is the opponent on 31 jul?###answer:SELECT opponent FROM table_name_43 WHERE date = "31 jul"###context:CREATE TABLE table_name_43 (opponent VARCHAR, date VARCHAR)
###question:what is the result when the opponent is blackburn rovers?###answer:SELECT result FROM table_name_39 WHERE opponent = "blackburn rovers"###context:CREATE TABLE table_name_39 (result VARCHAR, opponent VARCHAR)
###question:What was the result on week 6?###answer:SELECT result FROM table_name_42 WHERE week = 6###context:CREATE TABLE table_name_42 (result VARCHAR, week VARCHAR)
###question:What is the sum on week against the Tampa Bay Buccaneers with less than 60,320 in attendance?###answer:SELECT SUM(week) FROM table_name_41 WHERE opponent = "tampa bay buccaneers" AND attendance < 60 OFFSET 320###context:CREATE TABLE table_name_41 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
###question:What is the highest week with a w 33-14 result?###answer:SELECT MAX(week) FROM table_name_38 WHERE result = "w 33-14"###context:CREATE TABLE table_name_38 (week INTEGER, result VARCHAR)
###question:What percentage of users were using Netscape during the period in which 21.67% were using Firefox?###answer:SELECT netscape FROM table_name_45 WHERE firefox = "21.67%"###context:CREATE TABLE table_name_45 (netscape VARCHAR, firefox VARCHAR)
###question:What percentage of users were using Safari during the period in which 2.33% were using Opera?###answer:SELECT safari FROM table_name_3 WHERE opera = "2.33%"###context:CREATE TABLE table_name_3 (safari VARCHAR, opera VARCHAR)
###question:What percentage of users were using Netscape during the period in which 63.67% were using Internet Explorer?###answer:SELECT netscape FROM table_name_54 WHERE internet_explorer = "63.67%"###context:CREATE TABLE table_name_54 (netscape VARCHAR, internet_explorer VARCHAR)
###question:What percentage of users were using Firefox during the period in which *0.77% were using Netscape?###answer:SELECT firefox FROM table_name_8 WHERE netscape = "*0.77%"###context:CREATE TABLE table_name_8 (firefox VARCHAR, netscape VARCHAR)
###question:What percentage of users were using other Mozilla browsers during the period in which 2.29% were using Opera?###answer:SELECT other_mozilla FROM table_name_97 WHERE opera = "2.29%"###context:CREATE TABLE table_name_97 (other_mozilla VARCHAR, opera VARCHAR)
###question:What percentage of users were using Opera during the period in which 63.67% were using Internet Explorer?###answer:SELECT opera FROM table_name_59 WHERE internet_explorer = "63.67%"###context:CREATE TABLE table_name_59 (opera VARCHAR, internet_explorer VARCHAR)
###question:Which Country has Entities of emsa?###answer:SELECT country FROM table_name_57 WHERE entities = "emsa"###context:CREATE TABLE table_name_57 (country VARCHAR, entities VARCHAR)
###question:Which Power (MW) has a Voltage (kV) of 500, and a Country of argentina?###answer:SELECT AVG(power__mw_) FROM table_name_26 WHERE voltage__kv_ = 500 AND country = "argentina"###context:CREATE TABLE table_name_26 (power__mw_ INTEGER, voltage__kv_ VARCHAR, country VARCHAR)
###question:How much Voltage (kV) has a Country of argentina, and a Power (MW) larger than 30, and a Supply point of yacyretá?###answer:SELECT COUNT(voltage__kv_) FROM table_name_44 WHERE country = "argentina" AND power__mw_ > 30 AND supply_point = "yacyretá"###context:CREATE TABLE table_name_44 (voltage__kv_ VARCHAR, ...
###question:What is the lowest number for the english word Aquarius?###answer:SELECT MIN(number) FROM table_name_32 WHERE western_name = "aquarius"###context:CREATE TABLE table_name_32 (number INTEGER, western_name VARCHAR)
###question:What is the Sanskrit for the Greek word λέων?###answer:SELECT sanskrit FROM table_name_98 WHERE greek = "λέων"###context:CREATE TABLE table_name_98 (sanskrit VARCHAR, greek VARCHAR)
###question:What date has wrexham as the home team?###answer:SELECT date FROM table_name_69 WHERE home_team = "wrexham"###context:CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR)
###question:What away team has 7 as the tie no.?###answer:SELECT away_team FROM table_name_38 WHERE tie_no = "7"###context:CREATE TABLE table_name_38 (away_team VARCHAR, tie_no VARCHAR)
###question:What away team has wrexham as the home team?###answer:SELECT away_team FROM table_name_44 WHERE home_team = "wrexham"###context:CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR)
###question:What home team has 6 as the tie no.?###answer:SELECT home_team FROM table_name_82 WHERE tie_no = "6"###context:CREATE TABLE table_name_82 (home_team VARCHAR, tie_no VARCHAR)
###question:What was the kickoff time for the December 14, 2003 game?###answer:SELECT kickoff_time FROM table_name_82 WHERE date = "december 14, 2003"###context:CREATE TABLE table_name_82 (kickoff_time VARCHAR, date VARCHAR)
###question:What is Zimbabwe's rank?###answer:SELECT rank FROM table_name_33 WHERE nationality = "zimbabwe"###context:CREATE TABLE table_name_33 (rank VARCHAR, nationality VARCHAR)
###question:What is Meagen Nay's rank with a lane greater than 5?###answer:SELECT SUM(rank) FROM table_name_85 WHERE name = "meagen nay" AND lane > 5###context:CREATE TABLE table_name_85 (rank INTEGER, name VARCHAR, lane VARCHAR)
###question:What is the debut year for the player with fewer than 54 games, fewer than 8 goals and 1989 at club?###answer:SELECT AVG(debut_year) FROM table_name_6 WHERE games < 54 AND years_at_club = "1989" AND goals < 8###context:CREATE TABLE table_name_6 (debut_year INTEGER, goals VARCHAR, games VARCHAR, years_at_clu...
###question:What are the years for the player with fewer than 62 goals, debut year of 1981 and 28 games?###answer:SELECT years_at_club FROM table_name_61 WHERE goals < 62 AND debut_year = 1981 AND games = 28###context:CREATE TABLE table_name_61 (years_at_club VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR)
###question:What is the debut year of Mark Eaves?###answer:SELECT MIN(debut_year) FROM table_name_10 WHERE player = "mark eaves"###context:CREATE TABLE table_name_10 (debut_year INTEGER, player VARCHAR)
###question:Which Player has a Total of 9, and an Opposition of offaly?###answer:SELECT player FROM table_name_5 WHERE total = 9 AND opposition = "offaly"###context:CREATE TABLE table_name_5 (player VARCHAR, total VARCHAR, opposition VARCHAR)
###question:Which County has an Opposition of offaly?###answer:SELECT county FROM table_name_64 WHERE opposition = "offaly"###context:CREATE TABLE table_name_64 (county VARCHAR, opposition VARCHAR)
###question:Which Player has a Total smaller than 11, and a Tally of 0-9?###answer:SELECT player FROM table_name_21 WHERE total < 11 AND tally = "0-9"###context:CREATE TABLE table_name_21 (player VARCHAR, total VARCHAR, tally VARCHAR)
###question:What country has todd hamilton as the player?###answer:SELECT country FROM table_name_90 WHERE player = "todd hamilton"###context:CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR)
###question:What country has david toms as the player?###answer:SELECT country FROM table_name_43 WHERE player = "david toms"###context:CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR)
###question:Which date was a rest day?###answer:SELECT date FROM table_name_81 WHERE course = "rest day"###context:CREATE TABLE table_name_81 (date VARCHAR, course VARCHAR)
###question:What is the location for 2012?###answer:SELECT location FROM table_name_13 WHERE year = 2012###context:CREATE TABLE table_name_13 (location VARCHAR, year VARCHAR)
###question:What are the rounds for champion New Zealand (130 points)?###answer:SELECT AVG(rounds) FROM table_name_1 WHERE champion = "new zealand (130 points)"###context:CREATE TABLE table_name_1 (rounds INTEGER, champion VARCHAR)
###question:For which season is Tim Mikkelson player of the year?###answer:SELECT season FROM table_name_87 WHERE player_of_the_year = "tim mikkelson"###context:CREATE TABLE table_name_87 (season VARCHAR, player_of_the_year VARCHAR)
###question:What company collaborated in SBI-087 for rheumatoid arthritis?###answer:SELECT collaboration FROM table_name_7 WHERE name = "sbi-087" AND indication = "rheumatoid arthritis"###context:CREATE TABLE table_name_7 (collaboration VARCHAR, name VARCHAR, indication VARCHAR)
###question:What company collaborated in non-hodgkin lymphoma?###answer:SELECT collaboration FROM table_name_63 WHERE indication = "non-hodgkin lymphoma"###context:CREATE TABLE table_name_63 (collaboration VARCHAR, indication VARCHAR)
###question:What company collaborated in pre-clinical autoimmune disease and inflammation?###answer:SELECT collaboration FROM table_name_99 WHERE status = "pre-clinical" AND indication = "autoimmune disease and inflammation"###context:CREATE TABLE table_name_99 (collaboration VARCHAR, status VARCHAR, indication VARCHAR...
###question:Which study included autoimmune disease and inflammation?###answer:SELECT name FROM table_name_41 WHERE indication = "autoimmune disease and inflammation"###context:CREATE TABLE table_name_41 (name VARCHAR, indication VARCHAR)
###question:What did the phase 2b status target?###answer:SELECT indication FROM table_name_50 WHERE status = "phase 2b"###context:CREATE TABLE table_name_50 (indication VARCHAR, status VARCHAR)
###question:What company collaborated with non-hodgkin lymphoma?###answer:SELECT collaboration FROM table_name_5 WHERE indication = "non-hodgkin lymphoma"###context:CREATE TABLE table_name_5 (collaboration VARCHAR, indication VARCHAR)
###question:what is the average water sqmi with a population (2010) more than 47 in the Brenna Township with Longitude less than -97.171507###answer:SELECT AVG(water__sqmi_) FROM table_name_8 WHERE pop__2010_ > 47 AND township = "brenna" AND longitude < -97.171507###context:CREATE TABLE table_name_8 (water__sqmi_ INTEG...
###question:what is the latitude for the berlin township with a geo id less than 3801706260###answer:SELECT COUNT(latitude) FROM table_name_62 WHERE township = "berlin" AND geo_id < 3801706260###context:CREATE TABLE table_name_62 (latitude VARCHAR, township VARCHAR, geo_id VARCHAR)
###question:what is the highest ANSI code with a latitude more than 47.623288 and a geo id more than 3805508060 with land (sqmi) more than 35.66 and a longitude less than -102.054248###answer:SELECT MAX(ansi_code) FROM table_name_98 WHERE latitude > 47.623288 AND geo_id > 3805508060 AND land___sqmi__ > 35.66 AND longit...
###question:what is the lowest latitude for the land sqmi less than 32.696 and a water sqmi less than 0###answer:SELECT MIN(latitude) FROM table_name_97 WHERE land___sqmi__ < 32.696 AND water__sqmi_ < 0###context:CREATE TABLE table_name_97 (latitude INTEGER, land___sqmi__ VARCHAR, water__sqmi_ VARCHAR)
###question:What's the sum of Quantity for the Class of 1928 of CI-30?###answer:SELECT SUM(quantity) FROM table_name_1 WHERE class_from_1928 = "ci-30"###context:CREATE TABLE table_name_1 (quantity INTEGER, class_from_1928 VARCHAR)
###question:What Class to 1928 has the Quantity smaller than 440 and Seats of 29/29?###answer:SELECT class_to_1928 FROM table_name_16 WHERE quantity < 440 AND seats = "29/29"###context:CREATE TABLE table_name_16 (class_to_1928 VARCHAR, quantity VARCHAR, seats VARCHAR)
###question:What is the best fit (all data) when the parameter shows fluctuation amplitude at 8h −1 mpc?###answer:SELECT best_fit__all_data_ FROM table_name_18 WHERE parameter = "fluctuation amplitude at 8h −1 mpc"###context:CREATE TABLE table_name_18 (best_fit__all_data_ VARCHAR, parameter VARCHAR)
###question:What is the best fit (WMAP, extra parameter)when the best fit (all data) is .0224 ± .0009?###answer:SELECT best_fit__wmap, _extra_parameter_ FROM table_name_92 WHERE best_fit__all_data_ = ".0224 ± .0009"###context:CREATE TABLE table_name_92 (best_fit__wmap VARCHAR, _extra_parameter_ VARCHAR, best_fit__all_d...
###question:What is the parameter when the best fit (WMAP only) is .9 ± .1, and symbol is a?###answer:SELECT parameter FROM table_name_94 WHERE best_fit__wmap_only_ = ".9 ± .1" AND symbol = "a"###context:CREATE TABLE table_name_94 (parameter VARCHAR, best_fit__wmap_only_ VARCHAR, symbol VARCHAR)
###question:What is the highest heat for more than 3 lanes and a time of 2:09.12?###answer:SELECT MAX(heat) FROM table_name_23 WHERE lane > 3 AND time = "2:09.12"###context:CREATE TABLE table_name_23 (heat INTEGER, lane VARCHAR, time VARCHAR)
###question:What is Russia's time with a heat higher than 3?###answer:SELECT time FROM table_name_21 WHERE nationality = "russia" AND heat > 3###context:CREATE TABLE table_name_21 (time VARCHAR, nationality VARCHAR, heat VARCHAR)
###question:What is Hungary's time with a heat higher than 2 and two lanes?###answer:SELECT time FROM table_name_45 WHERE heat > 2 AND nationality = "hungary" AND lane = 2###context:CREATE TABLE table_name_45 (time VARCHAR, lane VARCHAR, heat VARCHAR, nationality VARCHAR)
###question:When the name is badnawar, and the reserved for (sc / st /none) of none what is the constituency number?###answer:SELECT constituency_number FROM table_name_86 WHERE reserved_for___sc___st__none_ = "none" AND name = "badnawar"###context:CREATE TABLE table_name_86 (constituency_number VARCHAR, reserved_for__...
###question:What is the number of electorates when the name is badnawar?###answer:SELECT number_of_electorates__2009_ FROM table_name_61 WHERE name = "badnawar"###context:CREATE TABLE table_name_61 (number_of_electorates__2009_ VARCHAR, name VARCHAR)
###question:What is the average number of electorates (2009) when the district is indore?###answer:SELECT AVG(number_of_electorates__2009_) FROM table_name_58 WHERE district = "indore"###context:CREATE TABLE table_name_58 (number_of_electorates__2009_ INTEGER, district VARCHAR)
###question:What is the name when the reserved is (sc / st /none) of st, with a constituency number 196?###answer:SELECT name FROM table_name_77 WHERE reserved_for___sc___st__none_ = "st" AND constituency_number = "196"###context:CREATE TABLE table_name_77 (name VARCHAR, reserved_for___sc___st__none_ VARCHAR, constitue...
###question:What is the nationality for rank 27?###answer:SELECT nationality FROM table_name_79 WHERE rank = 27###context:CREATE TABLE table_name_79 (nationality VARCHAR, rank VARCHAR)
###question:What is the sum rating with more than 1 comp for mark miller?###answer:SELECT COUNT(rating) FROM table_name_78 WHERE player = "mark miller" AND comp > 1###context:CREATE TABLE table_name_78 (rating VARCHAR, player VARCHAR, comp VARCHAR)
###question:What is the games average with less than 3.8 in rating and less than 9 yards?###answer:SELECT AVG(games) FROM table_name_70 WHERE rating < 3.8 AND yards < 9###context:CREATE TABLE table_name_70 (games INTEGER, rating VARCHAR, yards VARCHAR)
###question:What is the average rating for john kidd with more than 0 yards?###answer:SELECT AVG(rating) FROM table_name_51 WHERE player = "john kidd" AND yards > 0###context:CREATE TABLE table_name_51 (rating INTEGER, player VARCHAR, yards VARCHAR)
###question:Which Share of seats has a European election (UK) of 2009?###answer:SELECT share_of_seats FROM table_name_79 WHERE european_election__uk_ = 2009###context:CREATE TABLE table_name_79 (share_of_seats VARCHAR, european_election__uk_ VARCHAR)
###question:Which European election (UK) has a Share of votes of 19%?###answer:SELECT european_election__uk_ FROM table_name_41 WHERE share_of_votes = "19%"###context:CREATE TABLE table_name_41 (european_election__uk_ VARCHAR, share_of_votes VARCHAR)
###question:What is the fewest bronzes for ranks of 3 with totals under 2?###answer:SELECT MIN(bronze) FROM table_name_58 WHERE rank = "3" AND total < 2###context:CREATE TABLE table_name_58 (bronze INTEGER, rank VARCHAR, total VARCHAR)
###question:Which rank is Austria?###answer:SELECT rank FROM table_name_42 WHERE nation = "austria"###context:CREATE TABLE table_name_42 (rank VARCHAR, nation VARCHAR)
###question:What is the sum of bronzes for countries with 1 gold and under 1 silver?###answer:SELECT SUM(bronze) FROM table_name_19 WHERE gold = 1 AND silver < 1###context:CREATE TABLE table_name_19 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
###question:What is the total number of totals for nations with 1 silver and more than 1 bronze?###answer:SELECT COUNT(total) FROM table_name_4 WHERE bronze > 1 AND silver = 1###context:CREATE TABLE table_name_4 (total VARCHAR, bronze VARCHAR, silver VARCHAR)
###question:What is the Nationality of the athlete in 1999 Fort-de-France in the Triple Jump?###answer:SELECT nationality FROM table_name_12 WHERE games = "1999 fort-de-france" AND event = "triple jump"###context:CREATE TABLE table_name_12 (nationality VARCHAR, games VARCHAR, event VARCHAR)
###question:What is the Date of the athlete in the shot put Event?###answer:SELECT date FROM table_name_19 WHERE event = "shot put"###context:CREATE TABLE table_name_19 (date VARCHAR, event VARCHAR)
###question:What District has a Member with a First Election date of 1985?###answer:SELECT district FROM table_name_43 WHERE position = "member" AND first_election = "1985"###context:CREATE TABLE table_name_43 (district VARCHAR, position VARCHAR, first_election VARCHAR)
###question:What Party is Member Alicia Hughes from?###answer:SELECT party FROM table_name_95 WHERE position = "member" AND name = "alicia hughes"###context:CREATE TABLE table_name_95 (party VARCHAR, position VARCHAR, name VARCHAR)
###question:What Position does First Elected in 2003 William D. Euille hold ?###answer:SELECT position FROM table_name_42 WHERE first_election = "2003" AND name = "william d. euille"###context:CREATE TABLE table_name_42 (position VARCHAR, first_election VARCHAR, name VARCHAR)
###question:What is Kerry J. Donley's First Election date?###answer:SELECT first_election FROM table_name_23 WHERE name = "kerry j. donley"###context:CREATE TABLE table_name_23 (first_election VARCHAR, name VARCHAR)
###question:What is Kerry J. Donley's Party?###answer:SELECT party FROM table_name_48 WHERE name = "kerry j. donley"###context:CREATE TABLE table_name_48 (party VARCHAR, name VARCHAR)
###question:What is the Position of the person with a First Election of 1988 as Vice Mayor 2009?###answer:SELECT position FROM table_name_64 WHERE first_election = "1988 as vice mayor 2009"###context:CREATE TABLE table_name_64 (position VARCHAR, first_election VARCHAR)
###question:What are the final points a 0 total and 22 draws?###answer:SELECT final_points FROM table_name_60 WHERE total = "0" AND draw = 22###context:CREATE TABLE table_name_60 (final_points VARCHAR, total VARCHAR, draw VARCHAR)
###question:Who received 6,131 televotes?###answer:SELECT televote_points FROM table_name_1 WHERE televotes = "6,131"###context:CREATE TABLE table_name_1 (televote_points VARCHAR, televotes VARCHAR)
###question:What are televotes for 1 draw?###answer:SELECT televotes FROM table_name_74 WHERE draw = 1###context:CREATE TABLE table_name_74 (televotes VARCHAR, draw VARCHAR)
###question:What is the draw for the artist Ketil Stokkan which has less than 44 points?###answer:SELECT MIN(draw) FROM table_name_89 WHERE artist = "ketil stokkan" AND points < 44###context:CREATE TABLE table_name_89 (draw INTEGER, artist VARCHAR, points VARCHAR)
###question:Which artist speaks croatian?###answer:SELECT artist FROM table_name_32 WHERE language = "croatian"###context:CREATE TABLE table_name_32 (artist VARCHAR, language VARCHAR)
###question:Which Score has High points of douglas (15)?###answer:SELECT score FROM table_name_90 WHERE high_points = "douglas (15)"###context:CREATE TABLE table_name_90 (score VARCHAR, high_points VARCHAR)
###question:Which High assists have a Game larger than 21, and a Record of 18-6?###answer:SELECT high_assists FROM table_name_21 WHERE game > 21 AND record = "18-6"###context:CREATE TABLE table_name_21 (high_assists VARCHAR, game VARCHAR, record VARCHAR)
###question:Which Record has a Location of madison square garden?###answer:SELECT record FROM table_name_8 WHERE location = "madison square garden"###context:CREATE TABLE table_name_8 (record VARCHAR, location VARCHAR)
###question:Which 2012 has a 2009 smaller than 3.38?###answer:SELECT AVG(2012) FROM table_name_33 WHERE 2009 < 3.38###context:CREATE TABLE table_name_33 (Id VARCHAR)
###question:Which 2009 has a 2012 larger than 9,265?###answer:SELECT MAX(2009) FROM table_name_61 WHERE 2012 > 9 OFFSET 265###context:CREATE TABLE table_name_61 (Id VARCHAR)