combined_text stringlengths 106 1.05k |
|---|
###question:What is the point classification with chris anker sørensen as the young rider classification and Christian vande velde as the general classification?###answer:SELECT points_classification FROM table_name_93 WHERE young_rider_classification = "chris anker sørensen" AND general_classification = "christian van... |
###question:What is the point classification of stage 15?###answer:SELECT points_classification FROM table_name_92 WHERE stage = "15"###context:CREATE TABLE table_name_92 (points_classification VARCHAR, stage VARCHAR) |
###question:what week number was at memorial stadium?###answer:SELECT AVG(week) FROM table_name_53 WHERE game_site = "memorial stadium"###context:CREATE TABLE table_name_53 (week INTEGER, game_site VARCHAR) |
###question:before week 12 what was the attendance on 1983-11-21?###answer:SELECT SUM(attendance) FROM table_name_22 WHERE date = "1983-11-21" AND week < 12###context:CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR, week VARCHAR) |
###question:on week 16, what was the lowest attendance?###answer:SELECT MIN(attendance) FROM table_name_34 WHERE week = 16###context:CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR) |
###question:At what venue is the margin of victory 7 strokes?###answer:SELECT venue FROM table_name_82 WHERE margin_of_victory = "7 strokes"###context:CREATE TABLE table_name_82 (venue VARCHAR, margin_of_victory VARCHAR) |
###question:What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club?###answer:SELECT COUNT(purse___) AS $__ FROM table_name_41 WHERE champion = "sherri steinhauer" AND venue = "woburn golf and country club"###context:CREATE TABLE table_name_41 (purse___ VARCHAR, champion VARCHAR, venue VA... |
###question:What is the exit date of the player who transferred to Cardiff City?###answer:SELECT exit_date FROM table_name_9 WHERE to_club = "cardiff city"###context:CREATE TABLE table_name_9 (exit_date VARCHAR, to_club VARCHAR) |
###question:What is the exit date of the player who transferred to Portsmouth?###answer:SELECT exit_date FROM table_name_58 WHERE to_club = "portsmouth"###context:CREATE TABLE table_name_58 (exit_date VARCHAR, to_club VARCHAR) |
###question:Which player has a position of FW?###answer:SELECT player FROM table_name_25 WHERE pos = "fw"###context:CREATE TABLE table_name_25 (player VARCHAR, pos VARCHAR) |
###question:Which Frequency MHz has an ERP W larger than 4, and a Call sign of w218ap?###answer:SELECT frequency_mhz FROM table_name_92 WHERE erp_w > 4 AND call_sign = "w218ap"###context:CREATE TABLE table_name_92 (frequency_mhz VARCHAR, erp_w VARCHAR, call_sign VARCHAR) |
###question:Which City of license has a Frequency MHz of 91.5 fm?###answer:SELECT city_of_license FROM table_name_42 WHERE frequency_mhz = "91.5 fm"###context:CREATE TABLE table_name_42 (city_of_license VARCHAR, frequency_mhz VARCHAR) |
###question:Which City of license has a Call sign of w220ba?###answer:SELECT city_of_license FROM table_name_64 WHERE call_sign = "w220ba"###context:CREATE TABLE table_name_64 (city_of_license VARCHAR, call_sign VARCHAR) |
###question:Which ERP W has a Frequency MHz of 89.3 fm?###answer:SELECT MAX(erp_w) FROM table_name_98 WHERE frequency_mhz = "89.3 fm"###context:CREATE TABLE table_name_98 (erp_w INTEGER, frequency_mhz VARCHAR) |
###question:How many wins does Greg Norman have?###answer:SELECT SUM(wins) FROM table_name_15 WHERE player = "greg norman"###context:CREATE TABLE table_name_15 (wins INTEGER, player VARCHAR) |
###question:What is the lowest number played with a position of 6 and less than 1 draw?###answer:SELECT MIN(played) FROM table_name_89 WHERE position = 6 AND drawn < 1###context:CREATE TABLE table_name_89 (played INTEGER, position VARCHAR, drawn VARCHAR) |
###question:What is the highest against value for Palmeiras and position less than 4?###answer:SELECT MAX(against) FROM table_name_86 WHERE team = "palmeiras" AND position < 4###context:CREATE TABLE table_name_86 (against INTEGER, team VARCHAR, position VARCHAR) |
###question:What is the highest number played with more than 2 lost for Palmeiras and less than 1 draw?###answer:SELECT MAX(played) FROM table_name_69 WHERE lost > 2 AND team = "palmeiras" AND drawn < 1###context:CREATE TABLE table_name_69 (played INTEGER, drawn VARCHAR, lost VARCHAR, team VARCHAR) |
###question:What is the average number lost when the against value is less than 5?###answer:SELECT AVG(lost) FROM table_name_86 WHERE against < 5###context:CREATE TABLE table_name_86 (lost INTEGER, against INTEGER) |
###question:How many values for a win by 2 or more goals correspond to a difference of 2, more than 9 points, and the America-RJ team when more than 7 are played?###answer:SELECT COUNT(won_by_2_or_more_goals_difference) FROM table_name_3 WHERE difference = "2" AND points > 9 AND team = "america-rj" AND played > 7###con... |
###question:What is the average total of the census after 1971 with 10,412 (32.88%) Serbs?###answer:SELECT AVG(total) FROM table_name_90 WHERE year_of_census > 1971 AND serbs = "10,412 (32.88%)"###context:CREATE TABLE table_name_90 (total INTEGER, year_of_census VARCHAR, serbs VARCHAR) |
###question:what is the school that hosts jim goodman###answer:SELECT school_club_team FROM table_name_57 WHERE player = "jim goodman"###context:CREATE TABLE table_name_57 (school_club_team VARCHAR, player VARCHAR) |
###question:Which Surface has a Date of january 2, 2006?###answer:SELECT surface FROM table_name_68 WHERE date = "january 2, 2006"###context:CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR) |
###question:Which tournament happened on september 25, 2006?###answer:SELECT tournament FROM table_name_78 WHERE date = "september 25, 2006"###context:CREATE TABLE table_name_78 (tournament VARCHAR, date VARCHAR) |
###question:When did joão souza play?###answer:SELECT date FROM table_name_11 WHERE opponen = "joão souza"###context:CREATE TABLE table_name_11 (date VARCHAR, opponen VARCHAR) |
###question:Which Surface has a Score of 7–5, 6–4?###answer:SELECT surface FROM table_name_17 WHERE score = "7–5, 6–4"###context:CREATE TABLE table_name_17 (surface VARCHAR, score VARCHAR) |
###question:What is the highest NFL Draft that has jeff robinson as the player, with an overall pick less than 98?###answer:SELECT MAX(nfl_draft) FROM table_name_47 WHERE player = "jeff robinson" AND overall_pick < 98###context:CREATE TABLE table_name_47 (nfl_draft INTEGER, player VARCHAR, overall_pick VARCHAR) |
###question:What position has 1958 as the NFL Draft, and jerry kramer as the player?###answer:SELECT position FROM table_name_55 WHERE nfl_draft = 1958 AND player = "jerry kramer"###context:CREATE TABLE table_name_55 (position VARCHAR, nfl_draft VARCHAR, player VARCHAR) |
###question:What is the highest overall pick that has c as the position, with an NFL Draft greater than 1977?###answer:SELECT MAX(overall_pick) FROM table_name_27 WHERE position = "c" AND nfl_draft > 1977###context:CREATE TABLE table_name_27 (overall_pick INTEGER, position VARCHAR, nfl_draft VARCHAR) |
###question:What was the score at Spartan Stadium when San Jose was the Home team?###answer:SELECT score FROM table_name_18 WHERE home_team = "san jose" AND venue = "spartan stadium"###context:CREATE TABLE table_name_18 (score VARCHAR, home_team VARCHAR, venue VARCHAR) |
###question:Where was the game on September 11, 2004?###answer:SELECT venue FROM table_name_95 WHERE date = "september 11, 2004"###context:CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR) |
###question:Who was the home team on September 20, 1998 at Spartan Stadium?###answer:SELECT home_team FROM table_name_39 WHERE venue = "spartan stadium" AND date = "september 20, 1998"###context:CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR, date VARCHAR) |
###question:What method has a round less than 3, and 3:36 as the time?###answer:SELECT method FROM table_name_5 WHERE round < 3 AND time = "3:36"###context:CREATE TABLE table_name_5 (method VARCHAR, round VARCHAR, time VARCHAR) |
###question:What method has randy couture as the opponent?###answer:SELECT method FROM table_name_15 WHERE opponent = "randy couture"###context:CREATE TABLE table_name_15 (method VARCHAR, opponent VARCHAR) |
###question:What is the median household income where the per capita is $28,789?###answer:SELECT median_household_income FROM table_name_27 WHERE per_capita_income = "$28,789"###context:CREATE TABLE table_name_27 (median_household_income VARCHAR, per_capita_income VARCHAR) |
###question:What is the median income for a family whose per capita income is $18,296?###answer:SELECT median_family_income FROM table_name_14 WHERE per_capita_income = "$18,296"###context:CREATE TABLE table_name_14 (median_family_income VARCHAR, per_capita_income VARCHAR) |
###question:What is the resolution of the network Canal de las Estrellas?###answer:SELECT resolution FROM table_name_96 WHERE network = "canal de las estrellas"###context:CREATE TABLE table_name_96 (resolution VARCHAR, network VARCHAR) |
###question:What is the resolution of the network Carismatv?###answer:SELECT resolution FROM table_name_47 WHERE network = "carismatv"###context:CREATE TABLE table_name_47 (resolution VARCHAR, network VARCHAR) |
###question:Which dish belongs to the network that has the official website of ksat.com?###answer:SELECT dish FROM table_name_46 WHERE official_website = "ksat.com"###context:CREATE TABLE table_name_46 (dish VARCHAR, official_website VARCHAR) |
###question:In which city is the network latv licensed?###answer:SELECT city_of_license FROM table_name_93 WHERE network = "latv"###context:CREATE TABLE table_name_93 (city_of_license VARCHAR, network VARCHAR) |
###question:In which city is the network with the callsign kgns-dt3 licensed?###answer:SELECT city_of_license FROM table_name_71 WHERE callsign = "kgns-dt3"###context:CREATE TABLE table_name_71 (city_of_license VARCHAR, callsign VARCHAR) |
###question:How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999?###answer:SELECT SUM(introduced) FROM table_name_94 WHERE manufacturer = "fokker" AND quantity = 5 AND retired > 1999###context:CREATE TABLE table_name_94 (introduced INTEGER, retired VARCHAR, manuf... |
###question:What is the total number of quantity when the introductory year was 1984?###answer:SELECT SUM(quantity) FROM table_name_30 WHERE introduced = 1984###context:CREATE TABLE table_name_30 (quantity INTEGER, introduced VARCHAR) |
###question:How many in the introduced segment retired later than 1994 and had Fokker as a manufacturer?###answer:SELECT COUNT(introduced) FROM table_name_80 WHERE retired > 1994 AND manufacturer = "fokker"###context:CREATE TABLE table_name_80 (introduced VARCHAR, retired VARCHAR, manufacturer VARCHAR) |
###question:How many in the quantity section had Fokker as a manufacturer and retired later than 1999?###answer:SELECT COUNT(quantity) FROM table_name_68 WHERE manufacturer = "fokker" AND retired > 1999###context:CREATE TABLE table_name_68 (quantity VARCHAR, manufacturer VARCHAR, retired VARCHAR) |
###question:Which Championship has a Scoreboard that is 22-14?###answer:SELECT champion FROM table_name_74 WHERE scoreboard = "22-14"###context:CREATE TABLE table_name_74 (champion VARCHAR, scoreboard VARCHAR) |
###question:What year was the building with a top 3 rank and a height of 274 (84) ft (m) completed?###answer:SELECT MAX(year_completed) FROM table_name_81 WHERE rank < 3 AND height_ft__m_ = "274 (84)"###context:CREATE TABLE table_name_81 (year_completed INTEGER, rank VARCHAR, height_ft__m_ VARCHAR) |
###question:How many floors are in the 274 (84) ft (m) building that is ranked number 1?###answer:SELECT AVG(floors__stories_) FROM table_name_99 WHERE height_ft__m_ = "274 (84)" AND rank > 1###context:CREATE TABLE table_name_99 (floors__stories_ INTEGER, height_ft__m_ VARCHAR, rank VARCHAR) |
###question:Which is the highest ranked building with more than 15 floors?###answer:SELECT MAX(rank) FROM table_name_45 WHERE floors__stories_ > 15###context:CREATE TABLE table_name_45 (rank INTEGER, floors__stories_ INTEGER) |
###question:What is the highest points scored for the team with a position larger than 5, who had less than 4 wins and more than 8 draws?###answer:SELECT MAX(scored) FROM table_name_99 WHERE position > 5 AND wins < 4 AND draws > 8###context:CREATE TABLE table_name_99 (scored INTEGER, draws VARCHAR, position VARCHAR, wi... |
###question:What is the average number conceded for hte team that had less than 19 points, played more than 18 games and had a position less than 10?###answer:SELECT AVG(conceded) FROM table_name_65 WHERE points < 19 AND position < 10 AND played > 18###context:CREATE TABLE table_name_65 (conceded INTEGER, played VARCHA... |
###question:What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?###answer:SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38###context:CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR) |
###question:What was the lowest number of wins for the team that scored more than 14 points and had a position of 7?###answer:SELECT MIN(wins) FROM table_name_78 WHERE position = 7 AND scored > 14###context:CREATE TABLE table_name_78 (wins INTEGER, position VARCHAR, scored VARCHAR) |
###question:What is the total number scored for the team that had 19 points and a position larger than 4?###answer:SELECT COUNT(scored) FROM table_name_48 WHERE position > 4 AND points = 19###context:CREATE TABLE table_name_48 (scored VARCHAR, position VARCHAR, points VARCHAR) |
###question:What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points?###answer:SELECT MIN(conceded) FROM table_name_77 WHERE wins < 8 AND scored = 21 AND points < 23###context:CREATE TABLE table_name_77 (conceded INTEGER, points VARCHAR, wins VARCHAR, scored VARC... |
###question:Which Date has a Result of l 14–13?###answer:SELECT date FROM table_name_88 WHERE result = "l 14–13"###context:CREATE TABLE table_name_88 (date VARCHAR, result VARCHAR) |
###question:Which Date has a Result of w 13–6?###answer:SELECT date FROM table_name_84 WHERE result = "w 13–6"###context:CREATE TABLE table_name_84 (date VARCHAR, result VARCHAR) |
###question:What is the Result of Week larger than 3 on 1971-11-07?###answer:SELECT result FROM table_name_94 WHERE week > 3 AND date = "1971-11-07"###context:CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, date VARCHAR) |
###question:What is the pos with more than 1 tier during Pokal Slovenije 1. round?###answer:SELECT pos FROM table_name_20 WHERE tier > 1 AND cup_competitions = "pokal slovenije 1. round"###context:CREATE TABLE table_name_20 (pos VARCHAR, tier VARCHAR, cup_competitions VARCHAR) |
###question:What are the exact Cubic inches of the Metric value of 104.955 L?###answer:SELECT cubic_inches__exact_ FROM table_name_9 WHERE metric_value = "104.955 l"###context:CREATE TABLE table_name_9 (cubic_inches__exact_ VARCHAR, metric_value VARCHAR) |
###question:What is the Translation of the US Customary value 0.263 pt?###answer:SELECT translation FROM table_name_47 WHERE us_customary = "0.263 pt"###context:CREATE TABLE table_name_47 (translation VARCHAR, us_customary VARCHAR) |
###question:What is the Metric value of Russian че́тверть?###answer:SELECT metric_value FROM table_name_19 WHERE russian = "че́тверть"###context:CREATE TABLE table_name_19 (metric_value VARCHAR, russian VARCHAR) |
###question:What are the exact Cubic inches of the Unit of kruzhka?###answer:SELECT cubic_inches__exact_ FROM table_name_86 WHERE unit = "kruzhka"###context:CREATE TABLE table_name_86 (cubic_inches__exact_ VARCHAR, unit VARCHAR) |
###question:Which Zero Fighter has a count of 10?###answer:SELECT id_code_of_his_zero_fighter FROM table_name_1 WHERE count = "10"###context:CREATE TABLE table_name_1 (id_code_of_his_zero_fighter VARCHAR, count VARCHAR) |
###question:On which day were the subtotal hours 9:30?###answer:SELECT date FROM table_name_9 WHERE sub_total = "9:30"###context:CREATE TABLE table_name_9 (date VARCHAR, sub_total VARCHAR) |
###question:What is the count for the Zero Fighter with hours of 2:00?###answer:SELECT count FROM table_name_5 WHERE flight_hours = "2:00"###context:CREATE TABLE table_name_5 (count VARCHAR, flight_hours VARCHAR) |
###question:Which record has Katsuomi Inagaki as an opponent?###answer:SELECT record FROM table_name_51 WHERE opponent = "katsuomi inagaki"###context:CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR) |
###question:Which method has a 1:46 time?###answer:SELECT method FROM table_name_63 WHERE time = "1:46"###context:CREATE TABLE table_name_63 (method VARCHAR, time VARCHAR) |
###question:What is Henri Crockett's highest overall with more than 3 picks?###answer:SELECT MAX(overall) FROM table_name_65 WHERE pick__number > 3 AND name = "henri crockett"###context:CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, name VARCHAR) |
###question:Which college has fewer than 2 rounds?###answer:SELECT college FROM table_name_7 WHERE round < 2###context:CREATE TABLE table_name_7 (college VARCHAR, round INTEGER) |
###question:What are the total number of picks for a guard with fewer than 6 rounds?###answer:SELECT COUNT(pick__number) FROM table_name_66 WHERE position = "guard" AND round < 6###context:CREATE TABLE table_name_66 (pick__number VARCHAR, position VARCHAR, round VARCHAR) |
###question:What is the lowest overall for a quarterback with fewer than 7 rounds?###answer:SELECT MIN(overall) FROM table_name_88 WHERE position = "quarterback" AND round < 7###context:CREATE TABLE table_name_88 (overall INTEGER, position VARCHAR, round VARCHAR) |
###question:What Playoffs had an Open Cup of 3rd round?###answer:SELECT playoffs FROM table_name_83 WHERE open_cup = "3rd round"###context:CREATE TABLE table_name_83 (playoffs VARCHAR, open_cup VARCHAR) |
###question:What was the D segment for episode 60?###answer:SELECT segment_d FROM table_name_25 WHERE episode = 60###context:CREATE TABLE table_name_25 (segment_d VARCHAR, episode VARCHAR) |
###question:What was the B segmint for Netlix S03E01?###answer:SELECT segment_b FROM table_name_54 WHERE netflix = "s03e01"###context:CREATE TABLE table_name_54 (segment_b VARCHAR, netflix VARCHAR) |
###question:What was the D segment for episode 60?###answer:SELECT segment_d FROM table_name_51 WHERE episode = 60###context:CREATE TABLE table_name_51 (segment_d VARCHAR, episode VARCHAR) |
###question:What racing club team made supercopa 1996?###answer:SELECT supercopa_1996 FROM table_name_14 WHERE team = "racing club"###context:CREATE TABLE table_name_14 (supercopa_1996 VARCHAR, team VARCHAR) |
###question:Name the # country for new palestine###answer:SELECT _number___county FROM table_name_54 WHERE school = "new palestine"###context:CREATE TABLE table_name_54 (_number___county VARCHAR, school VARCHAR) |
###question:Name the number of enrollment for county of 48 madison###answer:SELECT COUNT(enrollment) FROM table_name_47 WHERE _number___county = "48 madison"###context:CREATE TABLE table_name_47 (enrollment VARCHAR, _number___county VARCHAR) |
###question:Name the IHSAA class with county 18 delaware and tigers mascot###answer:SELECT ihsaa_class FROM table_name_82 WHERE _number___county = "18 delaware" AND mascot = "tigers"###context:CREATE TABLE table_name_82 (ihsaa_class VARCHAR, _number___county VARCHAR, mascot VARCHAR) |
###question:Name the mascot for shelbyville###answer:SELECT mascot FROM table_name_33 WHERE school = "shelbyville"###context:CREATE TABLE table_name_33 (mascot VARCHAR, school VARCHAR) |
###question:What's the capacity that has the highest greater than 1,763 and is at Hampden Park?###answer:SELECT MIN(capacity) FROM table_name_37 WHERE stadium = "hampden park" AND highest > 1 OFFSET 763###context:CREATE TABLE table_name_37 (capacity INTEGER, stadium VARCHAR, highest VARCHAR) |
###question:What's the highest with a capacity of greater than 4,000 and an average of 615?###answer:SELECT MAX(highest) FROM table_name_20 WHERE average = 615 AND capacity > 4 OFFSET 000###context:CREATE TABLE table_name_20 (highest INTEGER, average VARCHAR, capacity VARCHAR) |
###question:At Balmoor Stadium, what's the total average having a greater than 400 lowest?###answer:SELECT COUNT(average) FROM table_name_77 WHERE stadium = "balmoor" AND lowest > 400###context:CREATE TABLE table_name_77 (average VARCHAR, stadium VARCHAR, lowest VARCHAR) |
###question:What was the score of Tommy Aaron (2) when the tournament was in georgia?###answer:SELECT score FROM table_name_38 WHERE location = "georgia" AND winner = "tommy aaron (2)"###context:CREATE TABLE table_name_38 (score VARCHAR, location VARCHAR, winner VARCHAR) |
###question:What was the score of Ken Still (3) when he won first place?###answer:SELECT score FROM table_name_14 WHERE winner = "ken still (3)"###context:CREATE TABLE table_name_14 (score VARCHAR, winner VARCHAR) |
###question:Who beat Chic by 8fm?###answer:SELECT beat_by FROM table_name_9 WHERE distance = "8fm"###context:CREATE TABLE table_name_9 (beat_by VARCHAR, distance VARCHAR) |
###question:What was the placing of the race in which Chic won by 8gf?###answer:SELECT placing FROM table_name_58 WHERE beat_by = "won" AND distance = "8gf"###context:CREATE TABLE table_name_58 (placing VARCHAR, beat_by VARCHAR, distance VARCHAR) |
###question:What was the date in which Chic won at CHS?###answer:SELECT date FROM table_name_50 WHERE beat_by = "won" AND location = "chs"###context:CREATE TABLE table_name_50 (date VARCHAR, beat_by VARCHAR, location VARCHAR) |
###question:Who is the opponent of game 54, which was in Los Angeles and was before day 18?###answer:SELECT opponent FROM table_name_26 WHERE location_attendance = "los angeles" AND date < 18 AND game = 54###context:CREATE TABLE table_name_26 (opponent VARCHAR, game VARCHAR, location_attendance VARCHAR, date VARCHAR) |
###question:What is the earliest date of the game with a score of 2-2?###answer:SELECT MIN(date) FROM table_name_14 WHERE score = "2-2"###context:CREATE TABLE table_name_14 (date INTEGER, score VARCHAR) |
###question:What is the average date of the game with the Detroit Red Wings as the opponent?###answer:SELECT AVG(date) FROM table_name_19 WHERE opponent = "detroit red wings"###context:CREATE TABLE table_name_19 (date INTEGER, opponent VARCHAR) |
###question:What is the date of the game with a score of 4-2?###answer:SELECT date FROM table_name_51 WHERE score = "4-2"###context:CREATE TABLE table_name_51 (date VARCHAR, score VARCHAR) |
###question:What was the loss of the game that had a record of 3-3?###answer:SELECT loss FROM table_name_41 WHERE record = "3-3"###context:CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR) |
###question:What was the score of the game with a loss of Mercedes (0-1)?###answer:SELECT score FROM table_name_47 WHERE loss = "mercedes (0-1)"###context:CREATE TABLE table_name_47 (score VARCHAR, loss VARCHAR) |
###question:Who was the opponent at the game with a loss of Weaver (1-2)?###answer:SELECT opponent FROM table_name_71 WHERE loss = "weaver (1-2)"###context:CREATE TABLE table_name_71 (opponent VARCHAR, loss VARCHAR) |
###question:What's the Remixed by with a Version of Strings for Soul's Mix?###answer:SELECT remixed_by FROM table_name_47 WHERE version = "strings for soul's mix"###context:CREATE TABLE table_name_47 (remixed_by VARCHAR, version VARCHAR) |
###question:What the highest Year with a Remixed by Laurent Boutonnat?###answer:SELECT MAX(year) FROM table_name_38 WHERE remixed_by = "laurent boutonnat"###context:CREATE TABLE table_name_38 (year INTEGER, remixed_by VARCHAR) |
###question:What's the total Year with a Length of 4:45 an has an Album of Les Mots?###answer:SELECT SUM(year) FROM table_name_36 WHERE length = "4:45" AND album = "les mots"###context:CREATE TABLE table_name_36 (year INTEGER, length VARCHAR, album VARCHAR) |
###question:What's the Length with the Version of Album Version?###answer:SELECT length FROM table_name_60 WHERE version = "album version"###context:CREATE TABLE table_name_60 (length VARCHAR, version VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.