question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Name the least silver for nation of total when bronze is more than 24
columns: - name: silver type: INTEGER - name: nation type: VARCHAR - name: bronze type: VARCHAR table: table_name_40
SELECT MIN(silver) FROM table_name_40 WHERE nation = "total" AND bronze > 24
What is the series of the winning team in Iowa, for softball?
columns: - name: series type: VARCHAR - name: winning_team type: VARCHAR - name: sport type: VARCHAR table: table_name_24
SELECT series FROM table_name_24 WHERE winning_team = "iowa" AND sport = "softball"
WHat was the score for Phil Mickelson when he placed t3?
columns: - name: score type: VARCHAR - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_60
SELECT score FROM table_name_60 WHERE place = "t3" AND player = "phil mickelson"
What is the LFN support on Windows NT 3.1?
columns: - name: lfn_support type: VARCHAR - name: name type: VARCHAR table: table_name_68
SELECT lfn_support FROM table_name_68 WHERE name = "windows nt 3.1"
What is the rank when 36.5 is tumbling?
columns: - name: rank type: VARCHAR - name: tumbling type: VARCHAR table: table_22014431_3
SELECT COUNT(rank) FROM table_22014431_3 WHERE tumbling = "36.5"
What is the margin at the Nabisco Championship?
columns: - name: margin type: VARCHAR - name: championship type: VARCHAR table: table_name_18
SELECT margin FROM table_name_18 WHERE championship = "nabisco championship"
What was the record for the game on November 28 when the decision was Backstrom?
columns: - name: record type: VARCHAR - name: decision type: VARCHAR - name: date type: VARCHAR table: table_name_69
SELECT record FROM table_name_69 WHERE decision = "backstrom" AND date = "november 28"
What is the lowest Total, when Year(s) Won is "1948 , 1950 , 1951 , 1953"?
columns: - name: total type: INTEGER - name: year_s__won type: VARCHAR table: table_name_58
SELECT MIN(total) FROM table_name_58 WHERE year_s__won = "1948 , 1950 , 1951 , 1953"
How many marks did he get in 2005?
columns: - name: marks type: VARCHAR - name: season type: VARCHAR table: table_name_89
SELECT marks FROM table_name_89 WHERE season = "2005"
who is the the high rebounds with high assbeingts being scottie pippen (9)
columns: - name: high_rebounds type: VARCHAR - name: high_assists type: VARCHAR table: table_13480122_5
SELECT high_rebounds FROM table_13480122_5 WHERE high_assists = "Scottie Pippen (9)"
What was the record when the high rebound was Deandre Jordan (11)?
columns: - name: record type: VARCHAR - name: high_rebounds type: VARCHAR table: table_name_63
SELECT record FROM table_name_63 WHERE high_rebounds = "deandre jordan (11)"
How many Laps does GP Motorsport Team have?
columns: - name: laps type: INTEGER - name: team type: VARCHAR table: table_name_43
SELECT SUM(laps) FROM table_name_43 WHERE team = "gp motorsport"
with delivery date 1997 1997 what is the owns?
columns: - name: owns type: VARCHAR - name: delivery_date type: VARCHAR table: table_name_65
SELECT owns FROM table_name_65 WHERE delivery_date = "1997 1997"
What year was the result did not qualify?
columns: - name: year type: VARCHAR - name: result type: VARCHAR table: table_name_85
SELECT year FROM table_name_85 WHERE result = "did not qualify"
What date had a game with a score of 5-4?
columns: - name: date type: VARCHAR - name: score type: VARCHAR table: table_name_63
SELECT date FROM table_name_63 WHERE score = "5-4"
Which class had a number under 4 and was built in 1988?
columns: - name: class type: VARCHAR - name: number type: VARCHAR - name: built type: VARCHAR table: table_name_52
SELECT class FROM table_name_52 WHERE number < 4 AND built = "1988"
Who is every player with a height of 6-5?
columns: - name: player type: VARCHAR - name: height type: VARCHAR table: table_22824297_1
SELECT player FROM table_22824297_1 WHERE height = "6-5"
What's the standard name with an ADSL2 version and a 01.5 1.5 mbit/s downstream rate?
columns: - name: standard_name type: VARCHAR - name: version type: VARCHAR - name: downstream_rate type: VARCHAR table: table_name_49
SELECT standard_name FROM table_name_49 WHERE version = "adsl2" AND downstream_rate = "01.5 1.5 mbit/s"
What was the sum of Value ($M), when the Revenue ($M) was less than 307, the Team was Valencia, and the Rank was smaller than 19?
columns: - name: value__ type: INTEGER - name: rank type: VARCHAR - name: revenue__$m_ type: VARCHAR - name: team type: VARCHAR table: table_name_3
SELECT SUM(value__) AS $m_ FROM table_name_3 WHERE revenue__$m_ < 307 AND team = "valencia" AND rank < 19
In the game with an attendance of 18304, what was the final score?
columns: - name: result type: VARCHAR - name: attendance type: VARCHAR table: table_17294353_1
SELECT result FROM table_17294353_1 WHERE attendance = 18304
When the # is 9 what is the U.S original airdate?
columns: - name: us_original_airdate type: VARCHAR - name: _number type: VARCHAR table: table_29475589_5
SELECT us_original_airdate FROM table_29475589_5 WHERE _number = 9
What is the total number of events that had 34 cuts and 3 in the top 10?
columns: - name: events type: VARCHAR - name: cuts_made type: VARCHAR - name: top_10 type: VARCHAR table: table_name_58
SELECT COUNT(events) FROM table_name_58 WHERE cuts_made < 34 AND top_10 > 3
What driver has points less than 17?
columns: - name: driver type: VARCHAR - name: points type: INTEGER table: table_name_94
SELECT driver FROM table_name_94 WHERE points < 17
What were the outcomes of matches with bill tilden florence ballin as opponents?
columns: - name: outcome type: VARCHAR - name: opponents type: VARCHAR table: table_2127933_3
SELECT outcome FROM table_2127933_3 WHERE opponents = "Bill Tilden Florence Ballin"
Which Ipsos 5/16/09 has an Ifop- La Croix 5/15/09 of 26%?
columns: - name: csa_5_20_09 type: VARCHAR - name: ifop__la_croix_5_15_09 type: VARCHAR table: table_name_89
SELECT csa_5_20_09 FROM table_name_89 WHERE ifop__la_croix_5_15_09 = "26%"
What was the Version prior to 1996?
columns: - name: version type: VARCHAR - name: year type: INTEGER table: table_name_45
SELECT version FROM table_name_45 WHERE year < 1996
When was there a result of w 65-20 after week 6?
columns: - name: date type: VARCHAR - name: week type: VARCHAR - name: result type: VARCHAR table: table_name_43
SELECT date FROM table_name_43 WHERE week > 6 AND result = "w 65-20"
What event was in hong kong and went less than 2 rounds?
columns: - name: event type: VARCHAR - name: round type: VARCHAR - name: location type: VARCHAR table: table_name_66
SELECT event FROM table_name_66 WHERE round < 2 AND location = "hong kong"
who held the fastes lap in Phoenix, Arizona?
columns: - name: fastest_lap type: VARCHAR - name: location type: VARCHAR table: table_2454550_1
SELECT fastest_lap FROM table_2454550_1 WHERE location = "Phoenix, Arizona"
What is the name of the mill located on Anawan Street with a reference number larger than 8?
columns: - name: name type: VARCHAR - name: ref_number type: VARCHAR - name: location type: VARCHAR table: table_name_76
SELECT name FROM table_name_76 WHERE ref_number > 8 AND location = "anawan street"
Name the Score which has a Time of 18:00 and a Venue of african union?
columns: - name: score type: VARCHAR - name: time type: VARCHAR - name: venue type: VARCHAR table: table_name_99
SELECT score FROM table_name_99 WHERE time = "18:00" AND venue = "african union"
What is the Years of the player with Jersey Number(s) of 44?
columns: - name: years type: VARCHAR - name: jersey_number_s_ type: VARCHAR table: table_name_73
SELECT years FROM table_name_73 WHERE jersey_number_s_ = 44
What is Rank, when Event is "LAPT4 São Paulo"?
columns: - name: rank type: VARCHAR - name: event type: VARCHAR table: table_name_66
SELECT rank FROM table_name_66 WHERE event = "lapt4 são paulo"
What is Title, when Season is less than 1.8, and when First Broadcast is March 6, 1981?
columns: - name: title type: VARCHAR - name: season type: VARCHAR - name: first_broadcast type: VARCHAR table: table_name_2
SELECT title FROM table_name_2 WHERE season < 1.8 AND first_broadcast = "march 6, 1981"
What Country's ICAO is VOTR?
columns: - name: country type: VARCHAR - name: icao type: VARCHAR table: table_name_36
SELECT country FROM table_name_36 WHERE icao = "votr"
What is the land area (sqmi) for the township at longtidue 47.548602?
columns: - name: land___sqmi__ type: VARCHAR - name: latitude type: VARCHAR table: table_18600760_20
SELECT land___sqmi__ FROM table_18600760_20 WHERE latitude = "47.548602"
What is the total number of Weight, when Position is "Forward/Center", when Player is "Othella Harrington", and when Number is less than 32?
columns: - name: weight type: VARCHAR - name: number type: VARCHAR - name: position type: VARCHAR - name: player type: VARCHAR table: table_name_90
SELECT COUNT(weight) FROM table_name_90 WHERE position = "forward/center" AND player = "othella harrington" AND number < 32
Position of guard, and a Pick # larger than 9 is what highest round?
columns: - name: round type: INTEGER - name: position type: VARCHAR - name: pick__number type: VARCHAR table: table_name_67
SELECT MAX(round) FROM table_name_67 WHERE position = "guard" AND pick__number > 9
What is the shoulder measurement of the gun with a length of 57.85 (2.278)?
columns: - name: shoulder type: VARCHAR - name: length type: VARCHAR table: table_name_36
SELECT shoulder FROM table_name_36 WHERE length = "57.85 (2.278)"
Who was the 1st member that was elected in 1541/42?
columns: - name: elected type: VARCHAR table: table_name_44
SELECT 1 AS st_member FROM table_name_44 WHERE elected = "1541/42"
Which team is in 14th position?
columns: - name: team type: VARCHAR - name: pos type: VARCHAR table: table_name_20
SELECT team FROM table_name_20 WHERE pos = "14th"
Name the least wins for 6 points
columns: - name: wins type: INTEGER - name: points type: VARCHAR table: table_name_69
SELECT MIN(wins) FROM table_name_69 WHERE points = 6
What is the nationality of the Team Georgia Tech?
columns: - name: nationality type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_47
SELECT nationality FROM table_name_47 WHERE school_club_team = "georgia tech"
Who was the author for company Buzz Productions Theater?
columns: - name: author type: VARCHAR - name: company type: VARCHAR table: table_name_18
SELECT author FROM table_name_18 WHERE company = "buzz productions theater"
What state had an active chapter from 1906-1991?
columns: - name: state type: VARCHAR - name: charter_range type: VARCHAR table: table_name_36
SELECT state FROM table_name_36 WHERE charter_range = "1906-1991"
Which Constructor has Rounds, All and Driver, Bruno Giacomelli?
columns: - name: constructor type: VARCHAR - name: rounds type: VARCHAR - name: driver type: VARCHAR table: table_name_50
SELECT constructor FROM table_name_50 WHERE rounds = "all" AND driver = "bruno giacomelli"
What was the average attendance when the record was 58–49?
columns: - name: attendance type: INTEGER - name: record type: VARCHAR table: table_name_63
SELECT AVG(attendance) FROM table_name_63 WHERE record = "58–49"
What was the score of the game played on August 5?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_66
SELECT score FROM table_name_66 WHERE date = "august 5"
How many seasons did Apocalypstix place 2nd?
columns: - name: season type: VARCHAR - name: apocalypstix type: VARCHAR table: table_29619494_2
SELECT COUNT(season) FROM table_29619494_2 WHERE apocalypstix = "2nd"
What is the average Games, when Player is Robert Hock, and when Goals is less than 24?
columns: - name: games type: INTEGER - name: player type: VARCHAR - name: goals type: VARCHAR table: table_name_19
SELECT AVG(games) FROM table_name_19 WHERE player = "robert hock" AND goals < 24
What is the To par of the player with a t14 Finish?
columns: - name: to_par type: VARCHAR - name: finish type: VARCHAR table: table_name_56
SELECT to_par FROM table_name_56 WHERE finish = "t14"
What is the highest amount of bronze medals when the rank was larger than 9?
columns: - name: bronze type: INTEGER - name: rank type: INTEGER table: table_name_46
SELECT MAX(bronze) FROM table_name_46 WHERE rank > 9
Which years was there a To par of +1?
columns: - name: year_s__won type: VARCHAR - name: to_par type: VARCHAR table: table_name_45
SELECT year_s__won FROM table_name_45 WHERE to_par = "+1"
How many years was Pontiac the manufacturer for Joe Gibbs Racing?
columns: - name: year type: VARCHAR - name: team type: VARCHAR - name: manufacturer type: VARCHAR table: table_2268216_1
SELECT COUNT(year) FROM table_2268216_1 WHERE team = "Joe Gibbs Racing" AND manufacturer = "Pontiac"
What is the score of the team with the 14-9 record?
columns: - name: score type: VARCHAR - name: record type: VARCHAR table: table_name_43
SELECT score FROM table_name_43 WHERE record = "14-9"
What is the Entrant with a Engine of talbot l6, and Eugène Chaboud was the driver?
columns: - name: entrant type: VARCHAR - name: engine type: VARCHAR - name: driver type: VARCHAR table: table_name_80
SELECT entrant FROM table_name_80 WHERE engine = "talbot l6" AND driver = "eugène chaboud"
What are the notes during 57 bc caesar?
columns: - name: notes type: VARCHAR - name: date_founded__founder type: VARCHAR table: table_242785_3
SELECT notes FROM table_242785_3 WHERE date_founded__founder = "57 BC Caesar"
Which films participated when the category was Best Newcomer?
columns: - name: participants_recipients type: VARCHAR - name: category type: VARCHAR table: table_29644931_1
SELECT participants_recipients FROM table_29644931_1 WHERE category = "Best Newcomer"
Which race had a distance of 4 miles where the runner-up was not known?
columns: - name: race_name type: VARCHAR - name: dist__miles_ type: VARCHAR - name: runner_up type: VARCHAR table: table_name_22
SELECT race_name FROM table_name_22 WHERE dist__miles_ = "4" AND runner_up = "not known"
What is the hometown for the player that is defensive back and went to alabama?
columns: - name: hometown type: VARCHAR - name: position type: VARCHAR - name: college type: VARCHAR table: table_name_20
SELECT hometown FROM table_name_20 WHERE position = "defensive back" AND college = "alabama"
The match that lasted 2:43 has what record?
columns: - name: record type: VARCHAR - name: time type: VARCHAR table: table_name_38
SELECT record FROM table_name_38 WHERE time = "2:43"
What was the score of game 30?
columns: - name: score type: VARCHAR - name: game type: VARCHAR table: table_name_52
SELECT score FROM table_name_52 WHERE game = 30
Name the series number directed by richard thorpe written by dee johnson
columns: - name: series__number type: INTEGER - name: directed_by type: VARCHAR - name: written_by type: VARCHAR table: table_17355579_1
SELECT MAX(series__number) FROM table_17355579_1 WHERE directed_by = "Richard Thorpe" AND written_by = "Dee Johnson"
Who attended the school in 2008, that Brikajdri Wilson attended in 2006?
columns: - name: Id type: VARCHAR table: table_name_42
SELECT 2008 FROM table_name_42 WHERE 2006 = "brikajdri wilson"
Which Tournament has a Score of 4-6 6-2 6-1?
columns: - name: tournament type: VARCHAR - name: score type: VARCHAR table: table_name_40
SELECT tournament FROM table_name_40 WHERE score = "4-6 6-2 6-1"
What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4?
columns: - name: administrative_panel type: INTEGER - name: cultural_and_educational_panel type: VARCHAR - name: industrial_and_commercial_panel type: VARCHAR table: table_name_77
SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4
How many people were in attendance when the Washington Nationals had a score of 7-3 and a loss of Worrell (0-1)?
columns: - name: attendance type: VARCHAR - name: score type: VARCHAR - name: loss type: VARCHAR table: table_name_54
SELECT COUNT(attendance) FROM table_name_54 WHERE score = "7-3" AND loss = "worrell (0-1)"
What is the pages per minute (color) of the machine that has a max page size of a4 and dimensions (mm) of 303 x 94 x 60?
columns: - name: pages_per_minute__color_ type: VARCHAR - name: max_page_size type: VARCHAR - name: dimensions__mm_ type: VARCHAR table: table_name_31
SELECT pages_per_minute__color_ FROM table_name_31 WHERE max_page_size = "a4" AND dimensions__mm_ = "303 x 94 x 60"
what team scored in gomel
columns: - name: team type: VARCHAR - name: location type: VARCHAR table: table_name_10
SELECT team FROM table_name_10 WHERE location = "gomel"
What is School Year, when Cross Country is Lexington, when Soccer is Ashland, and when Volleyball is Wooster?
columns: - name: school_year type: VARCHAR - name: volleyball type: VARCHAR - name: cross_country type: VARCHAR - name: soccer type: VARCHAR table: table_name_9
SELECT school_year FROM table_name_9 WHERE cross_country = "lexington" AND soccer = "ashland" AND volleyball = "wooster"
How many Drawn has a Games larger than 6?
columns: - name: drawn type: INTEGER - name: games type: INTEGER table: table_name_32
SELECT SUM(drawn) FROM table_name_32 WHERE games > 6
How many rounds did Brett go for the Strikeforce: Shamrock vs. Diaz match?
columns: - name: round type: VARCHAR - name: event type: VARCHAR table: table_name_84
SELECT round FROM table_name_84 WHERE event = "strikeforce: shamrock vs. diaz"
Which Romaji Title has a Japanese Title of 花より男子2(リターンズ)?
columns: - name: romaji_title type: VARCHAR - name: japanese_title type: VARCHAR table: table_name_78
SELECT romaji_title FROM table_name_78 WHERE japanese_title = "花より男子2(リターンズ)"
what is the nationality when the ship is willerby?
columns: - name: nationality type: VARCHAR - name: ship type: VARCHAR table: table_name_64
SELECT nationality FROM table_name_64 WHERE ship = "willerby"
Where in Tongyong is Hanyu Sanmin?
columns: - name: tongyong type: VARCHAR - name: hanyu type: VARCHAR table: table_name_36
SELECT tongyong FROM table_name_36 WHERE hanyu = "sanmin"
Which Performance has a Test Standard of bs en779, and a Particulate size approaching 100% retention of >2µm, and a Class of f6?
columns: - name: performance type: VARCHAR - name: class type: VARCHAR - name: test_standard type: VARCHAR - name: particulate_size_approaching_100_percentage_retention type: VARCHAR table: table_name_39
SELECT performance FROM table_name_39 WHERE test_standard = "bs en779" AND particulate_size_approaching_100_percentage_retention = ">2µm" AND class = "f6"
When Estudiantes was team #2, what was their agg. value?
columns: - name: agg type: VARCHAR - name: team__number2 type: VARCHAR table: table_name_28
SELECT agg FROM table_name_28 WHERE team__number2 = "estudiantes"
How many people attended the May 28 game?
columns: - name: attendance type: VARCHAR - name: date type: VARCHAR table: table_name_99
SELECT attendance FROM table_name_99 WHERE date = "may 28"
What is the position of the player bill simmons?
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_26996293_7
SELECT position FROM table_26996293_7 WHERE player = "Bill Simmons"
Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1?
columns: - name: chassis type: VARCHAR - name: entrant type: VARCHAR - name: driver type: VARCHAR table: table_name_41
SELECT chassis FROM table_name_41 WHERE entrant = "larrousse f1" AND driver = "aguri suzuki"
When circuit ricardo tormo is the circuit who is the winning team?
columns: - name: winning_team type: VARCHAR - name: circuit type: VARCHAR table: table_21191496_1
SELECT winning_team FROM table_21191496_1 WHERE circuit = "circuit Ricardo Tormo"
What is the score where the country is Japan?
columns: - name: score type: VARCHAR - name: country type: VARCHAR table: table_name_95
SELECT score FROM table_name_95 WHERE country = "japan"
What is the lowest maximum of fps with a width of 3072 and a height less than 1620?
columns: - name: maximum_fps type: INTEGER - name: width type: VARCHAR - name: height type: VARCHAR table: table_name_84
SELECT MIN(maximum_fps) FROM table_name_84 WHERE width = 3072 AND height < 1620
Name the bubbles for onscroll
columns: - name: bubbles type: VARCHAR - name: attribute type: VARCHAR table: table_name_12
SELECT bubbles FROM table_name_12 WHERE attribute = "onscroll"
How many Gold medals did the Nation with less than 8 Total medals including 1 Bronze and 0 Silver receive?
columns: - name: gold type: INTEGER - name: silver type: VARCHAR - name: total type: VARCHAR - name: bronze type: VARCHAR table: table_name_88
SELECT MIN(gold) FROM table_name_88 WHERE total < 8 AND bronze < 1 AND silver < 1
What is the result of the ajc craven plate (wfa) race?
columns: - name: result type: VARCHAR - name: race type: VARCHAR table: table_name_88
SELECT result FROM table_name_88 WHERE race = "ajc craven plate (wfa)"
What season had a winning profit of $15,000?
columns: - name: season type: VARCHAR - name: winning_profit___aud__ type: VARCHAR table: table_2311410_1
SELECT season FROM table_2311410_1 WHERE winning_profit___aud__ = "$15,000"
How many laps did innes ireland drive with a grid higher than 11?
columns: - name: laps type: INTEGER - name: driver type: VARCHAR - name: grid type: VARCHAR table: table_name_29
SELECT SUM(laps) FROM table_name_29 WHERE driver = "innes ireland" AND grid > 11
What is the to par of player johnny miller, who has a t8 place?
columns: - name: to_par type: VARCHAR - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_18
SELECT to_par FROM table_name_18 WHERE place = "t8" AND player = "johnny miller"
What is the name of the episode written by karina csolty?
columns: - name: title type: VARCHAR - name: written_by type: VARCHAR table: table_27969432_2
SELECT title FROM table_27969432_2 WHERE written_by = "Karina Csolty"
What is Builder, when Date is 1953?
columns: - name: builder type: VARCHAR - name: date type: VARCHAR table: table_name_71
SELECT builder FROM table_name_71 WHERE date = "1953"
Which engine has a Year larger than 1969?
columns: - name: engine type: VARCHAR - name: year type: INTEGER table: table_name_7
SELECT engine FROM table_name_7 WHERE year > 1969
For the tournament played on Oct 17, 1982, what was the winning score?
columns: - name: winning_score type: VARCHAR - name: date type: VARCHAR table: table_name_69
SELECT winning_score FROM table_name_69 WHERE date = "oct 17, 1982"
What is the name of the driver of the vehicle constructed by Bugatti in Anfa?
columns: - name: driver type: VARCHAR - name: constructor type: VARCHAR - name: location type: VARCHAR table: table_name_2
SELECT driver FROM table_name_2 WHERE constructor = "bugatti" AND location = "anfa"
What is the distance of the Sam's town 250 race?
columns: - name: distance type: VARCHAR - name: race type: VARCHAR table: table_name_24
SELECT distance FROM table_name_24 WHERE race = "sam's town 250"
What is the iHeartRadio of the Bronson and Christine Show?
columns: - name: iheartradio type: VARCHAR - name: show type: VARCHAR table: table_name_74
SELECT iheartradio FROM table_name_74 WHERE show = "bronson and christine"
What is Fred Couples to par?
columns: - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_24
SELECT to_par FROM table_name_24 WHERE player = "fred couples"
What date was the pyramid location?
columns: - name: date type: VARCHAR - name: location type: VARCHAR table: table_name_69
SELECT date FROM table_name_69 WHERE location = "the pyramid"
What is the ISBN in 1999?
columns: - name: isbn type: VARCHAR - name: year type: VARCHAR table: table_name_48
SELECT isbn FROM table_name_48 WHERE year = 1999
What is the constituency number with electorates (2009) number larger than 152,958?
columns: - name: constituency_number type: VARCHAR - name: number_of_electorates__2009_ type: INTEGER table: table_name_40
SELECT constituency_number FROM table_name_40 WHERE number_of_electorates__2009_ > 152 OFFSET 958