answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT team FROM table_name_24 WHERE winners = 1 AND years_runners_up = "2007" | CREATE TABLE table_name_24 (team VARCHAR, winners VARCHAR, years_runners_up VARCHAR) | Which team were runners-up in 2007 and had 1 under winners? |
SELECT COUNT(winners) FROM table_name_31 WHERE years_won = "1983" | CREATE TABLE table_name_31 (winners VARCHAR, years_won VARCHAR) | What is the sum of winners when 1983 is the years won? |
SELECT AVG(rank) FROM table_name_72 WHERE total = 12 | CREATE TABLE table_name_72 (rank INTEGER, total VARCHAR) | Which Rank has a Total of 12? |
SELECT rank FROM table_name_12 WHERE opposition = "limerick" | CREATE TABLE table_name_12 (rank VARCHAR, opposition VARCHAR) | Which Rank has an Opposition of limerick? |
SELECT COUNT(rank) FROM table_name_37 WHERE tally = "0-10" AND opposition = "cork" | CREATE TABLE table_name_37 (rank VARCHAR, tally VARCHAR, opposition VARCHAR) | How much Rank has a Tally of 0-10, and an Opposition of cork? |
SELECT MIN(total) FROM table_name_18 WHERE rank < 3 AND county = "cork" | CREATE TABLE table_name_18 (total INTEGER, rank VARCHAR, county VARCHAR) | Which Total has a Rank smaller than 3, and a County of cork? |
SELECT AVG(rank) FROM table_name_36 WHERE tally = "4-0" | CREATE TABLE table_name_36 (rank INTEGER, tally VARCHAR) | Which Rank has a Tally of 4-0? |
SELECT MAX(lane) FROM table_name_60 WHERE rank > 3 AND time > 45.63 AND react < 0.28800000000000003 AND athlete = "geiner mosquera" | CREATE TABLE table_name_60 (lane INTEGER, athlete VARCHAR, react VARCHAR, rank VARCHAR, time VARCHAR) | Which Lane has a Rank larger than 3, and a Time larger than 45.63, and a Reaction smaller than 0.28800000000000003, and an Athlete of geiner mosquera? |
SELECT COUNT(react) FROM table_name_24 WHERE athlete = "alleyne francique" AND lane > 9 | CREATE TABLE table_name_24 (react VARCHAR, athlete VARCHAR, lane VARCHAR) | How many reactions have an Athlete of alleyne francique, and a Lane larger than 9? |
SELECT year FROM table_name_67 WHERE waterford_score = "6-08 (24)" | CREATE TABLE table_name_67 (year VARCHAR, waterford_score VARCHAR) | What yeae has 6-08 (24) as a waterford score? |
SELECT MIN(year) FROM table_name_95 WHERE competition = "all-ireland hurling final" AND waterford_score = "6-08 (24)" | CREATE TABLE table_name_95 (year INTEGER, competition VARCHAR, waterford_score VARCHAR) | What is the lowest year that has all-ireland hurling final as the competition, and 6-08 (24) as the waterford score? |
SELECT waterford_score FROM table_name_7 WHERE year < 1963 AND competition = "all-ireland hurling final replay" | CREATE TABLE table_name_7 (waterford_score VARCHAR, year VARCHAR, competition VARCHAR) | What is the waterford score that has a year prior to 1963, with all-ireland hurling final replay as the competition? |
SELECT rounds FROM table_name_28 WHERE team = "rml racing silverline" AND drivers = "james nash" | CREATE TABLE table_name_28 (rounds VARCHAR, team VARCHAR, drivers VARCHAR) | What rounds did RML Racing Silverline and James Nash compete? |
SELECT class FROM table_name_28 WHERE drivers = "rob collard" | CREATE TABLE table_name_28 (class VARCHAR, drivers VARCHAR) | What class is Rob Collard in? |
SELECT car_spec FROM table_name_68 WHERE team = "airwaves bmw" AND drivers = "rob collard" | CREATE TABLE table_name_68 (car_spec VARCHAR, team VARCHAR, drivers VARCHAR) | What is the car specs for team Airwaves BMW's driver Rob Collard? |
SELECT language FROM table_name_83 WHERE name = "tv3" | CREATE TABLE table_name_83 (language VARCHAR, name VARCHAR) | What is the language of TV3? |
SELECT group FROM table_name_70 WHERE name = "espn international sports" | CREATE TABLE table_name_70 (group VARCHAR, name VARCHAR) | What is the group of ESPN International Sports? |
SELECT type FROM table_name_74 WHERE name = "espn international sports" | CREATE TABLE table_name_74 (type VARCHAR, name VARCHAR) | What is the type of station for ESPN International Sports? |
SELECT type FROM table_name_18 WHERE group = "movies" | CREATE TABLE table_name_18 (type VARCHAR, group VARCHAR) | What is the type of station that is in the movies group? |
SELECT name FROM table_name_6 WHERE total = 22 | CREATE TABLE table_name_6 (name VARCHAR, total VARCHAR) | What is the name of the person with a total of 22? |
SELECT nationality FROM table_name_82 WHERE athlete = "henry carr" AND time = "20.3y" | CREATE TABLE table_name_82 (nationality VARCHAR, athlete VARCHAR, time VARCHAR) | What's the nationality of Henry Carr having a time of 20.3y? |
SELECT nationality FROM table_name_53 WHERE athlete = "livio berruti" | CREATE TABLE table_name_53 (nationality VARCHAR, athlete VARCHAR) | What's the nationality of Livio Berruti? |
SELECT nationality FROM table_name_70 WHERE time = "20.6" AND athlete = "ray norton" | CREATE TABLE table_name_70 (nationality VARCHAR, time VARCHAR, athlete VARCHAR) | What's the nationality of Ray norton with a time of 20.6? |
SELECT SUM(prominence__m_) FROM table_name_39 WHERE country = "slovakia" | CREATE TABLE table_name_39 (prominence__m_ INTEGER, country VARCHAR) | What is the sum of the prominence in m of slovakia? |
SELECT prominence__m_ FROM table_name_57 WHERE col__m_ > 738 | CREATE TABLE table_name_57 (prominence__m_ VARCHAR, col__m_ INTEGER) | What is the prominence in m of a col in m greater than 738? |
SELECT MIN(col__m_) FROM table_name_69 WHERE peak = "gerlachovský štít" AND elevation__m_ > 2 OFFSET 655 | CREATE TABLE table_name_69 (col__m_ INTEGER, peak VARCHAR, elevation__m_ VARCHAR) | Whta is the lowest col in m of gerlachovský štít peak, which has an elevation greater than 2,655 m? |
SELECT AVG(prominence__m_) FROM table_name_48 WHERE peak = "pietrosul rodnei" AND elevation__m_ < 2 OFFSET 303 | CREATE TABLE table_name_48 (prominence__m_ INTEGER, peak VARCHAR, elevation__m_ VARCHAR) | What is the average prominence in m of pietrosul rodnei peak, which has an elevation less than 2,303? |
SELECT score FROM table_name_9 WHERE comp = "og" | CREATE TABLE table_name_9 (score VARCHAR, comp VARCHAR) | What is the Score of the Shooter with a Comp of OG? |
SELECT SUM(b_score) FROM table_name_70 WHERE total > 16.125 AND position = "3rd" | CREATE TABLE table_name_70 (b_score INTEGER, total VARCHAR, position VARCHAR) | What is the B Score when the total is more than 16.125, and position is 3rd? |
SELECT MIN(a_score) FROM table_name_61 WHERE b_score = 9.15 AND total = 16.05 | CREATE TABLE table_name_61 (a_score INTEGER, b_score VARCHAR, total VARCHAR) | What is the lowest A Score when the B Score is 9.15, and total is 16.05? |
SELECT athlete FROM table_name_39 WHERE time = "7:14.64" | CREATE TABLE table_name_39 (athlete VARCHAR, time VARCHAR) | Who had a time of 7:14.64? |
SELECT COUNT(rank) FROM table_name_9 WHERE athlete = "lassi karonen" | CREATE TABLE table_name_9 (rank VARCHAR, athlete VARCHAR) | What rank was Lassi Karonen? |
SELECT MIN(rank) FROM table_name_10 WHERE time = "7:52.53" | CREATE TABLE table_name_10 (rank INTEGER, time VARCHAR) | What was the rank when then time was 7:52.53? |
SELECT athlete FROM table_name_73 WHERE notes = "q" AND country = "germany" | CREATE TABLE table_name_73 (athlete VARCHAR, notes VARCHAR, country VARCHAR) | Who was the athlete from Germany with notes of Q? |
SELECT rank FROM table_name_74 WHERE country = "germany" | CREATE TABLE table_name_74 (rank VARCHAR, country VARCHAR) | What rank is Germany? |
SELECT athlete FROM table_name_71 WHERE country = "hong kong" | CREATE TABLE table_name_71 (athlete VARCHAR, country VARCHAR) | Who was the athlete from Hong Kong? |
SELECT school FROM table_name_75 WHERE conference_joined = "northeast corner" AND mascot = "blazers" | CREATE TABLE table_name_75 (school VARCHAR, conference_joined VARCHAR, mascot VARCHAR) | Which school has a mascot of the Blazers and in the Northeast Corner conference? |
SELECT mascot FROM table_name_80 WHERE ihsaa_class___football_class = "2a/2a" | CREATE TABLE table_name_80 (mascot VARCHAR, ihsaa_class___football_class VARCHAR) | Which mascot has an IHSAA Class and Football class of 2A/2A? |
SELECT player FROM table_name_33 WHERE round < 3 | CREATE TABLE table_name_33 (player VARCHAR, round INTEGER) | Which player was selected in rounds under 3? |
SELECT MAX(water__sqmi_) FROM table_name_91 WHERE pop__2010_ = 359 AND longitude < -97.176811 | CREATE TABLE table_name_91 (water__sqmi_ INTEGER, pop__2010_ VARCHAR, longitude VARCHAR) | Which Water (sqmi) has a Pop (2010) of 359, and a Longitude smaller than -97.176811? |
SELECT MIN(land___sqmi__) FROM table_name_79 WHERE water__sqmi_ < 0.04 AND longitude = -96.794706 | CREATE TABLE table_name_79 (land___sqmi__ INTEGER, water__sqmi_ VARCHAR, longitude VARCHAR) | Which Land (sqmi) has a Water (sqmi) smaller than 0.04, and a Longitude of -96.794706? |
SELECT SUM(latitude) FROM table_name_9 WHERE water__sqmi_ = 0.267 AND ansi_code > 1759605 | CREATE TABLE table_name_9 (latitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR) | How much Latitude has a Water (sqmi) of 0.267, and an ANSI code larger than 1759605? |
SELECT MIN(ansi_code) FROM table_name_48 WHERE geo_id > 3809927140 AND water__sqmi_ < 0.492 AND pop__2010_ = 37 AND latitude > 48.245979 | CREATE TABLE table_name_48 (ansi_code INTEGER, latitude VARCHAR, pop__2010_ VARCHAR, geo_id VARCHAR, water__sqmi_ VARCHAR) | Which ANSI code has a GEO ID larger than 3809927140, and a Water (sqmi) smaller than 0.492, and a Pop (2010) of 37, and a Latitude larger than 48.245979? |
SELECT owner FROM table_name_64 WHERE frequency = "00 99.3" | CREATE TABLE table_name_64 (owner VARCHAR, frequency VARCHAR) | What is the Owner of Frequency 00 99.3? |
SELECT branding FROM table_name_70 WHERE frequency = "00 94.5" | CREATE TABLE table_name_70 (branding VARCHAR, frequency VARCHAR) | What is the Branding of Frequency 00 94.5? |
SELECT call_sign FROM table_name_33 WHERE owner = "ckua radio foundation" | CREATE TABLE table_name_33 (call_sign VARCHAR, owner VARCHAR) | What is the Call Sign of the Frequency by Owner CKUA Radio Foundation? |
SELECT owner FROM table_name_40 WHERE format = "first nations community radio" | CREATE TABLE table_name_40 (owner VARCHAR, format VARCHAR) | What is the Owner of the Frequency with a Format of First Nations Community Radio? |
SELECT school FROM table_name_78 WHERE previous_conference = "none (new school)" AND year_joined > 1960 AND location = "versailles" | CREATE TABLE table_name_78 (school VARCHAR, location VARCHAR, previous_conference VARCHAR, year_joined VARCHAR) | Which School has a Previous Conference of none (new school), and a Year Joined larger than 1960, and a Location of versailles? |
SELECT location FROM table_name_95 WHERE previous_conference = "independents" AND mascot = "hilltoppers" | CREATE TABLE table_name_95 (location VARCHAR, previous_conference VARCHAR, mascot VARCHAR) | Which Location has a Previous Conference of independents, and a Mascot of hilltoppers? |
SELECT AVG(year_joined) FROM table_name_88 WHERE size > 93 AND previous_conference = "none (new school)" AND mascot = "rebels" | CREATE TABLE table_name_88 (year_joined INTEGER, mascot VARCHAR, size VARCHAR, previous_conference VARCHAR) | Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels? |
SELECT COUNT(year_joined) FROM table_name_68 WHERE size < 417 AND ihsaa_class = "a" AND school = "jac-cen-del" | CREATE TABLE table_name_68 (year_joined VARCHAR, school VARCHAR, size VARCHAR, ihsaa_class VARCHAR) | How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del? |
SELECT COUNT(1957) FROM table_name_71 WHERE 1955 < 0.63 AND 1952 > 0.22 | CREATE TABLE table_name_71 (Id VARCHAR) | What is the 1957 number when the 1955 is smaller than 0.63, and 1952 is larger than 0.22? |
SELECT SUM(1952) FROM table_name_37 WHERE 1954 > 4.2 | CREATE TABLE table_name_37 (Id VARCHAR) | What is the 1952 rate when the 1954 is more than 4.2? |
SELECT SUM(1955) FROM table_name_7 WHERE 1956 > 2.9 AND 1953 > 4.5 | CREATE TABLE table_name_7 (Id VARCHAR) | What is the 1955 rate when the 1956 is more than 2.9, and 1953 is larger than 4.5? |
SELECT MAX(week) FROM table_name_97 WHERE result = "bottom 3" AND partner = "endre jansen" | CREATE TABLE table_name_97 (week INTEGER, result VARCHAR, partner VARCHAR) | In what Week resulting in the bottom 3 was Endre Jansen Partner? |
SELECT dance FROM table_name_16 WHERE result = "safe" AND week = 1 | CREATE TABLE table_name_16 (dance VARCHAR, result VARCHAR, week VARCHAR) | What Dance in Week 1 resulted in Safe? |
SELECT MAX(week) FROM table_name_16 WHERE dance = "locking" | CREATE TABLE table_name_16 (week INTEGER, dance VARCHAR) | In what Week was the Locking Dance? |
SELECT position FROM table_name_5 WHERE round = 7 AND pick__number < 214 | CREATE TABLE table_name_5 (position VARCHAR, round VARCHAR, pick__number VARCHAR) | What position has 7 as the round, with a pick # less than 214? |
SELECT college FROM table_name_95 WHERE round > 1 AND player = "dylan mcfarland" | CREATE TABLE table_name_95 (college VARCHAR, round VARCHAR, player VARCHAR) | What college has a round greater than 1, with dylan mcfarland as the player? |
SELECT player FROM table_name_44 WHERE pick__number > 207 | CREATE TABLE table_name_44 (player VARCHAR, pick__number INTEGER) | What player has a pick # greater than 207? |
SELECT artist FROM table_name_42 WHERE certification = "4x platinum" | CREATE TABLE table_name_42 (artist VARCHAR, certification VARCHAR) | Which artist had a 4x platinum? |
SELECT MAX(peak_position) FROM table_name_48 WHERE album = "one of the boys" | CREATE TABLE table_name_48 (peak_position INTEGER, album VARCHAR) | What was the highest peak position for the album one of the boys? |
SELECT COUNT(sales) FROM table_name_31 WHERE peak_position = 1 AND certification = "6x platinum" | CREATE TABLE table_name_31 (sales VARCHAR, peak_position VARCHAR, certification VARCHAR) | How many sales had a peak position of 1 and a certification of 6x platinum? |
SELECT album FROM table_name_25 WHERE certification = "3x platinum" AND peak_position = 6 | CREATE TABLE table_name_25 (album VARCHAR, certification VARCHAR, peak_position VARCHAR) | What album had a peak position of 6 and a certification of 3x platinum? |
SELECT COUNT(sales) FROM table_name_44 WHERE peak_position > 2 AND certification = "3x platinum" | CREATE TABLE table_name_44 (sales VARCHAR, peak_position VARCHAR, certification VARCHAR) | How many sales had a peak position more than 2 and a Certification of 3x platinum? |
SELECT rowers FROM table_name_18 WHERE time = "7:39.70" | CREATE TABLE table_name_18 (rowers VARCHAR, time VARCHAR) | Who were the rowers who had a time of 7:39.70? |
SELECT rowers FROM table_name_51 WHERE rank < 4 AND country = "china" | CREATE TABLE table_name_51 (rowers VARCHAR, rank VARCHAR, country VARCHAR) | Who were the rowers from china wh had a rank smaller than 4? |
SELECT notes FROM table_name_26 WHERE country = "denmark" | CREATE TABLE table_name_26 (notes VARCHAR, country VARCHAR) | What is the notes for the rowers from denmark? |
SELECT MAX(bronze) FROM table_name_21 WHERE nation = "austria" AND total > 6 | CREATE TABLE table_name_21 (bronze INTEGER, nation VARCHAR, total VARCHAR) | Which Bronze has a Nation of austria, and a Total larger than 6? |
SELECT rank FROM table_name_13 WHERE silver = 1 AND gold = 0 AND nation = "austria" | CREATE TABLE table_name_13 (rank VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR) | Which Rank has a Silver of 1, and a Gold of 0, and a Nation of austria? |
SELECT AVG(total) FROM table_name_67 WHERE rank = "5" AND bronze < 0 | CREATE TABLE table_name_67 (total INTEGER, rank VARCHAR, bronze VARCHAR) | Which Total has a Rank of 5, and a Bronze smaller than 0? |
SELECT MIN(total) FROM table_name_37 WHERE bronze = 5 AND silver < 1 | CREATE TABLE table_name_37 (total INTEGER, bronze VARCHAR, silver VARCHAR) | Which Total has a Bronze of 5, and a Silver smaller than 1? |
SELECT MAX(year) FROM table_name_25 WHERE formula = "grand prix" | CREATE TABLE table_name_25 (year INTEGER, formula VARCHAR) | What is the highest year with a formula of Grand Prix? |
SELECT formula FROM table_name_64 WHERE driver = "john moore-brabazon" | CREATE TABLE table_name_64 (formula VARCHAR, driver VARCHAR) | Which formula had a driver of John Moore-Brabazon? |
SELECT driver FROM table_name_51 WHERE year < 1905 | CREATE TABLE table_name_51 (driver VARCHAR, year INTEGER) | Which driver had a year under 1905? |
SELECT COUNT(year) FROM table_name_46 WHERE formula = "grand prix" | CREATE TABLE table_name_46 (year VARCHAR, formula VARCHAR) | How many years had a formula of Grand Prix? |
SELECT location FROM table_name_15 WHERE driver = "george heath" | CREATE TABLE table_name_15 (location VARCHAR, driver VARCHAR) | Which location was won by George Heath? |
SELECT COUNT(2010) FROM table_name_64 WHERE country = "ghana" | CREATE TABLE table_name_64 (country VARCHAR) | What is the 2010 total for ghana? |
SELECT country FROM table_name_73 WHERE airport = "nnamdi azikiwe international airport" | CREATE TABLE table_name_73 (country VARCHAR, airport VARCHAR) | Which country is the nnamdi azikiwe international airport in? |
SELECT AVG(lane) FROM table_name_79 WHERE nationality = "kenya" AND react > 0.212 | CREATE TABLE table_name_79 (lane INTEGER, nationality VARCHAR, react VARCHAR) | What is the average lane for Kenya with react larger than 0.212? |
SELECT MAX(rank) FROM table_name_34 WHERE athlete = "tim maeyens" | CREATE TABLE table_name_34 (rank INTEGER, athlete VARCHAR) | what is the highest rank for tim maeyens? |
SELECT notes FROM table_name_24 WHERE athlete = "andre vonarburg" | CREATE TABLE table_name_24 (notes VARCHAR, athlete VARCHAR) | what is the notes for andre vonarburg? |
SELECT athlete FROM table_name_13 WHERE country = "greece" | CREATE TABLE table_name_13 (athlete VARCHAR, country VARCHAR) | Who is the athlete from greece? |
SELECT athlete FROM table_name_10 WHERE rank < 2 | CREATE TABLE table_name_10 (athlete VARCHAR, rank INTEGER) | who is the athlete with the rank smaller than 2? |
SELECT notes FROM table_name_86 WHERE time = "7:38.87" | CREATE TABLE table_name_86 (notes VARCHAR, time VARCHAR) | what is the notes for the athlete with the time of 7:38.87? |
SELECT SUM(gold) FROM table_name_74 WHERE silver = 4 AND total > 6 | CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, total VARCHAR) | What is the sum of the gold medals of the nation with 4 silvers and more than 6 total medals? |
SELECT MAX(bronze) FROM table_name_4 WHERE nation = "west germany" AND gold > 0 | CREATE TABLE table_name_4 (bronze INTEGER, nation VARCHAR, gold VARCHAR) | What is the highest number of bronze medals of west germany, which has more than 0 golds? |
SELECT AVG(total) FROM table_name_2 WHERE bronze > 2 AND silver > 0 AND nation = "soviet union" | CREATE TABLE table_name_2 (total INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR) | What is the average total medals of the soviet union, which has more than 2 bronze and more than 0 silver medals? |
SELECT AVG(year) FROM table_name_32 WHERE ship = "europa" AND dates = "14 – 23 october" | CREATE TABLE table_name_32 (year INTEGER, ship VARCHAR, dates VARCHAR) | What year did the ship Europa, have the dates of 14 – 23 October? |
SELECT days, _hours, _minutes FROM table_name_81 WHERE dates = "21 – 26 october" | CREATE TABLE table_name_81 (days VARCHAR, _hours VARCHAR, _minutes VARCHAR, dates VARCHAR) | What is the Days, hours, minutes for 21 – 26 October? |
SELECT year_joined FROM table_name_83 WHERE mascot = "vikings" | CREATE TABLE table_name_83 (year_joined VARCHAR, mascot VARCHAR) | Which year did the school with the mascot of the Vikings join? |
SELECT writer_s_ FROM table_name_64 WHERE recorded_at = "funhouse studios" AND time = "3:27" | CREATE TABLE table_name_64 (writer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR) | Who wrote the album recorded at funhouse studios with a time of 3:27? |
SELECT performer_s_ FROM table_name_45 WHERE recorded_at = "the cabin in the woods studio" AND time = "3:16" | CREATE TABLE table_name_45 (performer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR) | Who performed the song recorded at the Cabin in the Woods Studio with a Time of 3:16? |
SELECT league_cup_goals FROM table_name_45 WHERE league_cup_apps = "1 (1)" | CREATE TABLE table_name_45 (league_cup_goals VARCHAR, league_cup_apps VARCHAR) | Which League Cup Goals have a League Cup Apps of 1 (1)? |
SELECT fa_cup_apps FROM table_name_90 WHERE total_goals > 6 AND fa_cup_goals < 1 | CREATE TABLE table_name_90 (fa_cup_apps VARCHAR, total_goals VARCHAR, fa_cup_goals VARCHAR) | Which FA Cup Apps have Total Goals larger than 6, and an FA Cup Goals smaller than 1? |
SELECT COUNT(league_goals) FROM table_name_84 WHERE fa_cup_apps = "0 (1)" | CREATE TABLE table_name_84 (league_goals VARCHAR, fa_cup_apps VARCHAR) | How many League Goals have an FA Cup Apps of 0 (1)? |
SELECT MIN(round) FROM table_name_55 WHERE player = "will wilcox" | CREATE TABLE table_name_55 (round INTEGER, player VARCHAR) | What is the lowest round number in which Will Wilcox was selected? |
SELECT player FROM table_name_7 WHERE college = "tennessee-chattanooga" | CREATE TABLE table_name_7 (player VARCHAR, college VARCHAR) | Which player went to college at Tennessee-Chattanooga? |
SELECT MIN(col__m_) FROM table_name_88 WHERE elevation__m_ < 1 OFFSET 624 | CREATE TABLE table_name_88 (col__m_ INTEGER, elevation__m_ INTEGER) | Which Col (m) has an Elevation (m) smaller than 1,624? |
SELECT SUM(elevation__m_) FROM table_name_45 WHERE prominence__m_ > 1 OFFSET 754 | CREATE TABLE table_name_45 (elevation__m_ INTEGER, prominence__m_ INTEGER) | How much Elevation (m) has a Prominence (m) larger than 1,754? |
Subsets and Splits