question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
tipuani municipality when tacacoma municipality is 6?
columns: - name: tipuani_municipality type: VARCHAR - name: tacacoma_municipality type: VARCHAR table: table_2509202_2
SELECT tipuani_municipality FROM table_2509202_2 WHERE tacacoma_municipality = "6"
What country has the SBA Towers Tower Hayneville?
columns: - name: country type: VARCHAR - name: name type: VARCHAR table: table_name_71
SELECT country FROM table_name_71 WHERE name = "sba towers tower hayneville"
Who is the gymnast with a floor score of 14.800?
columns: - name: gymnast type: VARCHAR - name: floor type: VARCHAR table: table_name_83
SELECT gymnast FROM table_name_83 WHERE floor = "14.800"
What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers?
columns: - name: dave_viewers type: INTEGER - name: dave_ja_vu_viewers type: VARCHAR table: table_25721_3
SELECT MAX(dave_viewers) FROM table_25721_3 WHERE dave_ja_vu_viewers = 119000
Which IATA is associated with China and an ICAO of ZSPD?
columns: - name: iata type: VARCHAR - name: country type: VARCHAR - name: icao type: VARCHAR table: table_name_59
SELECT iata FROM table_name_59 WHERE country = "china" AND icao = "zspd"
How many attended the game when the score was tie at 4?
columns: - name: attendance type: VARCHAR - name: tie_no type: VARCHAR table: table_name_65
SELECT attendance FROM table_name_65 WHERE tie_no = "4"
Which Round is the highest one that has a Position of running back?
columns: - name: round type: INTEGER - name: position type: VARCHAR table: table_name_14
SELECT MAX(round) FROM table_name_14 WHERE position = "running back"
what was the opposition where the field is waldstadion during time 6
columns: - name: opponent type: VARCHAR - name: game_site type: VARCHAR - name: week type: VARCHAR table: table_27893892_2
SELECT opponent FROM table_27893892_2 WHERE game_site = "Waldstadion" AND week = 6
What is the smallest losses when the wins are 5 and the against less than 1852?
columns: - name: losses type: INTEGER - name: wins type: VARCHAR - name: against type: VARCHAR table: table_name_14
SELECT MIN(losses) FROM table_name_14 WHERE wins = 5 AND against < 1852
If the series is ADAC GT Masters and poles is 1, what is the name of the team?
columns: - name: team type: VARCHAR - name: poles type: VARCHAR - name: series type: VARCHAR table: table_22998777_1
SELECT team FROM table_22998777_1 WHERE poles = 1 AND series = "ADAC GT Masters"
Name the position with height of 2.09
columns: - name: position type: VARCHAR - name: height type: VARCHAR table: table_name_10
SELECT position FROM table_name_10 WHERE height = 2.09
Name the most goals with losses less than 15 and position more than 8 with points of 42+4
columns: - name: goals_for type: INTEGER - name: points type: VARCHAR - name: losses type: VARCHAR - name: position type: VARCHAR table: table_name_18
SELECT MAX(goals_for) FROM table_name_18 WHERE losses < 15 AND position > 8 AND points = "42+4"
WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?
columns: - name: stroke_count type: VARCHAR - name: radical__variants_ type: VARCHAR - name: frequency type: VARCHAR table: table_name_57
SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = "生" AND frequency < 22
what is the listing for 1999 when 1990 is more than 0, 2003 is 3, 2007 is more than 1 and 1996 is more than 0?
columns: - name: Id type: VARCHAR table: table_name_27
SELECT SUM(1999) FROM table_name_27 WHERE 1990 > 0 AND 2003 = 3 AND 2007 > 1 AND 1996 > 0
What is the rank of the film directed by danny devito?
columns: - name: rank type: VARCHAR - name: director type: VARCHAR table: table_name_32
SELECT rank FROM table_name_32 WHERE director = "danny devito"
What is Tries Against, when Try Diff is +15?
columns: - name: tries_against type: VARCHAR - name: try_diff type: VARCHAR table: table_name_34
SELECT tries_against FROM table_name_34 WHERE try_diff = "+15"
What is the date for the UTC time of 03:15:46?
columns: - name: date__yyyy_mm_dd_ type: VARCHAR - name: time___utc__ type: VARCHAR table: table_26950408_1
SELECT date__yyyy_mm_dd_ FROM table_26950408_1 WHERE time___utc__ = "03:15:46"
What is the fewest number of points associated with more than 8 games?
columns: - name: points type: INTEGER - name: games type: INTEGER table: table_name_95
SELECT MIN(points) FROM table_name_95 WHERE games > 8
Can you tell me the sum of Gain that has the Name of kass, rob, and the Avg/g smaller than 1.9?
columns: - name: gain type: INTEGER - name: name type: VARCHAR - name: avg_g type: VARCHAR table: table_name_75
SELECT SUM(gain) FROM table_name_75 WHERE name = "kass, rob" AND avg_g < 1.9
Which Lost has Games of 64, and Champs smaller than 0?
columns: - name: lost type: INTEGER - name: games type: VARCHAR - name: champs type: VARCHAR table: table_name_99
SELECT AVG(lost) FROM table_name_99 WHERE games = 64 AND champs < 0
Where did the player in Pos mf, move to until 30 june 2009 ?
columns: - name: moving_to type: VARCHAR - name: date_to type: VARCHAR - name: pos type: VARCHAR table: table_name_18
SELECT moving_to FROM table_name_18 WHERE date_to = "30 june 2009" AND pos = "mf"
What ground has etobicoke kangaroos as the home?
columns: - name: ground type: VARCHAR - name: home type: VARCHAR table: table_name_88
SELECT ground FROM table_name_88 WHERE home = "etobicoke kangaroos"
Who was the Class A winner when the Class C winner was David Haynes?
columns: - name: class_a_winner type: VARCHAR - name: class_c_winner type: VARCHAR table: table_24852622_1
SELECT class_a_winner FROM table_24852622_1 WHERE class_c_winner = "David Haynes"
What year is dayton in class AAAA?
columns: - name: school_year type: VARCHAR - name: class_aAAA type: VARCHAR - name: Dayton type: VARCHAR table: table_15315103_1
SELECT school_year FROM table_15315103_1 WHERE class_aAAA = Dayton
Which Round has a College of tulsa, and a Pick larger than 61?
columns: - name: round type: INTEGER - name: college type: VARCHAR - name: pick type: VARCHAR table: table_name_78
SELECT AVG(round) FROM table_name_78 WHERE college = "tulsa" AND pick > 61
HOw many films did martin repka category:articles with hcards direct?
columns: - name: film_title_used_in_nomination type: VARCHAR - name: director type: VARCHAR table: table_22032599_1
SELECT COUNT(film_title_used_in_nomination) FROM table_22032599_1 WHERE director = "Martin Repka Category:Articles with hCards"
WHich Partner has a Outcome of winner, and a Opponents in the final of rick leach jim pugh?
columns: - name: partner type: VARCHAR - name: outcome type: VARCHAR - name: opponents_in_the_final type: VARCHAR table: table_name_3
SELECT partner FROM table_name_3 WHERE outcome = "winner" AND opponents_in_the_final = "rick leach jim pugh"
What is the highest number of successful defenses in brandon, florida and a reign less than 1?
columns: - name: successful_defenses type: INTEGER - name: location type: VARCHAR - name: reign type: VARCHAR table: table_name_13
SELECT MAX(successful_defenses) FROM table_name_13 WHERE location = "brandon, florida" AND reign < 1
When is the Competition of friendly match with a Result of 2–1?
columns: - name: date type: VARCHAR - name: competition type: VARCHAR - name: result type: VARCHAR table: table_name_47
SELECT date FROM table_name_47 WHERE competition = "friendly match" AND result = "2–1"
who is the opponent when the streak is won 9 on april 13, 1990?
columns: - name: opponent type: VARCHAR - name: streak type: VARCHAR - name: date type: VARCHAR table: table_name_3
SELECT opponent FROM table_name_3 WHERE streak = "won 9" AND date = "april 13, 1990"
In what Year is the Works No. 2040-2049?
columns: - name: year type: VARCHAR - name: works_no type: VARCHAR table: table_name_80
SELECT year FROM table_name_80 WHERE works_no = "2040-2049"
What is the date that the Montreal Canadiens hosted a game with a record of 14–11–3?
columns: - name: date type: VARCHAR - name: home type: VARCHAR - name: record type: VARCHAR table: table_name_77
SELECT date FROM table_name_77 WHERE home = "montreal canadiens" AND record = "14–11–3"
What was the winning team with the 8,132 final attendance?
columns: - name: winningteam type: VARCHAR - name: cup_final_attendance type: VARCHAR table: table_name_20
SELECT winningteam FROM table_name_20 WHERE cup_final_attendance = "8,132"
Who was on the prohibition ticket when the Greenback ticket had Thomas Armstrong?
columns: - name: prohibition_ticket type: VARCHAR - name: greenback_ticket type: VARCHAR table: table_name_76
SELECT prohibition_ticket FROM table_name_76 WHERE greenback_ticket = "thomas armstrong"
What's the Italian Pluperfect when the English is We Had Heard?
columns: - name: italian type: VARCHAR - name: english type: VARCHAR table: table_name_83
SELECT italian FROM table_name_83 WHERE english = "we had heard"
how many times was the candidates phil crane (r) 58.0% edward a. warman (d) 42.0%?
columns: - name: incumbent type: VARCHAR - name: candidates type: VARCHAR table: table_1341718_14
SELECT COUNT(incumbent) FROM table_1341718_14 WHERE candidates = "Phil Crane (R) 58.0% Edward A. Warman (D) 42.0%"
Which time has a news frequency of 1 hour and show name of Best Mix Overnight?
columns: - name: time type: VARCHAR - name: news_freq type: VARCHAR - name: show_name type: VARCHAR table: table_name_84
SELECT time FROM table_name_84 WHERE news_freq = "1 hour" AND show_name = "best mix overnight"
Which region had the date of November 18, 2002?
columns: - name: region type: VARCHAR - name: date type: VARCHAR table: table_name_41
SELECT region FROM table_name_41 WHERE date = "november 18, 2002"
What position did the person who was with the grizzlies in 1998-1999 play?
columns: - name: position type: VARCHAR - name: years_for_grizzlies type: VARCHAR table: table_name_91
SELECT position FROM table_name_91 WHERE years_for_grizzlies = "1998-1999"
For the game showing a final record of 0-5, what was the attendance level?
columns: - name: attendance type: VARCHAR - name: record type: VARCHAR table: table_name_95
SELECT attendance FROM table_name_95 WHERE record = "0-5"
What is the IHSAA Football class at Culver?
columns: - name: ihsaa_football_class type: VARCHAR - name: location type: VARCHAR table: table_name_93
SELECT ihsaa_football_class FROM table_name_93 WHERE location = "culver"
When Cancelable of yes, and a Type of drag, what was the Category?
columns: - name: category type: VARCHAR - name: cancelable type: VARCHAR - name: type type: VARCHAR table: table_name_72
SELECT category FROM table_name_72 WHERE cancelable = "yes" AND type = "drag"
Which Away Team has a Tie no of replay and a Home Team of Chesterfield?
columns: - name: away_team type: VARCHAR - name: tie_no type: VARCHAR - name: home_team type: VARCHAR table: table_name_55
SELECT away_team FROM table_name_55 WHERE tie_no = "replay" AND home_team = "chesterfield"
What is the Time with a Record that is 15-7?
columns: - name: time type: VARCHAR - name: record type: VARCHAR table: table_name_98
SELECT time FROM table_name_98 WHERE record = "15-7"
What is the lowest avg/g that has 2-9-0 for the att-cmp-int?
columns: - name: avg_g type: INTEGER - name: att_cmp_int type: VARCHAR table: table_name_16
SELECT MIN(avg_g) FROM table_name_16 WHERE att_cmp_int = "2-9-0"
What finish has a 143.056 qual?
columns: - name: finish type: VARCHAR - name: qual type: VARCHAR table: table_name_69
SELECT finish FROM table_name_69 WHERE qual = "143.056"
How many players were drafted by the Philadelphia Flyers?
columns: - name: nationality type: VARCHAR - name: nhl_team type: VARCHAR table: table_2679061_11
SELECT COUNT(nationality) FROM table_2679061_11 WHERE nhl_team = "Philadelphia Flyers"
What is the average GEO ID with a latitude less than 46.57958, a latitude of -102.109898 and more than 35.99 square miles of land?
columns: - name: geo_id type: INTEGER - name: land___sqmi__ type: VARCHAR - name: latitude type: VARCHAR - name: longitude type: VARCHAR table: table_name_4
SELECT AVG(geo_id) FROM table_name_4 WHERE latitude < 46.57958 AND longitude = -102.109898 AND land___sqmi__ > 35.99
When was the last time a venue was held in turin, italy?
columns: - name: year type: INTEGER - name: venue type: VARCHAR table: table_name_75
SELECT MAX(year) FROM table_name_75 WHERE venue = "turin, italy"
What character is played by dani harmer for under 23 episodes?
columns: - name: character type: VARCHAR - name: episodes type: VARCHAR - name: actor type: VARCHAR table: table_name_51
SELECT character FROM table_name_51 WHERE episodes < 23 AND actor = "dani harmer"
How many losses have byes greater than 2?
columns: - name: losses type: VARCHAR - name: byes type: INTEGER table: table_name_38
SELECT COUNT(losses) FROM table_name_38 WHERE byes > 2
What is the transfer fee for the country that has the name McCartney listed?
columns: - name: transfer_fee type: VARCHAR - name: name type: VARCHAR table: table_name_46
SELECT transfer_fee FROM table_name_46 WHERE name = "mccartney"
What was Catalogue tojp 60121-22's Date?
columns: - name: date type: VARCHAR - name: catalogue type: VARCHAR table: table_name_67
SELECT date FROM table_name_67 WHERE catalogue = "tojp 60121-22"
What is Country, when To par is "+1", and when Score is "72-71-70-72=285"?
columns: - name: country type: VARCHAR - name: to_par type: VARCHAR - name: score type: VARCHAR table: table_name_98
SELECT country FROM table_name_98 WHERE to_par = "+1" AND score = 72 - 71 - 70 - 72 = 285
What is the Home team score At Windy Hill?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_48
SELECT home_team AS score FROM table_name_48 WHERE venue = "windy hill"
What is the start value for rank 11?
columns: - name: start type: VARCHAR - name: rank type: VARCHAR table: table_name_31
SELECT start FROM table_name_31 WHERE rank = "11"
What is the score of the game with tie number 65?
columns: - name: score type: VARCHAR - name: tie_no type: VARCHAR table: table_name_23
SELECT score FROM table_name_23 WHERE tie_no = "65"
Can you tell me the Attendance that has the Date of april 12?
columns: - name: attendance type: VARCHAR - name: date type: VARCHAR table: table_name_63
SELECT attendance FROM table_name_63 WHERE date = "april 12"
What is the average number of goals for a player who had a Leeds career from 1960–1964 and made fewer than 120 appearances?
columns: - name: goals type: INTEGER - name: leeds_career type: VARCHAR - name: appearances type: VARCHAR table: table_name_68
SELECT AVG(goals) FROM table_name_68 WHERE leeds_career = "1960–1964" AND appearances < 120
Which Position did Ruzic play?
columns: - name: position type: VARCHAR - name: surname type: VARCHAR table: table_name_30
SELECT position FROM table_name_30 WHERE surname = "ruzic"
What is the highest Attendance with a Result that is w 24-21?
columns: - name: attendance type: INTEGER - name: result type: VARCHAR table: table_name_50
SELECT MAX(attendance) FROM table_name_50 WHERE result = "w 24-21"
What is the venue when the year is after 2001 for the summer olympics?
columns: - name: venue type: VARCHAR - name: year type: VARCHAR - name: competition type: VARCHAR table: table_name_56
SELECT venue FROM table_name_56 WHERE year > 2001 AND competition = "summer olympics"
For the team with 7 points, how many points were scored against this season?
columns: - name: pts_agst type: VARCHAR - name: points type: VARCHAR table: table_21991074_1
SELECT COUNT(pts_agst) FROM table_21991074_1 WHERE points = 7
What was the final score for the game on May 4?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_91
SELECT score FROM table_name_91 WHERE date = "may 4"
How many north american brands have world headquarters in sagamihara?
columns: - name: north_american_brands type: VARCHAR - name: world_headquarters type: VARCHAR table: table_237199_1
SELECT COUNT(north_american_brands) FROM table_237199_1 WHERE world_headquarters = "Sagamihara"
What was the away team that scored 63-69?
columns: - name: away_team type: VARCHAR - name: score type: VARCHAR table: table_name_73
SELECT away_team FROM table_name_73 WHERE score = "63-69"
What winner has the sanremo to cuneo as the course?
columns: - name: winner type: VARCHAR - name: course type: VARCHAR table: table_name_51
SELECT winner FROM table_name_51 WHERE course = "sanremo to cuneo"
How many places associated with latitude 48.247662?
columns: - name: ansi_code type: VARCHAR - name: latitude type: VARCHAR table: table_18600760_13
SELECT COUNT(ansi_code) FROM table_18600760_13 WHERE latitude = "48.247662"
What was the outcome on 2 December 2012?
columns: - name: outcome type: VARCHAR - name: date type: VARCHAR table: table_name_26
SELECT outcome FROM table_name_26 WHERE date = "2 december 2012"
What Band has a Frequency of 0 99.7 in the Area of Newcastle?
columns: - name: band type: VARCHAR - name: frequency type: VARCHAR - name: area_served type: VARCHAR table: table_name_34
SELECT band FROM table_name_34 WHERE frequency = "0 99.7" AND area_served = "newcastle"
What place goes with the score of 70-66-65=201?
columns: - name: place type: VARCHAR - name: score type: VARCHAR table: table_name_90
SELECT place FROM table_name_90 WHERE score = 70 - 66 - 65 = 201
Who has a nationality of GRE and an App(L/C/E) of 49 (40/8/1)?
columns: - name: name type: VARCHAR - name: nat type: VARCHAR - name: app_l_c_e_ type: VARCHAR table: table_name_98
SELECT name FROM table_name_98 WHERE nat = "gre" AND app_l_c_e_ = "49 (40/8/1)"
What is the U.S. air date when the U.S. viewers are 7.5 million?
columns: - name: us_air_date type: VARCHAR - name: us_viewers__million_ type: VARCHAR table: table_2866503_1
SELECT us_air_date FROM table_2866503_1 WHERE us_viewers__million_ = "7.5"
What is the sum of All-Time, when Amateur Era is less than 0?
columns: - name: all_time type: INTEGER - name: amateur_era type: INTEGER table: table_name_39
SELECT SUM(all_time) FROM table_name_39 WHERE amateur_era < 0
How many points does Kohta Nozane have with a Motobi TSR 6?
columns: - name: points type: VARCHAR - name: bike type: VARCHAR - name: riders type: VARCHAR table: table_name_42
SELECT points FROM table_name_42 WHERE bike = "motobi tsr 6" AND riders = "kohta nozane"
Which Overall has a Round of 7?
columns: - name: overall type: INTEGER - name: round type: VARCHAR table: table_name_99
SELECT MIN(overall) FROM table_name_99 WHERE round = 7
What is the number of races that took place with points of 257?
columns: - name: races type: INTEGER - name: points type: VARCHAR table: table_name_28
SELECT SUM(races) FROM table_name_28 WHERE points = 257
What was the Outcome of the match with a Score of w/o?
columns: - name: outcome type: VARCHAR - name: score type: VARCHAR table: table_name_57
SELECT outcome FROM table_name_57 WHERE score = "w/o"
What college did Jamie Butt go to?
columns: - name: college_junior_club_team__league_ type: VARCHAR - name: player type: VARCHAR table: table_name_78
SELECT college_junior_club_team__league_ FROM table_name_78 WHERE player = "jamie butt"
What is the smallest grid for a time/retired of 1:56:18.22?
columns: - name: grid type: INTEGER - name: time_retired type: VARCHAR table: table_name_89
SELECT MIN(grid) FROM table_name_89 WHERE time_retired = "1:56:18.22"
How many members gained university status in 1900?
columns: - name: research_funding__ type: VARCHAR - name: gained_university_status type: VARCHAR table: table_142950_1
SELECT COUNT(research_funding__) AS £, 000 AS _ FROM table_142950_1 WHERE gained_university_status = 1900
What is the original air date for the episode written by daniel dratch?
columns: - name: original_air_date type: VARCHAR - name: written_by type: VARCHAR table: table_25716399_1
SELECT original_air_date FROM table_25716399_1 WHERE written_by = "Daniel Dratch"
Which Points have a Drawn smaller than 2, and a Lost of 12, and a Name of ev bad wörishofen?
columns: - name: points type: INTEGER - name: name type: VARCHAR - name: drawn type: VARCHAR - name: lost type: VARCHAR table: table_name_24
SELECT MAX(points) FROM table_name_24 WHERE drawn < 2 AND lost = 12 AND name = "ev bad wörishofen"
How many years is Antonio Pompa-Baldi Italy first?
columns: - name: year type: VARCHAR - name: first type: VARCHAR table: table_name_36
SELECT COUNT(year) FROM table_name_36 WHERE first = "antonio pompa-baldi italy"
How much Conceded has Wins smaller than 3, and Points larger than 11?
columns: - name: conceded type: VARCHAR - name: wins type: VARCHAR - name: points type: VARCHAR table: table_name_77
SELECT COUNT(conceded) FROM table_name_77 WHERE wins < 3 AND points > 11
What Opponent has a Results¹ of 1:3?
columns: - name: opponent type: VARCHAR - name: "results\xB9" type: VARCHAR table: table_name_28
SELECT opponent FROM table_name_28 WHERE results¹ = "1:3"
What is the house colour associated with the house name of Kupe?
columns: - name: house_colour type: VARCHAR - name: house_name type: VARCHAR table: table_1942683_1
SELECT house_colour FROM table_1942683_1 WHERE house_name = "Kupe"
How many events have a Top-25 of 1 and made less than 1 cut?
columns: - name: events type: INTEGER - name: top_25 type: VARCHAR - name: cuts_made type: VARCHAR table: table_name_38
SELECT MAX(events) FROM table_name_38 WHERE top_25 = 1 AND cuts_made < 1
What name has 8 as the number?
columns: - name: name type: VARCHAR - name: number type: VARCHAR table: table_name_5
SELECT name FROM table_name_5 WHERE number = "8"
in april 13 who made the high rebounds
columns: - name: high_rebounds type: VARCHAR - name: date type: VARCHAR table: table_30047613_12
SELECT high_rebounds FROM table_30047613_12 WHERE date = "April 13"
In 1948-10-28, in what Venue was the Competition of International Match held?
columns: - name: venue type: VARCHAR - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_26
SELECT venue FROM table_name_26 WHERE competition = "international match" AND date = "1948-10-28"
What is Status, when Opposing Teams is "Scotland"?
columns: - name: status type: VARCHAR - name: opposing_teams type: VARCHAR table: table_name_16
SELECT status FROM table_name_16 WHERE opposing_teams = "scotland"
What is the opposing team with 11 against?
columns: - name: opposing_teams type: VARCHAR - name: against type: VARCHAR table: table_name_7
SELECT opposing_teams FROM table_name_7 WHERE against = 11
Which team lost under interim head coach, Dewayne Walker?
columns: - name: team type: VARCHAR - name: result type: VARCHAR - name: interim_head_coach type: VARCHAR table: table_name_18
SELECT team FROM table_name_18 WHERE result = "lost" AND interim_head_coach = "dewayne walker"
What is the size of the crowd for the game where the away team South Melbourne played?
columns: - name: crowd type: INTEGER - name: away_team type: VARCHAR table: table_name_39
SELECT AVG(crowd) FROM table_name_39 WHERE away_team = "south melbourne"
Where the fastest lap is Mike Rockenfeller, who is the winning driver?
columns: - name: winning_driver type: VARCHAR - name: fastest_lap type: VARCHAR table: table_26267607_2
SELECT winning_driver FROM table_26267607_2 WHERE fastest_lap = "Mike Rockenfeller"
How many females speak Ukrainian?
columns: - name: females type: VARCHAR - name: language type: VARCHAR table: table_name_11
SELECT females FROM table_name_11 WHERE language = "ukrainian"
What finish has a start smaller than 25?
columns: - name: finish type: VARCHAR - name: start type: INTEGER table: table_name_73
SELECT finish FROM table_name_73 WHERE start < 25
What was the class when part 2 was *hēt?
columns: - name: class type: VARCHAR - name: part_2 type: VARCHAR table: table_name_61
SELECT class FROM table_name_61 WHERE part_2 = "*hēt"
United kingdom is the country what is the change (2011 to 2012)?
columns: - name: change__2011_to_2012_ type: VARCHAR - name: country type: VARCHAR table: table_14752049_6
SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE country = "United Kingdom"