question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the name(s) of the place(s) with a population of less than 1,429?
columns: - name: official_name type: VARCHAR - name: population type: INTEGER table: table_name_38
SELECT official_name FROM table_name_38 WHERE population < 1 OFFSET 429
For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU frequencies?
columns: - name: gpu_frequency type: VARCHAR - name: tdp type: VARCHAR - name: part_number_s_ type: VARCHAR table: table_16729930_18
SELECT gpu_frequency FROM table_16729930_18 WHERE tdp = "3.6 W" AND part_number_s_ = "CY80632007221AB"
What was the original title of the Bruno Barreto film in 1989
columns: - name: original_title type: VARCHAR - name: director type: VARCHAR - name: year__ceremony_ type: VARCHAR table: table_15277629_1
SELECT original_title FROM table_15277629_1 WHERE director = "Bruno Barreto" AND year__ceremony_ = 1989
What county has a CERCLIS ID of scd037405362?
columns: - name: county type: VARCHAR - name: cerclis_id type: VARCHAR table: table_name_64
SELECT county FROM table_name_64 WHERE cerclis_id = "scd037405362"
When 4 mb is the sonnet what is the apple?
columns: - name: apple type: VARCHAR - name: sonnet type: VARCHAR table: table_3002894_4
SELECT apple FROM table_3002894_4 WHERE sonnet = "4 MB"
What was the title of the episode with production code 2J5515?
columns: - name: title type: VARCHAR - name: production_code type: VARCHAR table: table_28582091_2
SELECT title FROM table_28582091_2 WHERE production_code = "2J5515"
When was Southern Vermont College founded?
columns: - name: founded type: INTEGER - name: school type: VARCHAR table: table_2076595_1
SELECT MAX(founded) FROM table_2076595_1 WHERE school = "Southern Vermont College"
Who was the opponent when there was a loss of Francisco (1-1)?
columns: - name: opponent type: VARCHAR - name: loss type: VARCHAR table: table_name_7
SELECT opponent FROM table_name_7 WHERE loss = "francisco (1-1)"
What is the place of player chi-chi rodríguez?
columns: - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_41
SELECT place FROM table_name_41 WHERE player = "chi-chi rodríguez"
What is the most recent year with the Album/Song "the best worst-case scenario"?
columns: - name: year type: INTEGER - name: album___song type: VARCHAR table: table_name_19
SELECT MAX(year) FROM table_name_19 WHERE album___song = "the best worst-case scenario"
what is the highest wins when the losses is less than 1, team is rams and the games is more than 8?
columns: - name: wins type: INTEGER - name: games type: VARCHAR - name: losses type: VARCHAR - name: teams type: VARCHAR table: table_name_23
SELECT MAX(wins) FROM table_name_23 WHERE losses < 1 AND teams = "rams" AND games > 8
Who came in third in England?
columns: - name: third type: VARCHAR - name: nation type: VARCHAR table: table_name_60
SELECT third FROM table_name_60 WHERE nation = "england"
What's the tallest height for c position in current club unicaja malaga?
columns: - name: height type: INTEGER - name: position type: VARCHAR - name: current_club type: VARCHAR table: table_name_19
SELECT MAX(height) FROM table_name_19 WHERE position = "c" AND current_club = "unicaja malaga"
Which Position has a School/Club Team of stanford?
columns: - name: position type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_15
SELECT position FROM table_name_15 WHERE school_club_team = "stanford"
What is Mike Weir's To par?
columns: - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_79
SELECT to_par FROM table_name_79 WHERE player = "mike weir"
What's the 2nd leg for team 2 san francisco?
columns: - name: team_2 type: VARCHAR table: table_name_62
SELECT 2 AS nd_leg FROM table_name_62 WHERE team_2 = "san francisco"
What's the venue of the 1995 Southeast Asian Games?
columns: - name: venue type: VARCHAR - name: competition type: VARCHAR table: table_name_97
SELECT venue FROM table_name_97 WHERE competition = "1995 southeast asian games"
What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?
columns: - name: silver type: INTEGER - name: nation type: VARCHAR - name: total type: VARCHAR - name: rank type: VARCHAR table: table_name_19
SELECT SUM(silver) FROM table_name_19 WHERE total < "6" AND rank = "6" AND nation = "bulgaria"
What year was the USS Cambridge laid down?
columns: - name: laid_down type: VARCHAR - name: name type: VARCHAR table: table_name_17
SELECT laid_down FROM table_name_17 WHERE name = "uss cambridge"
How many draws were there with goals against that did not qualify for UEFA competitions?
columns: - name: drew type: VARCHAR - name: goals_against type: VARCHAR table: table_name_56
SELECT drew FROM table_name_56 WHERE goals_against = "did not qualify for uefa competitions"
Name the opponent with decision
columns: - name: opponent type: VARCHAR - name: method type: VARCHAR table: table_name_59
SELECT opponent FROM table_name_59 WHERE method = "decision"
What Field was played at in an away game against the bayhawks?
columns: - name: field type: VARCHAR - name: home_away type: VARCHAR - name: opponent type: VARCHAR table: table_name_99
SELECT field FROM table_name_99 WHERE home_away = "away" AND opponent = "bayhawks"
What is Reuben Foster's college?
columns: - name: college type: VARCHAR - name: player type: VARCHAR table: table_name_59
SELECT college FROM table_name_59 WHERE player = "reuben foster"
What is the polyunsaturated fat with a smoke point of °c (), a total fat of 100g and 63g of monounsaturated fat?
columns: - name: polyunsaturated_fat type: VARCHAR - name: monounsaturated_fat type: VARCHAR - name: smoke_point type: VARCHAR - name: total_fat type: VARCHAR table: table_name_28
SELECT polyunsaturated_fat FROM table_name_28 WHERE smoke_point = "°c ()" AND total_fat = "100g" AND monounsaturated_fat = "63g"
What is Plural, when Singular is tor (your)?
columns: - name: plural type: VARCHAR - name: singular type: VARCHAR table: table_name_33
SELECT plural FROM table_name_33 WHERE singular = "tor (your)"
Who is the call sign that has a commenced operation before 1976?
columns: - name: callsign type: VARCHAR - name: commenced_operations type: INTEGER table: table_name_3
SELECT callsign FROM table_name_3 WHERE commenced_operations < 1976
Which school has enrollment of 887?
columns: - name: school type: VARCHAR - name: enrollment type: VARCHAR table: table_name_44
SELECT school FROM table_name_44 WHERE enrollment = 887
List the total number of institutions founded in Rock Island, Illinois.
columns: - name: founded type: VARCHAR - name: location type: VARCHAR table: table_18483171_1
SELECT COUNT(founded) FROM table_18483171_1 WHERE location = "Rock Island, Illinois"
Name the college for david carter
columns: - name: college type: VARCHAR - name: player type: VARCHAR table: table_26533354_8
SELECT college FROM table_26533354_8 WHERE player = "David Carter"
What was the highest attendance at Junction Oval?
columns: - name: crowd type: INTEGER - name: venue type: VARCHAR table: table_name_90
SELECT MAX(crowd) FROM table_name_90 WHERE venue = "junction oval"
What is Affiliation, when Nickname is Bulldogs?
columns: - name: affiliation type: VARCHAR - name: nickname type: VARCHAR table: table_name_4
SELECT affiliation FROM table_name_4 WHERE nickname = "bulldogs"
What is every branch involved in Afghanistan?
columns: - name: branches_involved type: VARCHAR - name: location type: VARCHAR table: table_1921_1
SELECT branches_involved FROM table_1921_1 WHERE location = "Afghanistan"
Who is the athlete from the nation of Ethiopia (eth) who had a rank bigger than 7.0?
columns: - name: athlete type: VARCHAR - name: nation type: VARCHAR - name: rank type: VARCHAR table: table_22355_20
SELECT athlete FROM table_22355_20 WHERE nation = "Ethiopia (ETH)" AND rank > 7.0
Name the type that joined 2007
columns: - name: type type: VARCHAR - name: joined type: VARCHAR table: table_262560_1
SELECT type FROM table_262560_1 WHERE joined = 2007
What is the name of the race from round 1?
columns: - name: race_name type: VARCHAR - name: round type: VARCHAR table: table_name_90
SELECT race_name FROM table_name_90 WHERE round = 1
What Location has Years Member of 1963–1968?
columns: - name: location type: VARCHAR - name: years_member type: VARCHAR table: table_name_24
SELECT location FROM table_name_24 WHERE years_member = "1963–1968"
What score did the year 1948 have?
columns: - name: score type: VARCHAR - name: year type: VARCHAR table: table_name_21
SELECT score FROM table_name_21 WHERE year = "1948"
What is the rank of the qual 141.471?
columns: - name: rank type: VARCHAR - name: qual type: VARCHAR table: table_name_3
SELECT rank FROM table_name_3 WHERE qual = "141.471"
What are the notes for svishtov , bulgaria?
columns: - name: notes type: VARCHAR - name: main_legionary_base type: VARCHAR table: table_242785_1
SELECT notes FROM table_242785_1 WHERE main_legionary_base = "Svishtov , Bulgaria"
Performer 3 of paul merton, and a Performer 4 of sandi toksvig is which performer 1?
columns: - name: performer_1 type: VARCHAR - name: performer_3 type: VARCHAR - name: performer_4 type: VARCHAR table: table_name_93
SELECT performer_1 FROM table_name_93 WHERE performer_3 = "paul merton" AND performer_4 = "sandi toksvig"
What year was Waynesburg University founded in Pennsylvania?
columns: - name: year_founded type: VARCHAR - name: state__province type: VARCHAR - name: institution_name type: VARCHAR table: table_name_82
SELECT year_founded FROM table_name_82 WHERE state__province = "pennsylvania" AND institution_name = "waynesburg university"
What was the attendance on 10 november 2004?
columns: - name: attendance type: INTEGER - name: date type: VARCHAR table: table_name_31
SELECT AVG(attendance) FROM table_name_31 WHERE date = "10 november 2004"
What couple has an average of 17.2?
columns: - name: couple type: VARCHAR - name: average type: VARCHAR table: table_20424140_3
SELECT couple FROM table_20424140_3 WHERE average = "17.2"
What is the name of the algorithm with a directed/undirected of both and a subgraph-centric basis?
columns: - name: name type: VARCHAR - name: directed___undirected type: VARCHAR - name: basis type: VARCHAR table: table_name_12
SELECT name FROM table_name_12 WHERE directed___undirected = "both" AND basis = "subgraph-centric"
which part on the team does rick schuhwerk play
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_2781227_10
SELECT position FROM table_2781227_10 WHERE player = "Rick Schuhwerk"
what being the maximum total passengers 2008 with change 2008/09 being 6.5%
columns: - name: total_passengers_2008 type: INTEGER - name: change_2008_09 type: VARCHAR table: table_13836704_4
SELECT MAX(total_passengers_2008) FROM table_13836704_4 WHERE change_2008_09 = "6.5%"
Which season has Caps lower than 36 for the Club of NAC Breda?
columns: - name: season type: VARCHAR - name: caps type: VARCHAR - name: club type: VARCHAR table: table_name_35
SELECT season FROM table_name_35 WHERE caps < 36 AND club = "nac breda"
How many years has Sasol Jordan Yamaha as an Entrant?
columns: - name: year type: INTEGER - name: entrant type: VARCHAR table: table_name_79
SELECT AVG(year) FROM table_name_79 WHERE entrant = "sasol jordan yamaha"
Who was the opponent at the game that had a loss of Hendrickson (0-1)?
columns: - name: opponent type: VARCHAR - name: loss type: VARCHAR table: table_name_93
SELECT opponent FROM table_name_93 WHERE loss = "hendrickson (0-1)"
how many bosnian in cook islands is sri lankan
columns: - name: bosnian type: VARCHAR - name: cook_islands type: VARCHAR table: table_24807774_1
SELECT bosnian FROM table_24807774_1 WHERE cook_islands = "Sri Lankan"
Which Score has a Record of 1–3?
columns: - name: score type: VARCHAR - name: record type: VARCHAR table: table_name_95
SELECT score FROM table_name_95 WHERE record = "1–3"
WHAT IS THE LEAGUE WITH A ROUND LARGER THAN 6?
columns: - name: college_junior_club_team__league_ type: VARCHAR - name: round type: INTEGER table: table_name_82
SELECT college_junior_club_team__league_ FROM table_name_82 WHERE round > 6
What is the fleet size of the Vanguard 0-6-0dh class?
columns: - name: fleet_size type: VARCHAR - name: class type: VARCHAR table: table_name_73
SELECT fleet_size FROM table_name_73 WHERE class = "vanguard 0-6-0dh"
Who is the Home Team for Match No. 23?
columns: - name: home_team type: VARCHAR - name: match_no type: VARCHAR table: table_name_42
SELECT home_team FROM table_name_42 WHERE match_no = "23"
What is the transfer fee for the MLI player with fewer than 63 goals in a year more recent than 2006?
columns: - name: transfer_fee type: VARCHAR - name: nat type: VARCHAR - name: since type: VARCHAR - name: goals type: VARCHAR table: table_name_60
SELECT transfer_fee FROM table_name_60 WHERE since = "2006" AND goals < 63 AND nat = "mli"
What was the tournament that resulted in a winning score of –4 (71-72-72-69=284)?
columns: - name: tournament type: VARCHAR - name: winning_score type: VARCHAR table: table_name_34
SELECT tournament FROM table_name_34 WHERE winning_score = –4(71 - 72 - 72 - 69 = 284)
after 1987 and entrant of first racing what is the highest points?
columns: - name: points type: INTEGER - name: entrant type: VARCHAR - name: year type: VARCHAR table: table_name_69
SELECT MAX(points) FROM table_name_69 WHERE entrant = "first racing" AND year > 1987
Who was in the West when ESV Gebensbach was in the East?
columns: - name: west type: VARCHAR - name: east type: VARCHAR table: table_name_32
SELECT west FROM table_name_32 WHERE east = "esv gebensbach"
Which Tournament was played in NH in 2011?
columns: - name: tournament type: VARCHAR table: table_name_38
SELECT tournament FROM table_name_38 WHERE 2011 = "nh"
What is the number of laps for the honda vehicle, with a grid of 13?
columns: - name: laps type: VARCHAR - name: constructor type: VARCHAR - name: grid type: VARCHAR table: table_name_17
SELECT laps FROM table_name_17 WHERE constructor = "honda" AND grid = "13"
How many players has the highest points in the game against the Heat?
columns: - name: high_points type: VARCHAR - name: team type: VARCHAR table: table_23285849_6
SELECT COUNT(high_points) FROM table_23285849_6 WHERE team = "Heat"
List the states that have entry times of 49years, 29days
columns: - name: state_served type: VARCHAR - name: time_since_entry type: VARCHAR table: table_24415627_2
SELECT state_served FROM table_24415627_2 WHERE time_since_entry = "49years, 29days"
Which Silver has a Rank of 1, and a Total smaller than 11?
columns: - name: silver type: INTEGER - name: rank type: VARCHAR - name: total type: VARCHAR table: table_name_80
SELECT SUM(silver) FROM table_name_80 WHERE rank = "1" AND total < 11
Which 1989's 1991 and 1994 stats were 1r?
columns: - name: Id type: VARCHAR table: table_name_81
SELECT 1989 FROM table_name_81 WHERE 1991 = "1r" AND 1994 = "1r"
What's the predecessor of the Ekavian word vreme?
columns: - name: predecessor type: VARCHAR - name: ekavian type: VARCHAR table: table_27730_9
SELECT predecessor FROM table_27730_9 WHERE ekavian = "vreme"
What was in 2007 that is from 2004 0f 2r and 2010 of A?
columns: - name: Id type: VARCHAR table: table_name_73
SELECT 2007 FROM table_name_73 WHERE 2004 = "2r" AND 2010 = "a"
Which Location Attendance has a Game larger than 67, and a Team of @ charlotte?
columns: - name: location_attendance type: VARCHAR - name: game type: VARCHAR - name: team type: VARCHAR table: table_name_92
SELECT location_attendance FROM table_name_92 WHERE game > 67 AND team = "@ charlotte"
How many seasons did Pat Chambers coach?
columns: - name: seasons type: VARCHAR - name: coach type: VARCHAR table: table_name_2
SELECT COUNT(seasons) FROM table_name_2 WHERE coach = "pat chambers"
Which January has a Record of 28–14–8?
columns: - name: january type: VARCHAR - name: record type: VARCHAR table: table_name_17
SELECT january FROM table_name_17 WHERE record = "28–14–8"
What place did russia finish in?
columns: - name: placing type: VARCHAR - name: team type: VARCHAR table: table_name_26
SELECT COUNT(placing) FROM table_name_26 WHERE team = "russia"
What was the result of the game with a score of 4-1?
columns: - name: result type: VARCHAR - name: score type: VARCHAR table: table_name_65
SELECT result FROM table_name_65 WHERE score = "4-1"
How many times is avg/g 2?
columns: - name: receptions type: VARCHAR - name: avg_g type: VARCHAR table: table_name_82
SELECT COUNT(receptions) FROM table_name_82 WHERE avg_g = 2
What is the lowest league for the Malaysia Cup when it was larger than 0?
columns: - name: league type: INTEGER - name: malaysia_cup type: INTEGER table: table_name_98
SELECT MIN(league) FROM table_name_98 WHERE malaysia_cup > 0
What's the rank of Igor Rakočević of Tau Cerámica with more than 377 points?
columns: - name: rank type: INTEGER - name: points type: VARCHAR - name: team type: VARCHAR - name: name type: VARCHAR table: table_name_87
SELECT SUM(rank) FROM table_name_87 WHERE team = "tau cerámica" AND name = "igor rakočević" AND points > 377
What Inchicore Class has a GSWR Class smaller than 268, and a Type of 0-4-2t?
columns: - name: inchicore_class type: VARCHAR - name: gswr_class type: VARCHAR - name: type type: VARCHAR table: table_name_60
SELECT inchicore_class FROM table_name_60 WHERE gswr_class < 268 AND type = "0-4-2t"
What was the free score of the skater with a total of 156.67?
columns: - name: free type: VARCHAR - name: total type: VARCHAR table: table_name_80
SELECT free FROM table_name_80 WHERE total = 156.67
What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9?
columns: - name: reservation type: VARCHAR table: table_name_51
SELECT SUM(1979) FROM table_name_51 WHERE reservation = "standing rock indian reservation" AND 1989 < 54.9
What is the Director of the Film The Fugitive?
columns: - name: director type: VARCHAR - name: title type: VARCHAR table: table_name_90
SELECT director FROM table_name_90 WHERE title = "the fugitive"
What is the result of the game played when 22,555 were in attendance and the Buckeyes were ranked #1?
columns: - name: result type: VARCHAR - name: rank__number type: VARCHAR - name: attendance type: VARCHAR table: table_name_57
SELECT result FROM table_name_57 WHERE rank__number = "1" AND attendance = "22,555"
Which LE-5 Model has an LE-5A of 130?
columns: - name: le_5_model type: VARCHAR - name: le_5A type: VARCHAR table: table_name_2
SELECT le_5_model FROM table_name_2 WHERE le_5A = 130
What is the number of the player who came from Virginia?
columns: - name: no_s_ type: VARCHAR - name: school_club_team_country type: VARCHAR table: table_name_29
SELECT no_s_ FROM table_name_29 WHERE school_club_team_country = "virginia"
What is the Time of the Rowers from Finland with a Rank of less than 4?
columns: - name: time type: VARCHAR - name: rank type: VARCHAR - name: country type: VARCHAR table: table_name_28
SELECT time FROM table_name_28 WHERE rank < 4 AND country = "finland"
What is the year when kurtis kraft 500f was the chassis?
columns: - name: year type: INTEGER - name: chassis type: VARCHAR table: table_name_46
SELECT SUM(year) FROM table_name_46 WHERE chassis = "kurtis kraft 500f"
What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?
columns: - name: a_score type: INTEGER - name: b_score type: VARCHAR - name: position type: VARCHAR table: table_name_1
SELECT SUM(a_score) FROM table_name_1 WHERE b_score > 9.15 AND position = "2nd"
Which year was won with a finish of 68
columns: - name: year_s__won type: VARCHAR - name: finish type: VARCHAR table: table_name_25
SELECT year_s__won FROM table_name_25 WHERE finish = "68"
What is the name of the team from cisne fairfield school?
columns: - name: team_name type: VARCHAR - name: schools type: VARCHAR table: table_name_84
SELECT team_name FROM table_name_84 WHERE schools = "cisne fairfield"
What is the name for the Monza circuit race were Bugatti was the winning constructor?
columns: - name: name type: VARCHAR - name: winning_constructor type: VARCHAR - name: circuit type: VARCHAR table: table_name_51
SELECT name FROM table_name_51 WHERE winning_constructor = "bugatti" AND circuit = "monza"
What's jim colbert's highest rank?
columns: - name: rank type: INTEGER - name: player type: VARCHAR table: table_name_60
SELECT MAX(rank) FROM table_name_60 WHERE player = "jim colbert"
What do the notes say for 1989 May 7?
columns: - name: notes type: VARCHAR - name: date type: VARCHAR table: table_name_32
SELECT notes FROM table_name_32 WHERE date = "1989 may 7"
What is the record on February 19?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_39
SELECT record FROM table_name_39 WHERE date = "february 19"
Name the home team when the away team was essendon
columns: - name: home_team type: VARCHAR - name: away_team type: VARCHAR table: table_name_75
SELECT home_team AS score FROM table_name_75 WHERE away_team = "essendon"
Which Notre Dame position has a pick lower than 5 and round 7?
columns: - name: position type: VARCHAR - name: round type: VARCHAR - name: pick type: VARCHAR - name: college type: VARCHAR table: table_name_88
SELECT position FROM table_name_88 WHERE pick < 5 AND college = "notre dame" AND round = 7
What is the least obesity rank for the state of Utah?
columns: - name: obesity_rank type: INTEGER - name: state_and_district_of_columbia type: VARCHAR table: table_18958648_1
SELECT MIN(obesity_rank) FROM table_18958648_1 WHERE state_and_district_of_columbia = "Utah"
Which bowl game has a season greater than 2008, with new orleans, Louisiana as the location?
columns: - name: bowl_game type: VARCHAR - name: season type: VARCHAR - name: location type: VARCHAR table: table_name_47
SELECT bowl_game FROM table_name_47 WHERE season > 2008 AND location = "new orleans, louisiana"
How old was the conservative party member that left the house in 2001?
columns: - name: age_on_leaving type: VARCHAR - name: political_party type: VARCHAR - name: left_house type: VARCHAR table: table_name_43
SELECT age_on_leaving FROM table_name_43 WHERE political_party = "conservative" AND left_house = "2001"
Who ran in the race for Jack Brooks' seat?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341865_45
SELECT candidates FROM table_1341865_45 WHERE incumbent = "Jack Brooks"
How many viewers in millions for episode number 38?
columns: - name: us_viewers__million_ type: VARCHAR - name: 'no' type: VARCHAR table: table_2602958_3
SELECT us_viewers__million_ FROM table_2602958_3 WHERE no = 38
Name the first for countries of trinidad and tobago for hutchinson for years before 2004
columns: - name: first type: VARCHAR - name: year type: VARCHAR - name: country type: VARCHAR - name: last type: VARCHAR table: table_name_39
SELECT first FROM table_name_39 WHERE country = "trinidad and tobago" AND last = "hutchinson" AND year < 2004
Which Grid that has a Rider of mike di meglio, and Laps larger than 23?
columns: - name: grid type: INTEGER - name: rider type: VARCHAR - name: laps type: VARCHAR table: table_name_23
SELECT AVG(grid) FROM table_name_23 WHERE rider = "mike di meglio" AND laps > 23
What is the place with a to par of E and a score of 69-69-72=210?
columns: - name: place type: VARCHAR - name: to_par type: VARCHAR - name: score type: VARCHAR table: table_name_59
SELECT place FROM table_name_59 WHERE to_par = "e" AND score = 69 - 69 - 72 = 210