training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_89 (japanese_title VARCHAR, episodes VARCHAR, romaji_title VARCHAR) ###human: For what Japanese title is there less than 11 episodes and the Romaji title is Regatta~Kimi to Ita Eien~? ###assistant: SELECT japanese_title FROM table_name_89 WHERE episodes < 11 AND romaji_title =...
###context:CREATE TABLE table_name_52 (episodes INTEGER, average_ratings VARCHAR) ###human: what is the most episodes when the average ratings is 18.8%? ###assistant: SELECT MAX(episodes) FROM table_name_52 WHERE average_ratings = "18.8%"
###context:CREATE TABLE table_name_47 (episodes VARCHAR, tv_station VARCHAR, japanese_title VARCHAR) ###human: How many episodes when the tv station is ntv and the japanese title is たったひとつの恋? ###assistant: SELECT episodes FROM table_name_47 WHERE tv_station = "ntv" AND japanese_title = "たったひとつの恋"
###context:CREATE TABLE table_name_17 (tv_station VARCHAR, romaji_title VARCHAR) ###human: what is the tv station when the romaji title is kazoku~tsuma no fuzai・otto no sonzai~? ###assistant: SELECT tv_station FROM table_name_17 WHERE romaji_title = "kazoku~tsuma no fuzai・otto no sonzai~"
###context:CREATE TABLE table_name_36 (tv_station VARCHAR, average_ratings VARCHAR) ###human: what is the tv station when the average ratings is 19.5%? ###assistant: SELECT tv_station FROM table_name_36 WHERE average_ratings = "19.5%"
###context:CREATE TABLE table_name_22 (year_joined INTEGER, year_left INTEGER) ###human: Of all the schools that left before 2003, what is the average year joined? ###assistant: SELECT AVG(year_joined) FROM table_name_22 WHERE year_left < 2003
###context:CREATE TABLE table_name_48 (year_joined VARCHAR, mascot VARCHAR, year_left VARCHAR) ###human: What year did the Ingots, who left after 2007, join? ###assistant: SELECT COUNT(year_joined) FROM table_name_48 WHERE mascot = "ingots" AND year_left > 2007
###context:CREATE TABLE table_name_27 (original_release VARCHAR, writer_s_ VARCHAR) ###human: What is the original Release date of the Track written by Dallas Frazier? ###assistant: SELECT original_release FROM table_name_27 WHERE writer_s_ = "dallas frazier"
###context:CREATE TABLE table_name_64 (original_artist VARCHAR, length VARCHAR) ###human: What is the Original Artis of the Track with a Length of 2:38? ###assistant: SELECT original_artist FROM table_name_64 WHERE length = "2:38"
###context:CREATE TABLE table_name_7 (song_title VARCHAR, length VARCHAR) ###human: What Song has a Length of 2:50? ###assistant: SELECT song_title FROM table_name_7 WHERE length = "2:50"
###context:CREATE TABLE table_name_4 (title VARCHAR, genre VARCHAR, year VARCHAR, network VARCHAR) ###human: What's the title when the genre is drama and network of KBS2 happening before 2011? ###assistant: SELECT title FROM table_name_4 WHERE year < 2011 AND network = "kbs2" AND genre = "drama"
###context:CREATE TABLE table_name_31 (title VARCHAR, year VARCHAR, genre VARCHAR, network VARCHAR) ###human: What's the title when the genre is drama with a network of KBS2 happening in 2011? ###assistant: SELECT title FROM table_name_31 WHERE genre = "drama" AND network = "kbs2" AND year = 2011
###context:CREATE TABLE table_name_25 (network VARCHAR, year VARCHAR) ###human: What's the network in 2011? ###assistant: SELECT network FROM table_name_25 WHERE year = 2011
###context:CREATE TABLE table_name_55 (hangul___japanese VARCHAR, year VARCHAR, role VARCHAR) ###human: What's the Hangul/Japanese that happened before 2014 having a role of Baek Seung-Jo? ###assistant: SELECT hangul___japanese FROM table_name_55 WHERE year < 2014 AND role = "baek seung-jo"
###context:CREATE TABLE table_name_80 (hangul___japanese VARCHAR, genre VARCHAR, title VARCHAR) ###human: What's the Hangul/Japanese of Boys Over Flowers that's drama? ###assistant: SELECT hangul___japanese FROM table_name_80 WHERE genre = "drama" AND title = "boys over flowers"
###context:CREATE TABLE table_name_56 (ihsaa_class VARCHAR, location VARCHAR) ###human: What is the IHSAA class in monon? ###assistant: SELECT ihsaa_class FROM table_name_56 WHERE location = "monon"
###context:CREATE TABLE table_name_69 (ihsaa_class VARCHAR, enrollment VARCHAR) ###human: What is the IHSAA class with 395 in enrollment? ###assistant: SELECT ihsaa_class FROM table_name_69 WHERE enrollment = 395
###context:CREATE TABLE table_name_8 (school VARCHAR, mascot VARCHAR) ###human: What school has rebels as their mascot? ###assistant: SELECT school FROM table_name_8 WHERE mascot = "rebels"
###context:CREATE TABLE table_name_61 (enrollment VARCHAR, ihsaa_class VARCHAR) ###human: What is the total enrollment of the aa IHSAA class? ###assistant: SELECT COUNT(enrollment) FROM table_name_61 WHERE ihsaa_class = "aa"
###context:CREATE TABLE table_name_39 (enrollment INTEGER, school VARCHAR) ###human: What is the lowest enrollment at the pioneer school? ###assistant: SELECT MIN(enrollment) FROM table_name_39 WHERE school = "pioneer"
###context:CREATE TABLE table_name_34 (enrollment INTEGER, ihsaa_class VARCHAR, location VARCHAR) ###human: What is the average enrollment of the IHSAA A class in wolcott? ###assistant: SELECT AVG(enrollment) FROM table_name_34 WHERE ihsaa_class = "a" AND location = "wolcott"
###context:CREATE TABLE table_name_24 (shirt_no INTEGER, height VARCHAR, player VARCHAR) ###human: What is the Shirt No for Henry Bell Cisnero whose height is less than 190? ###assistant: SELECT MAX(shirt_no) FROM table_name_24 WHERE height < 190 AND player = "henry bell cisnero"
###context:CREATE TABLE table_name_9 (shirt_no INTEGER, height VARCHAR) ###human: What is the Shirt No for the person whose height is 188? ###assistant: SELECT SUM(shirt_no) FROM table_name_9 WHERE height = 188
###context:CREATE TABLE table_name_15 (height INTEGER, position VARCHAR) ###human: What is the height of the person whose position is Libero? ###assistant: SELECT MAX(height) FROM table_name_15 WHERE position = "libero"
###context:CREATE TABLE table_name_69 (total INTEGER, free VARCHAR, technical VARCHAR) ###human: What is the total for the person with free of 47.667, and technical less than 47.417? ###assistant: SELECT SUM(total) FROM table_name_69 WHERE free = 47.667 AND technical < 47.417
###context:CREATE TABLE table_name_77 (technical INTEGER, athlete VARCHAR, total VARCHAR) ###human: What is the technical number for Jiang Tingting & Jiang Wenwen, and the total was more than 96.334? ###assistant: SELECT MAX(technical) FROM table_name_77 WHERE athlete = "jiang tingting & jiang wenwen" AND total...
###context:CREATE TABLE table_name_87 (free INTEGER, athlete VARCHAR, total VARCHAR) ###human: What is the free of Apolline Dreyfuss & Lila Meesseman-Bakir, when the total was larger than 90.333? ###assistant: SELECT MIN(free) FROM table_name_87 WHERE athlete = "apolline dreyfuss & lila meesseman-bakir" AND tot...
###context:CREATE TABLE table_name_53 (drawn INTEGER, played INTEGER) ###human: What is the average number of games drawn among teams that played over 14 games? ###assistant: SELECT AVG(drawn) FROM table_name_53 WHERE played > 14
###context:CREATE TABLE table_name_52 (points VARCHAR, played INTEGER) ###human: What is the total number of points combined from the teams that played over 14 games? ###assistant: SELECT COUNT(points) FROM table_name_52 WHERE played > 14
###context:CREATE TABLE table_name_17 (points INTEGER, lost VARCHAR, name VARCHAR) ###human: How many points did the ESC Riverrats Geretsried, who lost more than 3 games, score? ###assistant: SELECT SUM(points) FROM table_name_17 WHERE lost > 3 AND name = "esc riverrats geretsried"
###context:CREATE TABLE table_name_37 (drawn INTEGER, lost INTEGER) ###human: What is the average number of games drawn among the teams that lost over 13 games? ###assistant: SELECT AVG(drawn) FROM table_name_37 WHERE lost > 13
###context:CREATE TABLE table_name_45 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, team VARCHAR) ###human: What is the date of vacancy when the manner of departure is sacked and the team is nejapa? ###assistant: SELECT date_of_vacancy FROM table_name_45 WHERE manner_of_departure = "sacked" AND team = ...
###context:CREATE TABLE table_name_54 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR) ###human: what is the date of vacancy when the date of appointment is 1 january 2009? ###assistant: SELECT date_of_vacancy FROM table_name_54 WHERE date_of_appointment = "1 january 2009"
###context:CREATE TABLE table_name_70 (date_of_vacancy VARCHAR, position_in_table VARCHAR, team VARCHAR) ###human: what is the date of vacancy when the position in table is 10th and the team is balboa? ###assistant: SELECT date_of_vacancy FROM table_name_70 WHERE position_in_table = "10th" AND team = "balboa"
###context:CREATE TABLE table_name_58 (replaced_by VARCHAR, position_in_table VARCHAR) ###human: Who replaced when the position in table is 5th? ###assistant: SELECT replaced_by FROM table_name_58 WHERE position_in_table = "5th"
###context:CREATE TABLE table_name_16 (outgoing_manager VARCHAR, replaced_by VARCHAR) ###human: Who is the outgoing manager when they were replaced by pablo centrone? ###assistant: SELECT outgoing_manager FROM table_name_16 WHERE replaced_by = "pablo centrone"
###context:CREATE TABLE table_name_2 (date_of_vacancy VARCHAR, team VARCHAR, replaced_by VARCHAR) ###human: what is the date of vacancy when the team is firpo and replaced by is oscar benitez? ###assistant: SELECT date_of_vacancy FROM table_name_2 WHERE team = "firpo" AND replaced_by = "oscar benitez"
###context:CREATE TABLE table_name_15 (country VARCHAR, notes VARCHAR, rank VARCHAR) ###human: Which country was ranked 8 and noted as qs? ###assistant: SELECT country FROM table_name_15 WHERE notes = "qs" AND rank = 8
###context:CREATE TABLE table_name_80 (notes VARCHAR, rank VARCHAR) ###human: What are the notes for the contestants that were ranked #1? ###assistant: SELECT notes FROM table_name_80 WHERE rank = 1
###context:CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR) ###human: Who did the Hawks play on 12/21/1973? ###assistant: SELECT opponent FROM table_name_52 WHERE date = "12/21/1973"
###context:CREATE TABLE table_name_22 (rank VARCHAR, name VARCHAR) ###human: What rank does Tricia Flores have? ###assistant: SELECT rank FROM table_name_22 WHERE name = "tricia flores"
###context:CREATE TABLE table_name_10 (name VARCHAR, group VARCHAR, mark VARCHAR) ###human: Who is in group B and has a mark of 6.33? ###assistant: SELECT name FROM table_name_10 WHERE group = "b" AND mark = "6.33"
###context:CREATE TABLE table_name_73 (mark VARCHAR, group VARCHAR, nationality VARCHAR) ###human: What is the mark for Grenada in group A? ###assistant: SELECT mark FROM table_name_73 WHERE group = "a" AND nationality = "grenada"
###context:CREATE TABLE table_name_40 (name VARCHAR, group VARCHAR, mark VARCHAR) ###human: Who has a mark of 6.17 in group B? ###assistant: SELECT name FROM table_name_40 WHERE group = "b" AND mark = "6.17"
###context:CREATE TABLE table_name_7 (rank VARCHAR, name VARCHAR) ###human: What rank does Tatyana Lebedeva have? ###assistant: SELECT rank FROM table_name_7 WHERE name = "tatyana lebedeva"
###context:CREATE TABLE table_name_85 (rank VARCHAR, mark VARCHAR, nationality VARCHAR) ###human: What rank has a mark of NM and is from India? ###assistant: SELECT rank FROM table_name_85 WHERE mark = "nm" AND nationality = "india"
###context:CREATE TABLE table_name_94 (total INTEGER, rank VARCHAR, tally VARCHAR) ###human: What is the sum of totals for ranks under 3 with tallies of 2-5? ###assistant: SELECT SUM(total) FROM table_name_94 WHERE rank < 3 AND tally = "2-5"
###context:CREATE TABLE table_name_56 (player VARCHAR, rank VARCHAR, tally VARCHAR) ###human: Which player had a rank of 8 and tally of 1-5? ###assistant: SELECT player FROM table_name_56 WHERE rank = 8 AND tally = "1-5"
###context:CREATE TABLE table_name_5 (no_in_series INTEGER, written_by VARCHAR, no_in_season VARCHAR) ###human: What is the sum of the numbers in series written by sam meikle, which have 21 numbers in the season? ###assistant: SELECT SUM(no_in_series) FROM table_name_5 WHERE written_by = "sam meikle" AND no_in_...
###context:CREATE TABLE table_name_32 (score VARCHAR, location_attendance VARCHAR, record VARCHAR) ###human: What was the score for the game played in Alexander Memorial Coliseum when the record was 0-1? ###assistant: SELECT score FROM table_name_32 WHERE location_attendance = "alexander memorial coliseum" AND ...
###context:CREATE TABLE table_name_54 (date VARCHAR, location_attendance VARCHAR) ###human: When was the game played that was at the Seattle Center Coliseum? ###assistant: SELECT date FROM table_name_54 WHERE location_attendance = "seattle center coliseum"
###context:CREATE TABLE table_name_98 (game INTEGER, location_attendance VARCHAR, date VARCHAR) ###human: What is the least game that was played in Alexander Memorial Coliseum on October 16? ###assistant: SELECT MIN(game) FROM table_name_98 WHERE location_attendance = "alexander memorial coliseum" AND date = "o...
###context:CREATE TABLE table_name_87 (game INTEGER, date VARCHAR) ###human: What average game was played on October 16? ###assistant: SELECT AVG(game) FROM table_name_87 WHERE date = "october 16"
###context:CREATE TABLE table_name_56 (date VARCHAR, game VARCHAR) ###human: On what day was game 2 played? ###assistant: SELECT date FROM table_name_56 WHERE game = 2
###context:CREATE TABLE table_name_41 (tourism_receipts__2011___millions_of_us INTEGER, tourist_arrivals__2011___millions_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR) ###human: What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrival...
###context:CREATE TABLE table_name_90 (tourism_competitiveness__2011___ttci_ VARCHAR, country VARCHAR) ###human: What is the tourism competitiveness in 2011 of venezuela? ###assistant: SELECT tourism_competitiveness__2011___ttci_ FROM table_name_90 WHERE country = "venezuela"
###context:CREATE TABLE table_name_99 (tourism_receipts__2011___us INTEGER, tourism_receipts__2003___as__percentage_of_gdp_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR) ###human: What is the highest number of tourism receipts in 2011 US $ per capita with 19.4 % of GDP in 2003 tourism receipts and les...
###context:CREATE TABLE table_name_95 (tourist_arrivals__2011___millions_ INTEGER, tourism_receipts__2011___us$_per_arrival_ VARCHAR, tourism_receipts__2011___millions_of_us$_ VARCHAR) ###human: What is the lowest tourism arrivals in 2011 in millions with 507 US $ per arrival in 2011 tourism receipts and less than ...
###context:CREATE TABLE table_name_92 (tourist_arrivals__2011___millions_ INTEGER, tourism_competitiveness__2011___ttci_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR) ###human: What is the highest tourism arrivals in 2011 in millions with a 3.82 tourism competitiveness in 2011 and more than 1,102 US$ ...
###context:CREATE TABLE table_name_36 (year VARCHAR, runner_up VARCHAR) ###human: In what year was Wisconsin the runner-up? ###assistant: SELECT year FROM table_name_36 WHERE runner_up = "wisconsin"
###context:CREATE TABLE table_name_43 (arena VARCHAR, runner_up VARCHAR) ###human: In what arena was the North Dakota the runner-up? ###assistant: SELECT arena FROM table_name_43 WHERE runner_up = "north dakota"
###context:CREATE TABLE table_name_38 (score VARCHAR, arena VARCHAR) ###human: What was the score of the game at the Broadmoor Arena? ###assistant: SELECT score FROM table_name_38 WHERE arena = "broadmoor arena"
###context:CREATE TABLE table_name_43 (runner_up VARCHAR, year VARCHAR, arena VARCHAR) ###human: Who was the runner-up at the Broadmoor Arena before 2008? ###assistant: SELECT runner_up FROM table_name_43 WHERE year < 2008 AND arena = "broadmoor arena"
###context:CREATE TABLE table_name_41 (year VARCHAR, arena VARCHAR) ###human: In what year was the competition at the Pepsi Arena? ###assistant: SELECT year FROM table_name_41 WHERE arena = "pepsi arena"
###context:CREATE TABLE table_name_56 (opponent VARCHAR, record VARCHAR) ###human: Which opponent has a 53-24 record? ###assistant: SELECT opponent FROM table_name_56 WHERE record = "53-24"
###context:CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR) ###human: Who was the opponent for game 73? ###assistant: SELECT opponent FROM table_name_10 WHERE game = "73"
###context:CREATE TABLE table_name_10 (replaced_by VARCHAR, team VARCHAR) ###human: who is the replacement when the team is milton keynes dons? ###assistant: SELECT replaced_by FROM table_name_10 WHERE team = "milton keynes dons"
###context:CREATE TABLE table_name_50 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR) ###human: what is the team with the position in table of 24th and the date of appointment 15 september 2008? ###assistant: SELECT team FROM table_name_50 WHERE position_in_table = "24th" AND date_of_appo...
###context:CREATE TABLE table_name_11 (position_in_table VARCHAR, team VARCHAR) ###human: what is the position in table when the team is hartlepool united? ###assistant: SELECT position_in_table FROM table_name_11 WHERE team = "hartlepool united"
###context:CREATE TABLE table_name_20 (team VARCHAR, replaced_by VARCHAR) ###human: what is the team geraint williams is the replacement? ###assistant: SELECT team FROM table_name_20 WHERE replaced_by = "geraint williams"
###context:CREATE TABLE table_name_25 (date_of_vacancy VARCHAR, position_in_table VARCHAR, outgoing_manager VARCHAR) ###human: what is the date of vacancy when the position in table is 16th and the outgoing manager is russell slade? ###assistant: SELECT date_of_vacancy FROM table_name_25 WHERE position_in_table...
###context:CREATE TABLE table_name_33 (years VARCHAR, finals VARCHAR) ###human: What years have 10 (0) in the finals? ###assistant: SELECT years FROM table_name_33 WHERE finals = "10 (0)"
###context:CREATE TABLE table_name_54 (a_league VARCHAR, finals VARCHAR, name VARCHAR) ###human: What A-League has 6 (1) for the finals, and leigh broxham as the name? ###assistant: SELECT a_league FROM table_name_54 WHERE finals = "6 (1)" AND name = "leigh broxham"
###context:CREATE TABLE table_name_40 (finals VARCHAR, name VARCHAR) ###human: What finals have grant brebner as the name? ###assistant: SELECT finals FROM table_name_40 WHERE name = "grant brebner"
###context:CREATE TABLE table_name_12 (years VARCHAR, finals VARCHAR, a_league VARCHAR) ###human: What years have 9 (0) as the finals and 133 (1) as the A-League? ###assistant: SELECT years FROM table_name_12 WHERE finals = "9 (0)" AND a_league = "133 (1)"
###context:CREATE TABLE table_name_77 (years VARCHAR, finals VARCHAR) ###human: What years have 9 (3) as the finals? ###assistant: SELECT years FROM table_name_77 WHERE finals = "9 (3)"
###context:CREATE TABLE table_name_74 (years VARCHAR, total VARCHAR) ###human: What years have 101 (16) as the total? ###assistant: SELECT years FROM table_name_74 WHERE total = "101 (16)"
###context:CREATE TABLE table_name_59 (athlete VARCHAR, notes VARCHAR, time VARCHAR) ###human: Who has a time of 7:26.85 and notes of sc/d? ###assistant: SELECT athlete FROM table_name_59 WHERE notes = "sc/d" AND time = "7:26.85"
###context:CREATE TABLE table_name_71 (notes VARCHAR, rank VARCHAR, athlete VARCHAR) ###human: Ioannis Christou with a rank smaller than 6 has what notes? ###assistant: SELECT notes FROM table_name_71 WHERE rank < 6 AND athlete = "ioannis christou"
###context:CREATE TABLE table_name_62 (notes VARCHAR, distance VARCHAR, location VARCHAR) ###human: Which Notes have a Distance larger than 7, and a Location of aplin? ###assistant: SELECT notes FROM table_name_62 WHERE distance > 7 AND location = "aplin"
###context:CREATE TABLE table_name_73 (distance INTEGER, county VARCHAR, total VARCHAR) ###human: How much Distance has a County of faulkner, and a Total smaller than 1.5? ###assistant: SELECT SUM(distance) FROM table_name_73 WHERE county = "faulkner" AND total < 1.5
###context:CREATE TABLE table_name_87 (distance INTEGER, notes VARCHAR) ###human: How much Distance has Notes of north end terminus of ar 155? ###assistant: SELECT SUM(distance) FROM table_name_87 WHERE notes = "north end terminus of ar 155"
###context:CREATE TABLE table_name_69 (latitude VARCHAR, water__sqmi_ INTEGER) ###human: How much Latitude has a Water (sqmi) smaller than 0? ###assistant: SELECT COUNT(latitude) FROM table_name_69 WHERE water__sqmi_ < 0
###context:CREATE TABLE table_name_49 (land___sqmi__ INTEGER, geo_id INTEGER) ###human: Which Land (sqmi) has a GEO ID smaller than 3800587900? ###assistant: SELECT MIN(land___sqmi__) FROM table_name_49 WHERE geo_id < 3800587900
###context:CREATE TABLE table_name_22 (water__sqmi_ INTEGER, township VARCHAR, geo_id VARCHAR) ###human: Which Water (sqmi) has a Township of yorktown, and a GEO ID smaller than 3802187940? ###assistant: SELECT MIN(water__sqmi_) FROM table_name_22 WHERE township = "yorktown" AND geo_id < 3802187940
###context:CREATE TABLE table_name_92 (school VARCHAR, position VARCHAR, player VARCHAR) ###human: What school had Jeff Urban playing at the p position? ###assistant: SELECT school FROM table_name_92 WHERE position = "p" AND player = "jeff urban"
###context:CREATE TABLE table_name_27 (school VARCHAR, team VARCHAR) ###human: What school has the Kansas City Royals for a team? ###assistant: SELECT school FROM table_name_27 WHERE team = "kansas city royals"
###context:CREATE TABLE table_name_40 (date VARCHAR, location VARCHAR, winner VARCHAR) ###human: What is the date of the match where vampiro was the winner in Mexico City? ###assistant: SELECT date FROM table_name_40 WHERE location = "mexico city" AND winner = "vampiro"
###context:CREATE TABLE table_name_94 (wager VARCHAR, winner VARCHAR, date VARCHAR) ###human: What is the wager on August 23, 1992 where vampiro was the winner? ###assistant: SELECT wager FROM table_name_94 WHERE winner = "vampiro" AND date = "august 23, 1992"
###context:CREATE TABLE table_name_14 (location VARCHAR, winner VARCHAR) ###human: What is the location where shocker was the winner? ###assistant: SELECT location FROM table_name_14 WHERE winner = "shocker"
###context:CREATE TABLE table_name_27 (location VARCHAR, loser VARCHAR) ###human: What is the location where aaron grundy was the loser? ###assistant: SELECT location FROM table_name_27 WHERE loser = "aaron grundy"
###context:CREATE TABLE table_name_4 (Id VARCHAR) ###human: What is the 1994 when QF is 1999? ###assistant: SELECT 1994 FROM table_name_4 WHERE 1999 = "qf"
###context:CREATE TABLE table_name_26 (Id VARCHAR) ###human: What is the 1991 when 1997 is 18? ###assistant: SELECT 1991 FROM table_name_26 WHERE 1997 = "18"
###context:CREATE TABLE table_name_25 (Id VARCHAR) ###human: What's the 1991 when 1999 is 14? ###assistant: SELECT 1991 FROM table_name_25 WHERE 1999 = "14"
###context:CREATE TABLE table_name_44 (Id VARCHAR) ###human: What's the 1996 when 1997 is 3R? ###assistant: SELECT 1996 FROM table_name_44 WHERE 1997 = "3r"
###context:CREATE TABLE table_name_46 (Id VARCHAR) ###human: What is 1994 when 1996 is 3R? ###assistant: SELECT 1994 FROM table_name_46 WHERE 1996 = "3r"
###context:CREATE TABLE table_name_72 (tournament VARCHAR) ###human: What is 1996 during the US Open? ###assistant: SELECT 1996 FROM table_name_72 WHERE tournament = "us open"
###context:CREATE TABLE table_name_49 (standard_name VARCHAR, version VARCHAR, downstream_rate VARCHAR) ###human: What's the standard name with an ADSL2 version and a 01.5 1.5 mbit/s downstream rate? ###assistant: SELECT standard_name FROM table_name_49 WHERE version = "adsl2" AND downstream_rate = "01.5 1.5 mb...
###context:CREATE TABLE table_name_2 (downstream_rate VARCHAR, version VARCHAR, standard_name VARCHAR) ###human: What's the downstream rate for the Itu g.992.2 having a version of ADSL? ###assistant: SELECT downstream_rate FROM table_name_2 WHERE version = "adsl" AND standard_name = "itu g.992.2"
###context:CREATE TABLE table_name_97 (version VARCHAR, standard_name VARCHAR) ###human: What's the version of Itu g.992.3 Annex J? ###assistant: SELECT version FROM table_name_97 WHERE standard_name = "itu g.992.3 annex j"