training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_7 (rating VARCHAR, air_date VARCHAR, weekly_winner VARCHAR) ###human: What is Rating, when Air Date is "July 24, 2008*", and when Weekly Winner is "Sales Rep. Oscar Ledezma"? ###assistant: SELECT rating FROM table_name_7 WHERE air_date = "july 24, 2008*" AND weekly_winner = "sales rep. oscar ledezma"
###context:CREATE TABLE table_name_45 (weekly_winner VARCHAR) ###human: What is 18-49, when Weekly Winner is "Youth Counselor Justin Meece"? ###assistant: SELECT 18 AS _49 FROM table_name_45 WHERE weekly_winner = "youth counselor justin meece"
###context:CREATE TABLE table_name_64 (viewers VARCHAR, air_date VARCHAR) ###human: What is Viewers, when Air Date is "July 4, 2008"? ###assistant: SELECT viewers FROM table_name_64 WHERE air_date = "july 4, 2008"
###context:CREATE TABLE table_name_19 (air_date VARCHAR, rating VARCHAR, weekly_winner VARCHAR) ###human: What is Air Date, when Rating is "N/A", and when Weekly Winner is "Wedding DJ Chris Dixon"? ###assistant: SELECT air_date FROM table_name_19 WHERE rating = "n/a" AND weekly_winner = "wedding dj chris dixon"
###context:CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR) ###human: What was the record for Dec 16? ###assistant: SELECT record FROM table_name_36 WHERE date = "dec 16"
###context:CREATE TABLE table_name_9 (Id VARCHAR) ###human: What is the 2010 with a qf in 2011? ###assistant: SELECT 2010 FROM table_name_9 WHERE 2011 = "qf"
###context:CREATE TABLE table_name_71 (tournament VARCHAR) ###human: What is the 2013 of the grand slam tournaments? ###assistant: SELECT 2013 FROM table_name_71 WHERE tournament = "grand slam tournaments"
###context:CREATE TABLE table_name_49 (Id VARCHAR) ###human: What is the 2013 with a 2r in 2010 and a qf in 2011? ###assistant: SELECT 2013 FROM table_name_49 WHERE 2010 = "2r" AND 2011 = "qf"
###context:CREATE TABLE table_name_32 (Id VARCHAR) ###human: What is the 2011 with 1r in 2010? ###assistant: SELECT 2011 FROM table_name_32 WHERE 2010 = "1r"
###context:CREATE TABLE table_name_96 (Id VARCHAR) ###human: What is the 2012 with A in 2009 and 2r in 2010? ###assistant: SELECT 2012 FROM table_name_96 WHERE 2009 = "a" AND 2010 = "2r"
###context:CREATE TABLE table_name_29 (poison_klesha VARCHAR, pali VARCHAR) ###human: What is the poison/klesha word for moha avijja in pali? ###assistant: SELECT poison_klesha FROM table_name_29 WHERE pali = "moha avijja"
###context:CREATE TABLE table_name_14 (poison_klesha VARCHAR, tibetan VARCHAR) ###human: What is the poision/klesha word for the tibetan word gti mug ma rig pa? ###assistant: SELECT poison_klesha FROM table_name_14 WHERE tibetan = "gti mug ma rig pa"
###context:CREATE TABLE table_name_87 (pali VARCHAR, poison_klesha VARCHAR) ###human: What is the pali word for pride in poison/klesha? ###assistant: SELECT pali FROM table_name_87 WHERE poison_klesha = "pride"
###context:CREATE TABLE table_name_64 (pali VARCHAR, tibetan VARCHAR) ###human: What is the pali word for phrag dog in tibetan? ###assistant: SELECT pali FROM table_name_64 WHERE tibetan = "phrag dog"
###context:CREATE TABLE table_name_77 (pali VARCHAR, sanskrit VARCHAR) ###human: What is the pali word for rāga in sanskrit? ###assistant: SELECT pali FROM table_name_77 WHERE sanskrit = "rāga"
###context:CREATE TABLE table_name_12 (attendance VARCHAR, away_team VARCHAR, tie_no VARCHAR) ###human: What is the attendance total when Southend Manor is the away team and there are less than 93 ties? ###assistant: SELECT COUNT(attendance) FROM table_name_12 WHERE away_team = "southend manor" AND tie_no < 93
###context:CREATE TABLE table_name_91 (score VARCHAR, attendance VARCHAR, away_team VARCHAR) ###human: What is the score when the attendance is less than 83 and Raunds Town is the away team? ###assistant: SELECT score FROM table_name_91 WHERE attendance < 83 AND away_team = "raunds town"
###context:CREATE TABLE table_name_46 (player VARCHAR, pick__number VARCHAR, team_from VARCHAR) ###human: Who was the player that was picked at a number less than 205 from the Michigan State Spartans? ###assistant: SELECT player FROM table_name_46 WHERE pick__number < 205 AND team_from = "michigan state spartans"
###context:CREATE TABLE table_name_40 (density__per_km²_ INTEGER, no_munic VARCHAR) ###human: What is the average Density of 53 No. munic.? ###assistant: SELECT AVG(density__per_km²_) FROM table_name_40 WHERE no_munic = 53
###context:CREATE TABLE table_name_46 (status VARCHAR, venue VARCHAR) ###human: Name the Status of Venue of sydney sports ground , sydney? ###assistant: SELECT status FROM table_name_46 WHERE venue = "sydney sports ground , sydney"
###context:CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR) ###human: Which Status has a Opposing Teams of wales? ###assistant: SELECT status FROM table_name_16 WHERE opposing_teams = "wales"
###context:CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR) ###human: WHICH Date has a Venue of lancaster park , christchurch? ###assistant: SELECT date FROM table_name_14 WHERE venue = "lancaster park , christchurch"
###context:CREATE TABLE table_name_32 (team VARCHAR, player VARCHAR) ###human: WHAT IS THE TEAM WITH DAVE COGGIN? ###assistant: SELECT team FROM table_name_32 WHERE player = "dave coggin"
###context:CREATE TABLE table_name_93 (team VARCHAR, position VARCHAR, pick VARCHAR) ###human: WHAT IS THE TEAM WITH AN OF POSITION AND PICK OF 24? ###assistant: SELECT team FROM table_name_93 WHERE position = "of" AND pick = 24
###context:CREATE TABLE table_name_44 (position VARCHAR, team VARCHAR, player VARCHAR) ###human: WHAT IS THE POSITION WITH BOSTON RED SOX FOR COREY JENKINS? ###assistant: SELECT position FROM table_name_44 WHERE team = "boston red sox" AND player = "corey jenkins"
###context:CREATE TABLE table_name_88 (player VARCHAR, hometown_school VARCHAR) ###human: WHAT PLAYER HAS UPLAND HIGH SCHOOL? ###assistant: SELECT player FROM table_name_88 WHERE hometown_school = "upland high school"
###context:CREATE TABLE table_name_55 (player VARCHAR, team VARCHAR) ###human: WHAT PLAYER HAS THE OAKLAND ATHLETICS? ###assistant: SELECT player FROM table_name_55 WHERE team = "oakland athletics"
###context:CREATE TABLE table_name_59 (team VARCHAR, pick INTEGER) ###human: WHAT TEAM HAS A PICK LARGER THAN 29? ###assistant: SELECT team FROM table_name_59 WHERE pick > 29
###context:CREATE TABLE table_name_44 (name VARCHAR, killed VARCHAR, country VARCHAR) ###human: Which rampage killed 8 in Israel? ###assistant: SELECT name FROM table_name_44 WHERE killed = "8" AND country = "israel"
###context:CREATE TABLE table_name_29 (country VARCHAR, killed VARCHAR, year VARCHAR) ###human: What coutry had a rampaged killing 14 in 1965? ###assistant: SELECT country FROM table_name_29 WHERE killed = "14" AND year = 1965
###context:CREATE TABLE table_name_9 (club VARCHAR, drawn VARCHAR, try_bonus VARCHAR) ###human: What is Club, when Drawn is "0", and when Try Bonus is "5"? ###assistant: SELECT club FROM table_name_9 WHERE drawn = "0" AND try_bonus = "5"
###context:CREATE TABLE table_name_15 (club VARCHAR, points VARCHAR) ###human: What is Club, when Points is "82"? ###assistant: SELECT club FROM table_name_15 WHERE points = "82"
###context:CREATE TABLE table_name_62 (played VARCHAR, points_against VARCHAR) ###human: What is Played, when Points Against is "374"? ###assistant: SELECT played FROM table_name_62 WHERE points_against = "374"
###context:CREATE TABLE table_name_77 (points_against VARCHAR, try_bonus VARCHAR) ###human: What is Points Against, when Try Bonus is "Try bonus"? ###assistant: SELECT points_against FROM table_name_77 WHERE try_bonus = "try bonus"
###context:CREATE TABLE table_name_51 (try_bonus VARCHAR, losing_bonus VARCHAR, points_for VARCHAR) ###human: What is Try Bonus, when Losing Bonus is "1", and when Points For is "179"? ###assistant: SELECT try_bonus FROM table_name_51 WHERE losing_bonus = "1" AND points_for = "179"
###context:CREATE TABLE table_name_64 (points_for VARCHAR, club VARCHAR) ###human: What is Points For, when Club is "Tycroes RFC"? ###assistant: SELECT points_for FROM table_name_64 WHERE club = "tycroes rfc"
###context:CREATE TABLE table_name_60 (date VARCHAR, location VARCHAR, cause VARCHAR, death_toll VARCHAR) ###human: When has a cause of gas explosion, a Death toll smaller than 63, and a Location of penygraig? ###assistant: SELECT date FROM table_name_60 WHERE cause = "gas explosion" AND death_toll < 63 AND location = "penygraig"
###context:CREATE TABLE table_name_97 (location VARCHAR, date VARCHAR, cause VARCHAR, death_toll VARCHAR) ###human: Where has a cause of gas explosion, a Death toll larger than 38 on 10 june? ###assistant: SELECT location FROM table_name_97 WHERE cause = "gas explosion" AND death_toll > 38 AND date = "10 june"
###context:CREATE TABLE table_name_86 (year VARCHAR, location VARCHAR, date VARCHAR) ###human: Which Year has a Location of dinas on 13 january? ###assistant: SELECT year FROM table_name_86 WHERE location = "dinas" AND date = "13 january"
###context:CREATE TABLE table_name_87 (year INTEGER, cause VARCHAR, death_toll VARCHAR) ###human: Which Year has a cause of firedamp and a Death toll larger than 11? ###assistant: SELECT SUM(year) FROM table_name_87 WHERE cause = "firedamp" AND death_toll > 11
###context:CREATE TABLE table_name_15 (year INTEGER, death_toll VARCHAR, cause VARCHAR, colliery VARCHAR) ###human: Count the lowest Year which has gas explosion, Colliery of tylorstown colliery, and a Death toll larger than 57? ###assistant: SELECT MIN(year) FROM table_name_15 WHERE cause = "gas explosion" AND colliery = "tylorstown colliery" AND death_toll > 57
###context:CREATE TABLE table_name_76 (colliery VARCHAR, death_toll VARCHAR) ###human: Which Colliery has a Death toll of 7? ###assistant: SELECT colliery FROM table_name_76 WHERE death_toll = 7
###context:CREATE TABLE table_name_46 (score_1 VARCHAR, tie_no VARCHAR) ###human: What is the Score 1 of Tie no 6? ###assistant: SELECT score_1 FROM table_name_46 WHERE tie_no = "6"
###context:CREATE TABLE table_name_10 (attendance VARCHAR, tie_no VARCHAR) ###human: What is the Attendance of Tie no 3? ###assistant: SELECT attendance FROM table_name_10 WHERE tie_no = "3"
###context:CREATE TABLE table_name_94 (attendance VARCHAR, away_team VARCHAR) ###human: What is the Attendance at the Hereford United Away game? ###assistant: SELECT attendance FROM table_name_94 WHERE away_team = "hereford united"
###context:CREATE TABLE table_name_19 (home_team VARCHAR, tie_no VARCHAR) ###human: What is the Home team of Tie no 11? ###assistant: SELECT home_team FROM table_name_19 WHERE tie_no = "11"
###context:CREATE TABLE table_name_83 (tie_no VARCHAR, away_team VARCHAR) ###human: What is the Tie no of Hereford United's Away game? ###assistant: SELECT tie_no FROM table_name_83 WHERE away_team = "hereford united"
###context:CREATE TABLE table_name_55 (score_1 VARCHAR, attendance VARCHAR) ###human: What is the Score 1 of the game with Attendance of 2,571? ###assistant: SELECT score_1 FROM table_name_55 WHERE attendance = "2,571"
###context:CREATE TABLE table_name_25 (clubs_remaining INTEGER, new_entries_this_round VARCHAR, clubs_involved VARCHAR) ###human: What is the sum of the clubs remaining with 34 new entries this round and more than 34 clubs involved? ###assistant: SELECT SUM(clubs_remaining) FROM table_name_25 WHERE new_entries_this_round = "34" AND clubs_involved > 34
###context:CREATE TABLE table_name_63 (clubs_involved VARCHAR, clubs_remaining VARCHAR) ###human: What are the clubs involved with 16 clubs remaining? ###assistant: SELECT clubs_involved FROM table_name_63 WHERE clubs_remaining = 16
###context:CREATE TABLE table_name_67 (rank VARCHAR, total VARCHAR, taijiquan VARCHAR) ###human: What is the total rank of the athlete with a total larger than 19.42 and a taijiquan less than 9.87? ###assistant: SELECT COUNT(rank) FROM table_name_67 WHERE total > 19.42 AND taijiquan < 9.87
###context:CREATE TABLE table_name_89 (rank INTEGER, taijiquan VARCHAR, total VARCHAR) ###human: What is the lowest rank of the athlete with a taijiquan greater than 9.42 and a 19.02 total? ###assistant: SELECT MIN(rank) FROM table_name_89 WHERE taijiquan > 9.42 AND total = 19.02
###context:CREATE TABLE table_name_20 (taijijian INTEGER, taijiquan VARCHAR, total VARCHAR) ###human: What is the highest taijijian with a 9.87 taijiquan and a total less than 19.77? ###assistant: SELECT MAX(taijijian) FROM table_name_20 WHERE taijiquan = 9.87 AND total < 19.77
###context:CREATE TABLE table_name_33 (week_3 VARCHAR, week_1 VARCHAR) ###human: Who is the cyber girl in week 3 when Demi Jessica was the cyber girl in week 1? ###assistant: SELECT week_3 FROM table_name_33 WHERE week_1 = "demi jessica"
###context:CREATE TABLE table_name_75 (week_4 VARCHAR, week_2 VARCHAR) ###human: What is the name of the cyber girl in week 4 when Lexi Lombardelli was the cyber girl in week 2? ###assistant: SELECT week_4 FROM table_name_75 WHERE week_2 = "lexi lombardelli"
###context:CREATE TABLE table_name_69 (week_1 VARCHAR, week_3 VARCHAR) ###human: When Alinna D Penta was the cyber girl in week 3, who was the cyber girl in week 1? ###assistant: SELECT week_1 FROM table_name_69 WHERE week_3 = "alinna d penta"
###context:CREATE TABLE table_name_95 (week_5 VARCHAR, week_3 VARCHAR) ###human: Felicia Taylor was cyber girl in week 3, so who was the cyber girl in week 5? ###assistant: SELECT week_5 FROM table_name_95 WHERE week_3 = "felicia taylor"
###context:CREATE TABLE table_name_54 (week_3 VARCHAR, week_2 VARCHAR) ###human: Who is the cyber girl in week 3 when Ashley Lowe was the cyber girl in week 2? ###assistant: SELECT week_3 FROM table_name_54 WHERE week_2 = "ashley lowe"
###context:CREATE TABLE table_name_90 (week_2 VARCHAR, week_4 VARCHAR) ###human: When Diane Deluna was the cyber girl in week 4 who was the cyber girl in week 2? ###assistant: SELECT week_2 FROM table_name_90 WHERE week_4 = "diane deluna"
###context:CREATE TABLE table_name_54 (round VARCHAR, year INTEGER) ###human: Which Round has a Year later than 2011? ###assistant: SELECT round FROM table_name_54 WHERE year > 2011
###context:CREATE TABLE table_name_72 (date VARCHAR, result VARCHAR, score VARCHAR) ###human: When was the Result of 3–2, with a Score of 6–0, 6–4? ###assistant: SELECT date FROM table_name_72 WHERE result = "3–2" AND score = "6–0, 6–4"
###context:CREATE TABLE table_name_8 (surface VARCHAR, opponent_s_ VARCHAR) ###human: Which Surface has an Opponent(s) of anna-lena grönefeld tatjana malek? ###assistant: SELECT surface FROM table_name_8 WHERE opponent_s_ = "anna-lena grönefeld tatjana malek"
###context:CREATE TABLE table_name_12 (year INTEGER, date VARCHAR) ###human: Which Year has a Date of 5–6 february? ###assistant: SELECT AVG(year) FROM table_name_12 WHERE date = "5–6 february"
###context:CREATE TABLE table_name_64 (home_team VARCHAR, tie_no VARCHAR) ###human: What home team has 27 as the tie no.? ###assistant: SELECT home_team FROM table_name_64 WHERE tie_no = "27"
###context:CREATE TABLE table_name_60 (date VARCHAR, tie_no VARCHAR) ###human: What date has 1 as the tie no.? ###assistant: SELECT date FROM table_name_60 WHERE tie_no = "1"
###context:CREATE TABLE table_name_46 (score VARCHAR, away_team VARCHAR) ###human: What score has west ham united as the away team? ###assistant: SELECT score FROM table_name_46 WHERE away_team = "west ham united"
###context:CREATE TABLE table_name_71 (home_team VARCHAR, away_team VARCHAR) ###human: What home team has Southampton as the away team? ###assistant: SELECT home_team FROM table_name_71 WHERE away_team = "southampton"
###context:CREATE TABLE table_name_50 (current_club VARCHAR, height VARCHAR) ###human: What current club has a Height of 1.96? ###assistant: SELECT current_club FROM table_name_50 WHERE height = 1.96
###context:CREATE TABLE table_name_85 (year_born__age_ VARCHAR, position VARCHAR) ###human: What is the Age of f/c Posiiton? ###assistant: SELECT year_born__age_ FROM table_name_85 WHERE position = "f/c"
###context:CREATE TABLE table_name_45 (player VARCHAR, score VARCHAR) ###human: Who is the player with a score of 70-68-70=208? ###assistant: SELECT player FROM table_name_45 WHERE score = 70 - 68 - 70 = 208
###context:CREATE TABLE table_name_38 (place VARCHAR, score VARCHAR) ###human: What place is the player with score of 70-68-70=208 from? ###assistant: SELECT place FROM table_name_38 WHERE score = 70 - 68 - 70 = 208
###context:CREATE TABLE table_name_55 (name_in_malay VARCHAR, foundation VARCHAR) ###human: What is the name for Malay with a foundation in Iptura? ###assistant: SELECT name_in_malay FROM table_name_55 WHERE foundation = "iptura"
###context:CREATE TABLE table_name_34 (acronym VARCHAR, name_in_malay VARCHAR) ###human: What is the acronym for the name Malay of Kolej Komuniti Sungai Petani? ###assistant: SELECT acronym FROM table_name_34 WHERE name_in_malay = "kolej komuniti sungai petani"
###context:CREATE TABLE table_name_21 (acronym VARCHAR, name_in_english VARCHAR) ###human: What is the acronym for the English name Northern management and technological institute? ###assistant: SELECT acronym FROM table_name_21 WHERE name_in_english = "northern management and technological institute"
###context:CREATE TABLE table_name_85 (location VARCHAR, foundation VARCHAR) ###human: What is the location of the Kkspe Foundation? ###assistant: SELECT location FROM table_name_85 WHERE foundation = "kkspe"
###context:CREATE TABLE table_name_24 (country VARCHAR, place VARCHAR, score VARCHAR) ###human: What is Country, when Place is "T3", and when Score is "67-70=137"? ###assistant: SELECT country FROM table_name_24 WHERE place = "t3" AND score = 67 - 70 = 137
###context:CREATE TABLE table_name_64 (score VARCHAR, player VARCHAR) ###human: What is Score, when Player is "David Toms"? ###assistant: SELECT score FROM table_name_64 WHERE player = "david toms"
###context:CREATE TABLE table_name_1 (score VARCHAR, player VARCHAR) ###human: What is Score, when Player is "Tom Lehman"? ###assistant: SELECT score FROM table_name_1 WHERE player = "tom lehman"
###context:CREATE TABLE table_name_18 (title VARCHAR, format VARCHAR, label VARCHAR) ###human: What is the Title of the Pye Label mono LP release? ###assistant: SELECT title FROM table_name_18 WHERE format = "mono lp" AND label = "pye"
###context:CREATE TABLE table_name_41 (catalog_nr VARCHAR, title VARCHAR, format VARCHAR, label VARCHAR) ###human: What is the Catalog-Nr of the Epic Label Stereo LP named For Little Ones? ###assistant: SELECT catalog_nr FROM table_name_41 WHERE format = "stereo lp" AND label = "epic" AND title = "for little ones"
###context:CREATE TABLE table_name_60 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR) ###human: What is the total area with the census ranking of 3,129 of 5,008, and a Population smaller than 460? ###assistant: SELECT COUNT(area_km_2) FROM table_name_60 WHERE census_ranking = "3,129 of 5,008" AND population < 460
###context:CREATE TABLE table_name_66 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR) ###human: What is the total area with the Census Ranking of 3,129 of 5,008, and a Population larger than 460? ###assistant: SELECT COUNT(area_km_2) FROM table_name_66 WHERE census_ranking = "3,129 of 5,008" AND population > 460
###context:CREATE TABLE table_name_17 (census_ranking VARCHAR, area_km_2 INTEGER) ###human: What census ranking has an area greater than 578.28 km2? ###assistant: SELECT census_ranking FROM table_name_17 WHERE area_km_2 > 578.28
###context:CREATE TABLE table_name_78 (position VARCHAR, player VARCHAR) ###human: What is the position for Jani Lajunen? ###assistant: SELECT position FROM table_name_78 WHERE player = "jani lajunen"
###context:CREATE TABLE table_name_20 (round VARCHAR, nationality VARCHAR, player VARCHAR) ###human: What is the round number when nationality was United States, and player is Jeffrey Foss? ###assistant: SELECT COUNT(round) FROM table_name_20 WHERE nationality = "united states" AND player = "jeffrey foss"
###context:CREATE TABLE table_name_20 (player VARCHAR, round VARCHAR, position VARCHAR) ###human: What player has a round larger than 2, and position of (d)? ###assistant: SELECT player FROM table_name_20 WHERE round > 2 AND position = "(d)"
###context:CREATE TABLE table_name_24 (nationality VARCHAR, position VARCHAR, college VARCHAR) ###human: What is the nationality for the position of (d), and college was SC Bern ( Swiss )? ###assistant: SELECT nationality FROM table_name_24 WHERE position = "(d)" AND college = "sc bern ( swiss )"
###context:CREATE TABLE table_name_91 (athlete VARCHAR, run_1 VARCHAR, run_2 VARCHAR) ###human: Who is the athlete with a run 1 larger than 54.95 and a 56.19 run 2? ###assistant: SELECT athlete FROM table_name_91 WHERE run_1 > 54.95 AND run_2 = 56.19
###context:CREATE TABLE table_name_54 (run_2 INTEGER, athlete VARCHAR, run_3 VARCHAR) ###human: What is the highest run 2 of athlete eric neilson, who has a run 3 larger than 55.97? ###assistant: SELECT MAX(run_2) FROM table_name_54 WHERE athlete = "eric neilson" AND run_3 > 55.97
###context:CREATE TABLE table_name_86 (run_3 INTEGER, run_2 VARCHAR) ###human: What is the highest run 3 of the athlete with a 55.44 run 2? ###assistant: SELECT MAX(run_3) FROM table_name_86 WHERE run_2 = 55.44
###context:CREATE TABLE table_name_47 (athlete VARCHAR, run_1 VARCHAR, run_3 VARCHAR) ###human: Who is the athlete with a run 1 less than 54.13 and a 55.21 run 3? ###assistant: SELECT athlete FROM table_name_47 WHERE run_1 < 54.13 AND run_3 = 55.21
###context:CREATE TABLE table_name_40 (run_1 INTEGER, run_2 VARCHAR, athlete VARCHAR) ###human: What is the sum of the run 1 of athlete matthias guggenberger, who has a run 2 greater than 55.24? ###assistant: SELECT SUM(run_1) FROM table_name_40 WHERE run_2 > 55.24 AND athlete = "matthias guggenberger"
###context:CREATE TABLE table_name_31 (dissolved VARCHAR, assembled VARCHAR) ###human: What is the dissolved date of the parliament assembled on 3 June 1467? ###assistant: SELECT dissolved FROM table_name_31 WHERE assembled = "3 june 1467"
###context:CREATE TABLE table_name_58 (dissolved VARCHAR, assembled VARCHAR) ###human: What is the dissolved date of the parliament assembled on 4 November 1461? ###assistant: SELECT dissolved FROM table_name_58 WHERE assembled = "4 november 1461"
###context:CREATE TABLE table_name_46 (elected VARCHAR) ###human: Who is the 2nd member elected in 1461? ###assistant: SELECT 2 AS nd_member FROM table_name_46 WHERE elected = "1461"
###context:CREATE TABLE table_name_53 (dissolved VARCHAR, summoned VARCHAR) ###human: What is the dissolved date of the parliament summoned on 28 February 1467? ###assistant: SELECT dissolved FROM table_name_53 WHERE summoned = "28 february 1467"
###context:CREATE TABLE table_name_96 (assembled VARCHAR) ###human: What is 2nd Member, when Assembled is "30 March 1298"? ###assistant: SELECT 2 AS nd_member FROM table_name_96 WHERE assembled = "30 march 1298"
###context:CREATE TABLE table_name_82 (summoned VARCHAR) ###human: What is 1st Member, when Summoned is "14 July 1302"? ###assistant: SELECT 1 AS st_member FROM table_name_82 WHERE summoned = "14 july 1302"
###context:CREATE TABLE table_name_55 (assembled VARCHAR, summoned VARCHAR) ###human: What is Assembled, when Summoned is "6 October 1297"? ###assistant: SELECT assembled FROM table_name_55 WHERE summoned = "6 october 1297"
###context:CREATE TABLE table_name_23 (summoned VARCHAR, elected VARCHAR) ###human: What is Summoned, when Elected is "March 1298"? ###assistant: SELECT summoned FROM table_name_23 WHERE elected = "march 1298"