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