training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_91 (year INTEGER, nominee_s_ VARCHAR) ###human: That is the total year that Neal Baer is a nominee? ###assistant: SELECT SUM(year) FROM table_name_91 WHERE nominee_s_ = "neal baer"
###context:CREATE TABLE table_name_52 (episode VARCHAR, result VARCHAR, nominee_s_ VARCHAR) ###human: For what episode was the nominee (s) Walon Green, Joe Sachs nominated as a result? ###assistant: SELECT episode FROM table_name_52 WHERE result = "nominated" AND nominee_s_ = "walon green, joe sachs"
###context:CREATE TABLE table_name_23 (result VARCHAR, nominee_s_ VARCHAR) ###human: Nominee Neal Baer had what result? ###assistant: SELECT result FROM table_name_23 WHERE nominee_s_ = "neal baer"
###context:CREATE TABLE table_name_25 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR) ###human: What episode after 1998 had John Wells as the nominee? ###assistant: SELECT episode FROM table_name_25 WHERE year > 1998 AND nominee_s_ = "john wells"
###context:CREATE TABLE table_name_27 (world_record VARCHAR) ###human: Who has the world record of 153kg in the clean & jerk? ###assistant: SELECT 153 AS kg FROM table_name_27 WHERE world_record = "clean & jerk"
###context:CREATE TABLE table_name_29 (release_date VARCHAR, sspec_number VARCHAR) ###human: What's the release date for the processor spec number SLBEQ(d0)? ###assistant: SELECT release_date FROM table_name_29 WHERE sspec_number = "slbeq(d0)"
###context:CREATE TABLE table_name_27 (release_date VARCHAR, model_number VARCHAR) ###human: What's the release date of model number CORE I7-940? ###assistant: SELECT release_date FROM table_name_27 WHERE model_number = "core i7-940"
###context:CREATE TABLE table_name_12 (release_price___usd__ VARCHAR, i_o_bus VARCHAR, part_number_s_ VARCHAR) ###human: What's the release price of the processor with the part number bx80601975at80601002274aa, and has 1 × 6.4 gt/s qpi I/O? ###assistant: SELECT release_price___usd__ FROM table_name_12 WHERE i_o_bus = "1 × 6.4 gt/s qpi" AND part_number_s_ = "bx80601975at80601002274aa"
###context:CREATE TABLE table_name_76 (release_price___usd__ VARCHAR, frequency VARCHAR, i_o_bus VARCHAR) ###human: What's the release price of a processor that has a frequency of 3.2 ghz and 1 × 6.4 gt/s qpi I/O? ###assistant: SELECT release_price___usd__ FROM table_name_76 WHERE frequency = "3.2 ghz" AND i_o_bus = "1 × 6.4 gt/s qpi"
###context:CREATE TABLE table_name_41 (aids_orphans_as__percentage_of_orphans INTEGER, double__aids_related_ VARCHAR, paternal__total_ VARCHAR) ###human: What is the number of AIDS Orphans as % of Orphans when the Double (AIDS Related) number is 41,000, and the Paternal (Total) is larger than 442,000? ###assistant: SELECT SUM(aids_orphans_as__percentage_of_orphans) FROM table_name_41 WHERE double__aids_related_ = "41,000" AND paternal__total_ > 442 OFFSET 000
###context:CREATE TABLE table_name_66 (total_orphans__total_ INTEGER, total_orphans__aids_related_ VARCHAR, maternal__total_ VARCHAR) ###human: What is the Total Orphans number when the number of Total Orphans (AIDS Related) is < 100, and the Maternal (Total) is smaller than 31,000? ###assistant: SELECT MIN(total_orphans__total_) FROM table_name_66 WHERE total_orphans__aids_related_ = "< 100" AND maternal__total_ < 31 OFFSET 000
###context:CREATE TABLE table_name_94 (term_start VARCHAR, party VARCHAR) ###human: What's the term start date for Meretz? ###assistant: SELECT term_start FROM table_name_94 WHERE party = "meretz"
###context:CREATE TABLE table_name_88 (clubs_involved INTEGER, clubs_remaining VARCHAR) ###human: How many clubs are involved when the clubs remaining are 2? ###assistant: SELECT SUM(clubs_involved) FROM table_name_88 WHERE clubs_remaining = 2
###context:CREATE TABLE table_name_87 (new_entries_this_round VARCHAR, leagues_entering_at_this_round VARCHAR) ###human: How many new entries when the leagues entering in the round are tff third league & turkish regional amateur league? ###assistant: SELECT new_entries_this_round FROM table_name_87 WHERE leagues_entering_at_this_round = "tff third league & turkish regional amateur league"
###context:CREATE TABLE table_name_65 (clubs_remaining INTEGER, round VARCHAR) ###human: What is the number of clubs remaining in the second round? ###assistant: SELECT MIN(clubs_remaining) FROM table_name_65 WHERE round = "second round"
###context:CREATE TABLE table_name_51 (round VARCHAR, clubs_involved VARCHAR) ###human: Which round has 4 clubs involved? ###assistant: SELECT round FROM table_name_51 WHERE clubs_involved = 4
###context:CREATE TABLE table_name_59 (clubs_involved INTEGER, winners_from_previous_round VARCHAR, clubs_remaining VARCHAR) ###human: How many clubs are involved when there are 4 winners from the previous rounds and more than 4 clubs remaining? ###assistant: SELECT MIN(clubs_involved) FROM table_name_59 WHERE winners_from_previous_round = "4" AND clubs_remaining > 4
###context:CREATE TABLE table_name_29 (away_team VARCHAR, score VARCHAR) ###human: What is the Away team at the game with a Score of 4 – 2? ###assistant: SELECT away_team FROM table_name_29 WHERE score = "4 – 2"
###context:CREATE TABLE table_name_34 (tie_no VARCHAR, attendance VARCHAR) ###human: What is the Tie no of the game with an Attendance of 4,658? ###assistant: SELECT tie_no FROM table_name_34 WHERE attendance = "4,658"
###context:CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR) ###human: What is the Home team at the Lincoln City Away game? ###assistant: SELECT home_team FROM table_name_80 WHERE away_team = "lincoln city"
###context:CREATE TABLE table_name_4 (away_team VARCHAR, score VARCHAR, attendance VARCHAR) ###human: What is the Away team at the game with a Score of 1 – 0 and Attendance of 1,791? ###assistant: SELECT away_team FROM table_name_4 WHERE score = "1 – 0" AND attendance = "1,791"
###context:CREATE TABLE table_name_98 (home_team VARCHAR, score VARCHAR) ###human: What is the Home team of the game with a Score of 2 – 2? ###assistant: SELECT home_team FROM table_name_98 WHERE score = "2 – 2"
###context:CREATE TABLE table_name_94 (attendance VARCHAR, score VARCHAR) ###human: What is the Attendance of the game with a Score of 0 – 0? ###assistant: SELECT attendance FROM table_name_94 WHERE score = "0 – 0"
###context:CREATE TABLE table_name_36 (year INTEGER, developer_s_ VARCHAR) ###human: What year had Nintendo EAD, Monolith Soft as developers? ###assistant: SELECT SUM(year) FROM table_name_36 WHERE developer_s_ = "nintendo ead, monolith soft"
###context:CREATE TABLE table_name_48 (location VARCHAR, designer VARCHAR, restaurant_name VARCHAR) ###human: what is the location when the designer is glen peloso and the restaurant is joe boo's cookoos? ###assistant: SELECT location FROM table_name_48 WHERE designer = "glen peloso" AND restaurant_name = "joe boo's cookoos"
###context:CREATE TABLE table_name_57 (year_joined__or_joining_ INTEGER, city VARCHAR) ###human: What year did the team from City of Aurora join? ###assistant: SELECT AVG(year_joined__or_joining_) FROM table_name_57 WHERE city = "aurora"
###context:CREATE TABLE table_name_93 (enrollment_08_09 VARCHAR, school VARCHAR) ###human: What was the total enrollment 08-09 of Franklin County? ###assistant: SELECT COUNT(enrollment_08_09) FROM table_name_93 WHERE school = "franklin county"
###context:CREATE TABLE table_name_79 (school VARCHAR, team_name VARCHAR) ###human: What school has a team called the Pirates? ###assistant: SELECT school FROM table_name_79 WHERE team_name = "pirates"
###context:CREATE TABLE table_name_1 (rank INTEGER, time VARCHAR) ###human: What is the rank of the team with a time of 1:00.61? ###assistant: SELECT AVG(rank) FROM table_name_1 WHERE time = "1:00.61"
###context:CREATE TABLE table_name_93 (lane INTEGER, time VARCHAR) ###human: What's the lane with a time of 1:00.66? ###assistant: SELECT AVG(lane) FROM table_name_93 WHERE time = "1:00.66"
###context:CREATE TABLE table_name_43 (rank VARCHAR, time VARCHAR) ###human: What's the rank when the time was 59.65? ###assistant: SELECT rank FROM table_name_43 WHERE time = "59.65"
###context:CREATE TABLE table_name_64 (record VARCHAR, opponent VARCHAR) ###human: What is the record when they played New York? ###assistant: SELECT record FROM table_name_64 WHERE opponent = "new york"
###context:CREATE TABLE table_name_24 (county VARCHAR, year_joined VARCHAR, location VARCHAR) ###human: Can you tell me the County that has the Year Joined of 1964, and the Location of montezuma? ###assistant: SELECT county FROM table_name_24 WHERE year_joined = 1964 AND location = "montezuma"
###context:CREATE TABLE table_name_67 (conference_joined VARCHAR, location VARCHAR, mascot VARCHAR) ###human: Can you tell me the Conference Joined that has the Location of terre haute, and the Mascot of golden bears? ###assistant: SELECT conference_joined FROM table_name_67 WHERE location = "terre haute" AND mascot = "golden bears"
###context:CREATE TABLE table_name_70 (mascot VARCHAR, school VARCHAR) ###human: Can you tell me the Mascot that has the School of rosedale? ###assistant: SELECT mascot FROM table_name_70 WHERE school = "rosedale"
###context:CREATE TABLE table_name_88 (conference_joined VARCHAR, mascot VARCHAR) ###human: Can you tell me the Conference Joined that has the Mascot of little sycamores? ###assistant: SELECT conference_joined FROM table_name_88 WHERE mascot = "little sycamores"
###context:CREATE TABLE table_name_69 (location VARCHAR, mascot VARCHAR) ###human: Can you tell me the Location that has the Mascot of lakers? ###assistant: SELECT location FROM table_name_69 WHERE mascot = "lakers"
###context:CREATE TABLE table_name_55 (time VARCHAR, team VARCHAR, speed VARCHAR) ###human: What is the time of the rider from the 348cc K4 Honda team with a speed of 97.743mph? ###assistant: SELECT time FROM table_name_55 WHERE team = "348cc k4 honda" AND speed = "97.743mph"
###context:CREATE TABLE table_name_30 (lane VARCHAR, time VARCHAR) ###human: What is the Lane of the swimmer with a Time of 8:34.25? ###assistant: SELECT lane FROM table_name_30 WHERE time = "8:34.25"
###context:CREATE TABLE table_name_40 (name VARCHAR, heat VARCHAR, time VARCHAR) ###human: What is the Name of the swimmer with a Time of 9:04.86 in Heat 2? ###assistant: SELECT name FROM table_name_40 WHERE heat = 2 AND time = "9:04.86"
###context:CREATE TABLE table_name_21 (location VARCHAR, round VARCHAR, time VARCHAR) ###human: What is the Location of the Event in Round 1 with a Time of 1:25? ###assistant: SELECT location FROM table_name_21 WHERE round = 1 AND time = "1:25"
###context:CREATE TABLE table_name_52 (goals INTEGER, position VARCHAR, first_appearance VARCHAR, last_appearance VARCHAR, appearances VARCHAR) ###human: What is the average goals when the last appearance was before 1984, there were more than 17 appearances, the first appearance was before 1961 and the position was mf? ###assistant: SELECT AVG(goals) FROM table_name_52 WHERE last_appearance < 1984 AND appearances > 17 AND first_appearance < 1961 AND position = "mf"
###context:CREATE TABLE table_name_18 (school VARCHAR, year_left VARCHAR) ###human: what is the school that left in 1966? ###assistant: SELECT school FROM table_name_18 WHERE year_left = 1966
###context:CREATE TABLE table_name_19 (mascot VARCHAR, year_joined VARCHAR, school VARCHAR) ###human: what is the mascot for moores hill that joined later than 1952? ###assistant: SELECT mascot FROM table_name_19 WHERE year_joined > 1952 AND school = "moores hill"
###context:CREATE TABLE table_name_58 (conference_joined VARCHAR, location VARCHAR, county VARCHAR, year_joined VARCHAR) ###human: what is the conference joined for the county 69 ripley in 1952 in versailles? ###assistant: SELECT conference_joined FROM table_name_58 WHERE county = "69 ripley" AND year_joined = 1952 AND location = "versailles"
###context:CREATE TABLE table_name_91 (mascot VARCHAR, county VARCHAR) ###human: who is the mascot of the county 78 switzerland? ###assistant: SELECT mascot FROM table_name_91 WHERE county = "78 switzerland"
###context:CREATE TABLE table_name_52 (time VARCHAR, rank VARCHAR, lane VARCHAR, nationality VARCHAR) ###human: What is the total time of the athlete from Canada with a lane less than 8 and a rank less than 8? ###assistant: SELECT COUNT(time) FROM table_name_52 WHERE lane < 8 AND nationality = "canada" AND rank < 8
###context:CREATE TABLE table_name_53 (react VARCHAR, time VARCHAR, lane VARCHAR) ###human: What is the total react number with a time less than 20.05 and a lane less than 6? ###assistant: SELECT COUNT(react) FROM table_name_53 WHERE time < 20.05 AND lane < 6
###context:CREATE TABLE table_name_59 (react INTEGER, name VARCHAR, lane VARCHAR) ###human: What is the average react of bryan barnett, who has a lane less than 2? ###assistant: SELECT AVG(react) FROM table_name_59 WHERE name = "bryan barnett" AND lane < 2
###context:CREATE TABLE table_name_68 (year_left VARCHAR, team_name VARCHAR) ###human: What year did the Hornets leave the conference? ###assistant: SELECT year_left FROM table_name_68 WHERE team_name = "hornets"
###context:CREATE TABLE table_name_65 (city VARCHAR, year_left VARCHAR) ###human: In what city was the team that left the conference in 1949 based? ###assistant: SELECT city FROM table_name_65 WHERE year_left = "1949"
###context:CREATE TABLE table_name_6 (year_joined VARCHAR, city VARCHAR) ###human: What year did the team based in the city of Winamac join the conference? ###assistant: SELECT year_joined FROM table_name_6 WHERE city = "winamac"
###context:CREATE TABLE table_name_3 (county VARCHAR, year_left VARCHAR) ###human: From what county was the team that left the conference in 1993? ###assistant: SELECT county FROM table_name_3 WHERE year_left = "1993"
###context:CREATE TABLE table_name_63 (school VARCHAR, year_left VARCHAR) ###human: From what school was the team that left the conference in 1992? ###assistant: SELECT school FROM table_name_63 WHERE year_left = "1992"
###context:CREATE TABLE table_name_10 (year_joined VARCHAR, school VARCHAR) ###human: In what year did the team from the Western school join the conference? ###assistant: SELECT year_joined FROM table_name_10 WHERE school = "western"
###context:CREATE TABLE table_name_77 (place INTEGER, points INTEGER) ###human: What is the place when less than 1 point is scored? ###assistant: SELECT AVG(place) FROM table_name_77 WHERE points < 1
###context:CREATE TABLE table_name_36 (draw INTEGER, points VARCHAR) ###human: What is the highest draw number when 23 points are scored? ###assistant: SELECT MAX(draw) FROM table_name_36 WHERE points = 23
###context:CREATE TABLE table_name_40 (heat INTEGER, time VARCHAR, lane VARCHAR) ###human: What is the lowest heat that had a time of 1:02.85 in a lane larger than 7? ###assistant: SELECT MIN(heat) FROM table_name_40 WHERE time = "1:02.85" AND lane > 7
###context:CREATE TABLE table_name_75 (lane INTEGER, heat VARCHAR, name VARCHAR) ###human: What is the sum of the lanes before heat 7 that elizabeth simmonds swam? ###assistant: SELECT SUM(lane) FROM table_name_75 WHERE heat < 7 AND name = "elizabeth simmonds"
###context:CREATE TABLE table_name_27 (südbayern VARCHAR, year VARCHAR) ###human: What's the Südbayern in 1928? ###assistant: SELECT südbayern FROM table_name_27 WHERE year = 1928
###context:CREATE TABLE table_name_51 (württemberg VARCHAR, baden VARCHAR, year VARCHAR) ###human: What's the Württemberg for Karlsruher FV happening after 1931? ###assistant: SELECT württemberg FROM table_name_51 WHERE baden = "karlsruher fv" AND year > 1931
###context:CREATE TABLE table_name_78 (year VARCHAR, baden VARCHAR) ###human: What's the year that has a Baden Freiburger FC? ###assistant: SELECT COUNT(year) FROM table_name_78 WHERE baden = "freiburger fc"
###context:CREATE TABLE table_name_42 (württemberg VARCHAR, year INTEGER) ###human: What's the Württemberg in the year before 1929? ###assistant: SELECT württemberg FROM table_name_42 WHERE year < 1929
###context:CREATE TABLE table_name_92 (nordbayern VARCHAR, year VARCHAR, württemberg VARCHAR) ###human: What's the Nordbayern with a Württemberg of Union Böckingen in the year before 1932? ###assistant: SELECT nordbayern FROM table_name_92 WHERE year < 1932 AND württemberg = "union böckingen"
###context:CREATE TABLE table_name_83 (high_rebounds VARCHAR, score VARCHAR) ###human: What was the high rebounds for the game that had a score of w 76-66? ###assistant: SELECT high_rebounds FROM table_name_83 WHERE score = "w 76-66"
###context:CREATE TABLE table_name_79 (location_attendance VARCHAR, record VARCHAR) ###human: What was the location/attendance for the game with a record of 16-6? ###assistant: SELECT location_attendance FROM table_name_79 WHERE record = "16-6"
###context:CREATE TABLE table_name_24 (nationality VARCHAR, name VARCHAR, lane VARCHAR, rank VARCHAR) ###human: What is the nationality with a lane larger than 1, and a rank larger than 5, for Hsu Chi-Chieh? ###assistant: SELECT nationality FROM table_name_24 WHERE lane > 1 AND rank > 5 AND name = "hsu chi-chieh"
###context:CREATE TABLE table_name_31 (lane VARCHAR, time VARCHAR, rank VARCHAR) ###human: What is the lane with a time of 1:56.64, and a tank smaller than 7? ###assistant: SELECT COUNT(lane) FROM table_name_31 WHERE time = "1:56.64" AND rank < 7
###context:CREATE TABLE table_name_84 (rank VARCHAR, nationality VARCHAR) ###human: What is the rank of Japan? ###assistant: SELECT rank FROM table_name_84 WHERE nationality = "japan"
###context:CREATE TABLE table_name_54 (time VARCHAR, nationality VARCHAR) ###human: What is the time for Russia? ###assistant: SELECT time FROM table_name_54 WHERE nationality = "russia"
###context:CREATE TABLE table_name_27 (nation VARCHAR, silver VARCHAR, rank VARCHAR) ###human: What nation has more than 0 silver medals and is ranked 1? ###assistant: SELECT nation FROM table_name_27 WHERE silver > 0 AND rank = "1"
###context:CREATE TABLE table_name_66 (rank VARCHAR, total VARCHAR, silver VARCHAR) ###human: What is the rank of the country with total more than 3 and more than 6 silver? ###assistant: SELECT rank FROM table_name_66 WHERE total > 3 AND silver > 6
###context:CREATE TABLE table_name_54 (silver INTEGER, total VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR) ###human: What is the most silver won by the country with more than 1 gold, 3 bronze, ranked 1, and less than 12 as the total? ###assistant: SELECT MAX(silver) FROM table_name_54 WHERE gold > "1" AND bronze = 3 AND rank = "1" AND total < 12
###context:CREATE TABLE table_name_58 (nation VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR) ###human: What nation has a total less than 11, more than 1 silver and less than 1 bronze? ###assistant: SELECT nation FROM table_name_58 WHERE total < 11 AND silver < 1 AND bronze < 1
###context:CREATE TABLE table_name_76 (silver INTEGER, nation VARCHAR) ###human: What is the most silver won by Norway? ###assistant: SELECT MAX(silver) FROM table_name_76 WHERE nation = "norway"
###context:CREATE TABLE table_name_27 (district VARCHAR, constituency_number VARCHAR) ###human: What district has a constituency of 60? ###assistant: SELECT district FROM table_name_27 WHERE constituency_number = "60"
###context:CREATE TABLE table_name_88 (district VARCHAR, name VARCHAR) ###human: What is district has a name of Rajnagar? ###assistant: SELECT district FROM table_name_88 WHERE name = "rajnagar"
###context:CREATE TABLE table_name_25 (score VARCHAR, away_team VARCHAR) ###human: What was the score for the away team of Brentford? ###assistant: SELECT score FROM table_name_25 WHERE away_team = "brentford"
###context:CREATE TABLE table_name_13 (tie_no VARCHAR, away_team VARCHAR) ###human: What was the score of the tied game or the away team of Crewe Alexandra? ###assistant: SELECT tie_no FROM table_name_13 WHERE away_team = "crewe alexandra"
###context:CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR) ###human: What was the date of the game for the Wrexham away team? ###assistant: SELECT date FROM table_name_17 WHERE away_team = "wrexham"
###context:CREATE TABLE table_name_27 (date VARCHAR, home_team VARCHAR) ###human: What was the date of the game for the HartlePool United team? ###assistant: SELECT date FROM table_name_27 WHERE home_team = "hartlepool united"
###context:CREATE TABLE table_name_18 (tickets_sold___available VARCHAR, venue VARCHAR) ###human: What is the number of tickets sold and available for the concert at Long Beach Arena? ###assistant: SELECT tickets_sold___available FROM table_name_18 WHERE venue = "long beach arena"
###context:CREATE TABLE table_name_42 (city VARCHAR, venue VARCHAR) ###human: Which city has a venue of the Arco Arena? ###assistant: SELECT city FROM table_name_42 WHERE venue = "arco arena"
###context:CREATE TABLE table_name_92 (round INTEGER, opponent VARCHAR) ###human: What is the lowest round that has kazushi sakuraba as the opponent? ###assistant: SELECT MIN(round) FROM table_name_92 WHERE opponent = "kazushi sakuraba"
###context:CREATE TABLE table_name_51 (gold INTEGER, nation VARCHAR, total VARCHAR) ###human: Japan (JPN) with a total of less than 5, has what average gold medals? ###assistant: SELECT AVG(gold) FROM table_name_51 WHERE nation = "japan (jpn)" AND total < 5
###context:CREATE TABLE table_name_86 (bronze INTEGER, gold VARCHAR, silver VARCHAR) ###human: What is the average bronze medal when gold is greater than 0, and there is less than 0 silver medals? ###assistant: SELECT AVG(bronze) FROM table_name_86 WHERE gold > 0 AND silver < 0
###context:CREATE TABLE table_name_2 (bronze VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR) ###human: What is the sum of bronze medals when the rank is greater than 2, and less than 2 total medals with silver medals being more than 0? ###assistant: SELECT COUNT(bronze) FROM table_name_2 WHERE rank > 2 AND total < 2 AND silver > 0
###context:CREATE TABLE table_name_23 (total INTEGER, bronze VARCHAR, rank VARCHAR, silver VARCHAR) ###human: With a greater than 4 rank, and the silver medal greater than 0, and the bronze medal less than 1, what is the average total? ###assistant: SELECT AVG(total) FROM table_name_23 WHERE rank > 4 AND silver > 0 AND bronze < 1
###context:CREATE TABLE table_name_49 (gold INTEGER, bronze INTEGER) ###human: What is the fewest gold medals when the bronze medals is greater than 5? ###assistant: SELECT MIN(gold) FROM table_name_49 WHERE bronze > 5
###context:CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR) ###human: What is the player when the team is oakland raiders? ###assistant: SELECT player FROM table_name_89 WHERE team = "oakland raiders"
###context:CREATE TABLE table_name_30 (team VARCHAR, college VARCHAR) ###human: What is the team when the college is virginia tech? ###assistant: SELECT team FROM table_name_30 WHERE college = "virginia tech"
###context:CREATE TABLE table_name_74 (college VARCHAR, team VARCHAR) ###human: What college has a team of new york jets? ###assistant: SELECT college FROM table_name_74 WHERE team = "new york jets"
###context:CREATE TABLE table_name_74 (team VARCHAR, pick VARCHAR, college VARCHAR) ###human: What team has a pick larger than 30, when the college is saginaw valley state? ###assistant: SELECT team FROM table_name_74 WHERE pick > 30 AND college = "saginaw valley state"
###context:CREATE TABLE table_name_61 (pick INTEGER, college VARCHAR) ###human: What is the highest pick when the college is saginaw valley state? ###assistant: SELECT MAX(pick) FROM table_name_61 WHERE college = "saginaw valley state"
###context:CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR) ###human: what is the record when the opponent is akiko inoue? ###assistant: SELECT record FROM table_name_37 WHERE opponent = "akiko inoue"
###context:CREATE TABLE table_name_7 (event VARCHAR, location VARCHAR, record VARCHAR) ###human: what is the even when the location is tokyo, japan and the record is 6-1? ###assistant: SELECT event FROM table_name_7 WHERE location = "tokyo, japan" AND record = "6-1"
###context:CREATE TABLE table_name_7 (range VARCHAR, name VARCHAR, rank VARCHAR) ###human: Which range includes Mount Fukushima, and is ranked 38? ###assistant: SELECT range FROM table_name_7 WHERE name = "mount fukushima" AND rank = 38
###context:CREATE TABLE table_name_93 (altitude__meters_ INTEGER, range VARCHAR, name VARCHAR) ###human: What is the altitude (meters) is associated with the Name Mount Launoit, with the range as Belgica Mountains? ###assistant: SELECT SUM(altitude__meters_) FROM table_name_93 WHERE range = "belgica mountains" AND name = "mount launoit"
###context:CREATE TABLE table_name_72 (altitude__meters_ VARCHAR, range VARCHAR, rank VARCHAR) ###human: What is the Altitude (meters) associated with a rank smaller than 10, and the range Mühlig-Hofmann Mountains? ###assistant: SELECT COUNT(altitude__meters_) FROM table_name_72 WHERE range = "mühlig-hofmann mountains" AND rank < 10
###context:CREATE TABLE table_name_79 (name VARCHAR, altitude__meters_ VARCHAR, range VARCHAR, rank VARCHAR) ###human: What name is associated with a rank greater than 69, an altitude (meters) smaller than 2154, and a range of Sivorgfjella? ###assistant: SELECT name FROM table_name_79 WHERE range = "sivorgfjella" AND rank > 69 AND altitude__meters_ < 2154