combined_text
stringlengths
106
1.05k
###question:Tell me the leading scorer for grizzlies###answer:SELECT leading_scorer FROM table_name_59 WHERE visitor = "grizzlies"###context:CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR)
###question:Name the record with home of bucks on 24 november 2007###answer:SELECT record FROM table_name_76 WHERE home = "bucks" AND date = "24 november 2007"###context:CREATE TABLE table_name_76 (record VARCHAR, home VARCHAR, date VARCHAR)
###question:Name the record for bobcats###answer:SELECT record FROM table_name_65 WHERE home = "bobcats"###context:CREATE TABLE table_name_65 (record VARCHAR, home VARCHAR)
###question:In the venue of Glenferrie Oval, what is the home team score?###answer:SELECT home_team AS score FROM table_name_38 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_38 (home_team VARCHAR, venue VARCHAR)
###question:What is the date of the game in a week earlier than 10 played in Texas stadium agains the Atlanta Falcons?###answer:SELECT date FROM table_name_92 WHERE week < 10 AND game_site = "texas stadium" AND opponent = "atlanta falcons"###context:CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, week VARCH...
###question:What is the nationality of the player from Round 2, Pick 19 from College of Kansas State?###answer:SELECT nationality FROM table_name_42 WHERE round = "2" AND college = "kansas state" AND pick = "19"###context:CREATE TABLE table_name_42 (nationality VARCHAR, pick VARCHAR, round VARCHAR, college VARCHAR)
###question:What is the nationality of the player in Position C from Round 1?###answer:SELECT nationality FROM table_name_17 WHERE round = "1" AND position = "c"###context:CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR, position VARCHAR)
###question:Which team has Pick 13 in Round 2?###answer:SELECT team FROM table_name_88 WHERE round = "2" AND pick = "13"###context:CREATE TABLE table_name_88 (team VARCHAR, round VARCHAR, pick VARCHAR)
###question:Who is the Pick 7 player?###answer:SELECT player FROM table_name_59 WHERE pick = "7"###context:CREATE TABLE table_name_59 (player VARCHAR, pick VARCHAR)
###question:Who were the opponents in the final in which the score was 6–1, 1–6, 4–6?###answer:SELECT opponents_in_the_final FROM table_name_54 WHERE score_in_the_final = "6–1, 1–6, 4–6"###context:CREATE TABLE table_name_54 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)
###question:Tell me the launch date with Institutional authority of ndc and launch vehicle of hatf-xi###answer:SELECT launch_date FROM table_name_58 WHERE institutional_authority = "ndc" AND launch_vehicle = "hatf-xi"###context:CREATE TABLE table_name_58 (launch_date VARCHAR, institutional_authority VARCHAR, launch_veh...
###question:Name the launch vehicle with Institutional authority of ndc###answer:SELECT launch_vehicle FROM table_name_59 WHERE institutional_authority = "ndc"###context:CREATE TABLE table_name_59 (launch_vehicle VARCHAR, institutional_authority VARCHAR)
###question:Name the institutional authority for launch date of october 12, 2004###answer:SELECT institutional_authority FROM table_name_47 WHERE launch_date = "october 12, 2004"###context:CREATE TABLE table_name_47 (institutional_authority VARCHAR, launch_date VARCHAR)
###question:Name the results for institutional authority of paf###answer:SELECT results FROM table_name_73 WHERE institutional_authority = "paf"###context:CREATE TABLE table_name_73 (results VARCHAR, institutional_authority VARCHAR)
###question:How many laps did Yannick Dalmas do?###answer:SELECT laps FROM table_name_59 WHERE driver = "yannick dalmas"###context:CREATE TABLE table_name_59 (laps VARCHAR, driver VARCHAR)
###question:How many Laps does Eddie Cheever have?###answer:SELECT laps FROM table_name_39 WHERE driver = "eddie cheever"###context:CREATE TABLE table_name_39 (laps VARCHAR, driver VARCHAR)
###question:What is the name of the Constructor with a 19 Grid?###answer:SELECT constructor FROM table_name_98 WHERE grid = 19###context:CREATE TABLE table_name_98 (constructor VARCHAR, grid VARCHAR)
###question:Name the total number of NGC number for sagittarius and diffuse nebula with declination of Β°02β€²###answer:SELECT COUNT(ngc_number) FROM table_name_86 WHERE constellation = "sagittarius" AND object_type = "diffuse nebula" AND declination___j2000__ = "Β°02β€²"###context:CREATE TABLE table_name_86 (ngc_number VARC...
###question:I want to know the right ascension which has an NGC less than 6575 and declination of Β°38β€²00β€³###answer:SELECT right_ascension___j2000__ FROM table_name_72 WHERE ngc_number < 6575 AND declination___j2000__ = "Β°38β€²00β€³"###context:CREATE TABLE table_name_72 (right_ascension___j2000__ VARCHAR, ngc_number VARCHAR...
###question:Name the right ascension for sagittarius and NGC number larger than 6522 for open cluster and declination of Β°22β€²###answer:SELECT right_ascension___j2000__ FROM table_name_78 WHERE constellation = "sagittarius" AND ngc_number > 6522 AND object_type = "open cluster" AND declination___j2000__ = "Β°22β€²"###conte...
###question:How many were in attendance for the loss of rekar (4–5)?###answer:SELECT SUM(attendance) FROM table_name_15 WHERE loss = "rekar (4–5)"###context:CREATE TABLE table_name_15 (attendance INTEGER, loss VARCHAR)
###question:In what year is the status of won?###answer:SELECT year FROM table_name_72 WHERE status = "won"###context:CREATE TABLE table_name_72 (year VARCHAR, status VARCHAR)
###question:What was the Last Samurai role?###answer:SELECT role FROM table_name_70 WHERE film = "the last samurai"###context:CREATE TABLE table_name_70 (role VARCHAR, film VARCHAR)
###question:When the role is role what was the status?###answer:SELECT status FROM table_name_14 WHERE "role" = "role"###context:CREATE TABLE table_name_14 (status VARCHAR)
###question:What Ken Watanabe film as nominated?###answer:SELECT film FROM table_name_96 WHERE status = "nominated" AND name = "ken watanabe"###context:CREATE TABLE table_name_96 (film VARCHAR, status VARCHAR, name VARCHAR)
###question:What year was The Last Samurai nominated?###answer:SELECT year FROM table_name_42 WHERE status = "nominated" AND film = "the last samurai"###context:CREATE TABLE table_name_42 (year VARCHAR, status VARCHAR, film VARCHAR)
###question:When the year is year what was the film?###answer:SELECT film FROM table_name_31 WHERE "year" = "year"###context:CREATE TABLE table_name_31 (film VARCHAR)
###question:Which class has less in quantity than 174 between the years 1921–23?###answer:SELECT class FROM table_name_43 WHERE quantity < 174 AND date = "1921–23"###context:CREATE TABLE table_name_43 (class VARCHAR, quantity VARCHAR, date VARCHAR)
###question:Which type has a quantity of 11?###answer:SELECT type FROM table_name_29 WHERE quantity = 11###context:CREATE TABLE table_name_29 (type VARCHAR, quantity VARCHAR)
###question:Which class has less than 3 in quantity with a type of 4-6-0?###answer:SELECT class FROM table_name_70 WHERE type = "4-6-0" AND quantity < 3###context:CREATE TABLE table_name_70 (class VARCHAR, type VARCHAR, quantity VARCHAR)
###question:What was the score for the team with a time of 2:44?###answer:SELECT score FROM table_name_8 WHERE time = "2:44"###context:CREATE TABLE table_name_8 (score VARCHAR, time VARCHAR)
###question:When is the earliest year opened for huff hall that was established after 1974?###answer:SELECT MIN(opened) FROM table_name_20 WHERE venue = "huff hall" AND established > 1974###context:CREATE TABLE table_name_20 (opened INTEGER, venue VARCHAR, established VARCHAR)
###question:Tell me the sum of earnings for rank less than 1###answer:SELECT SUM(earnings__) AS $__ FROM table_name_63 WHERE rank < 1###context:CREATE TABLE table_name_63 (earnings__ INTEGER, rank INTEGER)
###question:Tell me the sum of rank with wins of 17###answer:SELECT SUM(rank) FROM table_name_6 WHERE wins = 17###context:CREATE TABLE table_name_6 (rank INTEGER, wins VARCHAR)
###question:What is the total number of laps where time/retired is +2 laps and the grid number is bigger than 18?###answer:SELECT SUM(laps) FROM table_name_5 WHERE time_retired = "+2 laps" AND grid > 18###context:CREATE TABLE table_name_5 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
###question:What is the mean number of laps where time/retired was +1:05.564?###answer:SELECT AVG(laps) FROM table_name_67 WHERE time_retired = "+1:05.564"###context:CREATE TABLE table_name_67 (laps INTEGER, time_retired VARCHAR)
###question:Which lap number had a grid number bigger than 9 and where the driver was Mark Webber?###answer:SELECT laps FROM table_name_77 WHERE grid > 9 AND driver = "mark webber"###context:CREATE TABLE table_name_77 (laps VARCHAR, grid VARCHAR, driver VARCHAR)
###question:What is the date when Richmond was the home team?###answer:SELECT date FROM table_name_66 WHERE home_team = "richmond"###context:CREATE TABLE table_name_66 (date VARCHAR, home_team VARCHAR)
###question:what is the tie no when the attendance is 126?###answer:SELECT AVG(tie_no) FROM table_name_66 WHERE attendance = 126###context:CREATE TABLE table_name_66 (tie_no INTEGER, attendance VARCHAR)
###question:what is the average tie no when the home team is stamford a.f.c.?###answer:SELECT AVG(tie_no) FROM table_name_11 WHERE home_team = "stamford a.f.c."###context:CREATE TABLE table_name_11 (tie_no INTEGER, home_team VARCHAR)
###question:what is the score when the tie no is 28?###answer:SELECT score FROM table_name_97 WHERE tie_no = 28###context:CREATE TABLE table_name_97 (score VARCHAR, tie_no VARCHAR)
###question:Who was the driver of the Officine Alfieri Maserati with a Tyre of P?###answer:SELECT driver FROM table_name_21 WHERE tyre = "p" AND entrant = "officine alfieri maserati"###context:CREATE TABLE table_name_21 (driver VARCHAR, tyre VARCHAR, entrant VARCHAR)
###question:Who was the entrant for driver Giuseppe Farina when he had a Chassis of 625 555 D50 and a tyre of E?###answer:SELECT entrant FROM table_name_87 WHERE tyre = "e" AND chassis = "625 555 d50" AND driver = "giuseppe farina"###context:CREATE TABLE table_name_87 (entrant VARCHAR, driver VARCHAR, tyre VARCHAR, cha...
###question:Who constructed Mike Sparken's car with a tyre of E?###answer:SELECT constructor FROM table_name_79 WHERE tyre = "e" AND driver = "mike sparken"###context:CREATE TABLE table_name_79 (constructor VARCHAR, tyre VARCHAR, driver VARCHAR)
###question:What rounds did Gordini participate in?###answer:SELECT rounds FROM table_name_74 WHERE constructor = "gordini"###context:CREATE TABLE table_name_74 (rounds VARCHAR, constructor VARCHAR)
###question:Who constructed the car in round 1 with a Chassis of 250F?###answer:SELECT constructor FROM table_name_86 WHERE chassis = "250f" AND rounds = "1"###context:CREATE TABLE table_name_86 (constructor VARCHAR, chassis VARCHAR, rounds VARCHAR)
###question:What was the lowest attendance at Glenferrie Oval?###answer:SELECT MIN(crowd) FROM table_name_83 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_83 (crowd INTEGER, venue VARCHAR)
###question:Where did North Melbourne play as the away team?###answer:SELECT venue FROM table_name_56 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR)
###question:What was Footscray's score as the away team?###answer:SELECT away_team AS score FROM table_name_94 WHERE away_team = "footscray"###context:CREATE TABLE table_name_94 (away_team VARCHAR)
###question:What was the away teams score at Glenferrie Oval?###answer:SELECT away_team AS score FROM table_name_92 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_92 (away_team VARCHAR, venue VARCHAR)
###question:Who is the head coach of the team located in Mudgeeraba?###answer:SELECT head_coach FROM table_name_53 WHERE location = "mudgeeraba"###context:CREATE TABLE table_name_53 (head_coach VARCHAR, location VARCHAR)
###question:Who is the President of the team that has the Head Coach Mark Wakeling?###answer:SELECT president FROM table_name_37 WHERE head_coach = "mark wakeling"###context:CREATE TABLE table_name_37 (president VARCHAR, head_coach VARCHAR)
###question:Who is the Head Coach of the team whose President is Mario Volarevic?###answer:SELECT head_coach FROM table_name_86 WHERE president = "mario volarevic"###context:CREATE TABLE table_name_86 (head_coach VARCHAR, president VARCHAR)
###question:Which team's Head Coach is Steve Beever?###answer:SELECT team FROM table_name_68 WHERE head_coach = "steve beever"###context:CREATE TABLE table_name_68 (team VARCHAR, head_coach VARCHAR)
###question:How many people attended the match on 1/11?###answer:SELECT attendance FROM table_name_45 WHERE date = "1/11"###context:CREATE TABLE table_name_45 (attendance VARCHAR, date VARCHAR)
###question:Who was the leading scorer in the match when the Golden State Warriors were visiting the Dallas Mavericks?###answer:SELECT leading_scorer FROM table_name_43 WHERE visitor = "golden state warriors" AND home = "dallas mavericks"###context:CREATE TABLE table_name_43 (leading_scorer VARCHAR, visitor VARCHAR, ho...
###question:Which CFL Team has a Position of dl?###answer:SELECT cfl_team FROM table_name_54 WHERE position = "dl"###context:CREATE TABLE table_name_54 (cfl_team VARCHAR, position VARCHAR)
###question:Which CFL Team has a College of montreal, and a Player of marc trepanier?###answer:SELECT cfl_team FROM table_name_12 WHERE college = "montreal" AND player = "marc trepanier"###context:CREATE TABLE table_name_12 (cfl_team VARCHAR, college VARCHAR, player VARCHAR)
###question:What is the Translated Title of Steinulven?###answer:SELECT translated_title FROM table_name_31 WHERE norwegian_title = "steinulven"###context:CREATE TABLE table_name_31 (translated_title VARCHAR, norwegian_title VARCHAR)
###question:What Norwegian title has 218 pages and Translated Title of Breaking Dawn?###answer:SELECT norwegian_title FROM table_name_37 WHERE pages = 218 AND translated_title = "breaking dawn"###context:CREATE TABLE table_name_37 (norwegian_title VARCHAR, pages VARCHAR, translated_title VARCHAR)
###question:I want the constituency which has a swing to gain less than 6.05 and a rank of 2###answer:SELECT constituency FROM table_name_4 WHERE swing_to_gain < 6.05 AND rank = 2###context:CREATE TABLE table_name_4 (constituency VARCHAR, swing_to_gain VARCHAR, rank VARCHAR)
###question:Name the winning party 2007 for result of labour hold and swing to gain less than 7.11 for wrexham###answer:SELECT winning_party_2007 FROM table_name_60 WHERE result = "labour hold" AND swing_to_gain < 7.11 AND constituency = "wrexham"###context:CREATE TABLE table_name_60 (winning_party_2007 VARCHAR, consti...
###question:Which box score has a Loss of capuano (5–5)?###answer:SELECT boxscore FROM table_name_82 WHERE loss = "capuano (5–5)"###context:CREATE TABLE table_name_82 (boxscore VARCHAR, loss VARCHAR)
###question:Which opponent has a Score of 2–5?###answer:SELECT opponent FROM table_name_23 WHERE score = "2–5"###context:CREATE TABLE table_name_23 (opponent VARCHAR, score VARCHAR)
###question:What is the record for june 10?###answer:SELECT record FROM table_name_28 WHERE date = "june 10"###context:CREATE TABLE table_name_28 (record VARCHAR, date VARCHAR)
###question:Which box score has an Attendance of 54,773?###answer:SELECT boxscore FROM table_name_32 WHERE attendance = "54,773"###context:CREATE TABLE table_name_32 (boxscore VARCHAR, attendance VARCHAR)
###question:What loss happened june 8?###answer:SELECT loss FROM table_name_43 WHERE date = "june 8"###context:CREATE TABLE table_name_43 (loss VARCHAR, date VARCHAR)
###question:Which record has a Boxscore of w2, and a Loss of kline (2–3)?###answer:SELECT record FROM table_name_89 WHERE boxscore = "w2" AND loss = "kline (2–3)"###context:CREATE TABLE table_name_89 (record VARCHAR, boxscore VARCHAR, loss VARCHAR)
###question:What is the PCT when the total number of games is less than 944?###answer:SELECT pct FROM table_name_84 WHERE total_games < 944###context:CREATE TABLE table_name_84 (pct VARCHAR, total_games INTEGER)
###question:What is the highest number lost when the number tied is more than 42, the years are less than 132, and the PCT is less than 0.5729000000000001?###answer:SELECT MAX(lost) FROM table_name_57 WHERE tied > 42 AND years < 132 AND pct < 0.5729000000000001###context:CREATE TABLE table_name_57 (lost INTEGER, pct VA...
###question:What is the average number lost when the PCT is more than 0.7334 and the total number of games is larger than 48?###answer:SELECT AVG(lost) FROM table_name_22 WHERE pct > 0.7334 AND total_games > 48###context:CREATE TABLE table_name_22 (lost INTEGER, pct VARCHAR, total_games VARCHAR)
###question:What is the total number of tied games when Old Dominion is the independent and the years is more than 4?###answer:SELECT SUM(tied) FROM table_name_41 WHERE independent = "old dominion" AND years > 4###context:CREATE TABLE table_name_41 (tied INTEGER, independent VARCHAR, years VARCHAR)
###question:What is the lowest PCT when Old Dominion is the independent and the years is more than 4?###answer:SELECT MIN(pct) FROM table_name_54 WHERE independent = "old dominion" AND years > 4###context:CREATE TABLE table_name_54 (pct INTEGER, independent VARCHAR, years VARCHAR)
###question:how many laps was the driver jacques villeneuve and the grid more than 7?###answer:SELECT COUNT(laps) FROM table_name_55 WHERE driver = "jacques villeneuve" AND grid > 7###context:CREATE TABLE table_name_55 (laps VARCHAR, driver VARCHAR, grid VARCHAR)
###question:What is the high assists score of Nick Collison (11)?###answer:SELECT high_assists FROM table_name_85 WHERE high_rebounds = "nick collison (11)"###context:CREATE TABLE table_name_85 (high_assists VARCHAR, high_rebounds VARCHAR)
###question:What is Time/Retired with a Grid of 12?###answer:SELECT time_retired FROM table_name_23 WHERE grid = 12###context:CREATE TABLE table_name_23 (time_retired VARCHAR, grid VARCHAR)
###question:How many grids have a Manufacturer of honda, a Rider of yuki takahashi, and more than 22 laps?###answer:SELECT COUNT(grid) FROM table_name_8 WHERE manufacturer = "honda" AND rider = "yuki takahashi" AND laps > 22###context:CREATE TABLE table_name_8 (grid VARCHAR, laps VARCHAR, manufacturer VARCHAR, rider VA...
###question:How many laps have a Time/Retired of +1:35.553?###answer:SELECT COUNT(laps) FROM table_name_84 WHERE time_retired = "+1:35.553"###context:CREATE TABLE table_name_84 (laps VARCHAR, time_retired VARCHAR)
###question:If fitzroy was the home team what date did they play?###answer:SELECT date FROM table_name_48 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_48 (date VARCHAR, home_team VARCHAR)
###question:What is the score of the game with 4 goals?###answer:SELECT score FROM table_name_46 WHERE goal = 4###context:CREATE TABLE table_name_46 (score VARCHAR, goal VARCHAR)
###question:What is the score of the friendly competition with 1 goal?###answer:SELECT score FROM table_name_25 WHERE competition = "friendly" AND goal = 1###context:CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR, goal VARCHAR)
###question:What was the Illinois Derby purse?###answer:SELECT purse___us$__ FROM table_name_32 WHERE race = "illinois derby"###context:CREATE TABLE table_name_32 (purse___us$__ VARCHAR, race VARCHAR)
###question:How much money did Crafty Bear wins with a dist of 1 mile?###answer:SELECT purse___us$__ FROM table_name_30 WHERE dist = "1 mile" AND winning_horse = "crafty bear"###context:CREATE TABLE table_name_30 (purse___us$__ VARCHAR, dist VARCHAR, winning_horse VARCHAR)
###question:What track did they race on at the Fountain of Youth Stakes?###answer:SELECT track FROM table_name_69 WHERE race = "fountain of youth stakes"###context:CREATE TABLE table_name_69 (track VARCHAR, race VARCHAR)
###question:What is the grid total for alain prost with over 14 laps?###answer:SELECT SUM(grid) FROM table_name_91 WHERE laps > 14 AND driver = "alain prost"###context:CREATE TABLE table_name_91 (grid INTEGER, laps VARCHAR, driver VARCHAR)
###question:What is the Digital/analog signal with a Chipset based on with radeon 8500?###answer:SELECT digital_analog_signal FROM table_name_50 WHERE chipset_based_on = "radeon 8500"###context:CREATE TABLE table_name_50 (digital_analog_signal VARCHAR, chipset_based_on VARCHAR)
###question:What is the Retail name with a Chipset based on with radeon 9200?###answer:SELECT retail_name FROM table_name_1 WHERE chipset_based_on = "radeon 9200"###context:CREATE TABLE table_name_1 (retail_name VARCHAR, chipset_based_on VARCHAR)
###question:What is the Chipset based on with a Digital/analog signal of analog, with an Available interface of agp, with Retail name with all-in-wonder 9800?###answer:SELECT chipset_based_on FROM table_name_18 WHERE digital_analog_signal = "analog" AND available_interface = "agp" AND retail_name = "all-in-wonder 9800"...
###question:What is the Retail name with an Available interface with pci express 2.0?###answer:SELECT retail_name FROM table_name_24 WHERE available_interface = "pci express 2.0"###context:CREATE TABLE table_name_24 (retail_name VARCHAR, available_interface VARCHAR)
###question:What is the Digital/analog signal with an Available interface with pci express, with Retail name with all-in-wonder x600 pro?###answer:SELECT digital_analog_signal FROM table_name_71 WHERE available_interface = "pci express" AND retail_name = "all-in-wonder x600 pro"###context:CREATE TABLE table_name_71 (di...
###question:What is the Retail name with a Digital/analog signal with analog, and a Chipset based on with radeon 9600?###answer:SELECT retail_name FROM table_name_15 WHERE digital_analog_signal = "analog" AND chipset_based_on = "radeon 9600"###context:CREATE TABLE table_name_15 (retail_name VARCHAR, digital_analog_sign...
###question:What was the score of the match on 11/2/01?###answer:SELECT score FROM table_name_94 WHERE date = "11/2/01"###context:CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR)
###question:Did the Bulls win or lose at Valley Parade?###answer:SELECT result FROM table_name_84 WHERE venue = "valley parade"###context:CREATE TABLE table_name_84 (result VARCHAR, venue VARCHAR)
###question:What was the score when the Vikings won the championship at Namyangju Stadium?###answer:SELECT score FROM table_name_86 WHERE champion = "vikings" AND stadium = "namyangju stadium"###context:CREATE TABLE table_name_86 (score VARCHAR, champion VARCHAR, stadium VARCHAR)
###question:Tell me the label for formats of cd and album and year of 2008###answer:SELECT label FROM table_name_48 WHERE formats = "cd" AND format = "album" AND year = 2008###context:CREATE TABLE table_name_48 (label VARCHAR, year VARCHAR, formats VARCHAR, format VARCHAR)
###question:Tell me the label for digital format with nebula remixes###answer:SELECT label FROM table_name_9 WHERE formats = "digital" AND title = "nebula remixes"###context:CREATE TABLE table_name_9 (label VARCHAR, formats VARCHAR, title VARCHAR)
###question:I want to know the catalog number for album and seed records label for cd and title of grey###answer:SELECT catalog_number FROM table_name_66 WHERE format = "album" AND label = "seed records" AND formats = "cd" AND title = "grey"###context:CREATE TABLE table_name_66 (catalog_number VARCHAR, title VARCHAR, f...
###question:Tell me the format with year more than 2000 and label of myuzyk with catalog number of mzykn08###answer:SELECT format FROM table_name_48 WHERE year > 2000 AND label = "myuzyk" AND catalog_number = "mzykn08"###context:CREATE TABLE table_name_48 (format VARCHAR, catalog_number VARCHAR, year VARCHAR, label VAR...
###question:If the Venue was kardinia park what was the highest Crowd attended?###answer:SELECT MAX(crowd) FROM table_name_12 WHERE venue = "kardinia park"###context:CREATE TABLE table_name_12 (crowd INTEGER, venue VARCHAR)
###question:If the Home team of collingwood was playing, what was the Away team?###answer:SELECT away_team FROM table_name_45 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_45 (away_team VARCHAR, home_team VARCHAR)