training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_40 (conference_joined VARCHAR, year_joined VARCHAR, mascot VARCHAR) ###human: Which conference joined in 1954 with a beavers mascot? ###assistant: SELECT conference_joined FROM table_name_40 WHERE year_joined = 1954 AND mascot = "beavers"
###context:CREATE TABLE table_name_79 (romaji_title VARCHAR, tv_station VARCHAR, japanese_title VARCHAR) ###human: What is the Romanji title for around40〜注文の多いオンナたち〜 on TBS? ###assistant: SELECT romaji_title FROM table_name_79 WHERE tv_station = "tbs" AND japanese_title = "around40〜注文の多いオンナたち〜"
###context:CREATE TABLE table_name_25 (tv_station VARCHAR, average_ratings VARCHAR) ###human: What station has average ratings of 14.7%? ###assistant: SELECT tv_station FROM table_name_25 WHERE average_ratings = "14.7%"
###context:CREATE TABLE table_name_70 (japanese_title VARCHAR, average_ratings VARCHAR, episodes VARCHAR, tv_station VARCHAR) ###human: What is the Japanese title for the episode bigger than 10 on TBS with average ratings of 14.8%? ###assistant: SELECT japanese_title FROM table_name_70 WHERE episodes > 10 AND tv_station = "tbs" AND average_ratings = "14.8%"
###context:CREATE TABLE table_name_64 (episodes INTEGER, average_ratings VARCHAR) ###human: What episode has average ratings of 7.4%? ###assistant: SELECT AVG(episodes) FROM table_name_64 WHERE average_ratings = "7.4%"
###context:CREATE TABLE table_name_98 (episodes INTEGER, tv_station VARCHAR, romaji_title VARCHAR) ###human: What is the episode on Fuji TV titled Absolute Boyfriend? ###assistant: SELECT MIN(episodes) FROM table_name_98 WHERE tv_station = "fuji tv" AND romaji_title = "absolute boyfriend"
###context:CREATE TABLE table_name_39 (episodes VARCHAR, tv_station VARCHAR, average_ratings VARCHAR) ###human: What is the episode on NHK with average ratings of 9.2%? ###assistant: SELECT COUNT(episodes) FROM table_name_39 WHERE tv_station = "nhk" AND average_ratings = "9.2%"
###context:CREATE TABLE table_name_86 (school VARCHAR, year_joined VARCHAR, mascot VARCHAR) ###human: Which School has a Year Joined larger than 1926, and a Mascot of vikings? ###assistant: SELECT school FROM table_name_86 WHERE year_joined > 1926 AND mascot = "vikings"
###context:CREATE TABLE table_name_76 (mascot VARCHAR, school VARCHAR) ###human: Which Mascot has a School of logansport community? ###assistant: SELECT mascot FROM table_name_76 WHERE school = "logansport community"
###context:CREATE TABLE table_name_22 (previous_conference VARCHAR, ihsaa_class___football_soccer VARCHAR, year_joined VARCHAR) ###human: Which Previous Conference has an IHSAA Class/ Football/ Soccer of 4a/5a/2a, and a Year Joined larger than 1926? ###assistant: SELECT previous_conference FROM table_name_22 WHERE ihsaa_class___football_soccer = "4a/5a/2a" AND year_joined > 1926
###context:CREATE TABLE table_name_13 (_number___county VARCHAR, year_joined VARCHAR, previous_conference VARCHAR) ###human: Which #/ County has a Year Joined larger than 1926, and a Previous Conference of olympic? ###assistant: SELECT _number___county FROM table_name_13 WHERE year_joined > 1926 AND previous_conference = "olympic"
###context:CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, date VARCHAR) ###human: What is the Score of the 1996 Asian Cup Qualification on June 29, 1996? ###assistant: SELECT score FROM table_name_24 WHERE competition = "1996 asian cup qualification" AND date = "june 29, 1996"
###context:CREATE TABLE table_name_3 (venue VARCHAR, competition VARCHAR) ###human: What was the Venue of the King's Cup 1998? ###assistant: SELECT venue FROM table_name_3 WHERE competition = "king's cup 1998"
###context:CREATE TABLE table_name_11 (venue VARCHAR, score VARCHAR) ###human: What is the Venue of the Competition with a Score of 4-1? ###assistant: SELECT venue FROM table_name_11 WHERE score = "4-1"
###context:CREATE TABLE table_name_4 (enrollment VARCHAR, ihsaa_class VARCHAR, primary_conference VARCHAR, county VARCHAR) ###human: Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa? ###assistant: SELECT enrollment FROM table_name_4 WHERE primary_conference = "mid-hoosier" AND county = "16 decatur" AND ihsaa_class = "aa"
###context:CREATE TABLE table_name_79 (location VARCHAR, school VARCHAR) ###human: Where is Indian Creek school located? ###assistant: SELECT location FROM table_name_79 WHERE school = "indian creek"
###context:CREATE TABLE table_name_73 (school VARCHAR, location VARCHAR) ###human: Which school is located in trafalgar? ###assistant: SELECT school FROM table_name_73 WHERE location = "trafalgar"
###context:CREATE TABLE table_name_24 (ihsaa_class VARCHAR, location VARCHAR) ###human: Which IHSAA Class is located in charlottesville? ###assistant: SELECT ihsaa_class FROM table_name_24 WHERE location = "charlottesville"
###context:CREATE TABLE table_name_7 (country VARCHAR, notes VARCHAR, rank VARCHAR) ###human: Which country had notes of sa/b and a rank of 2? ###assistant: SELECT country FROM table_name_7 WHERE notes = "sa/b" AND rank = 2
###context:CREATE TABLE table_name_28 (rank VARCHAR, country VARCHAR) ###human: What was the rank for Great Britain? ###assistant: SELECT COUNT(rank) FROM table_name_28 WHERE country = "great britain"
###context:CREATE TABLE table_name_76 (tv_time VARCHAR, week VARCHAR) ###human: What was the tv time for the game on week 12? ###assistant: SELECT tv_time FROM table_name_76 WHERE week = 12
###context:CREATE TABLE table_name_68 (attendance VARCHAR, opponent VARCHAR) ###human: What was the attendance for the game against miami dolphins? ###assistant: SELECT attendance FROM table_name_68 WHERE opponent = "miami dolphins"
###context:CREATE TABLE table_name_54 (result VARCHAR, attendance VARCHAR) ###human: What is the result of the game with 67,715 fans attending? ###assistant: SELECT result FROM table_name_54 WHERE attendance = "67,715"
###context:CREATE TABLE table_name_77 (opponent VARCHAR, attendance VARCHAR) ###human: Who was the opponent for the game that had 90,287 in attendance? ###assistant: SELECT opponent FROM table_name_77 WHERE attendance = "90,287"
###context:CREATE TABLE table_name_53 (team VARCHAR, period VARCHAR, time VARCHAR) ###human: What is the team with 1st period at 12:37? ###assistant: SELECT team FROM table_name_53 WHERE period = "1st" AND time = "12:37"
###context:CREATE TABLE table_name_83 (athlete VARCHAR, time VARCHAR) ###human: who is the athlete with the time 6:02.46? ###assistant: SELECT athlete FROM table_name_83 WHERE time = "6:02.46"
###context:CREATE TABLE table_name_3 (country VARCHAR, rank VARCHAR) ###human: what is the country for rank 6? ###assistant: SELECT country FROM table_name_3 WHERE rank = 6
###context:CREATE TABLE table_name_59 (notes VARCHAR, rank INTEGER) ###human: what is the notes when the rank is less than 2? ###assistant: SELECT notes FROM table_name_59 WHERE rank < 2
###context:CREATE TABLE table_name_88 (rank INTEGER, athlete VARCHAR) ###human: what is the rank for athlete hauffe, seifert, kaeufer, adamski? ###assistant: SELECT SUM(rank) FROM table_name_88 WHERE athlete = "hauffe, seifert, kaeufer, adamski"
###context:CREATE TABLE table_name_77 (notes VARCHAR, time VARCHAR) ###human: what is the notes for the time 6:05.21? ###assistant: SELECT notes FROM table_name_77 WHERE time = "6:05.21"
###context:CREATE TABLE table_name_41 (discoverer_s_ VARCHAR, aphelion__au_ VARCHAR, year_discovered VARCHAR) ###human: Who was the discoverer of the object with an Aphelion above 97 in 2004? ###assistant: SELECT discoverer_s_ FROM table_name_41 WHERE aphelion__au_ > 97 AND year_discovered = 2004
###context:CREATE TABLE table_name_69 (model_number VARCHAR, part_number_s_ VARCHAR) ###human: What model number has part number cl8064701510101? ###assistant: SELECT model_number FROM table_name_69 WHERE part_number_s_ = "cl8064701510101"
###context:CREATE TABLE table_name_65 (i_o_bus VARCHAR, release_price___usd__ VARCHAR) ###human: What is the I/O bus entry for the processor with a release price of $657? ###assistant: SELECT i_o_bus FROM table_name_65 WHERE release_price___usd__ = "$657"
###context:CREATE TABLE table_name_96 (l2_cache VARCHAR, gpu_model VARCHAR, frequency VARCHAR) ###human: What is the L2 cache for the processor with iris pro graphics 5200 and frequency of 2.6 ghz? ###assistant: SELECT l2_cache FROM table_name_96 WHERE gpu_model = "iris pro graphics 5200" AND frequency = "2.6 ghz"
###context:CREATE TABLE table_name_14 (frequency VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR) ###human: What is the frequency of the processor released at $383, with a sSpec of sr15f(c0)? ###assistant: SELECT frequency FROM table_name_14 WHERE release_price___usd__ = "$383" AND sspec_number = "sr15f(c0)"
###context:CREATE TABLE table_name_27 (gpu_frequency VARCHAR, release_date VARCHAR, sspec_number VARCHAR) ###human: What is the GPU frequency for the processor released in June 2013, with a sSpec number of sr17l(c0)? ###assistant: SELECT gpu_frequency FROM table_name_27 WHERE release_date = "june 2013" AND sspec_number = "sr17l(c0)"
###context:CREATE TABLE table_name_3 (l3_cache VARCHAR, release_price___usd__ VARCHAR) ###human: What is the L3 cache of the processor with a release price of $440? ###assistant: SELECT l3_cache FROM table_name_3 WHERE release_price___usd__ = "$440"
###context:CREATE TABLE table_name_88 (os_x VARCHAR, name VARCHAR) ###human: What is the OS X for the Home Media Center? ###assistant: SELECT os_x FROM table_name_88 WHERE name = "home media center"
###context:CREATE TABLE table_name_55 (name VARCHAR, windows VARCHAR) ###human: What is the name when Windows is partial? ###assistant: SELECT name FROM table_name_55 WHERE windows = "partial"
###context:CREATE TABLE table_name_11 (license VARCHAR, name VARCHAR) ###human: What is the license for Rygel? ###assistant: SELECT license FROM table_name_11 WHERE name = "rygel"
###context:CREATE TABLE table_name_91 (license VARCHAR, name VARCHAR) ###human: What is the license for Jriver Media Center? ###assistant: SELECT license FROM table_name_91 WHERE name = "jriver media center"
###context:CREATE TABLE table_name_42 (season INTEGER, last_aired VARCHAR) ###human: Of the series that last aired August 20, 2010, what is the lowest number of seasons? ###assistant: SELECT MIN(season) FROM table_name_42 WHERE last_aired = "august 20, 2010"
###context:CREATE TABLE table_name_53 (episodes INTEGER, first_aired VARCHAR) ###human: Of the series that first aired April 8, 2011, what is the total number of episodes? ###assistant: SELECT SUM(episodes) FROM table_name_53 WHERE first_aired = "april 8, 2011"
###context:CREATE TABLE table_name_83 (total INTEGER, position VARCHAR, a_score VARCHAR) ###human: What's the total when the position was more than 6 and had an A Score of less than 7.6? ###assistant: SELECT MAX(total) FROM table_name_83 WHERE position > 6 AND a_score < 7.6
###context:CREATE TABLE table_name_98 (total INTEGER, a_score INTEGER) ###human: What's the total when A Score was less than 6.9? ###assistant: SELECT AVG(total) FROM table_name_98 WHERE a_score < 6.9
###context:CREATE TABLE table_name_68 (water__sqmi_ INTEGER, land___sqmi__ VARCHAR, longitude VARCHAR) ###human: What's the total of Water (sqmi) with a Land (sqmi) of 35.918 and has a Longitude that is smaller than -97.115459? ###assistant: SELECT SUM(water__sqmi_) FROM table_name_68 WHERE land___sqmi__ = 35.918 AND longitude < -97.115459
###context:CREATE TABLE table_name_1 (longitude VARCHAR, ansi_code VARCHAR, water__sqmi_ VARCHAR) ###human: What;s the total of Longitude with an ANSI code of 1036573 and has Water (sqmi) that is smaller than 0.404? ###assistant: SELECT COUNT(longitude) FROM table_name_1 WHERE ansi_code = 1036573 AND water__sqmi_ < 0.404
###context:CREATE TABLE table_name_31 (longitude INTEGER, latitude VARCHAR, water__sqmi_ VARCHAR) ###human: What's the lowest listed longitude that has a Latitude of 46.843963 and Water (sqmi) that is smaller than 0.052000000000000005? ###assistant: SELECT MIN(longitude) FROM table_name_31 WHERE latitude = 46.843963 AND water__sqmi_ < 0.052000000000000005
###context:CREATE TABLE table_name_46 (heat INTEGER, rank INTEGER) ###human: What is the total heat ranked higher than 7? ###assistant: SELECT SUM(heat) FROM table_name_46 WHERE rank > 7
###context:CREATE TABLE table_name_90 (cyclist VARCHAR, nation VARCHAR) ###human: Which cyclist is from Australia? ###assistant: SELECT cyclist FROM table_name_90 WHERE nation = "australia"
###context:CREATE TABLE table_name_13 (nation VARCHAR, heat VARCHAR, rank VARCHAR) ###human: Which nation has a heat of 4, and is ranked 8? ###assistant: SELECT nation FROM table_name_13 WHERE heat = 4 AND rank = 8
###context:CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR) ###human: What is John Curtice's position? ###assistant: SELECT position FROM table_name_35 WHERE player = "john curtice"
###context:CREATE TABLE table_name_24 (player VARCHAR, school VARCHAR) ###human: What player is from Seton Hall University? ###assistant: SELECT player FROM table_name_24 WHERE school = "seton hall university"
###context:CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, team VARCHAR) ###human: What is the lowest pick of a player for the SS, P Position for the Minnesota Twins? ###assistant: SELECT MIN(pick) FROM table_name_51 WHERE position = "ss, p" AND team = "minnesota twins"
###context:CREATE TABLE table_name_53 (v_band INTEGER, ka_band VARCHAR, q_band VARCHAR) ###human: What is the average v-band for Ka-band values under 33 and Q-bands of 1? ###assistant: SELECT AVG(v_band) FROM table_name_53 WHERE ka_band < 33 AND q_band = 1
###context:CREATE TABLE table_name_90 (award VARCHAR, year VARCHAR, episode VARCHAR) ###human: What award has a year earlier than 2004 and the episode shows —? ###assistant: SELECT award FROM table_name_90 WHERE year < 2004 AND episode = "—"
###context:CREATE TABLE table_name_14 (year INTEGER, nominee VARCHAR, result VARCHAR) ###human: What year has a Nominee of —, and a Result of nominated? ###assistant: SELECT AVG(year) FROM table_name_14 WHERE nominee = "—" AND result = "nominated"
###context:CREATE TABLE table_name_60 (country VARCHAR, play VARCHAR) ###human: What is the Country of the Play Electra? ###assistant: SELECT country FROM table_name_60 WHERE play = "electra"
###context:CREATE TABLE table_name_59 (play VARCHAR, base VARCHAR, company VARCHAR) ###human: What is the Athens Base play with Dance Theatre Roes Company? ###assistant: SELECT play FROM table_name_59 WHERE base = "athens" AND company = "dance theatre roes"
###context:CREATE TABLE table_name_24 (author VARCHAR, play VARCHAR) ###human: Who is the author of the Play Electra? ###assistant: SELECT author FROM table_name_24 WHERE play = "electra"
###context:CREATE TABLE table_name_25 (country VARCHAR, author VARCHAR) ###human: Waht is the Country of the play by Author Aristophanes? ###assistant: SELECT country FROM table_name_25 WHERE author = "aristophanes"
###context:CREATE TABLE table_name_52 (country VARCHAR, base VARCHAR, play VARCHAR) ###human: What Country has the Play The Libation Bearers a Base of Mecklenburg? ###assistant: SELECT country FROM table_name_52 WHERE base = "mecklenburg" AND play = "the libation bearers"
###context:CREATE TABLE table_name_78 (series VARCHAR, title VARCHAR) ###human: Which series had a title of Boyhood Daze? ###assistant: SELECT series FROM table_name_78 WHERE title = "boyhood daze"
###context:CREATE TABLE table_name_8 (release_date VARCHAR, title VARCHAR) ###human: What was the release date of Rabbit Romeo? ###assistant: SELECT release_date FROM table_name_8 WHERE title = "rabbit romeo"
###context:CREATE TABLE table_name_42 (release_date VARCHAR, title VARCHAR) ###human: What was the release date of Three Little Bops? ###assistant: SELECT release_date FROM table_name_42 WHERE title = "three little bops"
###context:CREATE TABLE table_name_2 (money_list_rank INTEGER, earnings__$_ VARCHAR, lpga_wins VARCHAR, year VARCHAR) ###human: In 2005 the earnings is less than 615,499 with less than 2 LPGA wins and what smallest Money list rank? ###assistant: SELECT MIN(money_list_rank) FROM table_name_2 WHERE lpga_wins < 2 AND year = 2005 AND earnings__$_ < 615 OFFSET 499
###context:CREATE TABLE table_name_42 (team_name VARCHAR, school VARCHAR) ###human: What is the team name from Hammond Bishop Noll? ###assistant: SELECT team_name FROM table_name_42 WHERE school = "hammond bishop noll"
###context:CREATE TABLE table_name_83 (city VARCHAR, previous_counference VARCHAR, ihsaa_class VARCHAR) ###human: What city has a team in IHSAA class 3a, and previous conference of lake? ###assistant: SELECT city FROM table_name_83 WHERE previous_counference = "lake" AND ihsaa_class = "3a"
###context:CREATE TABLE table_name_28 (enrollment_08_09 INTEGER, previous_counference VARCHAR, ihsaa_class VARCHAR) ###human: What is the average enrollment 08=09, for the team that had a previous conference of lake and IHSAA class of 3A? ###assistant: SELECT AVG(enrollment_08_09) FROM table_name_28 WHERE previous_counference = "lake" AND ihsaa_class = "3a"
###context:CREATE TABLE table_name_64 (date VARCHAR, tournament VARCHAR) ###human: What is the Date of the Kroger Classic Tournament? ###assistant: SELECT date FROM table_name_64 WHERE tournament = "kroger classic"
###context:CREATE TABLE table_name_61 (date VARCHAR, tournament VARCHAR) ###human: What is the Date of the Ameritech Senior Open? ###assistant: SELECT date FROM table_name_61 WHERE tournament = "ameritech senior open"
###context:CREATE TABLE table_name_89 (tournament VARCHAR, winning_score VARCHAR) ###human: What Tournament has a Winning score of −16 (66-64-67=197)? ###assistant: SELECT tournament FROM table_name_89 WHERE winning_score = −16(66 - 64 - 67 = 197)
###context:CREATE TABLE table_name_80 (wu_xing___五行__ VARCHAR, korean___rr__ VARCHAR) ###human: What is Wu Xing (五行) with Korean (RR) of 임 (im)? ###assistant: SELECT wu_xing___五行__ FROM table_name_80 WHERE korean___rr__ = "임 (im)"
###context:CREATE TABLE table_name_48 (manchu___möllendorff__ VARCHAR, wu_xing_correlations VARCHAR, wuu_wuupin VARCHAR) ###human: What's Manchu (Möllendorff) with the Wi Xing Correltation of 南 South, along with Wuu Wuupin of ting44? ###assistant: SELECT manchu___möllendorff__ FROM table_name_48 WHERE wu_xing_correlations = "南 south" AND wuu_wuupin = "ting44"
###context:CREATE TABLE table_name_19 (japanese_title VARCHAR, tv_station VARCHAR) ###human: Which Japanese Title has a TV Station of ntv? ###assistant: SELECT japanese_title FROM table_name_19 WHERE tv_station = "ntv"
###context:CREATE TABLE table_name_43 (tv_station VARCHAR, romaji_title VARCHAR) ###human: Which TV Station has a Romaji Title of kegareta shita? ###assistant: SELECT tv_station FROM table_name_43 WHERE romaji_title = "kegareta shita"
###context:CREATE TABLE table_name_54 (theme_song_s_ VARCHAR, japanese_title VARCHAR) ###human: Which Theme Song(s) has a Japanese Title of 恋におちたら~僕の成功の秘密~? ###assistant: SELECT theme_song_s_ FROM table_name_54 WHERE japanese_title = "恋におちたら~僕の成功の秘密~"
###context:CREATE TABLE table_name_2 (number_of_electorates__2009_ INTEGER, name VARCHAR) ###human: Churai has what as the fewest number of electorates? ###assistant: SELECT MIN(number_of_electorates__2009_) FROM table_name_2 WHERE name = "churai"
###context:CREATE TABLE table_name_86 (title VARCHAR, release_date VARCHAR, production_num VARCHAR) ###human: what is the title when the release date is 1938-12-17 and the production number is 8610? ###assistant: SELECT title FROM table_name_86 WHERE release_date = "1938-12-17" AND production_num = "8610"
###context:CREATE TABLE table_name_54 (outcome VARCHAR, date VARCHAR) ###human: The match played July 8, 2007 had what outcome? ###assistant: SELECT outcome FROM table_name_54 WHERE date = "july 8, 2007"
###context:CREATE TABLE table_name_54 (surface VARCHAR, opponent_in_the_final VARCHAR) ###human: The final match played against Evie Dominikovic was played on what surface? ###assistant: SELECT surface FROM table_name_54 WHERE opponent_in_the_final = "evie dominikovic"
###context:CREATE TABLE table_name_42 (tournament VARCHAR, opponent_in_the_final VARCHAR) ###human: Olga Blahotová was the opponent in the final at what tournament? ###assistant: SELECT tournament FROM table_name_42 WHERE opponent_in_the_final = "olga blahotová"
###context:CREATE TABLE table_name_21 (score VARCHAR, opponent_in_the_final VARCHAR) ###human: In the final against Ashley Harkleroad what was the score? ###assistant: SELECT score FROM table_name_21 WHERE opponent_in_the_final = "ashley harkleroad"
###context:CREATE TABLE table_name_83 (time VARCHAR, opponent VARCHAR) ###human: At what time did the opponent Takaichi Hirayama have an event? ###assistant: SELECT time FROM table_name_83 WHERE opponent = "takaichi hirayama"
###context:CREATE TABLE table_name_42 (round VARCHAR, opponent VARCHAR) ###human: In which round was Gabriel Veiga the opponent? ###assistant: SELECT round FROM table_name_42 WHERE opponent = "gabriel veiga"
###context:CREATE TABLE table_name_86 (method VARCHAR, event VARCHAR, round VARCHAR, res VARCHAR) ###human: Which method had a 3 rounds, result in a loss and the Juiz de Fora - fight 1 event? ###assistant: SELECT method FROM table_name_86 WHERE round = "3" AND res = "loss" AND event = "juiz de fora - fight 1"
###context:CREATE TABLE table_name_55 (opponent VARCHAR, record VARCHAR) ###human: Which opponent has a record of 4-2? ###assistant: SELECT opponent FROM table_name_55 WHERE record = "4-2"
###context:CREATE TABLE table_name_91 (country VARCHAR, athlete VARCHAR) ###human: what is the country for zhang xiuyun? ###assistant: SELECT country FROM table_name_91 WHERE athlete = "zhang xiuyun"
###context:CREATE TABLE table_name_56 (country VARCHAR, athlete VARCHAR) ###human: what is the country for fabiana beltrame? ###assistant: SELECT country FROM table_name_56 WHERE athlete = "fabiana beltrame"
###context:CREATE TABLE table_name_44 (notes VARCHAR, time VARCHAR) ###human: what is the notes when the time is 7:58.71? ###assistant: SELECT notes FROM table_name_44 WHERE time = "7:58.71"
###context:CREATE TABLE table_name_73 (rank INTEGER, time VARCHAR) ###human: what is the highest rank when the time is 7:52.65? ###assistant: SELECT MAX(rank) FROM table_name_73 WHERE time = "7:52.65"
###context:CREATE TABLE table_name_55 (country VARCHAR, athlete VARCHAR, notes VARCHAR, rank VARCHAR) ###human: what is the country when the nots is sa/b, the rank is more than 1 and the athlete is zhang xiuyun? ###assistant: SELECT country FROM table_name_55 WHERE notes = "sa/b" AND rank > 1 AND athlete = "zhang xiuyun"
###context:CREATE TABLE table_name_30 (athlete VARCHAR, rank VARCHAR, total VARCHAR) ###human: Who had a rank under 17 with a total of 119? ###assistant: SELECT athlete FROM table_name_30 WHERE rank < 17 AND total = "119"
###context:CREATE TABLE table_name_2 (round VARCHAR, result VARCHAR, venue VARCHAR) ###human: What round has 2-1 as the result, and A as the venue? ###assistant: SELECT round FROM table_name_2 WHERE result = "2-1" AND venue = "a"
###context:CREATE TABLE table_name_64 (time INTEGER, nationality VARCHAR, lane VARCHAR) ###human: What is the most time for the swimmer from South Africa who was in a lane greater than 3? ###assistant: SELECT MAX(time) FROM table_name_64 WHERE nationality = "south africa" AND lane > 3
###context:CREATE TABLE table_name_44 (school VARCHAR, enrollment VARCHAR) ###human: Which school has enrollment of 887? ###assistant: SELECT school FROM table_name_44 WHERE enrollment = 887
###context:CREATE TABLE table_name_64 (round INTEGER, pick__number VARCHAR, position VARCHAR) ###human: what is the round when the pick # is less than 236 and the position is offensive guard? ###assistant: SELECT AVG(round) FROM table_name_64 WHERE pick__number < 236 AND position = "offensive guard"
###context:CREATE TABLE table_name_9 (position VARCHAR, round VARCHAR) ###human: what is the position in round 3? ###assistant: SELECT position FROM table_name_9 WHERE round = 3
###context:CREATE TABLE table_name_99 (position VARCHAR, pick VARCHAR) ###human: What is the Position of the Pick 8 Player? ###assistant: SELECT position FROM table_name_99 WHERE pick = 8
###context:CREATE TABLE table_name_85 (high_assists VARCHAR, score VARCHAR) ###human: Which High assists has a Score of w 71-56? ###assistant: SELECT high_assists FROM table_name_85 WHERE score = "w 71-56"