combined_text
stringlengths
106
1.05k
###question:What is the Game on April 13 with Road Team St. Louis?###answer:SELECT game FROM table_name_16 WHERE road_team = "st. louis" AND date = "april 13"###context:CREATE TABLE table_name_16 (game VARCHAR, road_team VARCHAR, date VARCHAR)
###question:What is the Home Team in the game with a Result of 124-109?###answer:SELECT home_team FROM table_name_48 WHERE result = "124-109"###context:CREATE TABLE table_name_48 (home_team VARCHAR, result VARCHAR)
###question:What is the Home Team on April 13 with a Road Team of St. Louis?###answer:SELECT home_team FROM table_name_8 WHERE road_team = "st. louis" AND date = "april 13"###context:CREATE TABLE table_name_8 (home_team VARCHAR, road_team VARCHAR, date VARCHAR)
###question:What is Score, when Date is greater than 7, and when Game is "82"?###answer:SELECT score FROM table_name_29 WHERE date > 7 AND game = 82###context:CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR, game VARCHAR)
###question:What is Opponent, when Location/Attendance is "Mellon Arena - 17,132"?###answer:SELECT opponent FROM table_name_67 WHERE location_attendance = "mellon arena - 17,132"###context:CREATE TABLE table_name_67 (opponent VARCHAR, location_attendance VARCHAR)
###question:What is Score, when Game is greater than 78, and when Date is "4"?###answer:SELECT score FROM table_name_31 WHERE game > 78 AND date = 4###context:CREATE TABLE table_name_31 (score VARCHAR, game VARCHAR, date VARCHAR)
###question:What is Score, when Opponent is "Tampa Bay Lightning"?###answer:SELECT score FROM table_name_13 WHERE opponent = "tampa bay lightning"###context:CREATE TABLE table_name_13 (score VARCHAR, opponent VARCHAR)
###question:What is Location/Attendance, when Score is "4-5 (OT)"?###answer:SELECT location_attendance FROM table_name_2 WHERE score = "4-5 (ot)"###context:CREATE TABLE table_name_2 (location_attendance VARCHAR, score VARCHAR)
###question:What driving wheels are on the m1 original NER class?###answer:SELECT driving_wheels FROM table_name_8 WHERE original_ner_class = "m1"###context:CREATE TABLE table_name_8 (driving_wheels VARCHAR, original_ner_class VARCHAR)
###question:What is the 1914 NER class with a d17/2 LNER class?###answer:SELECT 1914 AS _ner_class FROM table_name_78 WHERE lner_class = "d17/2"###context:CREATE TABLE table_name_78 (lner_class VARCHAR)
###question:What was Lew Worsham's score?###answer:SELECT score FROM table_name_53 WHERE player = "lew worsham"###context:CREATE TABLE table_name_53 (score VARCHAR, player VARCHAR)
###question:Which Points have a Time/Retired of +49.222 secs?###answer:SELECT MAX(points) FROM table_name_5 WHERE time_retired = "+49.222 secs"###context:CREATE TABLE table_name_5 (points INTEGER, time_retired VARCHAR)
###question:What are grid 4's average points?###answer:SELECT AVG(points) FROM table_name_25 WHERE grid = 4###context:CREATE TABLE table_name_25 (points INTEGER, grid VARCHAR)
###question:Who was the owner of Give a Toast after 1985?###answer:SELECT owner FROM table_name_43 WHERE year > 1985 AND winner = "give a toast"###context:CREATE TABLE table_name_43 (owner VARCHAR, year VARCHAR, winner VARCHAR)
###question:What is the earliest year Stuart Janney III was an owner?###answer:SELECT MIN(year) FROM table_name_10 WHERE owner = "stuart janney iii"###context:CREATE TABLE table_name_10 (year INTEGER, owner VARCHAR)
###question:Who was the winner after 1989 when Stronach Stable was the owner?###answer:SELECT winner FROM table_name_41 WHERE year > 1989 AND owner = "stronach stable"###context:CREATE TABLE table_name_41 (winner VARCHAR, year VARCHAR, owner VARCHAR)
###question:Who was the trainer when Mckaymackenna won?###answer:SELECT trainer FROM table_name_3 WHERE winner = "mckaymackenna"###context:CREATE TABLE table_name_3 (trainer VARCHAR, winner VARCHAR)
###question:What Tunnel has an Imperial Length of 307 yd?###answer:SELECT tunnel FROM table_name_38 WHERE length__imperial_ = "307 yd"###context:CREATE TABLE table_name_38 (tunnel VARCHAR, length__imperial_ VARCHAR)
###question:What Type of Tunnel is the Downhill Tunnel?###answer:SELECT type FROM table_name_78 WHERE tunnel = "downhill"###context:CREATE TABLE table_name_78 (type VARCHAR, tunnel VARCHAR)
###question:What did United States score in the place t6?###answer:SELECT score FROM table_name_21 WHERE country = "united states" AND place = "t6"###context:CREATE TABLE table_name_21 (score VARCHAR, country VARCHAR, place VARCHAR)
###question:Which country has the player Ted Schulz?###answer:SELECT country FROM table_name_41 WHERE player = "ted schulz"###context:CREATE TABLE table_name_41 (country VARCHAR, player VARCHAR)
###question:Which country scored 69-67-69-70=275?###answer:SELECT country FROM table_name_22 WHERE score = 69 - 67 - 69 - 70 = 275###context:CREATE TABLE table_name_22 (country VARCHAR, score VARCHAR)
###question:What is the Date, when Game is 17?###answer:SELECT date FROM table_name_69 WHERE game = 17###context:CREATE TABLE table_name_69 (date VARCHAR, game VARCHAR)
###question:What day was the away team Cardiff City?###answer:SELECT date FROM table_name_97 WHERE away_team = "cardiff city"###context:CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR)
###question:What home team had an away team of Aston Villa?###answer:SELECT home_team FROM table_name_33 WHERE away_team = "aston villa"###context:CREATE TABLE table_name_33 (home_team VARCHAR, away_team VARCHAR)
###question:What was the score when York City was home?###answer:SELECT score FROM table_name_89 WHERE home_team = "york city"###context:CREATE TABLE table_name_89 (score VARCHAR, home_team VARCHAR)
###question:If the player is Corey Pavin when he had a To par of over 7, what was the sum of his totals?###answer:SELECT SUM(total) FROM table_name_77 WHERE to_par > 7 AND player = "corey pavin"###context:CREATE TABLE table_name_77 (total INTEGER, to_par VARCHAR, player VARCHAR)
###question:What is the round for the ufc on fox: velasquez vs. dos santos event?###answer:SELECT AVG(round) FROM table_name_8 WHERE event = "ufc on fox: velasquez vs. dos santos"###context:CREATE TABLE table_name_8 (round INTEGER, event VARCHAR)
###question:Where was the game played when 71,060 people attended?###answer:SELECT game_site FROM table_name_31 WHERE attendance = "71,060"###context:CREATE TABLE table_name_31 (game_site VARCHAR, attendance VARCHAR)
###question:When the game was played at Mile High Stadium before week 9, what was the result?###answer:SELECT result FROM table_name_87 WHERE week < 9 AND game_site = "mile high stadium"###context:CREATE TABLE table_name_87 (result VARCHAR, week VARCHAR, game_site VARCHAR)
###question:Against the Houston Oilers after week 14, what was the result of the game?###answer:SELECT result FROM table_name_64 WHERE week > 14 AND opponent = "houston oilers"###context:CREATE TABLE table_name_64 (result VARCHAR, week VARCHAR, opponent VARCHAR)
###question:What player has +3 to par and score of 75-72=147?###answer:SELECT player FROM table_name_23 WHERE to_par = "+3" AND score = 75 - 72 = 147###context:CREATE TABLE table_name_23 (player VARCHAR, to_par VARCHAR, score VARCHAR)
###question:What is the country that the player is from with +3 to par and score of 74-73=147?###answer:SELECT country FROM table_name_30 WHERE to_par = "+3" AND score = 74 - 73 = 147###context:CREATE TABLE table_name_30 (country VARCHAR, to_par VARCHAR, score VARCHAR)
###question:What player has +2 to par?###answer:SELECT player FROM table_name_29 WHERE to_par = "+2"###context:CREATE TABLE table_name_29 (player VARCHAR, to_par VARCHAR)
###question:Name the Team which has a Time/Retired of contact, and a Grid smaller than 17?###answer:SELECT team FROM table_name_87 WHERE time_retired = "contact" AND grid < 17###context:CREATE TABLE table_name_87 (team VARCHAR, time_retired VARCHAR, grid VARCHAR)
###question:What is the average Bronze, when Nation is "North Korea", and when Total is greater than 5?###answer:SELECT AVG(bronze) FROM table_name_53 WHERE nation = "north korea" AND total > 5###context:CREATE TABLE table_name_53 (bronze INTEGER, nation VARCHAR, total VARCHAR)
###question:What is the lowest Bronze, when Total is greater than 10, when Silver is greater than 0, and when Rank is "Total"?###answer:SELECT MIN(bronze) FROM table_name_83 WHERE "total" > 10 AND silver > 0 AND rank = "total"###context:CREATE TABLE table_name_83 (bronze INTEGER, rank VARCHAR, silver VARCHAR)
###question:What is Rank, when Silver is less than 6, when Bronze is greater than 4, and when Total is 10?###answer:SELECT rank FROM table_name_29 WHERE silver < 6 AND bronze > 4 AND total = 10###context:CREATE TABLE table_name_29 (rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)
###question:What is Gold, when Rank is 7?###answer:SELECT gold FROM table_name_38 WHERE rank = "7"###context:CREATE TABLE table_name_38 (gold VARCHAR, rank VARCHAR)
###question:what is the surface on july 26, 2010?###answer:SELECT surface FROM table_name_15 WHERE date = "july 26, 2010"###context:CREATE TABLE table_name_15 (surface VARCHAR, date VARCHAR)
###question:what is the tournament on august 17, 2008?###answer:SELECT tournament FROM table_name_14 WHERE date = "august 17, 2008"###context:CREATE TABLE table_name_14 (tournament VARCHAR, date VARCHAR)
###question:who is the opponent when the score is 7–5, 7–6 (8–6)?###answer:SELECT opponent FROM table_name_86 WHERE score = "7–5, 7–6 (8–6)"###context:CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR)
###question:what is the tournament on july 23, 2006?###answer:SELECT tournament FROM table_name_11 WHERE date = "july 23, 2006"###context:CREATE TABLE table_name_11 (tournament VARCHAR, date VARCHAR)
###question:what is the score when the opponent is fernando vicente?###answer:SELECT score FROM table_name_9 WHERE opponent = "fernando vicente"###context:CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)
###question:who is the opponent when the score is 3–6, 6–1, 7–5?###answer:SELECT opponent FROM table_name_22 WHERE score = "3–6, 6–1, 7–5"###context:CREATE TABLE table_name_22 (opponent VARCHAR, score VARCHAR)
###question:What is Scott Hoch's to par?###answer:SELECT to_par FROM table_name_33 WHERE player = "scott hoch"###context:CREATE TABLE table_name_33 (to_par VARCHAR, player VARCHAR)
###question:What place is Nolan Henke in?###answer:SELECT place FROM table_name_10 WHERE player = "nolan henke"###context:CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR)
###question:What is the vote total for elections after 2001 with 44.5% participation?###answer:SELECT total_votes FROM table_name_29 WHERE election > 2001 AND share_of_votes = "44.5%"###context:CREATE TABLE table_name_29 (total_votes VARCHAR, election VARCHAR, share_of_votes VARCHAR)
###question:What is the most league cup goals for David Beresford having less than 0 FA Cup Goals?###answer:SELECT MAX(league_cup_goals) FROM table_name_62 WHERE name = "david beresford" AND fa_cup_goals < 0###context:CREATE TABLE table_name_62 (league_cup_goals INTEGER, name VARCHAR, fa_cup_goals VARCHAR)
###question:What is the league goals when the league cup goals is less than 0 and 16 (1) league apps?###answer:SELECT AVG(league_goals) FROM table_name_95 WHERE league_apps = "16 (1)" AND league_cup_goals < 0###context:CREATE TABLE table_name_95 (league_goals INTEGER, league_apps VARCHAR, league_cup_goals VARCHAR)
###question:What is the league cup apps when the league goals are greater than 3, there are 30 (2) total apps, and has a position of mf?###answer:SELECT league_cup_apps FROM table_name_13 WHERE position = "mf" AND league_goals > 3 AND total_apps = "30 (2)"###context:CREATE TABLE table_name_13 (league_cup_apps VARCHAR, ...
###question:What is the FA Cup App for Squad Number 3 having fewer than 4 league goals?###answer:SELECT fa_cup_apps FROM table_name_53 WHERE league_goals < 4 AND squad_no = 3###context:CREATE TABLE table_name_53 (fa_cup_apps VARCHAR, league_goals VARCHAR, squad_no VARCHAR)
###question:What is the lowest FA cup with 1 league cup, less than 12 total and 1 premier league?###answer:SELECT MIN(fa_cup) FROM table_name_17 WHERE league_cup = 1 AND total < 12 AND premier_league = 1###context:CREATE TABLE table_name_17 (fa_cup INTEGER, premier_league VARCHAR, league_cup VARCHAR, total VARCHAR)
###question:What is the highest league cup with more than 0 FA cups, a premier league less than 34 and a total of 11?###answer:SELECT MAX(league_cup) FROM table_name_77 WHERE fa_cup > 0 AND premier_league < 34 AND total = 11###context:CREATE TABLE table_name_77 (league_cup INTEGER, total VARCHAR, fa_cup VARCHAR, premie...
###question:What is the average total of kenwyne jones, who has more than 10 premier leagues?###answer:SELECT AVG(total) FROM table_name_43 WHERE name = "kenwyne jones" AND premier_league > 10###context:CREATE TABLE table_name_43 (total INTEGER, name VARCHAR, premier_league VARCHAR)
###question:What is the highest league cup of danny collins, who has more than 1 premier league?###answer:SELECT MAX(league_cup) FROM table_name_97 WHERE name = "danny collins" AND premier_league > 1###context:CREATE TABLE table_name_97 (league_cup INTEGER, name VARCHAR, premier_league VARCHAR)
###question:Who had the high assists in the game less than 19?###answer:SELECT high_assists FROM table_name_5 WHERE game < 19###context:CREATE TABLE table_name_5 (high_assists VARCHAR, game INTEGER)
###question:Who had the high rebounds in Philips Arena 12,088?###answer:SELECT high_rebounds FROM table_name_17 WHERE location_attendance = "philips arena 12,088"###context:CREATE TABLE table_name_17 (high_rebounds VARCHAR, location_attendance VARCHAR)
###question:Who had the high points when the score was w 108–105 (ot)?###answer:SELECT high_points FROM table_name_59 WHERE score = "w 108–105 (ot)"###context:CREATE TABLE table_name_59 (high_points VARCHAR, score VARCHAR)
###question:What was the competition on 29 November 1997 that resulted in a draw?###answer:SELECT competition FROM table_name_97 WHERE result = "draw" AND date = "29 november 1997"###context:CREATE TABLE table_name_97 (competition VARCHAR, result VARCHAR, date VARCHAR)
###question:What is the average Area (in km²), when Markatal is less than 0?###answer:SELECT AVG(area__in_km²_) FROM table_name_81 WHERE markatal < 0###context:CREATE TABLE table_name_81 (area__in_km²_ INTEGER, markatal INTEGER)
###question:What is the highest Markatal, when Municipality is Leirvík, and when Inhabitants Per Km² is greater than 79?###answer:SELECT MAX(markatal) FROM table_name_69 WHERE municipality = "leirvík" AND inhabitants_per_km² > 79###context:CREATE TABLE table_name_69 (markatal INTEGER, municipality VARCHAR, inhabitants_...
###question:What is the sum of Population, when Markatal is greater than 48, when Inhabitants Per Km² is greater than 24, and when Municipality is Runavík?###answer:SELECT SUM(population) FROM table_name_57 WHERE markatal > 48 AND inhabitants_per_km² > 24 AND municipality = "runavík"###context:CREATE TABLE table_name_5...
###question:What is the sum of Markatal, when Inhabitants Per Km² is less than 13, and when Area (in Km²) is 27?###answer:SELECT SUM(markatal) FROM table_name_47 WHERE inhabitants_per_km² < 13 AND area__in_km²_ = 27###context:CREATE TABLE table_name_47 (markatal INTEGER, inhabitants_per_km² VARCHAR, area__in_km²_ VARCH...
###question:How many seasons have Losses larger than 1, and a Competition of fiba europe cup, and Wins smaller than 4?###answer:SELECT COUNT(season) FROM table_name_53 WHERE loses > 1 AND competition = "fiba europe cup" AND wins < 4###context:CREATE TABLE table_name_53 (season VARCHAR, wins VARCHAR, loses VARCHAR, comp...
###question:How many Wins have Losses larger than 2, and an Against of 73.3?###answer:SELECT SUM(wins) FROM table_name_26 WHERE loses > 2 AND against = "73.3"###context:CREATE TABLE table_name_26 (wins INTEGER, loses VARCHAR, against VARCHAR)
###question:In what Year was the Game on September 26?###answer:SELECT SUM(year) FROM table_name_54 WHERE date = "september 26"###context:CREATE TABLE table_name_54 (year INTEGER, date VARCHAR)
###question:What was the Loser of the Game with a Result of 35-27?###answer:SELECT loser FROM table_name_32 WHERE result = "35-27"###context:CREATE TABLE table_name_32 (loser VARCHAR, result VARCHAR)
###question:In what Year was the Result of the game 16-14?###answer:SELECT MAX(year) FROM table_name_81 WHERE result = "16-14"###context:CREATE TABLE table_name_81 (year INTEGER, result VARCHAR)
###question:What Year had a Result of 34-25?###answer:SELECT AVG(year) FROM table_name_44 WHERE result = "34-25"###context:CREATE TABLE table_name_44 (year INTEGER, result VARCHAR)
###question:What is the Winner of the Game on November 26?###answer:SELECT winner FROM table_name_7 WHERE date = "november 26"###context:CREATE TABLE table_name_7 (winner VARCHAR, date VARCHAR)
###question:What is the highest Position, when Pilot is "Mario Kiessling"?###answer:SELECT MAX(position) FROM table_name_66 WHERE pilot = "mario kiessling"###context:CREATE TABLE table_name_66 (position INTEGER, pilot VARCHAR)
###question:What is the average Position, when Speed is "143.5km/h"?###answer:SELECT AVG(position) FROM table_name_97 WHERE speed = "143.5km/h"###context:CREATE TABLE table_name_97 (position INTEGER, speed VARCHAR)
###question:What is Glider, when Speed is "147.3km/h"?###answer:SELECT glider FROM table_name_40 WHERE speed = "147.3km/h"###context:CREATE TABLE table_name_40 (glider VARCHAR, speed VARCHAR)
###question:What is Distance, when Pilot is "Stanislaw Wujczak"?###answer:SELECT distance FROM table_name_64 WHERE pilot = "stanislaw wujczak"###context:CREATE TABLE table_name_64 (distance VARCHAR, pilot VARCHAR)
###question:Who has a Jersey number of 31?###answer:SELECT player FROM table_name_84 WHERE jersey_number_s_ = "31"###context:CREATE TABLE table_name_84 (player VARCHAR, jersey_number_s_ VARCHAR)
###question:What was the position in 1999?###answer:SELECT position FROM table_name_58 WHERE years = "1999"###context:CREATE TABLE table_name_58 (position VARCHAR, years VARCHAR)
###question:What is the name of the away team with a Tie no of 7?###answer:SELECT away_team FROM table_name_40 WHERE tie_no = "7"###context:CREATE TABLE table_name_40 (away_team VARCHAR, tie_no VARCHAR)
###question:What is home team Chelsea's Tie no?###answer:SELECT tie_no FROM table_name_83 WHERE home_team = "chelsea"###context:CREATE TABLE table_name_83 (tie_no VARCHAR, home_team VARCHAR)
###question:What away team has a Tie no of 5?###answer:SELECT away_team FROM table_name_97 WHERE tie_no = "5"###context:CREATE TABLE table_name_97 (away_team VARCHAR, tie_no VARCHAR)
###question:Can you tell me the Score that has the Player of raymond floyd?###answer:SELECT score FROM table_name_76 WHERE player = "raymond floyd"###context:CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)
###question:Can you tell me the Player that has the Country of united states, and the Score of 77-72-72=221?###answer:SELECT player FROM table_name_68 WHERE country = "united states" AND score = 77 - 72 - 72 = 221###context:CREATE TABLE table_name_68 (player VARCHAR, country VARCHAR, score VARCHAR)
###question:Can you tell me the Score that has the Country of united states, and the To par of 8?###answer:SELECT score FROM table_name_45 WHERE country = "united states" AND to_par = 8###context:CREATE TABLE table_name_45 (score VARCHAR, country VARCHAR, to_par VARCHAR)
###question:What was the time when his opponent was Cleber Luciano?###answer:SELECT time FROM table_name_68 WHERE opponent = "cleber luciano"###context:CREATE TABLE table_name_68 (time VARCHAR, opponent VARCHAR)
###question:What was the method in round 1 of the UFC 20 event?###answer:SELECT method FROM table_name_87 WHERE round = 1 AND event = "ufc 20"###context:CREATE TABLE table_name_87 (method VARCHAR, round VARCHAR, event VARCHAR)
###question:What is Points, when Tries For is "correct as of 00:00 11 June 2008"?###answer:SELECT points FROM table_name_90 WHERE tries_for = "correct as of 00:00 11 june 2008"###context:CREATE TABLE table_name_90 (points VARCHAR, tries_for VARCHAR)
###question:What is Try Bonus, when Lost is "5", and when Points is "73"?###answer:SELECT try_bonus FROM table_name_52 WHERE lost = "5" AND points = "73"###context:CREATE TABLE table_name_52 (try_bonus VARCHAR, lost VARCHAR, points VARCHAR)
###question:What is Points, when Played is "20", and when Club is "Caldicot RFC"?###answer:SELECT points FROM table_name_64 WHERE played = "20" AND club = "caldicot rfc"###context:CREATE TABLE table_name_64 (points VARCHAR, played VARCHAR, club VARCHAR)
###question:What is Points, when Drawn is "1", and when Lost is "5"?###answer:SELECT points FROM table_name_67 WHERE drawn = "1" AND lost = "5"###context:CREATE TABLE table_name_67 (points VARCHAR, drawn VARCHAR, lost VARCHAR)
###question:What is Lost, when Points For is "257"?###answer:SELECT lost FROM table_name_11 WHERE points_for = "257"###context:CREATE TABLE table_name_11 (lost VARCHAR, points_for VARCHAR)
###question:What is Lost, when Losing Bonus is "3", and when Club is "Bettws RFC"?###answer:SELECT lost FROM table_name_64 WHERE losing_bonus = "3" AND club = "bettws rfc"###context:CREATE TABLE table_name_64 (lost VARCHAR, losing_bonus VARCHAR, club VARCHAR)
###question:What was the record when the visitor was Atlanta Hawks?###answer:SELECT record FROM table_name_90 WHERE visitor = "atlanta hawks"###context:CREATE TABLE table_name_90 (record VARCHAR, visitor VARCHAR)
###question:Who was the visitor when the score was 136–120?###answer:SELECT visitor FROM table_name_78 WHERE score = "136–120"###context:CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR)
###question:Who was the home when the visitor was New York Knicks?###answer:SELECT home FROM table_name_79 WHERE visitor = "new york knicks"###context:CREATE TABLE table_name_79 (home VARCHAR, visitor VARCHAR)
###question:When was the home Los Angeles Lakers?###answer:SELECT date FROM table_name_87 WHERE home = "los angeles lakers"###context:CREATE TABLE table_name_87 (date VARCHAR, home VARCHAR)
###question:Who was the visitor on december 15, 1976?###answer:SELECT visitor FROM table_name_94 WHERE date = "december 15, 1976"###context:CREATE TABLE table_name_94 (visitor VARCHAR, date VARCHAR)
###question:At Time Warner Cable Arena 12,096, what was the high points?###answer:SELECT high_points FROM table_name_85 WHERE location_attendance = "time warner cable arena 12,096"###context:CREATE TABLE table_name_85 (high_points VARCHAR, location_attendance VARCHAR)
###question:On November 2 what was the record of the team?###answer:SELECT record FROM table_name_27 WHERE date = "november 2"###context:CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR)
###question:Average frequency with ERP W of 62?###answer:SELECT AVG(frequency_mhz) FROM table_name_88 WHERE erp_w = "62"###context:CREATE TABLE table_name_88 (frequency_mhz INTEGER, erp_w VARCHAR)
###question:Total frequency with ERP W of 62?###answer:SELECT COUNT(frequency_mhz) FROM table_name_40 WHERE erp_w = "62"###context:CREATE TABLE table_name_40 (frequency_mhz VARCHAR, erp_w VARCHAR)