question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the hardness for the alloy that is liquid at 243 degrees C?
columns: - name: hardness type: VARCHAR - name: "liquid_at__\xB0c_" type: VARCHAR table: table_name_45
SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = "243"
How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2?
columns: - name: car__number type: VARCHAR - name: driver type: VARCHAR - name: pos type: VARCHAR table: table_name_93
SELECT COUNT(car__number) FROM table_name_93 WHERE driver = "erik darnell" AND pos < 2
What was the final score of the game at Texas Stadium?
columns: - name: final_score type: VARCHAR - name: stadium type: VARCHAR table: table_name_26
SELECT final_score FROM table_name_26 WHERE stadium = "texas stadium"
what is the assists when the club is chicago fire and goals is more than 2?
columns: - name: assists type: INTEGER - name: club type: VARCHAR - name: goals type: VARCHAR table: table_name_82
SELECT SUM(assists) FROM table_name_82 WHERE club = "chicago fire" AND goals > 2
What field had results of w 18-12?
columns: - name: field type: VARCHAR - name: result type: VARCHAR table: table_name_63
SELECT field FROM table_name_63 WHERE result = "w 18-12"
what is the series when the team is gunbroker racing?
columns: - name: series type: VARCHAR - name: team type: VARCHAR table: table_name_95
SELECT series FROM table_name_95 WHERE team = "gunbroker racing"
What was the tie no when the away team was northwich victoria?
columns: - name: tie_no type: VARCHAR - name: away_team type: VARCHAR table: table_name_21
SELECT tie_no FROM table_name_21 WHERE away_team = "northwich victoria"
What is the total number of swimsuit scores that have average scores less than 8.823, evening gown scores less than 8.69, and interview scores equal to 8.27?
columns: - name: swimsuit type: VARCHAR - name: interview type: VARCHAR - name: average type: VARCHAR - name: evening_gown type: VARCHAR table: table_name_19
SELECT COUNT(swimsuit) FROM table_name_19 WHERE average < 8.823 AND evening_gown < 8.69 AND interview = 8.27
When was the first beatification in Korea that was canonised before 1984?
columns: - name: beatified type: INTEGER - name: place type: VARCHAR - name: canonised type: VARCHAR table: table_name_12
SELECT MIN(beatified) FROM table_name_12 WHERE place = "korea" AND canonised < 1984
What is the total number of German submarines lost with more than 120958 sunk by mines?
columns: - name: german_submarines_lost type: VARCHAR - name: sunk_by_mines type: INTEGER table: table_name_46
SELECT COUNT(german_submarines_lost) FROM table_name_46 WHERE sunk_by_mines > 120958
When the Winning score was –9 (69-72-68-70=279), what was the Margin of victory?
columns: - name: margin_of_victory type: VARCHAR - name: winning_score type: VARCHAR table: table_name_66
SELECT margin_of_victory FROM table_name_66 WHERE winning_score = –9(69 - 72 - 68 - 70 = 279)
Which mean number of losses had a played number that was bigger than 34?
columns: - name: losses type: INTEGER - name: played type: INTEGER table: table_name_58
SELECT AVG(losses) FROM table_name_58 WHERE played > 34
Name the result for round 13
columns: - name: result type: VARCHAR - name: round type: VARCHAR table: table_21269143_1
SELECT result FROM table_21269143_1 WHERE round = "13"
If Internet Explorer is 47.22%, what is the Safari total?
columns: - name: safari type: VARCHAR - name: internet_explorer type: VARCHAR table: table_1876262_10
SELECT safari FROM table_1876262_10 WHERE internet_explorer = "47.22%"
Which IHSAA Football Class has an Enrollment of 406?
columns: - name: ihsaa_football_class type: VARCHAR - name: enrollment type: VARCHAR table: table_name_17
SELECT ihsaa_football_class FROM table_name_17 WHERE enrollment = 406
What is the Finish of 28 Wins?
columns: - name: finish type: VARCHAR - name: wins type: VARCHAR table: table_name_49
SELECT finish FROM table_name_49 WHERE wins = "28"
How many bronze medals did Bulgaria receive?
columns: - name: bronze type: VARCHAR - name: nation type: VARCHAR table: table_name_1
SELECT bronze FROM table_name_1 WHERE nation = "bulgaria"
Who was the team that played at Energysolutions Arena 19,911?
columns: - name: team type: VARCHAR - name: location_attendance type: VARCHAR table: table_name_29
SELECT team FROM table_name_29 WHERE location_attendance = "energysolutions arena 19,911"
What timeslot received 0.673 viewers?
columns: - name: timeslot type: VARCHAR - name: viewers__millions_ type: VARCHAR table: table_23392257_4
SELECT timeslot FROM table_23392257_4 WHERE viewers__millions_ = "0.673"
What is the number of people in attendance when Tonbridge Angels is the opponent?
columns: - name: attendance type: VARCHAR - name: opponent type: VARCHAR table: table_name_86
SELECT attendance FROM table_name_86 WHERE opponent = "tonbridge angels"
Name the number of names for exeter chiefs
columns: - name: name type: VARCHAR - name: promoted_from_league type: VARCHAR table: table_22977424_8
SELECT COUNT(name) FROM table_22977424_8 WHERE promoted_from_league = "Exeter Chiefs"
Who was the lyricist for the song with music directed by madan mohan kohli?
columns: - name: lyricist type: VARCHAR - name: music_director type: VARCHAR table: table_2528382_1
SELECT lyricist FROM table_2528382_1 WHERE music_director = "Madan Mohan Kohli"
I want the site for september 29, 2013
columns: - name: site type: VARCHAR - name: date type: VARCHAR table: table_name_51
SELECT site FROM table_name_51 WHERE date = "september 29, 2013"
Which country has a reaction time of under 0.242 seconds and over 1041 points?
columns: - name: country type: VARCHAR - name: react type: VARCHAR - name: points type: VARCHAR table: table_name_58
SELECT country FROM table_name_58 WHERE react < 0.242 AND points > 1041
What is the match report for the game that was played on 23 august 2008 in stark's park during the second division competition?
columns: - name: match_report type: VARCHAR - name: date type: VARCHAR - name: venue type: VARCHAR - name: competition type: VARCHAR table: table_name_13
SELECT match_report FROM table_name_13 WHERE venue = "stark's park" AND competition = "second division" AND date = "23 august 2008"
What is the greatest first elected for Pennsylvania 10?
columns: - name: first_elected type: INTEGER - name: district type: VARCHAR table: table_name_56
SELECT MAX(first_elected) FROM table_name_56 WHERE district = "pennsylvania 10"
which section did seymour halpern run in
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341865_34
SELECT district FROM table_1341865_34 WHERE incumbent = "Seymour Halpern"
Who was the writer that the director was Alice Troughton and the producer was Phil Collinson?
columns: - name: writer type: VARCHAR - name: producer type: VARCHAR - name: director type: VARCHAR table: table_name_89
SELECT writer FROM table_name_89 WHERE producer = "phil collinson" AND director = "alice troughton"
What is the nature of the incident that's a bomb attack?
columns: - name: nature_of_incident type: VARCHAR - name: circumstances type: VARCHAR table: table_name_69
SELECT nature_of_incident FROM table_name_69 WHERE circumstances = "bomb attack"
Name the frequency with on-air ID of 1way fm
columns: - name: frequency type: VARCHAR - name: on_air_id type: VARCHAR table: table_name_18
SELECT frequency FROM table_name_18 WHERE on_air_id = "1way fm"
What year has a original title of "el tinte de la fama"?
columns: - name: year__ceremony_ type: VARCHAR - name: original_title type: VARCHAR table: table_name_81
SELECT year__ceremony_ FROM table_name_81 WHERE original_title = "el tinte de la fama"
What was the Result on Week 3?
columns: - name: result type: VARCHAR - name: week type: VARCHAR table: table_name_62
SELECT result FROM table_name_62 WHERE week = 3
When the CAT FEA is 3 how many points were scored?
columns: - name: points type: VARCHAR - name: cat_fea type: VARCHAR table: table_name_88
SELECT points FROM table_name_88 WHERE cat_fea = "3"
Who was the builder for joffre
columns: - name: builder type: VARCHAR - name: name_number type: VARCHAR table: table_name_60
SELECT builder FROM table_name_60 WHERE name_number = "joffre"
For the game with 6,126 in attendance, how many points did both teams have in the standings?
columns: - name: points type: VARCHAR - name: attendance type: VARCHAR table: table_name_16
SELECT COUNT(points) FROM table_name_16 WHERE attendance = 6 OFFSET 126
What was the date of the first match of the Fifa Club World Cup that ended with the final position as winners?
columns: - name: first_match type: VARCHAR - name: final_position type: VARCHAR - name: competition type: VARCHAR table: table_name_6
SELECT first_match FROM table_name_6 WHERE final_position = "winners" AND competition = "fifa club world cup"
What is the high grid with 27 laps?
columns: - name: grid type: INTEGER - name: laps type: VARCHAR table: table_name_89
SELECT MAX(grid) FROM table_name_89 WHERE laps = 27
what artist won in 1953
columns: - name: artist type: VARCHAR - name: year type: VARCHAR table: table_name_41
SELECT artist FROM table_name_41 WHERE year = "1953"
What is the chassis of Officine Alfieri Maserati with a Maserati Straight-6 engine and fewer than 6 points?
columns: - name: chassis type: VARCHAR - name: points type: VARCHAR - name: engine type: VARCHAR - name: entrant type: VARCHAR table: table_name_55
SELECT chassis FROM table_name_55 WHERE engine = "maserati straight-6" AND entrant = "officine alfieri maserati" AND points < 6
What is the last season that the Scottish Rocks played?
columns: - name: last_season type: VARCHAR - name: team type: VARCHAR table: table_name_90
SELECT last_season FROM table_name_90 WHERE team = "scottish rocks"
What's the Score with a Home of Scotland and Date of 24 February?
columns: - name: score type: VARCHAR - name: home type: VARCHAR - name: date type: VARCHAR table: table_name_12
SELECT score FROM table_name_12 WHERE home = "scotland" AND date = "24 february"
How many years have a Player name of ronnie bull?
columns: - name: year type: INTEGER - name: player_name type: VARCHAR table: table_name_75
SELECT SUM(year) FROM table_name_75 WHERE player_name = "ronnie bull"
Name the position of pick 234
columns: - name: position type: VARCHAR - name: pick type: VARCHAR table: table_name_67
SELECT position FROM table_name_67 WHERE pick = "234"
What lane is from Great Britain and a 57.78 time?
columns: - name: lane type: VARCHAR - name: nationality type: VARCHAR - name: time type: VARCHAR table: table_name_95
SELECT COUNT(lane) FROM table_name_95 WHERE nationality = "great britain" AND time > 57.78
What is the lowest car with more than 122 yards?
columns: - name: car type: INTEGER - name: yards type: INTEGER table: table_name_37
SELECT MIN(car) FROM table_name_37 WHERE yards > 122
Kecamatan Bogor Timur has more than 6 villages, what is the area in km²?
columns: - name: "area_in_km\xB2" type: INTEGER - name: original_name type: VARCHAR - name: number_of_settlements_and_villages type: VARCHAR table: table_name_68
SELECT SUM(area_in_km²) FROM table_name_68 WHERE original_name = "kecamatan bogor timur" AND number_of_settlements_and_villages > 6
how many times is young rider more than 0, country is france and points less than 1?
columns: - name: jerseys type: VARCHAR - name: points type: VARCHAR - name: young_rider type: VARCHAR - name: country type: VARCHAR table: table_name_78
SELECT COUNT(jerseys) FROM table_name_78 WHERE young_rider > 0 AND country = "france" AND points < 1
What is Duration, when Test Flight is Taxi Test #2?
columns: - name: duration type: VARCHAR - name: test_flight type: VARCHAR table: table_name_20
SELECT duration FROM table_name_20 WHERE test_flight = "taxi test #2"
What are the Lyrics (l) / Music (m) when the draw was 5?
columns: - name: lyrics__l____music__m_ type: VARCHAR - name: draw type: VARCHAR table: table_name_60
SELECT lyrics__l____music__m_ FROM table_name_60 WHERE draw = 5
What is Career Win-Loss, when 2002 is "A", and when 2001 is "4R"?
columns: - name: career_win_loss type: VARCHAR table: table_name_70
SELECT career_win_loss FROM table_name_70 WHERE 2002 = "a" AND 2001 = "4r"
Name the poll source for july 12, 2008
columns: - name: poll_source type: VARCHAR - name: dates_administered type: VARCHAR table: table_16751596_2
SELECT poll_source FROM table_16751596_2 WHERE dates_administered = "July 12, 2008"
What award has a year earlier than 2004 and the episode shows —?
columns: - name: award type: VARCHAR - name: year type: VARCHAR - name: episode type: VARCHAR table: table_name_90
SELECT award FROM table_name_90 WHERE year < 2004 AND episode = "—"
Who was the loser when the New York Giants were the winners on November 14?
columns: - name: loser type: VARCHAR - name: winner type: VARCHAR - name: date type: VARCHAR table: table_name_71
SELECT loser FROM table_name_71 WHERE winner = "new york giants" AND date = "november 14"
What is the Venue with a Result that is win, and a Score that is 5-0?
columns: - name: venue type: VARCHAR - name: result type: VARCHAR - name: score type: VARCHAR table: table_name_35
SELECT venue FROM table_name_35 WHERE result = "win" AND score = "5-0"
Who wrote the film Jehovah's Witness?
columns: - name: writer_s_ type: VARCHAR - name: film type: VARCHAR table: table_name_5
SELECT writer_s_ FROM table_name_5 WHERE film = "jehovah's witness"
How many faculty members have 20 years of experience?
columns: - name: designation type: VARCHAR - name: experience type: VARCHAR table: table_17384764_1
SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = "20 years"
With the official name Quispamsis, what is the census ranking?
columns: - name: census_ranking type: VARCHAR - name: official_name type: VARCHAR table: table_171236_1
SELECT census_ranking FROM table_171236_1 WHERE official_name = "Quispamsis"
What is every entry for Tuesday August 23 if the entry for Wednesday August 24 is 22' 23.29 101.116mph?
columns: - name: tues_23_aug type: VARCHAR - name: wed_24_aug type: VARCHAR table: table_30058355_7
SELECT tues_23_aug FROM table_30058355_7 WHERE wed_24_aug = "22' 23.29 101.116mph"
What is the lowest prominence for a peak with elevation of 3,615 meters?
columns: - name: prominence__m_ type: INTEGER - name: elevation__m_ type: VARCHAR table: table_name_87
SELECT MIN(prominence__m_) FROM table_name_87 WHERE elevation__m_ = 3 OFFSET 615
What was the minimum population in 2011 of the district of Prakasam?
columns: - name: population__2011_ type: INTEGER - name: district type: VARCHAR table: table_1610301_1
SELECT MIN(population__2011_) FROM table_1610301_1 WHERE district = "Prakasam"
Who is team e when Aaron Solloway is team D?
columns: - name: team_e type: VARCHAR - name: team_d type: VARCHAR table: table_name_94
SELECT team_e FROM table_name_94 WHERE team_d = "aaron solloway"
What is the total number of Round that has a Time of 6:04?
columns: - name: round type: INTEGER - name: time type: VARCHAR table: table_name_85
SELECT SUM(round) FROM table_name_85 WHERE time = "6:04"
Which guest performer has a track length of 5:49?
columns: - name: guest_performer type: VARCHAR - name: time type: VARCHAR table: table_name_8
SELECT guest_performer FROM table_name_8 WHERE time = "5:49"
what is the date the successor seated because the person died august 17, 1954?
columns: - name: date_successor_seated type: VARCHAR - name: reason_for_change type: VARCHAR table: table_1652224_5
SELECT date_successor_seated FROM table_1652224_5 WHERE reason_for_change = "Died August 17, 1954"
What is the Format of the French Frequency with a Call sign of CKRL-FM?
columns: - name: format type: VARCHAR - name: notes type: VARCHAR - name: call_sign type: VARCHAR table: table_name_56
SELECT format FROM table_name_56 WHERE notes = "french" AND call_sign = "ckrl-fm"
What was the grid of Alex Yoong?
columns: - name: grid type: VARCHAR - name: driver type: VARCHAR table: table_name_77
SELECT grid FROM table_name_77 WHERE driver = "alex yoong"
what is the value for minimum total wins
columns: - name: total_wins type: INTEGER table: table_1458666_4
SELECT MIN(total_wins) FROM table_1458666_4
What number was the game resulting in a 5-11 record?
columns: - name: game type: INTEGER - name: record type: VARCHAR table: table_17118657_8
SELECT MIN(game) FROM table_17118657_8 WHERE record = "5-11"
Who was the winner that had a Points Classification of Giuseppe Saronni, a Trofeo Fast Team of Bianchi, and was Stage 3?
columns: - name: winner type: VARCHAR - name: stage type: VARCHAR - name: points_classification type: VARCHAR - name: trofeo_fast_team type: VARCHAR table: table_name_71
SELECT winner FROM table_name_71 WHERE points_classification = "giuseppe saronni" AND trofeo_fast_team = "bianchi" AND stage = "3"
For language Aymara Simi, what was the maximum San Javier municipality percentage?
columns: - name: san_javier_municipality___percentage_ type: INTEGER - name: language type: VARCHAR table: table_19998428_3
SELECT MAX(san_javier_municipality___percentage_) FROM table_19998428_3 WHERE language = "Aymara simi"
For Pigeon Creek what is the per capita income?
columns: - name: per_capita_income type: VARCHAR - name: place type: VARCHAR table: table_1840495_2
SELECT per_capita_income FROM table_1840495_2 WHERE place = "Pigeon Creek"
How many authors or editors are there for the book title elf child?
columns: - name: author_s__or_editor_s_ type: VARCHAR - name: book_title type: VARCHAR table: table_20193855_2
SELECT COUNT(author_s__or_editor_s_) FROM table_20193855_2 WHERE book_title = "Elf Child"
Which round was Robert Deciantis taken in?
columns: - name: round type: VARCHAR - name: player type: VARCHAR table: table_name_43
SELECT round FROM table_name_43 WHERE player = "robert deciantis"
WHAT IS THE ROUND WITH PICK OF 7?
columns: - name: round type: INTEGER - name: pick type: VARCHAR table: table_name_9
SELECT SUM(round) FROM table_name_9 WHERE pick = 7
Name the result for goal # more than 4
columns: - name: result type: VARCHAR - name: goal__number type: INTEGER table: table_name_92
SELECT result FROM table_name_92 WHERE goal__number > 4
What is the lowest grid that has over 67 laps with stefan bellof driving?
columns: - name: grid type: INTEGER - name: laps type: VARCHAR - name: driver type: VARCHAR table: table_name_52
SELECT MIN(grid) FROM table_name_52 WHERE laps > 67 AND driver = "stefan bellof"
How many third places has a total greater than 2 and a rank less than 2?
columns: - name: third_place type: VARCHAR - name: total type: VARCHAR - name: rank type: VARCHAR table: table_name_23
SELECT third_place FROM table_name_23 WHERE total > 2 AND rank < 2
What was the Tie no when the Home team was wealdstone?
columns: - name: tie_no type: VARCHAR - name: home_team type: VARCHAR table: table_name_34
SELECT tie_no FROM table_name_34 WHERE home_team = "wealdstone"
Who is the rider where the horse is galan de sauvagere?
columns: - name: rider type: VARCHAR - name: horse type: VARCHAR table: table_18666752_3
SELECT rider FROM table_18666752_3 WHERE horse = "Galan De Sauvagere"
What was the attendance when South Melbourne was the away team?
columns: - name: crowd type: INTEGER - name: away_team type: VARCHAR table: table_name_88
SELECT SUM(crowd) FROM table_name_88 WHERE away_team = "south melbourne"
Name the award for candida scott knight
columns: - name: award type: VARCHAR - name: director_s_ type: VARCHAR table: table_name_78
SELECT award FROM table_name_78 WHERE director_s_ = "candida scott knight"
Which player is the centre for the Detroit Red Wings?
columns: - name: player type: VARCHAR - name: position type: VARCHAR - name: nhl_team type: VARCHAR table: table_2897457_4
SELECT player FROM table_2897457_4 WHERE position = "Centre" AND nhl_team = "Detroit Red Wings"
What is Laid Down, when Commissioned is "11 November 1989"?
columns: - name: laid_down type: VARCHAR - name: commissioned type: VARCHAR table: table_name_90
SELECT laid_down FROM table_name_90 WHERE commissioned = "11 november 1989"
Name the game for june 7
columns: - name: game type: VARCHAR - name: date type: VARCHAR table: table_18894744_5
SELECT game FROM table_18894744_5 WHERE date = "June 7"
What is the highest episode# with the writer Paul West?
columns: - name: episode__number type: INTEGER - name: written_by type: VARCHAR table: table_2342078_2
SELECT MAX(episode__number) FROM table_2342078_2 WHERE written_by = "Paul West"
What is the ENglish word for the Icelandic word hlaupa?
columns: - name: english type: VARCHAR - name: icelandic type: VARCHAR table: table_name_46
SELECT english FROM table_name_46 WHERE icelandic = "hlaupa"
What is Segment A where Segment C is Sushi (part 1)?
columns: - name: segment_a type: VARCHAR - name: segment_c type: VARCHAR table: table_15187735_15
SELECT segment_a FROM table_15187735_15 WHERE segment_c = "Sushi (Part 1)"
What is Date, when Opponents In The Final, is Maria-Fernanda Alves Stéphanie Dubois?
columns: - name: date type: VARCHAR - name: opponents_in_the_final type: VARCHAR table: table_name_59
SELECT date FROM table_name_59 WHERE opponents_in_the_final = "maria-fernanda alves stéphanie dubois"
Which united states player had a To par of 12?
columns: - name: player type: VARCHAR - name: to_par type: VARCHAR - name: country type: VARCHAR table: table_name_63
SELECT player FROM table_name_63 WHERE to_par = 12 AND country = "united states"
What is the UK Railway with an ObjectNumber of 1975-7023?
columns: - name: railway type: VARCHAR - name: objectnumber type: VARCHAR table: table_name_16
SELECT railway FROM table_name_16 WHERE objectnumber = "1975-7023"
What are the tries against when they played against Bridgend?
columns: - name: tries_against type: INTEGER - name: team type: VARCHAR - name: Bridgend type: VARCHAR table: table_16770037_3
SELECT MAX(tries_against) FROM table_16770037_3 WHERE team = Bridgend
How many percentages have losses fewer than 1 with finals appearances of 4?
columns: - name: pct type: VARCHAR - name: losses type: VARCHAR - name: finals type: VARCHAR table: table_name_13
SELECT COUNT(pct) FROM table_name_13 WHERE losses < 1 AND finals = 4
Who did they play at Atlanta-Fulton County Stadium?
columns: - name: opponent type: VARCHAR - name: game_site type: VARCHAR table: table_name_20
SELECT opponent FROM table_name_20 WHERE game_site = "atlanta-fulton county stadium"
What is the score of the event with a competition type of friendly and a result of 4-5?
columns: - name: score type: VARCHAR - name: competition type: VARCHAR - name: result type: VARCHAR table: table_name_94
SELECT score FROM table_name_94 WHERE competition = "friendly" AND result = "4-5"
What was the game record when the opponent was 'at Los Angeles Raiders'?
columns: - name: record type: VARCHAR - name: opponent type: VARCHAR table: table_17972193_1
SELECT record FROM table_17972193_1 WHERE opponent = "at Los Angeles Raiders"
Which Country has a Rank of 5?
columns: - name: country type: VARCHAR - name: rank type: VARCHAR table: table_name_77
SELECT country FROM table_name_77 WHERE rank = 5
What was the total number of A scores for Japan when the T score was more than 4?
columns: - name: a_score type: VARCHAR - name: nation type: VARCHAR - name: t_score type: VARCHAR table: table_name_63
SELECT COUNT(a_score) FROM table_name_63 WHERE nation = "japan" AND t_score > 4
what is the country when the player is bill nary?
columns: - name: country type: VARCHAR - name: player type: VARCHAR table: table_name_7
SELECT country FROM table_name_7 WHERE player = "bill nary"
When 87 mpg-e (39kw-hrs/100mi) is the epa rated combined fuel economy how many operating modes are there?
columns: - name: operating_mode type: VARCHAR - name: epa_rated_combined_fuel_economy type: VARCHAR table: table_24620684_2
SELECT COUNT(operating_mode) FROM table_24620684_2 WHERE epa_rated_combined_fuel_economy = "87 mpg-e (39kW-hrs/100mi)"
What was the maximum rank-final score on the floor exercise?
columns: - name: rank_final type: INTEGER - name: apparatus type: VARCHAR table: table_26681728_1
SELECT MAX(rank_final) FROM table_26681728_1 WHERE apparatus = "Floor Exercise"