answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT application_sharing FROM table_name_40 WHERE web_conferencing = "web conferencing"
What is Application Sharing, when Web Conferencing is "Web Conferencing"?
CREATE TABLE table_name_40 (application_sharing VARCHAR, web_conferencing VARCHAR)
SELECT SUM(overall) FROM table_name_54 WHERE college = "utah" AND pick__number < 7
What is the overall number of the player from Utah with a pick # higher than 7?
CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR, pick__number VARCHAR)
SELECT vote FROM table_24233848_2 WHERE finish = "9th voted Out Day 22"
Name the vote for 9th voted out day 22
CREATE TABLE table_24233848_2 (vote VARCHAR, finish VARCHAR)
SELECT partner FROM table_name_74 WHERE outcome = "runner-up" AND surface = "clay" AND opponents = "marco chiudinelli michael lammer"
Who was the partner on the game which took place on a clay surface with opponents of marco chiudinelli michael lammer and a runner-up result?
CREATE TABLE table_name_74 (partner VARCHAR, opponents VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT champion FROM table_name_60 WHERE runner_up = "e.a. lassen"
What player was the champion in the match where E.A. Lassen was the runner-up?
CREATE TABLE table_name_60 (champion VARCHAR, runner_up VARCHAR)
SELECT game_3 FROM table_27039190_3 WHERE viewers = "Under 2.61m"
What was game 3 when there were under 2.61m viewers?
CREATE TABLE table_27039190_3 (game_3 VARCHAR, viewers VARCHAR)
SELECT conference FROM table_name_26 WHERE school = "wichita state"
What conference has the Wichita State school?
CREATE TABLE table_name_26 (conference VARCHAR, school VARCHAR)
SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = "Straight"
Name the least 2 credits for straight hand
CREATE TABLE table_148535_2 (hand VARCHAR)
SELECT position_in_2013 FROM table_1560673_1 WHERE number_of_seasons_in_second_tier = "29"
What was the players position in 2013 who had 29 seasons in the second tier
CREATE TABLE table_1560673_1 (position_in_2013 VARCHAR, number_of_seasons_in_second_tier VARCHAR)
SELECT 250 AS cc_winner FROM table_name_5 WHERE round > 6 AND date = "26 july"
Which 250cc winner has a Round larger than 6, and a Date of 26 july?
CREATE TABLE table_name_5 (round VARCHAR, date VARCHAR)
SELECT COUNT(*) FROM region
How many regions do we have?
CREATE TABLE region (Id VARCHAR)
SELECT MAX(week) FROM table_name_65 WHERE result = "w 24-17"
In what Week was the Result W 24-17?
CREATE TABLE table_name_65 (week INTEGER, result VARCHAR)
SELECT DISTINCT transaction_type FROM Financial_Transactions
Show all transaction types.
CREATE TABLE Financial_Transactions (transaction_type VARCHAR)
SELECT unit FROM table_name_9 WHERE avoirdupois_value = "57.602 gr."
What unit has an Avoirdupois value of 57.602 gr.?
CREATE TABLE table_name_9 (unit VARCHAR, avoirdupois_value VARCHAR)
SELECT visitor FROM table_name_71 WHERE record = "9–12–5"
Which Visitor has a Record of 9–12–5?
CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR)
SELECT original_air_date FROM table_29920800_1 WHERE written_by = "Liz Feldman"
What is the original air date of the episode written by Liz Feldman?
CREATE TABLE table_29920800_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT position FROM table_2781227_9 WHERE college_junior_club_team = "Krylja Sovetov (Russia)"
What position does krylja sovetov (russia) play?
CREATE TABLE table_2781227_9 (position VARCHAR, college_junior_club_team VARCHAR)
SELECT MIN(games_played) FROM table_22993636_5 WHERE steals = 50
What is the lowest number of games played by the player with 50 steals?
CREATE TABLE table_22993636_5 (games_played INTEGER, steals VARCHAR)
SELECT candidates FROM table_1341973_3 WHERE incumbent = "George M. Grant"
Who were the candidates in the election where the incumbent is George M. Grant?
CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR)
SELECT high_rebounds FROM table_name_9 WHERE team = "@ toronto"
who had the high rebounds when the team was @ toronto?
CREATE TABLE table_name_9 (high_rebounds VARCHAR, team VARCHAR)
SELECT away_team AS score FROM table_name_53 WHERE venue = "glenferrie oval"
What was the score for the away team at Glenferrie Oval?
CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)
SELECT place FROM table_name_48 WHERE score = 70 - 72 = 142
what is the place when the score is 70-72=142?
CREATE TABLE table_name_48 (place VARCHAR, score VARCHAR)
SELECT architecture FROM table_name_69 WHERE release_date = "1988-05-27"
Which Architecture was released on Release date 1988-05-27?
CREATE TABLE table_name_69 (architecture VARCHAR, release_date VARCHAR)
SELECT purpose FROM table_name_59 WHERE freq_currently = "4gld"
What is the Purpose of the Callsign with a Freq currently of 4gld?
CREATE TABLE table_name_59 (purpose VARCHAR, freq_currently VARCHAR)
SELECT MIN(crowd) FROM table_name_6 WHERE away_team = "richmond"
What was the smallest crowd at a game when Richmond was the away team?
CREATE TABLE table_name_6 (crowd INTEGER, away_team VARCHAR)
SELECT home_team AS score FROM table_name_49 WHERE away_team = "hawthorn"
Which home team played against Hawthorn?
CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR)
SELECT MIN(market_value__billion_) AS $_ FROM table_name_44 WHERE assets__billion_$_ > 276.81 AND company = "toyota" AND profits__billion_$_ > 17.21
Name the lowest Market Value (billion $) which has Assets (billion $) larger than 276.81, and a Company of toyota, and Profits (billion $) larger than 17.21?
CREATE TABLE table_name_44 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR, company VARCHAR)
SELECT COUNT(first_elected) FROM table_11948857_1 WHERE district = 41
How many entries are shown for first elected for district 41?
CREATE TABLE table_11948857_1 (first_elected VARCHAR, district VARCHAR)
SELECT set_3 FROM table_name_7 WHERE score = "3–1" AND set_2 = "13–15"
What is the Set 3 with a Score of 3–1, and has a Set 2 of 13–15?
CREATE TABLE table_name_7 (set_3 VARCHAR, score VARCHAR, set_2 VARCHAR)
SELECT MAX(gold) FROM table_name_25 WHERE bronze < 49 AND silver = 22 AND total < 60
What is the largest number of gold medals when the bronze medals is less than 49, and there is 22 silver medals, and the total is less than 60?
CREATE TABLE table_name_25 (gold INTEGER, total VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT team FROM table_24587026_1 WHERE points = "22"
Name the team for 22 points
CREATE TABLE table_24587026_1 (team VARCHAR, points VARCHAR)
SELECT MIN(round) FROM table_name_20 WHERE school = "usc" AND pick > 158
After pick number 158, what is the next round a USC player was picked?
CREATE TABLE table_name_20 (round INTEGER, school VARCHAR, pick VARCHAR)
SELECT player FROM table_name_89 WHERE year_s__won = "1991"
Who won in 1991?
CREATE TABLE table_name_89 (player VARCHAR, year_s__won VARCHAR)
SELECT edition FROM table_18183850_12 WHERE surface = "Clay (i)" AND outcome = "Winner"
What was the game edition when they played on the clay (i) surface and the outcome was a winner?
CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT team FROM table_name_18 WHERE speed = "113.316mph"
What's the name of the team that went 113.316mph?
CREATE TABLE table_name_18 (team VARCHAR, speed VARCHAR)
SELECT record FROM table_name_90 WHERE nfl_recap = "recap" AND opponent = "new england patriots"
What is the record for the game against the New England Patriots with a recap?
CREATE TABLE table_name_90 (record VARCHAR, nfl_recap VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_20 WHERE runner_s__up = "val skinner"
Which tournament had a runner-up of Val Skinner?
CREATE TABLE table_name_20 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT original_air_date FROM table_26824484_1 WHERE directed_by = "Jessica Landaw"
What was the original air date of the episode that was directed by Jessica Landaw?
CREATE TABLE table_26824484_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT theme FROM table_name_54 WHERE artist = "christie paquet" AND issue_price = "$34.95" AND year > 2004
What is the Theme of Christie Paquet after 2004 with an Issue Price of $34.95?
CREATE TABLE table_name_54 (theme VARCHAR, year VARCHAR, artist VARCHAR, issue_price VARCHAR)
SELECT total FROM table_name_94 WHERE gold = "0" AND bronze = "0" AND silver = "0" AND sports = "1"
What is the Total medals the Year Yugoslavia had 1 Sport and won 0 Gold, Bronze or Silver?
CREATE TABLE table_name_94 (total VARCHAR, sports VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT max_mach FROM table_221315_3 WHERE max_speed__mph_ = 3887
What was the max mach when the maximum speed was 3887?
CREATE TABLE table_221315_3 (max_mach VARCHAR, max_speed__mph_ VARCHAR)
SELECT player FROM table_name_61 WHERE touchdowns > 1 AND extra_points = 0 AND points < 50
What Player has more than 1 Touchdowns with 0 Extra Points and less than 50 Points?
CREATE TABLE table_name_61 (player VARCHAR, points VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)
SELECT county_s__represented FROM table_11948857_1 WHERE member_senator = "C. Anthony Muse"
What is the county for senator C. Anthony Muse?
CREATE TABLE table_11948857_1 (county_s__represented VARCHAR, member_senator VARCHAR)
SELECT viavoice_5_15_09 FROM table_name_96 WHERE csa_5_14_09 = "5%" AND tns_sofres_5_28_09 = "4.5%"
Which Viavoice 5/15/09 has a CSA 5/14/09 of 5%, and a TNS-Sofres 5/28/09 of 4.5%?
CREATE TABLE table_name_96 (viavoice_5_15_09 VARCHAR, csa_5_14_09 VARCHAR, tns_sofres_5_28_09 VARCHAR)
SELECT DISTINCT T1.EMP_FNAME, T1.EMP_DOB FROM employee AS T1 JOIN CLASS AS T2 ON T1.EMP_NUM = T2.PROF_NUM WHERE CRS_CODE = "ACCT-211"
What are the first names and date of birth of professors teaching course ACCT-211?
CREATE TABLE CLASS (PROF_NUM VARCHAR); CREATE TABLE employee (EMP_FNAME VARCHAR, EMP_DOB VARCHAR, EMP_NUM VARCHAR)
SELECT COUNT(attendance) FROM table_name_96 WHERE week = 8
What was the total attendance in week 8?
CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR)
SELECT delay FROM table_1500146_1 WHERE scientific_linux_release = "5.10"
Name the delay when scientific linux release is 5.10
CREATE TABLE table_1500146_1 (delay VARCHAR, scientific_linux_release VARCHAR)
SELECT years FROM table_name_5 WHERE jersey_number_s_ > 20
What years did the player with the jersey number bigger than 20 play?
CREATE TABLE table_name_5 (years VARCHAR, jersey_number_s_ INTEGER)
SELECT MIN(stolen_ends) FROM table_25107064_2 WHERE country = Germany
Name the stolen ends for germany
CREATE TABLE table_25107064_2 (stolen_ends INTEGER, country VARCHAR, Germany VARCHAR)
SELECT result FROM table_name_95 WHERE score = "4–0" AND venue = "mbpj stadium"
What is the Result of the Competition at MBPJ Stadium with a Score of 4–0?
CREATE TABLE table_name_95 (result VARCHAR, score VARCHAR, venue VARCHAR)
SELECT COUNT(county) FROM table_18600760_8 WHERE pop__2010_ = 90
Name the number of county for 90 population
CREATE TABLE table_18600760_8 (county VARCHAR, pop__2010_ VARCHAR)
SELECT country FROM table_name_43 WHERE date = "2004" AND catalog_nr = "thr-048"
Which country has the catalog nr of thr-048 in 2004?
CREATE TABLE table_name_43 (country VARCHAR, date VARCHAR, catalog_nr VARCHAR)
SELECT results FROM table_1341423_32 WHERE district = "New York 24"
Name the results for district new york 24
CREATE TABLE table_1341423_32 (results VARCHAR, district VARCHAR)
SELECT telugu_తెలుగు FROM table_name_68 WHERE tamil_தமிழ் = "pūrāṭam பூராடம்"
Which Telugu తెలుగు has a Tamil தமிழ் of pūrāṭam பூராடம்?
CREATE TABLE table_name_68 (telugu_తెలుగు VARCHAR, tamil_தமிழ் VARCHAR)
SELECT COUNT(division) FROM table_name_54 WHERE season = "2006/07" AND goals > 1
What's the total number of all divisions during the 2006/07 season where they scored more than 1 goal?
CREATE TABLE table_name_54 (division VARCHAR, season VARCHAR, goals VARCHAR)
SELECT world_rank FROM table_19112_3 WHERE market_value__billion_$_ = "17.2"
Name the world rank for market value 17.2
CREATE TABLE table_19112_3 (world_rank VARCHAR, market_value__billion_$_ VARCHAR)
SELECT us_air_date FROM table_1231892_4 WHERE broadcast_order = "S04 E01"
What's the original air date of the episode with a broadcast order s04 e01?
CREATE TABLE table_1231892_4 (us_air_date VARCHAR, broadcast_order VARCHAR)
SELECT score FROM table_name_73 WHERE date = "15 june 1992"
On the Date of 15 June 1992 what is the Score that is listed?
CREATE TABLE table_name_73 (score VARCHAR, date VARCHAR)
SELECT COUNT(december_28) FROM table_29217650_1 WHERE movies = "Rosario"
How many figures are provided for December 28 for Rosario?
CREATE TABLE table_29217650_1 (december_28 VARCHAR, movies VARCHAR)
SELECT monarch FROM table_name_6 WHERE assumed_office = "december 15, 1876"
Which monarch assumed office on December 15, 1876?
CREATE TABLE table_name_6 (monarch VARCHAR, assumed_office VARCHAR)
SELECT opponent FROM table_name_7 WHERE loss = "saarloos (7-7)"
Who was the opponent at the game that had a loss of Saarloos (7-7)?
CREATE TABLE table_name_7 (opponent VARCHAR, loss VARCHAR)
SELECT score FROM table_name_23 WHERE surface = "clay" AND date = "june 6, 2005"
What was the score of the game played on a clay surface on June 6, 2005?
CREATE TABLE table_name_23 (score VARCHAR, surface VARCHAR, date VARCHAR)
SELECT podiums FROM table_15852257_1 WHERE final_placing = "10th"
Which podiums have a final placing of 10th?
CREATE TABLE table_15852257_1 (podiums VARCHAR, final_placing VARCHAR)
SELECT socialist_workers_ticket FROM table_name_71 WHERE republican_ticket = "malcolm wilson"
What socialist workers ticket has malcolm wilson as the Republican ticket?
CREATE TABLE table_name_71 (socialist_workers_ticket VARCHAR, republican_ticket VARCHAR)
SELECT height_in_ft FROM table_11734041_9 WHERE player = "Jones, Major Major Jones"
How tall is the player jones, major major jones?
CREATE TABLE table_11734041_9 (height_in_ft VARCHAR, player VARCHAR)
SELECT sydney FROM table_name_43 WHERE melbourne = "yes" AND perth = "no" AND auckland = "no" AND gold_coast = "no"
yes or no for the sydney with yes for melbourne, no for perth, no for auckland and no for gold coast?
CREATE TABLE table_name_43 (sydney VARCHAR, gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR)
SELECT team__number2 FROM table_name_31 WHERE team__number1 = "deport"
What is the team #2 with Deport as team #1?
CREATE TABLE table_name_31 (team__number2 VARCHAR, team__number1 VARCHAR)
SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID WHERE T2.Name = "The Phantom of the Opera"
Show names of actors that have appeared in musical with name "The Phantom of the Opera".
CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Musical_ID VARCHAR, Name VARCHAR)
SELECT away_team AS score FROM table_name_21 WHERE crowd > 6 OFFSET 000
Which Away team score has a Crowd larger than 6,000?
CREATE TABLE table_name_21 (away_team VARCHAR, crowd INTEGER)
SELECT outgoing_manager FROM table_26976615_3 WHERE team = "Târgu Mureş"
Who was the outgoing manager for the team of târgu mureş?
CREATE TABLE table_26976615_3 (outgoing_manager VARCHAR, team VARCHAR)
SELECT wildcats_points FROM table_24561550_1 WHERE opponent = "Baylor"
How many points did the Wildcats get when Baylor was an opponent?
CREATE TABLE table_24561550_1 (wildcats_points VARCHAR, opponent VARCHAR)
SELECT males FROM table_name_82 WHERE percentage___percentage_ = "80.62"
How many males have a percentage of 80.62?
CREATE TABLE table_name_82 (males VARCHAR, percentage___percentage_ VARCHAR)
SELECT written_by FROM table_24910737_1 WHERE us_viewers__millions_ = "7.14"
Who wrote the episodes that had a viewership of 7.14?
CREATE TABLE table_24910737_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT date FROM table_name_39 WHERE opponent = "chicago stags"
What is Date, when Opponent is "Chicago Stags"?
CREATE TABLE table_name_39 (date VARCHAR, opponent VARCHAR)
SELECT SUM(yr_plyf) FROM table_name_6 WHERE g_plyf = 0 AND coach = "ed robinson"
What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?
CREATE TABLE table_name_6 (yr_plyf INTEGER, g_plyf VARCHAR, coach VARCHAR)
SELECT title FROM course ORDER BY title, credits
List the names of all courses ordered by their titles and credits.
CREATE TABLE course (title VARCHAR, credits VARCHAR)
SELECT island FROM table_18946749_1 WHERE peak = "Mount Gauttier"
When mount gauttier is the peak what is the island?
CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)
SELECT chassis FROM table_name_69 WHERE entrant = "patrick racing" AND start > 6
What chassis has patrick racing as an entrant, with a start greater than 6?
CREATE TABLE table_name_69 (chassis VARCHAR, entrant VARCHAR, start VARCHAR)
SELECT lifetime_achievement_award FROM table_name_38 WHERE band = "snow patrol" AND female = "juliet turner"
Who won the Lifetime Achievement Award when Snow Patrol performed and Juliet Turner presented?
CREATE TABLE table_name_38 (lifetime_achievement_award VARCHAR, band VARCHAR, female VARCHAR)
SELECT MIN(salary), department_id FROM employees GROUP BY department_id
return the smallest salary for every departments.
CREATE TABLE employees (department_id VARCHAR, salary INTEGER)
SELECT date FROM table_name_80 WHERE attendance = "38,062"
What is the date of the game with 38,062 people in attendance?
CREATE TABLE table_name_80 (date VARCHAR, attendance VARCHAR)
SELECT frequency FROM table_name_17 WHERE order_part_number = "tmm500dbo22gq"
What is the frequency of the tmm500dbo22gq order part number?
CREATE TABLE table_name_17 (frequency VARCHAR, order_part_number VARCHAR)
SELECT home FROM table_name_6 WHERE score = "136-134"
What home has 136-134 as the score?
CREATE TABLE table_name_6 (home VARCHAR, score VARCHAR)
SELECT SUM(total) FROM table_name_25 WHERE bronze = 3 AND gold < 1 AND silver < 0
What's the total with silver being less than 0, less than 1 gold, and 3 bronze?
CREATE TABLE table_name_25 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT MAX(born_in_a_non_eu_state__1000_) FROM table_name_20 WHERE country = "denmark" AND total_population__1000_ < 5 OFFSET 534
What is the highest number born in a none EU state (1000) from Denmark with a total population (1000) less than 5,534?
CREATE TABLE table_name_20 (born_in_a_non_eu_state__1000_ INTEGER, country VARCHAR, total_population__1000_ VARCHAR)
SELECT single FROM table_name_17 WHERE artist = "cap d"
What single was written by the artist cap D?
CREATE TABLE table_name_17 (single VARCHAR, artist VARCHAR)
SELECT airport FROM table_name_87 WHERE city = "toronto"
What airport is in Toronto?
CREATE TABLE table_name_87 (airport VARCHAR, city VARCHAR)
SELECT i_o_bus FROM table_name_28 WHERE sspec_number = "sr0n5(l1)"
what is the i/o bus when the sspec numebr is sr0n5(l1)?
CREATE TABLE table_name_28 (i_o_bus VARCHAR, sspec_number VARCHAR)
SELECT COUNT(longitude) FROM table_24192190_1 WHERE latitude = "42.903° N"
When 42.903° n is the latitude how many measurements of longitude are there?
CREATE TABLE table_24192190_1 (longitude VARCHAR, latitude VARCHAR)
SELECT record FROM table_name_32 WHERE game_site = "kingdome" AND result = "w 24-6"
Game site of kingdome, and a Result of w 24-6 has what record?
CREATE TABLE table_name_32 (record VARCHAR, game_site VARCHAR, result VARCHAR)
SELECT player FROM table_name_68 WHERE position = "c" AND nationality = "denmark"
Who is the player from Denmark who plays position c?
CREATE TABLE table_name_68 (player VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT SUM(5 AS _hoops) FROM table_name_83 WHERE place > 7 AND total > 38.525
5 Hoops that has a Place larger than 7, and a Total larger than 38.525 had what sum?
CREATE TABLE table_name_83 (place VARCHAR, total VARCHAR)
SELECT college FROM table_10812403_4 WHERE cfl_team = "Saskatchewan Roughriders"
What college's team is the Saskatchewan Roughriders?
CREATE TABLE table_10812403_4 (college VARCHAR, cfl_team VARCHAR)
SELECT partner FROM table_name_75 WHERE date = "14 october 2007"
Name the partner for 14 october 2007
CREATE TABLE table_name_75 (partner VARCHAR, date VARCHAR)
SELECT issn FROM table_name_36 WHERE publication_range = "1984-"
What is the ISSN number of a publication range of 1984-?
CREATE TABLE table_name_36 (issn VARCHAR, publication_range VARCHAR)
SELECT constructor FROM table_name_49 WHERE circuit = "pergusa"
Which Constructor has Pergusa in the Circuit?
CREATE TABLE table_name_49 (constructor VARCHAR, circuit VARCHAR)
SELECT name FROM table_name_13 WHERE season = "2010-2011" AND acquisition_via = "free agency" AND number = "14"
What is the name of the player for the 2010-2011 season, from a Free Agency and is Number 14?
CREATE TABLE table_name_13 (name VARCHAR, number VARCHAR, season VARCHAR, acquisition_via VARCHAR)
SELECT after_debt FROM table_name_11 WHERE cash_on_hand = "$651,300"
How much is after debt when cash on hand is $651,300?
CREATE TABLE table_name_11 (after_debt VARCHAR, cash_on_hand VARCHAR)
SELECT score FROM table_name_57 WHERE home = "toronto eagles"
What score has Toronto Eagles as the home?
CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR)
SELECT rank_number FROM table_name_27 WHERE opponent_number = "at baylor"
What was the rank # for opponent AT Baylor?
CREATE TABLE table_name_27 (rank_number VARCHAR, opponent_number VARCHAR)