question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
When 142900 is the population what is the highest rank?
columns: - name: rank type: INTEGER - name: population type: VARCHAR table: table_23248420_1
SELECT MAX(rank) FROM table_23248420_1 WHERE population = 142900
what is the round when the college is north carolina and the overall is more than 124?
columns: - name: round type: INTEGER - name: college type: VARCHAR - name: overall type: VARCHAR table: table_name_68
SELECT SUM(round) FROM table_name_68 WHERE college = "north carolina" AND overall > 124
What was the lowest crowd size when Carlton was the away team.
columns: - name: crowd type: INTEGER - name: away_team type: VARCHAR table: table_name_65
SELECT MIN(crowd) FROM table_name_65 WHERE away_team = "carlton"
WHAT IS THE LAPS WITH A GRID OF 26?
columns: - name: laps type: VARCHAR - name: grid type: VARCHAR table: table_name_7
SELECT laps FROM table_name_7 WHERE grid = "26"
Which Partial thromboplastin time has a Prothrombin time of prolonged and a Condition of factor v deficiency?
columns: - name: partial_thromboplastin_time type: VARCHAR - name: prothrombin_time type: VARCHAR - name: condition type: VARCHAR table: table_name_76
SELECT partial_thromboplastin_time FROM table_name_76 WHERE prothrombin_time = "prolonged" AND condition = "factor v deficiency"
What is the date of game 66?
columns: - name: date type: VARCHAR - name: game type: VARCHAR table: table_name_34
SELECT date FROM table_name_34 WHERE game = 66
What is the latest first elected?
columns: - name: first_elected type: INTEGER table: table_2668405_17
SELECT MAX(first_elected) FROM table_2668405_17
Which Year(s) won has a Total of 147?
columns: - name: year_s__won type: VARCHAR - name: total type: VARCHAR table: table_name_57
SELECT year_s__won FROM table_name_57 WHERE total = 147
Which tournament had a clay surface and a score of 6–1, 3–6, 6–2?
columns: - name: tournament type: VARCHAR - name: surface type: VARCHAR - name: score_in_the_final type: VARCHAR table: table_name_76
SELECT tournament FROM table_name_76 WHERE surface = "clay" AND score_in_the_final = "6–1, 3–6, 6–2"
What was the Purse for Owner Harold A. Allen prior to 2009?
columns: - name: purse type: VARCHAR - name: year type: VARCHAR - name: owner type: VARCHAR table: table_name_41
SELECT purse FROM table_name_41 WHERE year < 2009 AND owner = "harold a. allen"
What was the Attendance when Lincoln City was the Opponents with H/A of A?
columns: - name: attendance type: VARCHAR - name: opponents type: VARCHAR - name: h___a type: VARCHAR table: table_name_20
SELECT COUNT(attendance) FROM table_name_20 WHERE opponents = "lincoln city" AND h___a = "a"
How many total yards for Bobby Layne?
columns: - name: yards type: INTEGER - name: name type: VARCHAR table: table_19418696_3
SELECT MAX(yards) FROM table_19418696_3 WHERE name = "Bobby Layne"
What is the lowest Rank when Attempts was 319, and the Year was larger than 2000?
columns: - name: rank type: INTEGER - name: attempts type: VARCHAR - name: year type: VARCHAR table: table_name_46
SELECT MIN(rank) FROM table_name_46 WHERE attempts = 319 AND year > 2000
What is the constructor on the team with 8 rounds and a chassis of 156 158 1512?
columns: - name: constructor type: VARCHAR - name: rounds type: VARCHAR - name: chassis type: VARCHAR table: table_name_54
SELECT constructor FROM table_name_54 WHERE rounds = "8" AND chassis = "156 158 1512"
What is the number of attendance values for ties having an opponent of Middlesbrough and result of 3-1?
columns: - name: attendance type: VARCHAR - name: opponent type: VARCHAR - name: result type: VARCHAR table: table_name_2
SELECT COUNT(attendance) FROM table_name_2 WHERE opponent = "middlesbrough" AND result = "3-1"
Name the average year for 4 rank
columns: - name: year type: INTEGER - name: rank type: VARCHAR table: table_name_33
SELECT AVG(year) FROM table_name_33 WHERE rank = 4
What's the Date of Issue for Design of Katalin Kovats?
columns: - name: date_of_issue type: VARCHAR - name: design type: VARCHAR table: table_name_46
SELECT date_of_issue FROM table_name_46 WHERE design = "katalin kovats"
What city/municipality has area of 176.40?
columns: - name: city__municipality type: VARCHAR - name: "area__km\xB2_" type: VARCHAR table: table_255602_1
SELECT city__municipality FROM table_255602_1 WHERE area__km²_ = "176.40"
Which Touchdowns have an Extra points smaller than 5, and a Player of clark, and Field goals larger than 0?
columns: - name: touchdowns type: INTEGER - name: field_goals type: VARCHAR - name: extra_points type: VARCHAR - name: player type: VARCHAR table: table_name_8
SELECT AVG(touchdowns) FROM table_name_8 WHERE extra_points < 5 AND player = "clark" AND field_goals > 0
what is the current version of the project64 with gpl v2 license?
columns: - name: current_version type: VARCHAR - name: license type: VARCHAR - name: name type: VARCHAR table: table_name_38
SELECT current_version FROM table_name_38 WHERE license = "gpl v2" AND name = "project64"
What is the average number of games associated with 6 points and under 2 losses?
columns: - name: games type: INTEGER - name: points type: VARCHAR - name: lost type: VARCHAR table: table_name_80
SELECT AVG(games) FROM table_name_80 WHERE points = 6 AND lost < 2
What was the incident in imam sahib area, kunduz province?
columns: - name: nature_of_incident type: VARCHAR - name: location type: VARCHAR table: table_name_99
SELECT nature_of_incident FROM table_name_99 WHERE location = "imam sahib area, kunduz province"
What format has a catalogue of asw 40362?
columns: - name: format type: VARCHAR - name: catalogue type: VARCHAR table: table_name_81
SELECT format FROM table_name_81 WHERE catalogue = "asw 40362"
How large was the crowd when North Melbourne played as the away team?
columns: - name: crowd type: VARCHAR - name: away_team type: VARCHAR table: table_name_62
SELECT crowd FROM table_name_62 WHERE away_team = "north melbourne"
Name the builder for number 3
columns: - name: builder type: VARCHAR - name: number type: VARCHAR table: table_name_64
SELECT builder FROM table_name_64 WHERE number = 3
What identifier has 100000 watts as the power?
columns: - name: identifier type: VARCHAR - name: power type: VARCHAR table: table_name_98
SELECT identifier FROM table_name_98 WHERE power = "100000 watts"
Who won Bronze with Notes of 2.5km, 16controls?
columns: - name: bronze type: VARCHAR - name: notes type: VARCHAR table: table_name_31
SELECT bronze FROM table_name_31 WHERE notes = "2.5km, 16controls"
What is Points, when Club is Maesteg RFC?
columns: - name: points type: VARCHAR - name: club type: VARCHAR table: table_name_14
SELECT points FROM table_name_14 WHERE club = "maesteg rfc"
What is the country for the player Tiger Woods?
columns: - name: country type: VARCHAR - name: player type: VARCHAR table: table_name_3
SELECT country FROM table_name_3 WHERE player = "tiger woods"
What is the average year with an average start smaller than 6.3 and fewer than 0 wins?
columns: - name: year type: INTEGER - name: avg_start type: VARCHAR - name: wins type: VARCHAR table: table_name_89
SELECT AVG(year) FROM table_name_89 WHERE avg_start < 6.3 AND wins < 0
What wss the average round drafted for xavier players?
columns: - name: round type: INTEGER - name: school type: VARCHAR table: table_name_5
SELECT AVG(round) FROM table_name_5 WHERE school = "xavier"
Who was the Semi-Finalist #2 in 2001?
columns: - name: semi_finalist__number2 type: VARCHAR - name: year type: VARCHAR table: table_name_26
SELECT semi_finalist__number2 FROM table_name_26 WHERE year = "2001"
What was the 2011 population of pavliš?
columns: - name: population__2011_ type: VARCHAR - name: settlement type: VARCHAR table: table_2562572_46
SELECT population__2011_ FROM table_2562572_46 WHERE settlement = "Pavliš"
What is the street address for the Prudential Tower building?
columns: - name: street_address type: VARCHAR - name: name type: VARCHAR table: table_name_17
SELECT street_address FROM table_name_17 WHERE name = "prudential tower"
What are the most wins of Terang with the draws less than 0?
columns: - name: wins type: INTEGER - name: club type: VARCHAR - name: draws type: VARCHAR table: table_name_84
SELECT MAX(wins) FROM table_name_84 WHERE club = "terang" AND draws < 0
Who is the head of household for task number 7?
columns: - name: head_of_household type: VARCHAR - name: task_no type: VARCHAR table: table_name_39
SELECT head_of_household FROM table_name_39 WHERE task_no = 7
How many average votes did producer carlos coelho have in a higher place than 6 and with a draw larger than 5?
columns: - name: votes type: INTEGER - name: draw type: VARCHAR - name: place type: VARCHAR - name: producer type: VARCHAR table: table_name_58
SELECT AVG(votes) FROM table_name_58 WHERE place < 6 AND producer = "carlos coelho" AND draw > 5
In what Year is the Gauge 2 ft 6 in?
columns: - name: year type: VARCHAR - name: gauge type: VARCHAR table: table_name_22
SELECT year FROM table_name_22 WHERE gauge = "2 ft 6 in"
What is TV Time, when Opponent is At Cincinnati Bengals?
columns: - name: tv_time type: VARCHAR - name: opponent type: VARCHAR table: table_name_89
SELECT tv_time FROM table_name_89 WHERE opponent = "at cincinnati bengals"
What date was the Doncaster race?
columns: - name: date type: VARCHAR - name: race type: VARCHAR table: table_2581397_5
SELECT date FROM table_2581397_5 WHERE race = "Doncaster"
How many episodes had rating/share (18-49) of 0.7/2 and a rating of 2.1?
columns: - name: episode_number type: VARCHAR - name: rating type: VARCHAR table: table_25751274_2
SELECT COUNT(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 0.7 / 2 AND rating = "2.1"
What was the result of Sopot (pol)?
columns: - name: result type: VARCHAR - name: location type: VARCHAR table: table_name_33
SELECT result FROM table_name_33 WHERE location = "sopot (pol)"
How much tonnage has a Fate of sunk, and a Flag of great britain, and a Date of 26 september 1940, and Deaths of 2?
columns: - name: tonnage___grt__ type: INTEGER - name: deaths type: VARCHAR - name: date type: VARCHAR - name: fate type: VARCHAR - name: flag type: VARCHAR table: table_name_83
SELECT SUM(tonnage___grt__) FROM table_name_83 WHERE fate = "sunk" AND flag = "great britain" AND date = "26 september 1940" AND deaths = 2
What is every name for longitude of 152.0E?
columns: - name: name type: VARCHAR - name: longitude type: VARCHAR table: table_16799784_12
SELECT name FROM table_16799784_12 WHERE longitude = "152.0E"
What is 2011, when 2012 is "1R"?
columns: - name: Id type: VARCHAR table: table_name_73
SELECT 2011 FROM table_name_73 WHERE 2012 = "1r"
Which season was harrisburg lunatics in?
columns: - name: season type: VARCHAR - name: team type: VARCHAR table: table_name_75
SELECT season FROM table_name_75 WHERE team = "harrisburg lunatics"
What Inclination has Eccentricity of 0.06 +0.06 −0.11?
columns: - name: inclination type: VARCHAR - name: eccentricity type: VARCHAR table: table_name_81
SELECT inclination FROM table_name_81 WHERE eccentricity = "0.06 +0.06 −0.11"
What is the lowest Points, when Home is "Boston"?
columns: - name: points type: INTEGER - name: home type: VARCHAR table: table_name_81
SELECT MIN(points) FROM table_name_81 WHERE home = "boston"
What was the rating of the season that had 18.17 million household viewers?
columns: - name: rating type: VARCHAR - name: viewers__households_in_millions_ type: VARCHAR table: table_name_23
SELECT rating FROM table_name_23 WHERE viewers__households_in_millions_ = "18.17"
What was the record when the home team is Washington?
columns: - name: record type: VARCHAR - name: home type: VARCHAR table: table_name_57
SELECT record FROM table_name_57 WHERE home = "washington"
How many sets of marks does Tonioli get in week 3?
columns: - name: tonioli type: VARCHAR - name: week__number type: VARCHAR table: table_18595004_7
SELECT COUNT(tonioli) FROM table_18595004_7 WHERE week__number = 3
For what Class A is the school year 1987-88?
columns: - name: class_a type: VARCHAR - name: school_year type: VARCHAR table: table_name_24
SELECT class_a FROM table_name_24 WHERE school_year = "1987-88"
Which Match played in a Location of San Francisco has a Competition of Semifinal?
columns: - name: match type: VARCHAR - name: competition type: VARCHAR - name: location type: VARCHAR table: table_name_19
SELECT match FROM table_name_19 WHERE competition = "semifinal" AND location = "san francisco"
What region has giuseppe sivori as a home venue?
columns: - name: region type: VARCHAR - name: home_venue type: VARCHAR table: table_name_52
SELECT region FROM table_name_52 WHERE home_venue = "giuseppe sivori"
What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13?
columns: - name: usn_2013 type: INTEGER - name: cnn_2011 type: VARCHAR - name: bw_2013 type: VARCHAR - name: forbes_2011 type: VARCHAR table: table_name_63
SELECT SUM(usn_2013) FROM table_name_63 WHERE bw_2013 < 1000 AND forbes_2011 > 17 AND cnn_2011 < 13
What Album has a Year that's larger than 2001?
columns: - name: album type: VARCHAR - name: year type: INTEGER table: table_name_39
SELECT album FROM table_name_39 WHERE year > 2001
What are the notes for the shirt that said Pavv after 2007?
columns: - name: notes type: VARCHAR - name: shirt_printing type: VARCHAR - name: year type: VARCHAR table: table_name_31
SELECT notes FROM table_name_31 WHERE shirt_printing = "pavv" AND year > 2007
what is the venue of neman
columns: - name: venue type: VARCHAR - name: team type: VARCHAR table: table_name_23
SELECT venue FROM table_name_23 WHERE team = "neman"
Name the least age for the 1st dose for 3 doses of 2-3 drops
columns: - name: minimum_age_at_1st_dose type: VARCHAR - name: number_of_doses type: VARCHAR - name: dose type: VARCHAR table: table_name_28
SELECT minimum_age_at_1st_dose FROM table_name_28 WHERE number_of_doses = "3 doses" AND dose = "2-3 drops"
What is he Atsushi Aoki when the Black Tiger V is ibushi (16:35)?
columns: - name: atsushi_aoki type: VARCHAR - name: black_tiger_v type: VARCHAR table: table_name_96
SELECT atsushi_aoki FROM table_name_96 WHERE black_tiger_v = "ibushi (16:35)"
WHAT IS THE RESULT FOR best urban/alternative performance, IN 2003 OR GREATER?
columns: - name: result type: VARCHAR - name: category type: VARCHAR - name: year type: VARCHAR table: table_name_1
SELECT result FROM table_name_1 WHERE category = "best urban/alternative performance" AND year > 2003
Which DOB has a Surname of cresswell?
columns: - name: dob type: VARCHAR - name: surname type: VARCHAR table: table_name_40
SELECT dob FROM table_name_40 WHERE surname = "cresswell"
How many ranks have chen yin as the name, with a lane greater than 8?
columns: - name: rank type: INTEGER - name: name type: VARCHAR - name: lane type: VARCHAR table: table_name_22
SELECT SUM(rank) FROM table_name_22 WHERE name = "chen yin" AND lane > 8
Who is the second on the North America team for which Cathy Overton-Clapham the third?
columns: - name: second type: VARCHAR - name: team type: VARCHAR - name: third type: VARCHAR table: table_name_10
SELECT second FROM table_name_10 WHERE team = "north america" AND third = "cathy overton-clapham"
What did winner Gary Player par?
columns: - name: to_par type: VARCHAR - name: winner type: VARCHAR table: table_name_89
SELECT to_par FROM table_name_89 WHERE winner = "gary player"
What is Rank Points, when Total is "17", and when Shooter is "Lalita Yauhleuskaya ( AUS )"?
columns: - name: rank_points type: VARCHAR - name: total type: VARCHAR - name: shooter type: VARCHAR table: table_name_12
SELECT rank_points FROM table_name_12 WHERE total = "17" AND shooter = "lalita yauhleuskaya ( aus )"
What was the score of the game from July 18?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_30
SELECT score FROM table_name_30 WHERE date = "july 18"
In the North Central region, what are the regional page #'s?
columns: - name: regional_page__number type: VARCHAR - name: region_name type: VARCHAR table: table_287659_2
SELECT regional_page__number FROM table_287659_2 WHERE region_name = "North Central"
What shows for 2007 at the Olympic Games as tournament.
columns: - name: tournament type: VARCHAR table: table_name_55
SELECT 2007 FROM table_name_55 WHERE tournament = "olympic games"
What circuit has qualifying as the session?
columns: - name: circuit type: VARCHAR - name: session type: VARCHAR table: table_name_77
SELECT circuit FROM table_name_77 WHERE session = "qualifying"
Is it home or away when opponent is Pride with a W 11-10 result?
columns: - name: home_away type: VARCHAR - name: opponent type: VARCHAR - name: result type: VARCHAR table: table_name_49
SELECT home_away FROM table_name_49 WHERE opponent = "pride" AND result = "w 11-10"
What was the score did phoenix have with a Record of 3–6–0 at home?
columns: - name: score type: VARCHAR - name: home type: VARCHAR - name: record type: VARCHAR table: table_name_88
SELECT score FROM table_name_88 WHERE home = "phoenix" AND record = "3–6–0"
Can you tell the Lost that has the Try BP of 10, and the Club of uwic rfc?
columns: - name: lost type: VARCHAR - name: try_bp type: VARCHAR - name: club type: VARCHAR table: table_name_50
SELECT lost FROM table_name_50 WHERE try_bp = "10" AND club = "uwic rfc"
What average city has a total less than 2, with a borough greater than 0?
columns: - name: city type: INTEGER - name: total type: VARCHAR - name: borough type: VARCHAR table: table_name_70
SELECT AVG(city) FROM table_name_70 WHERE total < 2 AND borough > 0
Name the total number of rank for growth raate for 14.47
columns: - name: rank type: VARCHAR - name: growth_rate type: VARCHAR table: table_2527063_3
SELECT COUNT(rank) FROM table_2527063_3 WHERE growth_rate = "14.47"
Who was the home team that played against the Boston Bruins on January 11?
columns: - name: home type: VARCHAR - name: visitor type: VARCHAR - name: date type: VARCHAR table: table_name_91
SELECT home FROM table_name_91 WHERE visitor = "boston bruins" AND date = "january 11"
Round 1 is in what circuit?
columns: - name: circuit type: VARCHAR - name: round type: VARCHAR table: table_26267607_2
SELECT circuit FROM table_26267607_2 WHERE round = "1"
Which baseball team is class AAA?
columns: - name: team type: VARCHAR - name: sport type: VARCHAR - name: class type: VARCHAR table: table_name_75
SELECT team FROM table_name_75 WHERE sport = "baseball" AND class = "aaa"
Who has a Jump 2 of 7.06, and what is this person's Jump 3?
columns: - name: jump_3 type: VARCHAR - name: jump_2 type: VARCHAR table: table_name_80
SELECT jump_3 FROM table_name_80 WHERE jump_2 = "7.06"
What is the highest number of the fastest laps when there were 0 poles, more than 2 podiums, and more than 15 races?
columns: - name: fastest_laps type: INTEGER - name: podiums type: VARCHAR - name: poles type: VARCHAR - name: races type: VARCHAR table: table_name_9
SELECT MAX(fastest_laps) FROM table_name_9 WHERE poles = 0 AND races > 15 AND podiums > 2
What is the highest total medals won by a nation that had 7 bronze but more than 12 silver medals?
columns: - name: total type: INTEGER - name: bronze type: VARCHAR - name: silver type: VARCHAR table: table_name_43
SELECT MAX(total) FROM table_name_43 WHERE bronze = 7 AND silver > 12
How many total games associated with the Pac-12 of california and 117 years?
columns: - name: total_games type: VARCHAR - name: years type: VARCHAR - name: pac_12 type: VARCHAR table: table_name_84
SELECT total_games FROM table_name_84 WHERE years = 117 AND pac_12 = "california"
What is the lowest rank of Deutsche Telekom with a market value over 209,628?
columns: - name: rank type: INTEGER - name: name type: VARCHAR - name: market_value___usd_million_ type: VARCHAR table: table_name_85
SELECT MIN(rank) FROM table_name_85 WHERE name = "deutsche telekom" AND market_value___usd_million_ > 209 OFFSET 628
Name the Non-Suited Match that has greater than 6 Number of Decks.
columns: - name: non_suited_match type: VARCHAR - name: number_of_decks type: INTEGER table: table_name_60
SELECT non_suited_match FROM table_name_60 WHERE number_of_decks > 6
What was the pic for Canada for player Yvon Bouillon earlier than 1974?
columns: - name: pick type: INTEGER - name: player type: VARCHAR - name: nationality type: VARCHAR - name: year type: VARCHAR table: table_name_38
SELECT AVG(pick) FROM table_name_38 WHERE nationality = "canada" AND year < 1974 AND player = "yvon bouillon"
what's the title with original air date being september23,1995
columns: - name: title type: VARCHAR - name: original_air_date type: VARCHAR table: table_14637853_3
SELECT title FROM table_14637853_3 WHERE original_air_date = "September23,1995"
Name the partner for mark woodforde martina navratilova
columns: - name: partner type: VARCHAR - name: opponents type: VARCHAR table: table_1547951_3
SELECT partner FROM table_1547951_3 WHERE opponents = "Mark Woodforde Martina Navratilova"
Which Viavoice 5/15/09 has a CSA 5/14/09 of 5%, and a TNS-Sofres 5/28/09 of 4.5%?
columns: - name: viavoice_5_15_09 type: VARCHAR - name: csa_5_14_09 type: VARCHAR - name: tns_sofres_5_28_09 type: VARCHAR table: table_name_96
SELECT viavoice_5_15_09 FROM table_name_96 WHERE csa_5_14_09 = "5%" AND tns_sofres_5_28_09 = "4.5%"
In which state did Marquis Li rule?
columns: - name: state type: VARCHAR - name: name type: VARCHAR - name: title type: VARCHAR table: table_name_43
SELECT state FROM table_name_43 WHERE name = "li" AND title = "marquis"
Tell me the team which has matches of 13
columns: - name: team type: VARCHAR - name: matches type: VARCHAR table: table_name_43
SELECT team FROM table_name_43 WHERE matches = 13
What is the Record when the round was 5, time was 5:00, and the opponent was Torrance Taylor
columns: - name: record type: VARCHAR - name: opponent type: VARCHAR - name: round type: VARCHAR - name: time type: VARCHAR table: table_name_35
SELECT record FROM table_name_35 WHERE round = 5 AND time = "5:00" AND opponent = "torrance taylor"
What's the record of the team who played the Cleveland Browns?
columns: - name: record type: VARCHAR - name: opponent type: VARCHAR table: table_name_56
SELECT record FROM table_name_56 WHERE opponent = "cleveland browns"
How many Goals against have Wins larger than 12, and a Club of ud las palmas, and a Position larger than 5?
columns: - name: goals_against type: VARCHAR - name: position type: VARCHAR - name: wins type: VARCHAR - name: club type: VARCHAR table: table_name_48
SELECT COUNT(goals_against) FROM table_name_48 WHERE wins > 12 AND club = "ud las palmas" AND position > 5
What number pick was the player drafted in round 3 at #28 overall?
columns: - name: pick type: INTEGER - name: overall type: VARCHAR - name: round type: VARCHAR table: table_name_51
SELECT AVG(pick) FROM table_name_51 WHERE overall < 28 AND round = 3
What is the smallest point total when the grid is larger than 5 and the time/retired is fire?
columns: - name: points type: INTEGER - name: grid type: VARCHAR - name: time_retired type: VARCHAR table: table_name_52
SELECT MIN(points) FROM table_name_52 WHERE grid > 5 AND time_retired = "fire"
On what date did congressman joseph tydings enter take his seat?
columns: - name: entered_senate type: VARCHAR - name: senator type: VARCHAR table: table_24415627_2
SELECT entered_senate FROM table_24415627_2 WHERE senator = "Joseph Tydings"
What was the result for the contestant whose background was as a business major?
columns: - name: result type: VARCHAR - name: background type: VARCHAR table: table_19810459_1
SELECT result FROM table_19810459_1 WHERE background = "Business major"
Which Size has a County of 62 perry?
columns: - name: size type: INTEGER - name: county type: VARCHAR table: table_name_69
SELECT MAX(size) FROM table_name_69 WHERE county = "62 perry"
Which station has channel TV (DT) of 3 (26)?
columns: - name: station type: VARCHAR - name: channel_tv___dt__ type: VARCHAR table: table_name_74
SELECT station FROM table_name_74 WHERE channel_tv___dt__ = "3 (26)"
What's the service number of the Jammu Duronto train?
columns: - name: service type: INTEGER - name: train_name type: VARCHAR table: table_23477312_1
SELECT MAX(service) FROM table_23477312_1 WHERE train_name = "Jammu Duronto"