answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT player FROM table_name_89 WHERE finish = "t66"
Who has a finish of t66?
CREATE TABLE table_name_89 (player VARCHAR, finish VARCHAR)
SELECT title FROM table_name_17 WHERE lyricist_s_ = "roz" AND arranger_s_ = "yongmin lee"
What is the title of the track with lyricist ROZ and arranger Yongmin Lee?
CREATE TABLE table_name_17 (title VARCHAR, lyricist_s_ VARCHAR, arranger_s_ VARCHAR)
SELECT SUM(round) FROM table_name_91 WHERE school_club_team = "pan american"
How many rounds have School/club team of pan american?
CREATE TABLE table_name_91 (round INTEGER, school_club_team VARCHAR)
SELECT safari FROM table_name_98 WHERE internet_explorer = "20.27%"
What was the percentage of safari when internet explorer was 20.27%?
CREATE TABLE table_name_98 (safari VARCHAR, internet_explorer VARCHAR)
SELECT name FROM table_name_97 WHERE listed = "02/21/1990" AND cerclis_id = "scd980844005"
What name was listed 02/21/1990, and a CERCLIS ID of scd980844005?
CREATE TABLE table_name_97 (name VARCHAR, listed VARCHAR, cerclis_id VARCHAR)
SELECT to_par FROM table_name_24 WHERE score = 74 - 69 - 66 = 209
What was the to par for the game with a score of 74-69-66=209?
CREATE TABLE table_name_24 (to_par VARCHAR, score VARCHAR)
SELECT 2013 FROM table_name_94 WHERE 2007 = "a"
What was the 2013 finish for the tournament that had a 2007 finish of A?
CREATE TABLE table_name_94 (Id VARCHAR)
SELECT high_points FROM table_23248940_6 WHERE game = 14
Who are all high points in game 14?
CREATE TABLE table_23248940_6 (high_points VARCHAR, game VARCHAR)
SELECT COUNT(apparent_magnitude) FROM table_name_24 WHERE constellation = "sculptor"
what is the apparent magnitude of the constellation sculptor
CREATE TABLE table_name_24 (apparent_magnitude VARCHAR, constellation VARCHAR)
SELECT MIN(no) FROM table_23730973_5 WHERE rating = "4.7"
What number episode had a rating of 4.7?
CREATE TABLE table_23730973_5 (no INTEGER, rating VARCHAR)
SELECT MAX(vertical_drop__m_) FROM table_name_9 WHERE length__m_ = 1 OFFSET 200
What is the highest vertical drop among the 1,200 meter long tracks?
CREATE TABLE table_name_9 (vertical_drop__m_ INTEGER, length__m_ VARCHAR)
SELECT COUNT(index__year_) FROM table_19948664_2 WHERE world_ranking__1_ = "21st"
How many years were recorded when world ranking was 21st?
CREATE TABLE table_19948664_2 (index__year_ VARCHAR, world_ranking__1_ VARCHAR)
SELECT attendance FROM table_name_19 WHERE week < 8 AND opponent = "philadelphia eagles"
Which Attendance has a Week smaller than 8, and an Opponent of philadelphia eagles?
CREATE TABLE table_name_19 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT T1.owner_id, T1.zip_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY SUM(T3.cost_of_treatment) DESC LIMIT 1
Which owner has paid the largest amount of money in total for their dogs? Show the owner id and zip code.
CREATE TABLE Treatments (dog_id VARCHAR, cost_of_treatment INTEGER); CREATE TABLE Owners (owner_id VARCHAR, zip_code VARCHAR); CREATE TABLE Dogs (owner_id VARCHAR, dog_id VARCHAR)
SELECT owner FROM table_1979203_1 WHERE callsign = "WLIW"
what is the owner of the callsign wliw
CREATE TABLE table_1979203_1 (owner VARCHAR, callsign VARCHAR)
SELECT COUNT(_percentage_of_popular_vote) FROM table_168482_1 WHERE election = 1983
How many percentages are listed for the election in 1983?
CREATE TABLE table_168482_1 (_percentage_of_popular_vote VARCHAR, election VARCHAR)
SELECT written_by FROM table_15938543_1 WHERE directed_by = "Dennie Gordon"
Who wrote the episode that was directed by Dennie Gordon
CREATE TABLE table_15938543_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT MIN(episodes) FROM table_name_98 WHERE tv_station = "fuji tv" AND romaji_title = "absolute boyfriend"
What is the episode on Fuji TV titled Absolute Boyfriend?
CREATE TABLE table_name_98 (episodes INTEGER, tv_station VARCHAR, romaji_title VARCHAR)
SELECT SUM(lane) FROM table_name_97 WHERE time = "1:59.42"
In what lane did the swimmer get a time of 1:59.42?
CREATE TABLE table_name_97 (lane INTEGER, time VARCHAR)
SELECT COUNT(DISTINCT T1.donator_name) FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = "Glenn"
How many donors have endowment for school named "Glenn"?
CREATE TABLE school (school_id VARCHAR, school_name VARCHAR); CREATE TABLE endowment (donator_name VARCHAR, school_id VARCHAR)
SELECT l2_cache FROM table_name_94 WHERE part_number_s_ = "rk80530pz014256"
What is the L2 Cache when the Part Number(s) is rk80530pz014256?
CREATE TABLE table_name_94 (l2_cache VARCHAR, part_number_s_ VARCHAR)
SELECT date FROM table_name_99 WHERE home = "montreal canadiens" AND points > 9 AND decision = "price"
Which Date has a Home of montreal canadiens, and Points larger than 9, and a Decision of price?
CREATE TABLE table_name_99 (date VARCHAR, decision VARCHAR, home VARCHAR, points VARCHAR)
SELECT event FROM table_name_24 WHERE res = "win" AND round = "n/a" AND opponent = "nicolas smith"
Which event is a win by an opponent of Nicolas Smith, with the round marked n/a?
CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)
SELECT SUM(against) FROM table_name_84 WHERE team = "guarani" AND drawn < 3
How many games against for team guarani with under 3 draws?
CREATE TABLE table_name_84 (against INTEGER, team VARCHAR, drawn VARCHAR)
SELECT COUNT(college) FROM table_16575609_5 WHERE player = "Jon Gott"
How many colleges did Jon Gott attend?
CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)
SELECT AVG(total) FROM table_name_59 WHERE silver > 6 AND gold < 8
Which nation has more than 6 Silver medals and fewer than 8 Gold medals?
CREATE TABLE table_name_59 (total INTEGER, silver VARCHAR, gold VARCHAR)
SELECT opponent FROM table_name_48 WHERE date = "august 12"
Who did they play on August 12?
CREATE TABLE table_name_48 (opponent VARCHAR, date VARCHAR)
SELECT surname FROM table_name_38 WHERE first = "marc"
What is Marc's Surname?
CREATE TABLE table_name_38 (surname VARCHAR, first VARCHAR)
SELECT place FROM table_name_66 WHERE score = 73 - 71 = 144 AND player = "scott simpson"
What is Place, when Score is "73-71=144", and when Player is "Scott Simpson"?
CREATE TABLE table_name_66 (place VARCHAR, player VARCHAR, score VARCHAR)
SELECT physician, department FROM affiliated_with WHERE primaryaffiliation = 1
List the physicians' employee ids together with their primary affiliation departments' ids.
CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR, primaryaffiliation VARCHAR)
SELECT attendance FROM table_name_1 WHERE opponent = "montreal alouettes" AND date = "oct 4"
What is Attendance, when Opponent is Montreal Alouettes, and when Date is Oct 4?
CREATE TABLE table_name_1 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT report FROM table_10527215_3 WHERE name = "True Value 500"
What's the report for the True Value 500?
CREATE TABLE table_10527215_3 (report VARCHAR, name VARCHAR)
SELECT loss FROM table_name_29 WHERE record = "84-71"
What was the loss of the game with a record of 84-71?
CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR)
SELECT MIN(grid) FROM table_name_17 WHERE constructor = "matra"
What is the lowest grid with matra as constructor?
CREATE TABLE table_name_17 (grid INTEGER, constructor VARCHAR)
SELECT SUM(attendance) FROM table_name_59 WHERE home = "philadelphia" AND points < 23
Which Attendance has a Home of philadelphia, and Points smaller than 23?
CREATE TABLE table_name_59 (attendance INTEGER, home VARCHAR, points VARCHAR)
SELECT COUNT(rank) FROM table_name_98 WHERE attendance = 93 OFFSET 039
What is the Rank of the game with an Attendance of 93,039?
CREATE TABLE table_name_98 (rank VARCHAR, attendance VARCHAR)
SELECT COUNT(episode_number) FROM table_1590967_7 WHERE guest_host = "Pamela Anderson"
What episode did Pamela Anderson guest host.
CREATE TABLE table_1590967_7 (episode_number VARCHAR, guest_host VARCHAR)
SELECT season FROM table_23224961_2 WHERE oberfranken_west = "SV Neuses"
When sv neuses is the oberfranken west what is the season?
CREATE TABLE table_23224961_2 (season VARCHAR, oberfranken_west VARCHAR)
SELECT br_number FROM table_name_5 WHERE lms_number > 14768
Which BR number has an LMS number over 14768?
CREATE TABLE table_name_5 (br_number VARCHAR, lms_number INTEGER)
SELECT school FROM table_14286908_1 WHERE finalists = 2
What are the names that had a finalist score of 2?
CREATE TABLE table_14286908_1 (school VARCHAR, finalists VARCHAR)
SELECT country FROM table_name_37 WHERE score = 71 - 74 - 70 = 215
Which Country has a Score of 71-74-70=215?
CREATE TABLE table_name_37 (country VARCHAR, score VARCHAR)
SELECT position FROM table_23585197_3 WHERE artist = "Genjor McNell"
What is the position of the song thar genjor mcnell performed?
CREATE TABLE table_23585197_3 (position VARCHAR, artist VARCHAR)
SELECT name FROM camera_lens WHERE name LIKE "%Digital%"
List the camera lens names containing substring "Digital".
CREATE TABLE camera_lens (name VARCHAR)
SELECT result FROM table_name_32 WHERE opponent = "cincinnati bengals"
What is Result, when Opponent is Cincinnati Bengals?
CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR)
SELECT COUNT(popular_vote) FROM table_20246201_9 WHERE candidate = "Rick Perry"
How many different popular vote counts were there for the candidate Rick Perry?
CREATE TABLE table_20246201_9 (popular_vote VARCHAR, candidate VARCHAR)
SELECT delegate FROM table_name_96 WHERE placement_in_miss_universe = "fourth runner-up" AND hometown = "makati , rizal"
Which Delegate has a Placement in Miss Universe of fourth runner-up, and a Hometown of makati , rizal?
CREATE TABLE table_name_96 (delegate VARCHAR, placement_in_miss_universe VARCHAR, hometown VARCHAR)
SELECT home FROM table_name_2 WHERE points = 46
What home has 46 points?
CREATE TABLE table_name_2 (home VARCHAR, points VARCHAR)
SELECT AVG(round) FROM table_name_85 WHERE school_club_team = "indiana" AND pick < 198
Which Round has a School/Club Team of indiana, and a Pick smaller than 198?
CREATE TABLE table_name_85 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)
SELECT date FROM table_name_55 WHERE set_3 = "21–25"
Which Date has a Set 3 of 21–25?
CREATE TABLE table_name_55 (date VARCHAR, set_3 VARCHAR)
SELECT T1.semester_name, T1.semester_id FROM Semesters AS T1 JOIN Student_Enrolment AS T2 ON T1.semester_id = T2.semester_id GROUP BY T1.semester_id ORDER BY COUNT(*) DESC LIMIT 1
What is the semester which most student registered in? Show both the name and the id.
CREATE TABLE Student_Enrolment (semester_id VARCHAR); CREATE TABLE Semesters (semester_name VARCHAR, semester_id VARCHAR)
SELECT SUM(pick) FROM table_name_69 WHERE player = "jim pilot" AND round > 5
What pick in round 5 did the 49ers pick Jim Pilot?
CREATE TABLE table_name_69 (pick INTEGER, player VARCHAR, round VARCHAR)
SELECT ihsaa_class FROM table_name_80 WHERE mascot = "raiders"
Which IHSAA class has a mascot of the Raiders?
CREATE TABLE table_name_80 (ihsaa_class VARCHAR, mascot VARCHAR)
SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "2,291.250"
What is every entry for epoch if periselene is 2,291.250?
CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR)
SELECT date_of_appointment FROM table_10592536_8 WHERE replaced_by = "Roy Hodgson"
What is the date of appointment when replaced by is roy hodgson?
CREATE TABLE table_10592536_8 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT MIN(total) FROM table_name_82 WHERE bronze > 1 AND silver > 2
What is the least total that had more Bronzes than 1 and more silvers than 2?
CREATE TABLE table_name_82 (total INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT record_medal_event FROM table_name_33 WHERE sport = "athletics" AND athlete = "robert garrett" AND medal_count < 3
What record medal event has athletics as the sport, with robert garrett as the athlete, and a medal count less than 3?
CREATE TABLE table_name_33 (record_medal_event VARCHAR, medal_count VARCHAR, sport VARCHAR, athlete VARCHAR)
SELECT COUNT(DISTINCT student_id) FROM Student_Course_Enrolment
How many distinct students are enrolled in courses?
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)
SELECT time FROM table_name_19 WHERE lane < 6 AND heat < 4 AND name = "joanne malar"
What is the time for a lane less than 6, and a heat less than 4 for Joanne Malar?
CREATE TABLE table_name_19 (time VARCHAR, name VARCHAR, lane VARCHAR, heat VARCHAR)
SELECT us_viewers__millions_ FROM table_18102421_2 WHERE directed_by = "Allison Liddi-Brown"
How many millions of U.S. viewers watched the episode directed by Allison Liddi-Brown?
CREATE TABLE table_18102421_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT week_15__final__dec_3 FROM table_name_50 WHERE week_12_nov_13 = "notre dame (7-2)"
What was Week 15 when Week 12 was Notre Dame (7-2)?
CREATE TABLE table_name_50 (week_15__final__dec_3 VARCHAR, week_12_nov_13 VARCHAR)
SELECT publisher FROM book_club WHERE YEAR = 1989 INTERSECT SELECT publisher FROM book_club WHERE YEAR = 1990
Show publishers with a book published in 1989 and a book in 1990.
CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR)
SELECT gold FROM table_name_10 WHERE nation = "india"
How many total gold medals did India receive?
CREATE TABLE table_name_10 (gold VARCHAR, nation VARCHAR)
SELECT competition FROM table_name_77 WHERE event = "4x100 m relay" AND time = "38.89"
What Competition has an Event of 4x100 m relay and has the Time of 38.89?
CREATE TABLE table_name_77 (competition VARCHAR, event VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_19 WHERE result = "bye" AND week < 14
What opponent did they have a bye result against before week 14?
CREATE TABLE table_name_19 (opponent VARCHAR, result VARCHAR, week VARCHAR)
SELECT COUNT(place) FROM table_name_97 WHERE draw = 21 AND points > 36
What is the total number of places for a song with a draw of 21 and more than 36 points?
CREATE TABLE table_name_97 (place VARCHAR, draw VARCHAR, points VARCHAR)
SELECT market_share FROM table_name_53 WHERE assets__usd__millions = 25 AND rank = "23"
What is the Market Share that has Assets of 25 Million and a rank of 23?
CREATE TABLE table_name_53 (market_share VARCHAR, assets__usd__millions VARCHAR, rank VARCHAR)
SELECT route_name FROM table_11336756_6 WHERE remarks = "Replaced by US 81"
Which routes have "replaced by US 81" listed in their remarks section?
CREATE TABLE table_11336756_6 (route_name VARCHAR, remarks VARCHAR)
SELECT SUM(rank) FROM table_name_4 WHERE canton = "schaffhausen"
Wich rank is given to the Canton of Schaffhausen?
CREATE TABLE table_name_4 (rank INTEGER, canton VARCHAR)
SELECT time_retired FROM table_name_59 WHERE grid < 13 AND driver = "jarno trulli"
What was the time of the race for Driver Jarno Trulli on a grid smaller than 13?
CREATE TABLE table_name_59 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)
SELECT placing FROM table_24915874_1 WHERE jockey = "Damien Oliver"
What was the placing when the jockey was Damien Oliver?
CREATE TABLE table_24915874_1 (placing VARCHAR, jockey VARCHAR)
SELECT power FROM table_name_48 WHERE callsign = "dxll"
What is the Power of the Frequency with a Callsign of DXLL?
CREATE TABLE table_name_48 (power VARCHAR, callsign VARCHAR)
SELECT Wheels, LOCATION FROM railway
List the wheels and locations of the railways.
CREATE TABLE railway (Wheels VARCHAR, LOCATION VARCHAR)
SELECT version FROM table_name_29 WHERE remixed_by = "perky park" AND length = "6:38"
What Version has a Remixed by Perky Park with a Length of 6:38?
CREATE TABLE table_name_29 (version VARCHAR, remixed_by VARCHAR, length VARCHAR)
SELECT status FROM table_name_60 WHERE area_km_2 > 5.2 AND census_ranking = "2,531 of 5,008"
What is the status of the community that has an area larger than 5.2 sq km, and a Census Ranking of 2,531 of 5,008?
CREATE TABLE table_name_60 (status VARCHAR, area_km_2 VARCHAR, census_ranking VARCHAR)
SELECT AVG(cuts_made) FROM table_name_38 WHERE top_10 = 11
How many average cuts made when 11 is the Top-10?
CREATE TABLE table_name_38 (cuts_made INTEGER, top_10 VARCHAR)
SELECT COUNT(*) FROM Financial_transactions
How many transactions do we have?
CREATE TABLE Financial_transactions (Id VARCHAR)
SELECT MAX(laps) FROM table_name_11 WHERE team = "corvette racing" AND year = 2004
Name the most laps for corvette racing in 2004
CREATE TABLE table_name_11 (laps INTEGER, team VARCHAR, year VARCHAR)
SELECT AVG(weight__kg_) FROM table_name_53 WHERE height__cm_ = 180 AND position = "d"
What is the average weight of the player with a height of 180 cm and plays the d position?
CREATE TABLE table_name_53 (weight__kg_ INTEGER, height__cm_ VARCHAR, position VARCHAR)
SELECT COUNT(season) AS premiere FROM table_10120207_8 WHERE viewers__millions_ = "10.17"
What is the number of season premieres were 10.17 people watched?
CREATE TABLE table_10120207_8 (season VARCHAR, viewers__millions_ VARCHAR)
SELECT SUM(enrollment) FROM table_name_85 WHERE ihsaa_football_class = "aaaa"
What is the enrollment for the AAAA class in IHSAA?
CREATE TABLE table_name_85 (enrollment INTEGER, ihsaa_football_class VARCHAR)
SELECT country FROM table_name_6 WHERE name = "spence"
Which country has Spence in the name section?
CREATE TABLE table_name_6 (country VARCHAR, name VARCHAR)
SELECT team FROM table_name_10 WHERE location = "gomel"
what team scored in gomel
CREATE TABLE table_name_10 (team VARCHAR, location VARCHAR)
SELECT prize FROM table_name_31 WHERE year > 2002 AND competition = "camra london and south east regional competition" AND beer_name = "good old boy"
What prize did good old boy win in 2002 at the camra london and south east regional competition?
CREATE TABLE table_name_31 (prize VARCHAR, beer_name VARCHAR, year VARCHAR, competition VARCHAR)
SELECT AVG(money___) AS $__ FROM table_name_87 WHERE to_par > 14 AND player = "ed dudley"
Can you tell me the average Money ($) that has the To par larger than 14, and the Player of ed dudley?
CREATE TABLE table_name_87 (money___ INTEGER, to_par VARCHAR, player VARCHAR)
SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = "none" AND storm_name = "seven"
Which Min press has none Death and seven Storm names?
CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR)
SELECT MIN(game) FROM table_name_69 WHERE date = "february 20"
What is the lowest game number on February 20?
CREATE TABLE table_name_69 (game INTEGER, date VARCHAR)
SELECT tournament FROM table_name_58 WHERE 2009 = "grand slams"
Which 2009 tournament had Grand Slams?
CREATE TABLE table_name_58 (tournament VARCHAR)
SELECT sub_parish__sogn_ FROM table_178389_1 WHERE church_name = "Høyanger kyrkje"
What is the sub-parish for the church names Høyanger Kyrkje?
CREATE TABLE table_178389_1 (sub_parish__sogn_ VARCHAR, church_name VARCHAR)
SELECT 1 AS st_member FROM table_name_82 WHERE elected = "1620/21"
Who is the 1st member elected in 1620/21?
CREATE TABLE table_name_82 (elected VARCHAR)
SELECT MAX(fin_pos) FROM table_17256857_1 WHERE points = "50"
Which position earned 50 points?
CREATE TABLE table_17256857_1 (fin_pos INTEGER, points VARCHAR)
SELECT pali FROM table_name_74 WHERE english = "meditative concentration"
Which Pali has an English of meditative concentration?
CREATE TABLE table_name_74 (pali VARCHAR, english VARCHAR)
SELECT COUNT(sinhalese) FROM table_24574438_1 WHERE indian_tamil = 177
Name the total number of sinhalese for indian tamil being 177
CREATE TABLE table_24574438_1 (sinhalese VARCHAR, indian_tamil VARCHAR)
SELECT power FROM table_250230_2 WHERE model = "Spirit R (Type B)"
What is the power for the Spirit R (Type B)?
CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR)
SELECT episode FROM table_name_35 WHERE rating = "1.8" AND viewers__m_ < 2.73
What Episode has a Rating of 1.8, and Viewers (m) smaller than 2.73?
CREATE TABLE table_name_35 (episode VARCHAR, rating VARCHAR, viewers__m_ VARCHAR)
SELECT administrative_capital FROM table_1966992_1 WHERE lga_name = "Akuku-Toru"
What is the administrative capital of LGA name Akuku-Toru?
CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, lga_name VARCHAR)
SELECT pinyin FROM table_2008069_2 WHERE conventional = "Mazar"
Name the pinyin for mazar
CREATE TABLE table_2008069_2 (pinyin VARCHAR, conventional VARCHAR)
SELECT remelting_at__°c_ FROM table_name_51 WHERE sn_sb___percentage_ = "9.5/15"
What is the remelting temperature for the alloy that has a Sn/Sb ratio of 9.5/15?
CREATE TABLE table_name_51 (remelting_at__°c_ VARCHAR, sn_sb___percentage_ VARCHAR)
SELECT writer FROM table_name_21 WHERE issue = 224
What is the name of the writer for issue 224?
CREATE TABLE table_name_21 (writer VARCHAR, issue VARCHAR)
SELECT finals FROM table_name_80 WHERE conference_finals < 12 AND semifinals = 0 AND total = 3
Can you tell me the Finals that has the Conference Finals smaller than 12, and the Semifinals of 0, and the Total of 3?
CREATE TABLE table_name_80 (finals VARCHAR, total VARCHAR, conference_finals VARCHAR, semifinals VARCHAR)
SELECT stu_gpa, stu_phone, stu_fname FROM student ORDER BY stu_gpa DESC LIMIT 5
What is the first name, gpa and phone number of the top 5 students with highest gpa?
CREATE TABLE student (stu_gpa VARCHAR, stu_phone VARCHAR, stu_fname VARCHAR)