combined_text stringlengths 106 1.05k |
|---|
###question:The 20th Century Fox film directed by Joel Schumacher grossed how much?###answer:SELECT gross FROM table_name_74 WHERE studio = "20th century fox" AND director_s_ = "joel schumacher"###context:CREATE TABLE table_name_74 (gross VARCHAR, studio VARCHAR, director_s_ VARCHAR) |
###question:Which studio grossed $83,531,958 and ranked lower than 13?###answer:SELECT studio FROM table_name_34 WHERE rank > 13 AND gross = "$83,531,958"###context:CREATE TABLE table_name_34 (studio VARCHAR, rank VARCHAR, gross VARCHAR) |
###question:WHAT YEAR WAS AT GIANTS STADIUM, WITH WINNER OF NEW YORK GIANTS?###answer:SELECT MIN(year) FROM table_name_54 WHERE location = "giants stadium" AND winner = "new york giants"###context:CREATE TABLE table_name_54 (year INTEGER, location VARCHAR, winner VARCHAR) |
###question:What is Qual 2, when Best is 1:27.642?###answer:SELECT qual_2 FROM table_name_27 WHERE best = "1:27.642"###context:CREATE TABLE table_name_27 (qual_2 VARCHAR, best VARCHAR) |
###question:What is Name, when Team is "Herdez Competition", and when Best is 1:27.432?###answer:SELECT name FROM table_name_88 WHERE team = "herdez competition" AND best = "1:27.432"###context:CREATE TABLE table_name_88 (name VARCHAR, team VARCHAR, best VARCHAR) |
###question:What is Qual 1, when Qual 2 is 1:27.537?###answer:SELECT qual_1 FROM table_name_80 WHERE qual_2 = "1:27.537"###context:CREATE TABLE table_name_80 (qual_1 VARCHAR, qual_2 VARCHAR) |
###question:What is Best, when Team is "Rocketsports Racing", and when Name is "Alex Tagliani"?###answer:SELECT best FROM table_name_99 WHERE team = "rocketsports racing" AND name = "alex tagliani"###context:CREATE TABLE table_name_99 (best VARCHAR, team VARCHAR, name VARCHAR) |
###question:What is Qual 2, when Best is 1:27.976?###answer:SELECT qual_2 FROM table_name_10 WHERE best = "1:27.976"###context:CREATE TABLE table_name_10 (qual_2 VARCHAR, best VARCHAR) |
###question:What is Best, when Name is Jimmy Vasser?###answer:SELECT best FROM table_name_17 WHERE name = "jimmy vasser"###context:CREATE TABLE table_name_17 (best VARCHAR, name VARCHAR) |
###question:What is the highest game whose score was 94-116###answer:SELECT MAX(game) FROM table_name_62 WHERE score = "94-116"###context:CREATE TABLE table_name_62 (game INTEGER, score VARCHAR) |
###question:Where was the game that was larger than 30 and scored 106-111###answer:SELECT location FROM table_name_94 WHERE game > 30 AND score = "106-111"###context:CREATE TABLE table_name_94 (location VARCHAR, game VARCHAR, score VARCHAR) |
###question:Which Venue has a Round of gs, and a Result of 0β3?###answer:SELECT venue FROM table_name_2 WHERE round = "gs" AND result = "0β3"###context:CREATE TABLE table_name_2 (venue VARCHAR, round VARCHAR, result VARCHAR) |
###question:What was the result on 27 august 2003?###answer:SELECT result FROM table_name_81 WHERE date = "27 august 2003"###context:CREATE TABLE table_name_81 (result VARCHAR, date VARCHAR) |
###question:Which Result has a Venue of A, and an Opponent of manchester united?###answer:SELECT result FROM table_name_96 WHERE venue = "a" AND opponent = "manchester united"###context:CREATE TABLE table_name_96 (result VARCHAR, venue VARCHAR, opponent VARCHAR) |
###question:What score has jim courier as the opponent in the final?###answer:SELECT score FROM table_name_86 WHERE opponent_in_the_final = "jim courier"###context:CREATE TABLE table_name_86 (score VARCHAR, opponent_in_the_final VARCHAR) |
###question:What is the label for the CD format in North America?###answer:SELECT label FROM table_name_91 WHERE format = "cd" AND region = "north america"###context:CREATE TABLE table_name_91 (label VARCHAR, format VARCHAR, region VARCHAR) |
###question:What is the date for Bron 535 Catalog?###answer:SELECT date FROM table_name_89 WHERE catalogue = "bron 535"###context:CREATE TABLE table_name_89 (date VARCHAR, catalogue VARCHAR) |
###question:What region is the Gold Vinyl format from?###answer:SELECT region FROM table_name_30 WHERE format = "gold vinyl"###context:CREATE TABLE table_name_30 (region VARCHAR, format VARCHAR) |
###question:What is the label for the UK in 1996?###answer:SELECT label FROM table_name_34 WHERE region = "uk" AND date = "1996"###context:CREATE TABLE table_name_34 (label VARCHAR, region VARCHAR, date VARCHAR) |
###question:What is the catalog with a bronze label and in Vinyl format?###answer:SELECT catalogue FROM table_name_7 WHERE label = "bronze" AND format = "vinyl"###context:CREATE TABLE table_name_7 (catalogue VARCHAR, label VARCHAR, format VARCHAR) |
###question:What date was the bronze label in vinyl format?###answer:SELECT date FROM table_name_52 WHERE label = "bronze" AND format = "vinyl"###context:CREATE TABLE table_name_52 (date VARCHAR, label VARCHAR, format VARCHAR) |
###question:What record has montreal, qc as the location, with boston bruins as the visitor?###answer:SELECT record FROM table_name_14 WHERE location = "montreal, qc" AND visitor = "boston bruins"###context:CREATE TABLE table_name_14 (record VARCHAR, location VARCHAR, visitor VARCHAR) |
###question:What was the highest Pick for Lonnie Brockman before round 9?###answer:SELECT MAX(pick) FROM table_name_30 WHERE player = "lonnie brockman" AND round < 9###context:CREATE TABLE table_name_30 (pick INTEGER, player VARCHAR, round VARCHAR) |
###question:How many picks did Central State have before round 2?###answer:SELECT COUNT(pick) FROM table_name_29 WHERE school = "central state" AND round < 2###context:CREATE TABLE table_name_29 (pick VARCHAR, school VARCHAR, round VARCHAR) |
###question:What was the highest round for Bowling Green with a pick smaller than 210?###answer:SELECT MAX(round) FROM table_name_69 WHERE school = "bowling green" AND pick < 210###context:CREATE TABLE table_name_69 (round INTEGER, school VARCHAR, pick VARCHAR) |
###question:What was the average tonnage for the Siljan ship from Sweden?###answer:SELECT AVG(tonnage) FROM table_name_97 WHERE nationality = "sweden" AND name_of_ship = "siljan"###context:CREATE TABLE table_name_97 (tonnage INTEGER, nationality VARCHAR, name_of_ship VARCHAR) |
###question:What was the average tonnage for Beatus, raided on 18 October 1940?###answer:SELECT AVG(tonnage) FROM table_name_87 WHERE date = "18 october 1940" AND name_of_ship = "beatus"###context:CREATE TABLE table_name_87 (tonnage INTEGER, date VARCHAR, name_of_ship VARCHAR) |
###question:Which ship had a tonnage over 8,782?###answer:SELECT name_of_ship FROM table_name_8 WHERE tonnage > 8 OFFSET 782###context:CREATE TABLE table_name_8 (name_of_ship VARCHAR, tonnage INTEGER) |
###question:Which ship was raided on 26 September 1940?###answer:SELECT name_of_ship FROM table_name_52 WHERE date = "26 september 1940"###context:CREATE TABLE table_name_52 (name_of_ship VARCHAR, date VARCHAR) |
###question:What is Score, when Game is greater than 49, and when Opponent is "Pittsburgh Ironmen"?###answer:SELECT score FROM table_name_10 WHERE game > 49 AND opponent = "pittsburgh ironmen"###context:CREATE TABLE table_name_10 (score VARCHAR, game VARCHAR, opponent VARCHAR) |
###question:What is Date, when Opponent is "Chicago Stags"?###answer:SELECT date FROM table_name_39 WHERE opponent = "chicago stags"###context:CREATE TABLE table_name_39 (date VARCHAR, opponent VARCHAR) |
###question:What is Record, when Date is "March 1"?###answer:SELECT record FROM table_name_89 WHERE date = "march 1"###context:CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR) |
###question:What is Record, when Game is greater than 55, and when Date is "March 25"?###answer:SELECT record FROM table_name_80 WHERE game > 55 AND date = "march 25"###context:CREATE TABLE table_name_80 (record VARCHAR, game VARCHAR, date VARCHAR) |
###question:What is the Home team when the Attendance was 1920?###answer:SELECT home FROM table_name_20 WHERE attendance = 1920###context:CREATE TABLE table_name_20 (home VARCHAR, attendance VARCHAR) |
###question:What is the Home team when Motagua is the Away team?###answer:SELECT home FROM table_name_68 WHERE away = "motagua"###context:CREATE TABLE table_name_68 (home VARCHAR, away VARCHAR) |
###question:What is the Score when Deportes Savio is the Home team?###answer:SELECT score FROM table_name_99 WHERE home = "deportes savio"###context:CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR) |
###question:On what Date is Olimpia the Home team?###answer:SELECT date FROM table_name_49 WHERE home = "olimpia"###context:CREATE TABLE table_name_49 (date VARCHAR, home VARCHAR) |
###question:What is the Attendance when Vida is the Away team?###answer:SELECT AVG(attendance) FROM table_name_25 WHERE away = "vida"###context:CREATE TABLE table_name_25 (attendance INTEGER, away VARCHAR) |
###question:What is the lowest number of FA Cup goals for players with 12 League goals and 14 total goals?###answer:SELECT MIN(fa_cup_goals) FROM table_name_46 WHERE league_goals = "12" AND total = 14###context:CREATE TABLE table_name_46 (fa_cup_goals INTEGER, league_goals VARCHAR, total VARCHAR) |
###question:How many FA Cup goals does George Yardley have?###answer:SELECT fa_cup_goals FROM table_name_59 WHERE scorer = "george yardley"###context:CREATE TABLE table_name_59 (fa_cup_goals VARCHAR, scorer VARCHAR) |
###question:Which Home is on january 11?###answer:SELECT home FROM table_name_82 WHERE date = "january 11"###context:CREATE TABLE table_name_82 (home VARCHAR, date VARCHAR) |
###question:which Record has a Home of ottawa senators on Date of december 21?###answer:SELECT record FROM table_name_82 WHERE home = "ottawa senators" AND date = "december 21"###context:CREATE TABLE table_name_82 (record VARCHAR, home VARCHAR, date VARCHAR) |
###question:Which Score has a Visitor of toronto st. pats, and a Home of montreal canadiens, and a Record of 3β2β0?###answer:SELECT score FROM table_name_83 WHERE visitor = "toronto st. pats" AND home = "montreal canadiens" AND record = "3β2β0"###context:CREATE TABLE table_name_83 (score VARCHAR, record VARCHAR, visito... |
###question:which Home has a Visitor of ottawa senators and a Score of 2β3?###answer:SELECT home FROM table_name_61 WHERE visitor = "ottawa senators" AND score = "2β3"###context:CREATE TABLE table_name_61 (home VARCHAR, visitor VARCHAR, score VARCHAR) |
###question:Name the Record of Visitor of toronto st. pats with a Score of 5β4 and a Home of ottawa senators? Question 5###answer:SELECT record FROM table_name_48 WHERE visitor = "toronto st. pats" AND score = "5β4" AND home = "ottawa senators"###context:CREATE TABLE table_name_48 (record VARCHAR, home VARCHAR, visitor... |
###question:Name the Home with has a Score of 2β7?###answer:SELECT home FROM table_name_40 WHERE score = "2β7"###context:CREATE TABLE table_name_40 (home VARCHAR, score VARCHAR) |
###question:What is Career with the franchise [b ], when Player is "Willie Anderson Category:Articles with hCards"?###answer:SELECT career_with_the_franchise_[b_] FROM table_name_59 WHERE player = "willie anderson category:articles with hcards"###context:CREATE TABLE table_name_59 (career_with_the_franchise_ VARCHAR, b... |
###question:What is Nationality, when NBA years [a ] is "1", and when Previous Team is "Seattle Supersonics"?###answer:SELECT nationality FROM table_name_79 WHERE nba_years_[a_] = "1" AND previous_team = "seattle supersonics"###context:CREATE TABLE table_name_79 (nationality VARCHAR, previous_team VARCHAR, nba_years_ V... |
###question:What is Player, when Pick is greater than 24, and when NBA years [a ] is "9"?###answer:SELECT player FROM table_name_2 WHERE pick > 24 AND nba_years_[a_] = "9"###context:CREATE TABLE table_name_2 (player VARCHAR, pick VARCHAR, nba_years_ VARCHAR, a_ VARCHAR) |
###question:What is Career with the franchise [b ], when Previous Team is "New Jersey Nets"?###answer:SELECT career_with_the_franchise_[b_] FROM table_name_68 WHERE previous_team = "new jersey nets"###context:CREATE TABLE table_name_68 (career_with_the_franchise_ VARCHAR, b_ VARCHAR, previous_team VARCHAR) |
###question:How many years did Real Colorado Foxes make it to the Open Cup 1st Round?###answer:SELECT COUNT(year) FROM table_name_9 WHERE open_cup = "1st round"###context:CREATE TABLE table_name_9 (year VARCHAR, open_cup VARCHAR) |
###question:When is the latest year that Real Colorado Foxes did not qualify for the playoffs but make it to Open Cup 2nd Round?###answer:SELECT MAX(year) FROM table_name_95 WHERE playoffs = "did not qualify" AND open_cup = "2nd round"###context:CREATE TABLE table_name_95 (year INTEGER, playoffs VARCHAR, open_cup VARCH... |
###question:In 2012, which round in the Open Cup did Real Colorado Foxes make it to the conference semifinal?###answer:SELECT open_cup FROM table_name_61 WHERE playoffs = "conference semifinal" AND year = 2012###context:CREATE TABLE table_name_61 (open_cup VARCHAR, playoffs VARCHAR, year VARCHAR) |
###question:Where did Day & Age rank in the Rolling Stone in 2008?###answer:SELECT SUM(rank) FROM table_name_60 WHERE publication = "rolling stone" AND year = 2008###context:CREATE TABLE table_name_60 (rank INTEGER, publication VARCHAR, year VARCHAR) |
###question:What country did Day & Age rank number 1 in Q prior to 2011?###answer:SELECT country FROM table_name_52 WHERE year < 2011 AND rank > 1 AND publication = "q"###context:CREATE TABLE table_name_52 (country VARCHAR, publication VARCHAR, year VARCHAR, rank VARCHAR) |
###question:Which Title is from 1952?###answer:SELECT title FROM table_name_6 WHERE year = 1952###context:CREATE TABLE table_name_6 (title VARCHAR, year VARCHAR) |
###question:Can you tell me the highest Lost that has the Pool/Round of pool 2, and the Played smaller than 6?###answer:SELECT MAX(lost) FROM table_name_43 WHERE pool_round = "pool 2" AND played < 6###context:CREATE TABLE table_name_43 (lost INTEGER, pool_round VARCHAR, played VARCHAR) |
###question:Which network had unknown games and a title of hvem kan slΓ₯ ylvis hvem kan slΓ₯ aamodt & kjus?###answer:SELECT network FROM table_name_4 WHERE games = "unknown" AND title = "hvem kan slΓ₯ ylvis hvem kan slΓ₯ aamodt & kjus"###context:CREATE TABLE table_name_4 (network VARCHAR, games VARCHAR, title VARCHAR) |
###question:What was the date of the show titled Beat the Star?###answer:SELECT date_aired FROM table_name_54 WHERE title = "beat the star"###context:CREATE TABLE table_name_54 (date_aired VARCHAR, title VARCHAR) |
###question:Which date was the show aired on the RTL Televizija network?###answer:SELECT date_aired FROM table_name_90 WHERE network = "rtl televizija"###context:CREATE TABLE table_name_90 (date_aired VARCHAR, network VARCHAR) |
###question:Which date was the show aired on the RTL Televizija network?###answer:SELECT date_aired FROM table_name_35 WHERE network = "rtl televizija"###context:CREATE TABLE table_name_35 (date_aired VARCHAR, network VARCHAR) |
###question:Which network aired the program Schlag den Raab?###answer:SELECT network FROM table_name_70 WHERE title = "schlag den raab"###context:CREATE TABLE table_name_70 (network VARCHAR, title VARCHAR) |
###question:WHAT IS THE LOWEST DIAMETER FOR A LATITIDE OF 52.0S?###answer:SELECT MIN(diameter__km_) FROM table_name_78 WHERE latitude = "52.0s"###context:CREATE TABLE table_name_78 (diameter__km_ INTEGER, latitude VARCHAR) |
###question:What is the position elected in 2011 from the Country of Algeria?###answer:SELECT position FROM table_name_78 WHERE elected = 2011 AND country_of_origin = "algeria"###context:CREATE TABLE table_name_78 (position VARCHAR, elected VARCHAR, country_of_origin VARCHAR) |
###question:What is the lowest term from the 2007 election with the position of chairperson?###answer:SELECT MIN(term) FROM table_name_94 WHERE elected = 2007 AND position = "chairperson"###context:CREATE TABLE table_name_94 (term INTEGER, elected VARCHAR, position VARCHAR) |
###question:Which Telebooms have a Brigade of total?###answer:SELECT telebooms FROM table_name_78 WHERE brigade = "total"###context:CREATE TABLE table_name_78 (telebooms VARCHAR, brigade VARCHAR) |
###question:Which Platforms have a Hazmat of β, and a Type of urban & rural, and a Brigade of lara?###answer:SELECT platforms FROM table_name_38 WHERE hazmat = "β" AND type = "urban & rural" AND brigade = "lara"###context:CREATE TABLE table_name_38 (platforms VARCHAR, brigade VARCHAR, hazmat VARCHAR, type VARCHAR) |
###question:Which Tankers have a Hazmat of β, and Platforms of β, and a Staffing of volunteer?###answer:SELECT tankers FROM table_name_9 WHERE hazmat = "β" AND platforms = "β" AND staffing = "volunteer"###context:CREATE TABLE table_name_9 (tankers VARCHAR, staffing VARCHAR, hazmat VARCHAR, platforms VARCHAR) |
###question:How many Pumpers have Cars of 1, and a Staffing of volunteer, and a Brigade of grovedale, and Tankers smaller than 1?###answer:SELECT COUNT(pumpers) FROM table_name_32 WHERE cars = "1" AND staffing = "volunteer" AND brigade = "grovedale" AND tankers < 1###context:CREATE TABLE table_name_32 (pumpers VARCHAR,... |
###question:What is the average Year that has a Quantity of 10, and a GWR Numbers of 409, 290, 315, 317β321, 324, 333?###answer:SELECT AVG(year) FROM table_name_49 WHERE quantity = 10 AND gwr_numbers = "409, 290, 315, 317β321, 324, 333"###context:CREATE TABLE table_name_49 (year INTEGER, quantity VARCHAR, gwr_numbers V... |
###question:What was the score of the player who earned $5,000?###answer:SELECT score FROM table_name_9 WHERE money__$_ = "5,000"###context:CREATE TABLE table_name_9 (score VARCHAR, money__$_ VARCHAR) |
###question:What place did Phil Rodgers finish?###answer:SELECT place FROM table_name_61 WHERE player = "phil rodgers"###context:CREATE TABLE table_name_61 (place VARCHAR, player VARCHAR) |
###question:What country is the player who earned $9,000 from?###answer:SELECT country FROM table_name_62 WHERE money__$_ = "9,000"###context:CREATE TABLE table_name_62 (country VARCHAR, money__$_ VARCHAR) |
###question:What round did the MWEHL team, Detroit Honeybaked, and the NHL Team Columbus Blue Jackets play?###answer:SELECT round FROM table_name_9 WHERE mwehl_team = "detroit honeybaked" AND nhl_team = "columbus blue jackets"###context:CREATE TABLE table_name_9 (round VARCHAR, mwehl_team VARCHAR, nhl_team VARCHAR) |
###question:Who was the player in Round 7, on the MWEHL Team Detroit Honeybaked, and the NHL Team, Philadelphia Flyers teams?###answer:SELECT player FROM table_name_32 WHERE round = "7" AND mwehl_team = "detroit honeybaked" AND nhl_team = "philadelphia flyers"###context:CREATE TABLE table_name_32 (player VARCHAR, nhl_t... |
###question:What is the NHL team for Round 5 and an overall ranking of #154?###answer:SELECT nhl_team FROM table_name_7 WHERE round = "5" AND overall = "#154"###context:CREATE TABLE table_name_7 (nhl_team VARCHAR, round VARCHAR, overall VARCHAR) |
###question:What is the MWEHL Team on Round 2, with player Nicolas Kerdiles?###answer:SELECT mwehl_team FROM table_name_49 WHERE round = "2" AND player = "nicolas kerdiles"###context:CREATE TABLE table_name_49 (mwehl_team VARCHAR, round VARCHAR, player VARCHAR) |
###question:Who is the player on round 7 with an overall ranking of #195?###answer:SELECT player FROM table_name_86 WHERE round = "7" AND overall = "#195"###context:CREATE TABLE table_name_86 (player VARCHAR, round VARCHAR, overall VARCHAR) |
###question:Which MWEHL team has player Ben Johnson?###answer:SELECT mwehl_team FROM table_name_29 WHERE player = "ben johnson"###context:CREATE TABLE table_name_29 (mwehl_team VARCHAR, player VARCHAR) |
###question:How many people attended the game on week 3?###answer:SELECT AVG(attendance) FROM table_name_26 WHERE week = 3###context:CREATE TABLE table_name_26 (attendance INTEGER, week VARCHAR) |
###question:What is the Report for the School for Ages of 2-17?###answer:SELECT report FROM table_name_10 WHERE ages = "2-17"###context:CREATE TABLE table_name_10 (report VARCHAR, ages VARCHAR) |
###question:What are the Ages of the Seashell Trust School with Ofsted Report?###answer:SELECT ages FROM table_name_50 WHERE report = "ofsted" AND school = "seashell trust"###context:CREATE TABLE table_name_50 (ages VARCHAR, report VARCHAR, school VARCHAR) |
###question:What is the Website of the Cheadle School for Ages 8-16?###answer:SELECT website FROM table_name_53 WHERE ages = "8-16" AND locality = "cheadle"###context:CREATE TABLE table_name_53 (website VARCHAR, ages VARCHAR, locality VARCHAR) |
###question:What is the Website of the Cheadle Hulme School with a Report of Ofsted for Ages 4-19?###answer:SELECT website FROM table_name_69 WHERE report = "ofsted" AND ages = "4-19" AND locality = "cheadle hulme"###context:CREATE TABLE table_name_69 (website VARCHAR, locality VARCHAR, report VARCHAR, ages VARCHAR) |
###question:What is the Locality of the Penarth Group School for Ages 8-16?###answer:SELECT locality FROM table_name_90 WHERE ages = "8-16" AND school = "penarth group school"###context:CREATE TABLE table_name_90 (locality VARCHAR, ages VARCHAR, school VARCHAR) |
###question:WHAT IS THE SCORE OF MARCH 28?###answer:SELECT score FROM table_name_85 WHERE date = "march 28"###context:CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR) |
###question:WHAT IS THE SCORE WITH VISITORS CHICAGO BLACK HAWKS ON MARCH 24?###answer:SELECT score FROM table_name_20 WHERE visitor = "chicago black hawks" AND date = "march 24"###context:CREATE TABLE table_name_20 (score VARCHAR, visitor VARCHAR, date VARCHAR) |
###question:What is the Date for the Home team West Ham United###answer:SELECT date FROM table_name_70 WHERE home_team = "west ham united"###context:CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR) |
###question:what is the score that has tie number 27###answer:SELECT score FROM table_name_60 WHERE tie_no = "27"###context:CREATE TABLE table_name_60 (score VARCHAR, tie_no VARCHAR) |
###question:what is the tie number that has Portsmouth Home team###answer:SELECT tie_no FROM table_name_52 WHERE home_team = "portsmouth"###context:CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR) |
###question:What is the score of the United States, which has a to par of +5?###answer:SELECT score FROM table_name_84 WHERE country = "united states" AND to_par = "+5"###context:CREATE TABLE table_name_84 (score VARCHAR, country VARCHAR, to_par VARCHAR) |
###question:For a record of 3-2, what team was home?###answer:SELECT home FROM table_name_31 WHERE record = "3-2"###context:CREATE TABLE table_name_31 (home VARCHAR, record VARCHAR) |
###question:What was the home team when the visiting team was Chicago Black Hawks, a game with a record of 0-2?###answer:SELECT home FROM table_name_94 WHERE visitor = "chicago black hawks" AND record = "0-2"###context:CREATE TABLE table_name_94 (home VARCHAR, visitor VARCHAR, record VARCHAR) |
###question:Can you tell me total number of Silver that has the Republic of latvian ssr, and the Total larger than 6?###answer:SELECT COUNT(silver) FROM table_name_12 WHERE republic = "latvian ssr" AND total > 6###context:CREATE TABLE table_name_12 (silver VARCHAR, republic VARCHAR, total VARCHAR) |
###question:What is the transfer window for the player whose status was loan ended?###answer:SELECT transfer_window FROM table_name_55 WHERE status = "loan ended"###context:CREATE TABLE table_name_55 (transfer_window VARCHAR, status VARCHAR) |
###question:Who was the player with a transfer window of summer and was moving to Kortrijk?###answer:SELECT name FROM table_name_36 WHERE transfer_window = "summer" AND moving_to = "kortrijk"###context:CREATE TABLE table_name_36 (name VARCHAR, transfer_window VARCHAR, moving_to VARCHAR) |
###question:What is the status of the player who is moving to Nantes?###answer:SELECT status FROM table_name_72 WHERE moving_to = "nantes"###context:CREATE TABLE table_name_72 (status VARCHAR, moving_to VARCHAR) |
###question:Which Type has a Capacity of 28 passengers, and a Number of 16?###answer:SELECT type FROM table_name_67 WHERE capacity = "28 passengers" AND number = "16"###context:CREATE TABLE table_name_67 (type VARCHAR, capacity VARCHAR, number VARCHAR) |
###question:Which Builder has a Date smaller than 1913, and a Length of feet (m), and a Number of 15?###answer:SELECT builder FROM table_name_15 WHERE date < 1913 AND length = "feet (m)" AND number = "15"###context:CREATE TABLE table_name_15 (builder VARCHAR, number VARCHAR, date VARCHAR, length VARCHAR) |
###question:Which Date has a Length of feet 9inches (m), and a Builder of portland terminal company?###answer:SELECT AVG(date) FROM table_name_3 WHERE length = "feet 9inches (m)" AND builder = "portland terminal company"###context:CREATE TABLE table_name_3 (date INTEGER, length VARCHAR, builder VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.