training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR) ###human: What was the record on September 4? ###assistant: SELECT record FROM table_name_26 WHERE date = "september 4"
###context:CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR) ###human: What was the record on September 26? ###assistant: SELECT record FROM table_name_79 WHERE date = "september 26"
###context:CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR) ###human: Who was the opponent with a Loss of Leal (1–4)? ###assistant: SELECT opponent FROM table_name_35 WHERE loss = "leal (1–4)"
###context:CREATE TABLE t (Id VARCHAR) ###human: In the Class T, what is the total of the 1958 UTA? ###assistant: SELECT COUNT(1958 AS _uta) FROM "t" AS able_name_49 WHERE class = "t"
###context:CREATE TABLE table_name_93 (result VARCHAR, date VARCHAR) ###human: What was the result of the match played on 13 October 1993? ###assistant: SELECT result FROM table_name_93 WHERE date = "13 october 1993"
###context:CREATE TABLE table_name_67 (date VARCHAR, goal VARCHAR) ###human: When did the team score 21 goals? ###assistant: SELECT date FROM table_name_67 WHERE goal = 21
###context:CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR, goal VARCHAR) ###human: What was the score of the match played on 14 October 1998, resulting in more than 10 goals? ###assistant: SELECT score FROM table_name_59 WHERE date = "14 october 1998" AND goal > 10
###context:CREATE TABLE table_name_24 (year VARCHAR, entrant VARCHAR) ###human: What is the total number of years that Scuderia Guastalla was an entrant? ###assistant: SELECT COUNT(year) FROM table_name_24 WHERE entrant = "scuderia guastalla"
###context:CREATE TABLE table_name_88 (year INTEGER, points VARCHAR, entrant VARCHAR) ###human: What was the earliest year that Scuderia Ferrari was an entrant with 0 points? ###assistant: SELECT MIN(year) FROM table_name_88 WHERE points = "0" AND entrant = "scuderia ferrari"
###context:CREATE TABLE table_name_24 (year VARCHAR, chassis VARCHAR, points VARCHAR) ###human: What is the total number of years that has a chassis of Ferrari 625 and 2 points? ###assistant: SELECT COUNT(year) FROM table_name_24 WHERE chassis = "ferrari 625" AND points = "2"
###context:CREATE TABLE table_name_53 (song VARCHAR, artist_s_ VARCHAR, work_done VARCHAR, year VARCHAR) ###human: Which 2006 Cobra Starship song has work done of guest vocals? ###assistant: SELECT song FROM table_name_53 WHERE work_done = "guest vocals" AND year = 2006 AND artist_s_ = "cobra starship"
###context:CREATE TABLE table_name_37 (decile INTEGER, roll VARCHAR, area VARCHAR) ###human: What is the decile sum with a roll smaller than 25, and franz josef area? ###assistant: SELECT SUM(decile) FROM table_name_37 WHERE roll < 25 AND area = "franz josef"
###context:CREATE TABLE table_name_67 (area VARCHAR, decile VARCHAR, roll VARCHAR) ###human: What is the area with decile of 8, and a 25 roll? ###assistant: SELECT area FROM table_name_67 WHERE decile = 8 AND roll = 25
###context:CREATE TABLE table_name_26 (overall INTEGER, pick__number INTEGER) ###human: What is the overall pick average with the pick # lower than 15? ###assistant: SELECT AVG(overall) FROM table_name_26 WHERE pick__number < 15
###context:CREATE TABLE table_name_3 (rank INTEGER, bronze VARCHAR, total VARCHAR) ###human: What is the lowest rank for Spain when more than 10 medals were won, 3 of which were bronze? ###assistant: SELECT MIN(rank) FROM table_name_3 WHERE bronze = 3 AND total > 10
###context:CREATE TABLE table_name_38 (qual VARCHAR, year VARCHAR) ###human: What is the Qual listed on the Year of 1954? ###assistant: SELECT qual FROM table_name_38 WHERE year = "1954"
###context:CREATE TABLE table_name_66 (year VARCHAR, laps VARCHAR, qual VARCHAR) ###human: Which Year has a Qual of 144.683 and Lap larger than 27? ###assistant: SELECT year FROM table_name_66 WHERE laps > 27 AND qual = "144.683"
###context:CREATE TABLE table_name_41 (qual VARCHAR, rank VARCHAR) ###human: What's the Qual listed with a Rank of 27? ###assistant: SELECT qual FROM table_name_41 WHERE rank = "27"
###context:CREATE TABLE table_name_45 (team VARCHAR, year VARCHAR) ###human: Which Team has a Year of 1978? ###assistant: SELECT team FROM table_name_45 WHERE year = 1978
###context:CREATE TABLE table_name_51 (engine VARCHAR, team VARCHAR, chassis VARCHAR) ###human: Which Engine has a Team of Chesterfield Racing and include a Chassis of March 761? ###assistant: SELECT engine FROM table_name_51 WHERE team = "chesterfield racing" AND chassis = "march 761"
###context:CREATE TABLE table_name_37 (year INTEGER, mintage INTEGER) ###human: What is the smallest year with a Mintage smaller than 10,000? ###assistant: SELECT MIN(year) FROM table_name_37 WHERE mintage < 10 OFFSET 000
###context:CREATE TABLE table_name_30 (loss VARCHAR, date VARCHAR) ###human: Which loss has a Date of april 26? ###assistant: SELECT loss FROM table_name_30 WHERE date = "april 26"
###context:CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR, loss VARCHAR) ###human: Which date has an Opponent of angels, and a Loss of sanderson (0–1)? ###assistant: SELECT date FROM table_name_95 WHERE opponent = "angels" AND loss = "sanderson (0–1)"
###context:CREATE TABLE table_name_35 (attendance INTEGER, loss VARCHAR) ###human: What is the largest Attendance with a Loss of darling (0–1)? ###assistant: SELECT MAX(attendance) FROM table_name_35 WHERE loss = "darling (0–1)"
###context:CREATE TABLE table_name_91 (maximum_seating_capacity VARCHAR, arena_venue VARCHAR) ###human: What is the maximum capacity of the San Agustin Gym? ###assistant: SELECT maximum_seating_capacity FROM table_name_91 WHERE arena_venue = "san agustin gym"
###context:CREATE TABLE table_name_98 (province_region VARCHAR, location VARCHAR) ###human: Where is the Cagayan de Oro city located? ###assistant: SELECT province_region FROM table_name_98 WHERE location = "cagayan de oro city"
###context:CREATE TABLE table_name_42 (province_region VARCHAR, home_campus VARCHAR) ###human: Where is the Holy Cross of Davao College campus located? ###assistant: SELECT province_region FROM table_name_42 WHERE home_campus = "holy cross of davao college"
###context:CREATE TABLE table_name_2 (home_campus VARCHAR, arena_venue VARCHAR) ###human: Which campus has the San Agustin gym? ###assistant: SELECT home_campus FROM table_name_2 WHERE arena_venue = "san agustin gym"
###context:CREATE TABLE table_name_44 (year_opened VARCHAR, arena_venue VARCHAR) ###human: What year did the San Agustin gym open? ###assistant: SELECT year_opened FROM table_name_44 WHERE arena_venue = "san agustin gym"
###context:CREATE TABLE table_name_10 (player VARCHAR, total VARCHAR, to_par VARCHAR) ###human: Which player has a total bigger than 285 and a to par of +14? ###assistant: SELECT player FROM table_name_10 WHERE total > 285 AND to_par = "+14"
###context:CREATE TABLE table_name_61 (total INTEGER, finish VARCHAR) ###human: What is the highest total with a t12 finish? ###assistant: SELECT MAX(total) FROM table_name_61 WHERE finish = "t12"
###context:CREATE TABLE table_name_98 (country VARCHAR, finish VARCHAR) ###human: Which country has a finish of t4? ###assistant: SELECT country FROM table_name_98 WHERE finish = "t4"
###context:CREATE TABLE table_name_71 (year_s__won VARCHAR, total INTEGER) ###human: What year won has a total less than 281? ###assistant: SELECT year_s__won FROM table_name_71 WHERE total < 281
###context:CREATE TABLE table_name_96 (chassis VARCHAR, rank VARCHAR) ###human: Which chassis is ranked 24th? ###assistant: SELECT chassis FROM table_name_96 WHERE rank = "24th"
###context:CREATE TABLE table_name_94 (chassis VARCHAR, year VARCHAR) ###human: Which chassis was made in 1993? ###assistant: SELECT chassis FROM table_name_94 WHERE year = 1993
###context:CREATE TABLE table_name_53 (team VARCHAR, year INTEGER) ###human: Which team is from earlier than 1994? ###assistant: SELECT team FROM table_name_53 WHERE year < 1994
###context:CREATE TABLE table_name_4 (rank VARCHAR, year INTEGER) ###human: What rank is later than 1994? ###assistant: SELECT rank FROM table_name_4 WHERE year > 1994
###context:CREATE TABLE table_name_66 (year INTEGER, team VARCHAR, points VARCHAR) ###human: What year did the King team have fewer than 10 points? ###assistant: SELECT AVG(year) FROM table_name_66 WHERE team = "king" AND points < 10
###context:CREATE TABLE table_name_42 (points INTEGER, engine VARCHAR, team VARCHAR) ###human: What are the average points for the Project Indy team that has the Ford xb engine? ###assistant: SELECT AVG(points) FROM table_name_42 WHERE engine = "ford xb" AND team = "project indy"
###context:CREATE TABLE table_name_92 (became_consort VARCHAR, marriage VARCHAR) ###human: Name the became consort for marriage of 4 april 1721 ###assistant: SELECT became_consort FROM table_name_92 WHERE marriage = "4 april 1721"
###context:CREATE TABLE table_name_55 (birth VARCHAR, spouse VARCHAR, became_consort VARCHAR) ###human: Name the birth of the person that has a spouse of frederick iv and became consort of 4 april 1721 ###assistant: SELECT birth FROM table_name_55 WHERE spouse = "frederick iv" AND became_consort = "4 april 1721"
###context:CREATE TABLE table_name_14 (became_consort VARCHAR, ceased_to_be_consort VARCHAR) ###human: Name the became consort for ceased to be consort of 4 april 1588 husband's death ###assistant: SELECT became_consort FROM table_name_14 WHERE ceased_to_be_consort = "4 april 1588 husband's death"
###context:CREATE TABLE table_name_74 (marriage VARCHAR, spouse VARCHAR) ###human: Name the marriage of the person who is married for christian viii ###assistant: SELECT marriage FROM table_name_74 WHERE spouse = "christian viii"
###context:CREATE TABLE table_name_11 (team VARCHAR, points VARCHAR, class VARCHAR) ###human: Who has 48 points in the class of 500 cc? ###assistant: SELECT team FROM table_name_11 WHERE points = 48 AND class = "500 cc"
###context:CREATE TABLE table_name_43 (wins VARCHAR, team VARCHAR, year VARCHAR) ###human: How many wins does Benelli have before 1962? ###assistant: SELECT COUNT(wins) FROM table_name_43 WHERE team = "benelli" AND year < 1962
###context:CREATE TABLE table_name_18 (natural_wood_keyboard VARCHAR, model VARCHAR) ###human: Which is Natural Wood Keyboard with a Model of clps306? ###assistant: SELECT natural_wood_keyboard FROM table_name_18 WHERE model = "clps306"
###context:CREATE TABLE table_name_44 (graded_hammer__non_gh3_ VARCHAR, model VARCHAR) ###human: Which Graded Hammer (Non GH3) has a Model of cvp501? ###assistant: SELECT graded_hammer__non_gh3_ FROM table_name_44 WHERE model = "cvp501"
###context:CREATE TABLE table_name_21 (natural_wood_keyboard VARCHAR, model VARCHAR) ###human: Which Natural Wood Keyboard has a CLP380 ? ###assistant: SELECT natural_wood_keyboard FROM table_name_21 WHERE model = "clp380"
###context:CREATE TABLE table_name_20 (graded_hammer_three__gh3_ VARCHAR, model VARCHAR) ###human: Which Graded Hammer Three (GH3) shows Model of clp320? ###assistant: SELECT graded_hammer_three__gh3_ FROM table_name_20 WHERE model = "clp320"
###context:CREATE TABLE table_name_19 (date VARCHAR, name VARCHAR) ###human: What was the date for the French Grand Prix? ###assistant: SELECT date FROM table_name_19 WHERE name = "french grand prix"
###context:CREATE TABLE table_name_31 (name VARCHAR, circuit VARCHAR) ###human: What was the name for the race in the Miramas circuit? ###assistant: SELECT name FROM table_name_31 WHERE circuit = "miramas"
###context:CREATE TABLE table_name_44 (circuit VARCHAR, winning_constructor VARCHAR) ###human: Which circuit was Delage the winning constructor for? ###assistant: SELECT circuit FROM table_name_44 WHERE winning_constructor = "delage"
###context:CREATE TABLE table_name_51 (name VARCHAR, winning_constructor VARCHAR, circuit VARCHAR) ###human: What is the name for the Monza circuit race were Bugatti was the winning constructor? ###assistant: SELECT name FROM table_name_51 WHERE winning_constructor = "bugatti" AND circuit = "monza"
###context:CREATE TABLE table_name_79 (report VARCHAR, winning_drivers VARCHAR) ###human: Which report shows that Frank Lockhart was a winning driver? ###assistant: SELECT report FROM table_name_79 WHERE winning_drivers = "frank lockhart"
###context:CREATE TABLE table_name_25 (ranking VARCHAR, gold VARCHAR, event VARCHAR) ###human: What Ranking has Gold less than 20 and the Event 1976 Toronto? ###assistant: SELECT ranking FROM table_name_25 WHERE gold < 20 AND event = "1976 toronto"
###context:CREATE TABLE table_name_40 (gold VARCHAR, silver VARCHAR, total VARCHAR) ###human: What Gold has a Silver greater than 30 and a Total less than 107? ###assistant: SELECT gold FROM table_name_40 WHERE silver > 30 AND total < 107
###context:CREATE TABLE table_name_27 (bronze INTEGER, event VARCHAR, total VARCHAR) ###human: What is the highest Bronze with the Event 1972 Heidelberg and Total less than 5? ###assistant: SELECT MAX(bronze) FROM table_name_27 WHERE event = "1972 heidelberg" AND total < 5
###context:CREATE TABLE table_name_21 (total INTEGER, event VARCHAR, gold VARCHAR) ###human: What is the Total with the Event 2004 Athens and Gold less than 20? ###assistant: SELECT SUM(total) FROM table_name_21 WHERE event = "2004 athens" AND gold < 20
###context:CREATE TABLE table_name_2 (bronze INTEGER, ranking VARCHAR, gold VARCHAR) ###human: What is the lowest Bronze with a Ranking of 22nd of 32 and Gold larger than 4? ###assistant: SELECT MIN(bronze) FROM table_name_2 WHERE ranking = "22nd of 32" AND gold > 4
###context:CREATE TABLE table_name_91 (polling_firm VARCHAR, t_papadopoulos VARCHAR) ###human: Which polling firm put T. Papadopoulos at 31%? ###assistant: SELECT polling_firm FROM table_name_91 WHERE t_papadopoulos = "31%"
###context:CREATE TABLE table_name_85 (t_papadopoulos VARCHAR, i_kasoulidis VARCHAR) ###human: What was the percentage for T. Papadopoulos when I. Kasoulidis was 27.1%? ###assistant: SELECT t_papadopoulos FROM table_name_85 WHERE i_kasoulidis = "27.1%"
###context:CREATE TABLE table_name_65 (k_themistokleous VARCHAR, i_kasoulidis VARCHAR) ###human: What was the percentage for K. Themistokleous when I. Kasoulidis was 30.1%? ###assistant: SELECT k_themistokleous FROM table_name_65 WHERE i_kasoulidis = "30.1%"
###context:CREATE TABLE table_name_48 (t_papadopoulos VARCHAR, d_christofias VARCHAR) ###human: What was the percentage for T. Papadopoulos when D. Christofias was 28.4%? ###assistant: SELECT t_papadopoulos FROM table_name_48 WHERE d_christofias = "28.4%"
###context:CREATE TABLE table_name_93 (tournament VARCHAR) ###human: Which tournament has a 2007 of 2r, and a 2011 of 2r? ###assistant: SELECT tournament FROM table_name_93 WHERE 2007 = "2r" AND 2011 = "2r"
###context:CREATE TABLE table_name_47 (titles INTEGER, city VARCHAR, rank VARCHAR) ###human: What is the number of titles for the city of gyΕ‘r with a rank larger than 4? ###assistant: SELECT SUM(titles) FROM table_name_47 WHERE city = "gyΕ‘r" AND rank > 4
###context:CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR, date VARCHAR) ###human: What is the Score of the Toronto Maple Leafs home game on February 1? ###assistant: SELECT score FROM table_name_99 WHERE home = "toronto maple leafs" AND date = "february 1"
###context:CREATE TABLE table_name_92 (score VARCHAR, visitor VARCHAR, date VARCHAR) ###human: What is the score of the Boston Bruins away game on March 13? ###assistant: SELECT score FROM table_name_92 WHERE visitor = "boston bruins" AND date = "march 13"
###context:CREATE TABLE table_name_93 (visitor VARCHAR, record VARCHAR) ###human: What visiting team has a record of 9–5–2? ###assistant: SELECT visitor FROM table_name_93 WHERE record = "9–5–2"
###context:CREATE TABLE table_name_98 (score VARCHAR, record VARCHAR) ###human: What is the score of the game with a record of 12–8–3? ###assistant: SELECT score FROM table_name_98 WHERE record = "12–8–3"
###context:CREATE TABLE table_name_77 (date VARCHAR, home VARCHAR, record VARCHAR) ###human: What is the date that the Montreal Canadiens hosted a game with a record of 14–11–3? ###assistant: SELECT date FROM table_name_77 WHERE home = "montreal canadiens" AND record = "14–11–3"
###context:CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR) ###human: What is the country of Craig Stadler? ###assistant: SELECT country FROM table_name_65 WHERE player = "craig stadler"
###context:CREATE TABLE table_name_49 (total INTEGER, player VARCHAR, country VARCHAR, to_par VARCHAR) ###human: What is the average total of Gay Brewer from the United States with a to par of 9? ###assistant: SELECT AVG(total) FROM table_name_49 WHERE country = "united states" AND to_par = 9 AND player = "gay brewer"
###context:CREATE TABLE table_name_36 (finish VARCHAR, country VARCHAR) ###human: What was the finish by the player from West Germany? ###assistant: SELECT finish FROM table_name_36 WHERE country = "west germany"
###context:CREATE TABLE table_name_45 (goal INTEGER, competition VARCHAR) ###human: What is the smallest goal during the 2006 fifa world cup qualification competition? ###assistant: SELECT MIN(goal) FROM table_name_45 WHERE competition = "2006 fifa world cup qualification"
###context:CREATE TABLE table_name_76 (representative VARCHAR, party VARCHAR) ###human: Name the representative for party of whig ###assistant: SELECT representative FROM table_name_76 WHERE party = "whig"
###context:CREATE TABLE table_name_85 (year VARCHAR, chassis VARCHAR, points VARCHAR) ###human: Name the total number of years for chassis of maserati 250f and points less than 0 ###assistant: SELECT COUNT(year) FROM table_name_85 WHERE chassis = "maserati 250f" AND points < 0
###context:CREATE TABLE table_name_8 (engine VARCHAR, year VARCHAR, chassis VARCHAR, entrant VARCHAR) ###human: Name the engine with chassis of maserati 250f and entrant of luigi piotti with year less than 1957 ###assistant: SELECT engine FROM table_name_8 WHERE chassis = "maserati 250f" AND entrant = "luigi piotti" AND year < 1957
###context:CREATE TABLE table_name_80 (points INTEGER, chassis VARCHAR, entrant VARCHAR) ###human: Name the sum of points for chassis of maserati 250f and entrant of officine alfieri maserati ###assistant: SELECT SUM(points) FROM table_name_80 WHERE chassis = "maserati 250f" AND entrant = "officine alfieri maserati"
###context:CREATE TABLE table_name_7 (points INTEGER, entrant VARCHAR) ###human: Name the lowest points for officine alfieri maserati ###assistant: SELECT MIN(points) FROM table_name_7 WHERE entrant = "officine alfieri maserati"
###context:CREATE TABLE table_name_36 (height VARCHAR, players VARCHAR) ###human: How tall is Ye Fei? ###assistant: SELECT height FROM table_name_36 WHERE players = "ye fei"
###context:CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR) ###human: What is the attendance of the game on July 26? ###assistant: SELECT SUM(attendance) FROM table_name_1 WHERE date = "july 26"
###context:CREATE TABLE table_name_21 (year VARCHAR, venue VARCHAR, result VARCHAR) ###human: How many years did the team place 2nd in Antwerp, Belgium? ###assistant: SELECT COUNT(year) FROM table_name_21 WHERE venue = "antwerp, belgium" AND result = "2nd"
###context:CREATE TABLE table_name_23 (venue VARCHAR, year INTEGER) ###human: What is the name of the venue that was used before 1991? ###assistant: SELECT venue FROM table_name_23 WHERE year < 1991
###context:CREATE TABLE table_name_30 (year VARCHAR, result VARCHAR, venue VARCHAR) ###human: How many years did the team place 2nd in Auckland, New Zealand? ###assistant: SELECT COUNT(year) FROM table_name_30 WHERE result = "2nd" AND venue = "auckland, new zealand"
###context:CREATE TABLE table_name_57 (started_round VARCHAR, last_match VARCHAR) ###human: What was the started round for the competition that had the last match on January 16, 2008? ###assistant: SELECT started_round FROM table_name_57 WHERE last_match = "january 16, 2008"
###context:CREATE TABLE table_name_81 (first_match VARCHAR, last_match VARCHAR) ###human: On what date was the first match for the competition that ended its last match on December 16, 2007? ###assistant: SELECT first_match FROM table_name_81 WHERE last_match = "december 16, 2007"
###context:CREATE TABLE table_name_66 (competition VARCHAR, final_position VARCHAR, final_round VARCHAR) ###human: What competition had a final round in the finals and the final position winners? ###assistant: SELECT competition FROM table_name_66 WHERE final_position = "winners" AND final_round = "finals"
###context:CREATE TABLE table_name_35 (first_match VARCHAR, final_position VARCHAR, final_round VARCHAR) ###human: On what date did the first match occur for the competition that ended with a final position of winners and the final round in the finals? ###assistant: SELECT first_match FROM table_name_35 WHERE final_position = "winners" AND final_round = "finals"
###context:CREATE TABLE table_name_15 (competition VARCHAR, first_match VARCHAR) ###human: What competition had its first match on December 20, 2007? ###assistant: SELECT competition FROM table_name_15 WHERE first_match = "december 20, 2007"
###context:CREATE TABLE table_name_6 (first_match VARCHAR, final_position VARCHAR, competition VARCHAR) ###human: What was the date of the first match of the Fifa Club World Cup that ended with the final position as winners? ###assistant: SELECT first_match FROM table_name_6 WHERE final_position = "winners" AND competition = "fifa club world cup"
###context:CREATE TABLE table_name_49 (laps VARCHAR, qual VARCHAR) ###human: What was Len Sutton's total number of completed laps when his qualifying time was 142.653? ###assistant: SELECT COUNT(laps) FROM table_name_49 WHERE qual = "142.653"
###context:CREATE TABLE table_name_81 (call_sign VARCHAR, frequency_mhz VARCHAR) ###human: What call sign has a frequency of 91.3 MHz? ###assistant: SELECT call_sign FROM table_name_81 WHERE frequency_mhz = 91.3
###context:CREATE TABLE table_name_82 (city_of_license VARCHAR, call_sign VARCHAR) ###human: What city of license has a value of k293bg for its call sign? ###assistant: SELECT city_of_license FROM table_name_82 WHERE call_sign = "k293bg"
###context:CREATE TABLE table_name_77 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR) ###human: When the frequency is 103.7 MHz and the ERP W is more than 10, what is the call sign? ###assistant: SELECT call_sign FROM table_name_77 WHERE erp_w > 10 AND frequency_mhz = 103.7
###context:CREATE TABLE table_name_21 (frequency_mhz INTEGER, city_of_license VARCHAR, erp_w VARCHAR) ###human: In Los Banos, California, when the ERP W is than 10, what is the average Frequency MHz? ###assistant: SELECT AVG(frequency_mhz) FROM table_name_21 WHERE city_of_license = "los banos, california" AND erp_w < 10
###context:CREATE TABLE table_name_16 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) ###human: What is the call sign when the frequency is less than 95.5 MHz, and a ERP W is higher than 10? ###assistant: SELECT call_sign FROM table_name_16 WHERE frequency_mhz < 95.5 AND erp_w > 10
###context:CREATE TABLE table_name_12 (player VARCHAR, score VARCHAR) ###human: Name the player with score of 73-69-74-71=287 ###assistant: SELECT player FROM table_name_12 WHERE score = 73 - 69 - 74 - 71 = 287
###context:CREATE TABLE table_name_26 (to_par INTEGER, score VARCHAR) ###human: Name the sum To par for score of 71-74-71-72=288 ###assistant: SELECT SUM(to_par) FROM table_name_26 WHERE score = 71 - 74 - 71 - 72 = 288
###context:CREATE TABLE table_name_95 (tournament VARCHAR, opponent VARCHAR) ###human: Tell me the tournament for kathy horvath opponent ###assistant: SELECT tournament FROM table_name_95 WHERE opponent = "kathy horvath"
###context:CREATE TABLE table_name_59 (date VARCHAR, opponent VARCHAR, surface VARCHAR, tournament VARCHAR) ###human: Name the date for hard surface at maybelline classic with opponent of wendy turnbull ###assistant: SELECT date FROM table_name_59 WHERE surface = "hard" AND tournament = "maybelline classic" AND opponent = "wendy turnbull"