question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
When using a .375 Remington Ultra Magnum, what is the muzzle velocity?
columns: - name: muzzle_velocity type: VARCHAR - name: cartridge type: VARCHAR table: table_16010376_1
SELECT muzzle_velocity FROM table_16010376_1 WHERE cartridge = ".375 Remington Ultra Magnum"
What is the latest Fiscal Year with Revenues of $4.3 billion, and more than 85,335 employees?
columns: - name: fiscal_year type: INTEGER - name: revenues type: VARCHAR - name: employees type: VARCHAR table: table_name_95
SELECT MAX(fiscal_year) FROM table_name_95 WHERE revenues = "$4.3 billion" AND employees > 85 OFFSET 335
What is the name of the company that constructed the vehicle for Timo Glock?
columns: - name: constructor type: VARCHAR - name: driver type: VARCHAR table: table_name_15
SELECT constructor FROM table_name_15 WHERE driver = "timo glock"
In what place did Des Smyth, who scored less than 71, finish?
columns: - name: place type: VARCHAR - name: score type: VARCHAR - name: player type: VARCHAR table: table_name_23
SELECT place FROM table_name_23 WHERE score < 71 AND player = "des smyth"
Which venue does Mardan sponsor?
columns: - name: venue type: VARCHAR - name: shirt_sponsor type: VARCHAR table: table_17356873_1
SELECT venue FROM table_17356873_1 WHERE shirt_sponsor = "Mardan"
What is the population maximum?
columns: - name: population type: INTEGER table: table_22815568_6
SELECT MAX(population) FROM table_22815568_6
What title has lt as the series, ben hardaway as the director, with 6612 as the production num.?
columns: - name: title type: VARCHAR - name: production_num type: VARCHAR - name: series type: VARCHAR - name: director type: VARCHAR table: table_name_66
SELECT title FROM table_name_66 WHERE series = "lt" AND director = "ben hardaway" AND production_num = "6612"
What is the average Money ( $ ), when Country is "United States", and when To par is "+3"?
columns: - name: money___ type: INTEGER - name: country type: VARCHAR - name: to_par type: VARCHAR table: table_name_14
SELECT AVG(money___) AS $__ FROM table_name_14 WHERE country = "united states" AND to_par = "+3"
What's the title of the episode with series number 36?
columns: - name: title type: VARCHAR - name: no_in_series type: VARCHAR table: table_28146944_2
SELECT title FROM table_28146944_2 WHERE no_in_series = 36
What round did the match go to when tko (cut) was the method?
columns: - name: round type: VARCHAR - name: method type: VARCHAR table: table_name_24
SELECT round FROM table_name_24 WHERE method = "tko (cut)"
What is the status of the game against France with more than 16 against?
columns: - name: status type: VARCHAR - name: against type: VARCHAR - name: opposing_teams type: VARCHAR table: table_name_18
SELECT status FROM table_name_18 WHERE against > 16 AND opposing_teams = "france"
HOW MANY POINTS DOES ALEX SPERAFICO HAVE WITH A GRID LARGER THAN 17?
columns: - name: points type: INTEGER - name: driver type: VARCHAR - name: grid type: VARCHAR table: table_name_43
SELECT MIN(points) FROM table_name_43 WHERE driver = "alex sperafico" AND grid > 17
Name the number of gn divisions for mannar
columns: - name: gn_divisions type: VARCHAR - name: ds_division type: VARCHAR table: table_24574438_1
SELECT COUNT(gn_divisions) FROM table_24574438_1 WHERE ds_division = "Mannar"
What date was the Piston's record at 23-47?
columns: - name: date type: VARCHAR - name: record type: VARCHAR table: table_22822559_8
SELECT date FROM table_22822559_8 WHERE record = "23-47"
What was the away team that faced Carlton?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_6
SELECT away_team FROM table_name_6 WHERE home_team = "carlton"
Which pens has 1 tries and matt alexander as a player with conv of 4?
columns: - name: pens type: VARCHAR - name: conv type: VARCHAR - name: tries type: VARCHAR - name: player type: VARCHAR table: table_name_38
SELECT pens FROM table_name_38 WHERE tries = "1" AND player = "matt alexander" AND conv = "4"
What was the team record when the team was Cleveland?
columns: - name: record type: VARCHAR - name: team type: VARCHAR table: table_17288861_5
SELECT record FROM table_17288861_5 WHERE team = "Cleveland"
Which Investing Dragon(s) belong to Episode 9 with the Entrepreneur Ashley Sayed?
columns: - name: investing_dragon_s_ type: VARCHAR - name: episode type: VARCHAR - name: entrepreneur_s_ type: VARCHAR table: table_name_82
SELECT investing_dragon_s_ FROM table_name_82 WHERE episode = "episode 9" AND entrepreneur_s_ = "ashley sayed"
When 12 is the season number how many series numbers are there?
columns: - name: series__number type: VARCHAR - name: season__number type: VARCHAR table: table_25649467_2
SELECT COUNT(series__number) FROM table_25649467_2 WHERE season__number = 12
What are the prizes when 1 is the number of winning tickets?
columns: - name: prize__eur_ type: VARCHAR - name: number_of_winning_tickets type: VARCHAR table: table_20195922_3
SELECT prize__eur_ FROM table_20195922_3 WHERE number_of_winning_tickets = 1
What is the Displacement of the Iveco F1CE3481E Engine?
columns: - name: displacement type: VARCHAR - name: engine type: VARCHAR table: table_name_87
SELECT displacement FROM table_name_87 WHERE engine = "iveco f1ce3481e"
What was the result of the april 6, 2002 game against the greensboro prowlers?
columns: - name: result type: VARCHAR - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_89
SELECT result FROM table_name_89 WHERE opponent = "greensboro prowlers" AND date = "april 6, 2002"
What is the Attendance for Opponent Boston Patriots and Week is greater than 14?
columns: - name: attendance type: VARCHAR - name: opponent type: VARCHAR - name: week type: VARCHAR table: table_name_1
SELECT COUNT(attendance) FROM table_name_1 WHERE opponent = "boston patriots" AND week > 14
Which opponent has a Club of essendon, and a Score of 13.4.82?
columns: - name: opponent type: VARCHAR - name: club type: VARCHAR - name: score type: VARCHAR table: table_name_73
SELECT opponent FROM table_name_73 WHERE club = "essendon" AND score = "13.4.82"
WHAT IS THE RESULT FOR 2003, IN best urban/alternative performance?
columns: - name: result type: VARCHAR - name: year type: VARCHAR - name: category type: VARCHAR table: table_name_79
SELECT result FROM table_name_79 WHERE year = 2003 AND category = "best urban/alternative performance"
On which date was the Tie no 2?
columns: - name: date type: VARCHAR - name: tie_no type: VARCHAR table: table_name_41
SELECT date FROM table_name_41 WHERE tie_no = "2"
What was the maximum speed for straight-4, 1.466 cc Type r 150?
columns: - name: vmax type: VARCHAR - name: type type: VARCHAR - name: cylinder type: VARCHAR - name: capacity type: VARCHAR table: table_name_60
SELECT vmax FROM table_name_60 WHERE cylinder = "straight-4" AND capacity = "1.466 cc" AND type = "r 150"
What artist shows 2007 and composer of Hayko?
columns: - name: artist type: VARCHAR - name: year type: VARCHAR - name: composer type: VARCHAR table: table_name_31
SELECT artist FROM table_name_31 WHERE year = 2007 AND composer = "hayko"
What was the time when Shinya Aoki was the opponent?
columns: - name: time type: VARCHAR - name: opponent type: VARCHAR table: table_name_57
SELECT time FROM table_name_57 WHERE opponent = "shinya aoki"
What's the year inducted for the label of label?
columns: - name: year_inducted type: VARCHAR table: table_name_59
SELECT year_inducted FROM table_name_59 WHERE "label" = "label"
Who is the coach for the Adelaide Galaxy team?
columns: - name: coach type: VARCHAR - name: team type: VARCHAR table: table_name_95
SELECT coach FROM table_name_95 WHERE team = "adelaide galaxy"
What Team had a 1:24.365 Qual 2?
columns: - name: team type: VARCHAR - name: qual_2 type: VARCHAR table: table_name_60
SELECT team FROM table_name_60 WHERE qual_2 = "1:24.365"
Which Pick # is the highest one that has an Overall of 184, and a Round larger than 6?
columns: - name: pick__number type: INTEGER - name: overall type: VARCHAR - name: round type: VARCHAR table: table_name_25
SELECT MAX(pick__number) FROM table_name_25 WHERE overall = 184 AND round > 6
What was the tournament that was on july 6, 1987?
columns: - name: tournament type: VARCHAR - name: date type: VARCHAR table: table_name_55
SELECT tournament FROM table_name_55 WHERE date = "july 6, 1987"
What is the highest rank for the team of egypt?
columns: - name: rank type: INTEGER - name: country type: VARCHAR table: table_name_58
SELECT MAX(rank) FROM table_name_58 WHERE country = "egypt"
What was the release date for metronome?
columns: - name: release_date type: VARCHAR - name: title type: VARCHAR table: table_18138132_2
SELECT release_date FROM table_18138132_2 WHERE title = "Metronome"
What is the record for January 19?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_37
SELECT record FROM table_name_37 WHERE date = "january 19"
Which Constellation has a NGC number smaller than 2775, and a Declination (J2000) of °05′07″?
columns: - name: constellation type: VARCHAR - name: ngc_number type: VARCHAR - name: declination___j2000__ type: VARCHAR table: table_name_3
SELECT constellation FROM table_name_3 WHERE ngc_number < 2775 AND declination___j2000__ = "°05′07″"
How much Silver has a Rank of 4, and a Bronze smaller than 12?
columns: - name: silver type: VARCHAR - name: rank type: VARCHAR - name: bronze type: VARCHAR table: table_name_36
SELECT COUNT(silver) FROM table_name_36 WHERE rank = "4" AND bronze < 12
what is 2000 when 2012 is w and 2011 is 4r?
columns: - name: Id type: VARCHAR table: table_name_54
SELECT 2000 FROM table_name_54 WHERE 2012 = "w" AND 2011 = "4r"
how many people wrote the episode directed by rob schrab?
columns: - name: written_by type: VARCHAR - name: directed_by type: VARCHAR table: table_28081876_4
SELECT COUNT(written_by) FROM table_28081876_4 WHERE directed_by = "Rob Schrab"
When the surface was Hard (i), what was the score?
columns: - name: score type: VARCHAR - name: surface type: VARCHAR table: table_2516282_3
SELECT score FROM table_2516282_3 WHERE surface = "Hard (i)"
What is the average number of bronze medals associated with 0 silver, 1 total, and ranks over 16?
columns: - name: bronze type: INTEGER - name: rank type: VARCHAR - name: total type: VARCHAR - name: silver type: VARCHAR table: table_name_58
SELECT AVG(bronze) FROM table_name_58 WHERE total = 1 AND silver = 0 AND rank > 16
Name the finish which has qual of 144.817
columns: - name: finish type: VARCHAR - name: qual type: VARCHAR table: table_name_1
SELECT finish FROM table_name_1 WHERE qual = "144.817"
What was the opponent at the game that had a loss of Travers (0–2)?
columns: - name: opponent type: VARCHAR - name: loss type: VARCHAR table: table_name_9
SELECT opponent FROM table_name_9 WHERE loss = "travers (0–2)"
What's the total enrollment ofr Mcgill University that has a capacity less than 25,012?
columns: - name: enrollment type: VARCHAR - name: institution type: VARCHAR - name: capacity type: VARCHAR table: table_name_99
SELECT COUNT(enrollment) FROM table_name_99 WHERE institution = "mcgill university" AND capacity < 25 OFFSET 012
Who is every driver for the location of Estoril Circuit?
columns: - name: driver type: VARCHAR - name: location type: VARCHAR table: table_23293785_2
SELECT driver FROM table_23293785_2 WHERE location = "Estoril Circuit"
What is the Continent that also has the United States listed as a country?
columns: - name: continent type: VARCHAR - name: country type: VARCHAR table: table_name_30
SELECT continent FROM table_name_30 WHERE country = "united states"
What percentage of others have an SZDSZ of 4% and a Fidesz of 60%?
columns: - name: others type: VARCHAR - name: szdsz type: VARCHAR - name: fidesz type: VARCHAR table: table_name_10
SELECT others FROM table_name_10 WHERE szdsz = "4%" AND fidesz = "60%"
In which location is aci vallelunga circuit?
columns: - name: location type: VARCHAR - name: circuit type: VARCHAR table: table_23315271_2
SELECT location FROM table_23315271_2 WHERE circuit = "ACI Vallelunga circuit"
What are the notes of the patience theme?
columns: - name: notes type: VARCHAR - name: theme type: VARCHAR table: table_name_76
SELECT notes FROM table_name_76 WHERE theme = "patience"
Who replaced the previous manager of Altay?
columns: - name: replaced_by type: VARCHAR - name: team type: VARCHAR table: table_27091128_2
SELECT replaced_by FROM table_27091128_2 WHERE team = "Altay"
If the distance is 55.7, what is the name of the constellation?
columns: - name: constellation type: VARCHAR - name: distance___ly__ type: VARCHAR table: table_1820752_1
SELECT constellation FROM table_1820752_1 WHERE distance___ly__ = "55.7"
What is the highest kneel with a stand less than 187, and a 197 prone, and a qual more than 576?
columns: - name: kneel type: INTEGER - name: qual type: VARCHAR - name: stand type: VARCHAR - name: prone type: VARCHAR table: table_name_59
SELECT MAX(kneel) FROM table_name_59 WHERE stand < 187 AND prone = 197 AND qual > 576
What location did Zach Veach have the fastest lap?
columns: - name: location type: VARCHAR - name: fastest_lap type: VARCHAR table: table_29285076_2
SELECT location FROM table_29285076_2 WHERE fastest_lap = "Zach Veach"
Who is the Director of Fish Tales?
columns: - name: director type: VARCHAR - name: title type: VARCHAR table: table_name_94
SELECT director FROM table_name_94 WHERE title = "fish tales"
What was the home team in the February 22 game that Legace played in for the St. Louis Blues?
columns: - name: home type: VARCHAR - name: date type: VARCHAR - name: decision type: VARCHAR - name: visitor type: VARCHAR table: table_name_78
SELECT home FROM table_name_78 WHERE decision = "legace" AND visitor = "st. louis" AND date = "february 22"
Which Location has a Method of decision?
columns: - name: location type: VARCHAR - name: method type: VARCHAR table: table_name_40
SELECT location FROM table_name_40 WHERE method = "decision"
What was the record for the location and attendance of american airlines arena 19,825?
columns: - name: record type: VARCHAR - name: location_attendance type: VARCHAR table: table_27713030_11
SELECT record FROM table_27713030_11 WHERE location_attendance = "American Airlines Arena 19,825"
When the country is vest, what were the exports?
columns: - name: exports__us$_mil_ type: VARCHAR - name: county type: VARCHAR table: table_24239748_2
SELECT exports__us$_mil_ FROM table_24239748_2 WHERE county = "Vest"
Which Year has a cause of firedamp and a Death toll larger than 11?
columns: - name: year type: INTEGER - name: cause type: VARCHAR - name: death_toll type: VARCHAR table: table_name_87
SELECT SUM(year) FROM table_name_87 WHERE cause = "firedamp" AND death_toll > 11
Which tournament had a winning score of 67-61-68-67=263?
columns: - name: tournament type: VARCHAR - name: winning_score type: VARCHAR table: table_name_96
SELECT tournament FROM table_name_96 WHERE winning_score = 67 - 61 - 68 - 67 = 263
Which is the lowest 1980 growth that had 2,610 in 1970?
columns: - name: Id type: VARCHAR table: table_name_61
SELECT MIN(1980) FROM table_name_61 WHERE 1970 = 2 OFFSET 610
What is the result for Brent Spiner?
columns: - name: result type: VARCHAR - name: nominee type: VARCHAR table: table_name_46
SELECT result FROM table_name_46 WHERE nominee = "brent spiner"
What circuit was the Clipsal 500 on?
columns: - name: circuit type: VARCHAR - name: event type: VARCHAR table: table_25531112_2
SELECT circuit FROM table_25531112_2 WHERE event = "Clipsal 500"
How many times did Keith Downing depart a position?
columns: - name: position_in_table type: VARCHAR - name: outgoing_manager type: VARCHAR table: table_18788823_5
SELECT COUNT(position_in_table) FROM table_18788823_5 WHERE outgoing_manager = "Keith Downing"
What position(s) do players from bowling green play?
columns: - name: position type: VARCHAR - name: school_club_team type: VARCHAR table: table_16494599_4
SELECT position FROM table_16494599_4 WHERE school_club_team = "Bowling Green"
What is the affiliation of the University of Maryland?
columns: - name: affiliation type: VARCHAR - name: school type: VARCHAR table: table_name_54
SELECT affiliation FROM table_name_54 WHERE school = "university of maryland"
What was the film of Richard Nixon as President in a year newer than 1996?
columns: - name: film type: VARCHAR - name: president type: VARCHAR - name: year type: VARCHAR table: table_name_49
SELECT film FROM table_name_49 WHERE president = "richard nixon" AND year > 1996
Name the period with matches of 0 0 of portugal
columns: - name: period type: VARCHAR - name: matches type: VARCHAR - name: country type: VARCHAR table: table_name_56
SELECT period FROM table_name_56 WHERE matches = "0 0" AND country = "portugal"
What players play guard?
columns: - name: player type: VARCHAR - name: position type: VARCHAR table: table_16494599_4
SELECT player FROM table_16494599_4 WHERE position = "Guard"
What is the record for January 7?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_21
SELECT record FROM table_name_21 WHERE date = "january 7"
What is the format for the one which has a call sign of cite-fm-1?
columns: - name: format type: VARCHAR - name: call_sign type: VARCHAR table: table_name_94
SELECT format FROM table_name_94 WHERE call_sign = "cite-fm-1"
What is the lowest attendance last year when more than 176 were hosted?
columns: - name: last_year type: INTEGER - name: hosted type: INTEGER table: table_name_87
SELECT MIN(last_year) FROM table_name_87 WHERE hosted > 176
Name the total number of years for chassis of maserati 250f and points less than 0
columns: - name: year type: VARCHAR - name: chassis type: VARCHAR - name: points type: VARCHAR table: table_name_85
SELECT COUNT(year) FROM table_name_85 WHERE chassis = "maserati 250f" AND points < 0
How many series had the chipset of the Intel Centrino Ultimate-N 6300 wireless LAN with the codename Arrandale?
columns: - name: chipset type: VARCHAR - name: codename type: VARCHAR - name: wireless_lan type: VARCHAR table: table_199666_1
SELECT chipset FROM table_199666_1 WHERE codename = "Arrandale" AND wireless_lan = "Intel centrino Ultimate-N 6300"
What is the lowest number of wickets for farveez maharoof?
columns: - name: wickets type: INTEGER - name: name type: VARCHAR table: table_15700367_6
SELECT MIN(wickets) FROM table_15700367_6 WHERE name = "Farveez Maharoof"
what's the edo flight with duration being 17 days, 15 hours, 53 minutes, 18 seconds
columns: - name: edo_flight type: VARCHAR - name: duration type: VARCHAR table: table_14118521_1
SELECT edo_flight FROM table_14118521_1 WHERE duration = "17 days, 15 hours, 53 minutes, 18 seconds"
Name the total number of years for talbot-lago t26c and points less than 3
columns: - name: year type: VARCHAR - name: chassis type: VARCHAR - name: points type: VARCHAR table: table_name_52
SELECT COUNT(year) FROM table_name_52 WHERE chassis = "talbot-lago t26c" AND points < 3
What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208?
columns: - name: number_of_electorates__2009_ type: INTEGER - name: constituency_number type: VARCHAR - name: district type: VARCHAR - name: reserved_for___sc___st__none_ type: VARCHAR table: table_name_21
SELECT SUM(number_of_electorates__2009_) FROM table_name_21 WHERE district = "indore" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "208"
What is the total to par of player jeff sluman, who won before 1993 and has a total greater than 154?
columns: - name: to_par type: VARCHAR - name: total type: VARCHAR - name: year_won type: VARCHAR - name: player type: VARCHAR table: table_name_48
SELECT COUNT(to_par) FROM table_name_48 WHERE year_won < 1993 AND player = "jeff sluman" AND total > 154
What is Score, when Location Attendance is "Madison Square Garden Unknown", and when High Rebounds is "Sidney Green (10)"?
columns: - name: score type: VARCHAR - name: location_attendance type: VARCHAR - name: high_rebounds type: VARCHAR table: table_name_9
SELECT score FROM table_name_9 WHERE location_attendance = "madison square garden unknown" AND high_rebounds = "sidney green (10)"
Which average Points have a Position of 7, and a Lost smaller than 4?
columns: - name: points type: INTEGER - name: position type: VARCHAR - name: lost type: VARCHAR table: table_name_34
SELECT AVG(points) FROM table_name_34 WHERE position = 7 AND lost < 4
Name the most silver with bronze more than 1 and gold more than 1 with total less than 7
columns: - name: silver type: INTEGER - name: gold type: VARCHAR - name: bronze type: VARCHAR - name: total type: VARCHAR table: table_name_46
SELECT MAX(silver) FROM table_name_46 WHERE bronze > 1 AND total < 7 AND gold > 1
What is the purse in 2003, which had a 1-1/16 distance?
columns: - name: purse type: VARCHAR - name: distance type: VARCHAR - name: year type: VARCHAR table: table_name_94
SELECT purse FROM table_name_94 WHERE distance = "1-1/16" AND year = 2003
Which Points have Touchdowns of 1, and a Field goals smaller than 0?
columns: - name: points type: INTEGER - name: touchdowns type: VARCHAR - name: field_goals type: VARCHAR table: table_name_9
SELECT AVG(points) FROM table_name_9 WHERE touchdowns = 1 AND field_goals < 0
How many gold medals does the country ranked higher than 2 with more than 8 bronze have?
columns: - name: gold type: INTEGER - name: rank type: VARCHAR - name: bronze type: VARCHAR table: table_name_56
SELECT SUM(gold) FROM table_name_56 WHERE rank < 2 AND bronze > 8
Name the orchestra for ted varnick
columns: - name: orchestra type: VARCHAR - name: songwriter_s_ type: VARCHAR table: table_name_41
SELECT orchestra FROM table_name_41 WHERE songwriter_s_ = "ted varnick"
What is the total number of losses for teams with more than 0 byes?
columns: - name: losses type: VARCHAR - name: byes type: INTEGER table: table_name_43
SELECT COUNT(losses) FROM table_name_43 WHERE byes > 0
Which player is a shooting guard?
columns: - name: player type: VARCHAR - name: position type: VARCHAR table: table_name_81
SELECT player FROM table_name_81 WHERE position = "shooting guard"
Which Slalom has an overall of 25 in the 2009 season?
columns: - name: slalom type: VARCHAR - name: overall type: VARCHAR - name: season type: VARCHAR table: table_name_32
SELECT slalom FROM table_name_32 WHERE overall = "25" AND season = 2009
On what date was the winning score –20 (68-67-65-64=264)?
columns: - name: date type: VARCHAR - name: winning_score type: VARCHAR table: table_name_46
SELECT date FROM table_name_46 WHERE winning_score = –20(68 - 67 - 65 - 64 = 264)
Which opponent was playing on December 20, 1998?
columns: - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_63
SELECT opponent FROM table_name_63 WHERE date = "december 20, 1998"
What is the average round when there is a defensive back and an overall smaller than 199?
columns: - name: round type: INTEGER - name: position type: VARCHAR - name: overall type: VARCHAR table: table_name_49
SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199
Which Bronze has a Silver smaller than 1, and a Total larger than 3?
columns: - name: bronze type: INTEGER - name: silver type: VARCHAR - name: total type: VARCHAR table: table_name_94
SELECT AVG(bronze) FROM table_name_94 WHERE silver < 1 AND total > 3
What are the minimum indoor results that have a 5 for inspection?
columns: - name: indoor type: INTEGER - name: inspection type: VARCHAR table: table_19534874_2
SELECT MIN(indoor) FROM table_19534874_2 WHERE inspection = 5
What is the date of the away game in week 8?
columns: - name: date type: VARCHAR - name: home_away_game type: VARCHAR - name: week type: VARCHAR table: table_name_2
SELECT date FROM table_name_2 WHERE home_away_game = "away" AND week = 8
Who published the title in the pet-raising simulator genre?
columns: - name: publisher type: VARCHAR - name: genre type: VARCHAR table: table_21458142_1
SELECT publisher FROM table_21458142_1 WHERE genre = "Pet-raising simulator"
What is the highest # Of Constituency Votes, when Election is before 1976, when Leader is Eisaku Satō, and when # Of Candidates is less than 328?
columns: - name: _number_of_constituency_votes type: INTEGER - name: _number_of_candidates type: VARCHAR - name: election type: VARCHAR - name: leader type: VARCHAR table: table_name_18
SELECT MAX(_number_of_constituency_votes) FROM table_name_18 WHERE election < 1976 AND leader = "eisaku satō" AND _number_of_candidates < 328
On the 19th, where was the venue?
columns: - name: venue type: VARCHAR - name: date type: VARCHAR table: table_17120964_6
SELECT venue FROM table_17120964_6 WHERE date = "19th"