combined_text stringlengths 106 1.05k |
|---|
###question:what is the date when the opponent# is iowa?###answer:SELECT date FROM table_name_42 WHERE opponent_number = "iowa"###context:CREATE TABLE table_name_42 (date VARCHAR, opponent_number VARCHAR) |
###question:what is the date when the site is memorial stadium • minneapolis, mn, and the Attendance is 53,192?###answer:SELECT date FROM table_name_70 WHERE site = "memorial stadium • minneapolis, mn" AND attendance = "53,192"###context:CREATE TABLE table_name_70 (date VARCHAR, site VARCHAR, attendance VARCHAR) |
###question:What is the Attendance when the Result is l0-13?###answer:SELECT attendance FROM table_name_59 WHERE result = "l0-13"###context:CREATE TABLE table_name_59 (attendance VARCHAR, result VARCHAR) |
###question:What is the Site when the date is 11/11/1950?###answer:SELECT site FROM table_name_37 WHERE date = "11/11/1950"###context:CREATE TABLE table_name_37 (site VARCHAR, date VARCHAR) |
###question:What is the Date when the result is *non-conference game. #rankings from ap poll .?###answer:SELECT date FROM table_name_65 WHERE result = "*non-conference game. #rankings from ap poll ."###context:CREATE TABLE table_name_65 (date VARCHAR, result VARCHAR) |
###question:Which Player has a Round smaller than 5, and a School/Club Team of florida state?###answer:SELECT player FROM table_name_77 WHERE round < 5 AND school_club_team = "florida state"###context:CREATE TABLE table_name_77 (player VARCHAR, round VARCHAR, school_club_team VARCHAR) |
###question:Which School/Club Team has a Pick of 198?###answer:SELECT school_club_team FROM table_name_7 WHERE pick = 198###context:CREATE TABLE table_name_7 (school_club_team VARCHAR, pick VARCHAR) |
###question:Which Round has a School/Club Team of indiana, and a Pick smaller than 198?###answer:SELECT AVG(round) FROM table_name_85 WHERE school_club_team = "indiana" AND pick < 198###context:CREATE TABLE table_name_85 (round INTEGER, school_club_team VARCHAR, pick VARCHAR) |
###question:Which Round has a School/Club Team of north carolina, and a Pick larger than 131?###answer:SELECT COUNT(round) FROM table_name_84 WHERE school_club_team = "north carolina" AND pick > 131###context:CREATE TABLE table_name_84 (round VARCHAR, school_club_team VARCHAR, pick VARCHAR) |
###question:Which Round has a School/Club Team of cal-poly slo, and a Pick smaller than 238?###answer:SELECT MAX(round) FROM table_name_67 WHERE school_club_team = "cal-poly slo" AND pick < 238###context:CREATE TABLE table_name_67 (round INTEGER, school_club_team VARCHAR, pick VARCHAR) |
###question:What is the away team with a 5 tie no?###answer:SELECT away_team FROM table_name_66 WHERE tie_no = "5"###context:CREATE TABLE table_name_66 (away_team VARCHAR, tie_no VARCHAR) |
###question:What is the home team with scarborough as the away team?###answer:SELECT home_team FROM table_name_50 WHERE away_team = "scarborough"###context:CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR) |
###question:What is the date of tie no. 34?###answer:SELECT date FROM table_name_37 WHERE tie_no = "34"###context:CREATE TABLE table_name_37 (date VARCHAR, tie_no VARCHAR) |
###question:What is Michael Del Zotto's nationality?###answer:SELECT nationality FROM table_name_54 WHERE player = "michael del zotto"###context:CREATE TABLE table_name_54 (nationality VARCHAR, player VARCHAR) |
###question:What is the highest loss with points less than 7?###answer:SELECT MAX(lost) FROM table_name_16 WHERE points < 7###context:CREATE TABLE table_name_16 (lost INTEGER, points INTEGER) |
###question:What is the sum for the match with a draw less than 0?###answer:SELECT SUM(match) FROM table_name_73 WHERE draw < 0###context:CREATE TABLE table_name_73 (match INTEGER, draw INTEGER) |
###question:What is the lowest points for a match before 14?###answer:SELECT MIN(points) FROM table_name_88 WHERE match > 14###context:CREATE TABLE table_name_88 (points INTEGER, match INTEGER) |
###question:How many points were there when there were less than 16 rebounds and 5 assists?###answer:SELECT COUNT(points) FROM table_name_83 WHERE assists = 5 AND rebounds < 16###context:CREATE TABLE table_name_83 (points VARCHAR, assists VARCHAR, rebounds VARCHAR) |
###question:How many minutes were played when there were 18 points and the opponent was Chicago Bulls?###answer:SELECT COUNT(minutes_played) FROM table_name_55 WHERE points = 18 AND opponent = "chicago bulls"###context:CREATE TABLE table_name_55 (minutes_played VARCHAR, points VARCHAR, opponent VARCHAR) |
###question:Which Mountain Range has a Region of haiti, and a Location of 18.3601°n 71.9764°w?###answer:SELECT mountain_range FROM table_name_82 WHERE region = "haiti" AND location = "18.3601°n 71.9764°w"###context:CREATE TABLE table_name_82 (mountain_range VARCHAR, region VARCHAR, location VARCHAR) |
###question:Name the Mountain Peak which has a Rank of 62?###answer:SELECT mountain_peak FROM table_name_2 WHERE rank = 62###context:CREATE TABLE table_name_2 (mountain_peak VARCHAR, rank VARCHAR) |
###question:Which Mountain Peak has a Region of baja california, and a Location of 28.1301°n 115.2206°w?###answer:SELECT mountain_peak FROM table_name_87 WHERE region = "baja california" AND location = "28.1301°n 115.2206°w"###context:CREATE TABLE table_name_87 (mountain_peak VARCHAR, region VARCHAR, location VARCHAR) |
###question:Name the Region with a Mountain Peak of dillingham high point?###answer:SELECT region FROM table_name_95 WHERE mountain_peak = "dillingham high point"###context:CREATE TABLE table_name_95 (region VARCHAR, mountain_peak VARCHAR) |
###question:How much was paid to the player whose score was 70-71-77-76=294?###answer:SELECT SUM(money___) AS $__ FROM table_name_23 WHERE score = 70 - 71 - 77 - 76 = 294###context:CREATE TABLE table_name_23 (money___ INTEGER, score VARCHAR) |
###question:Which country is Pete Cooper, who made $816, from?###answer:SELECT country FROM table_name_32 WHERE money___$__ = 816 AND player = "pete cooper"###context:CREATE TABLE table_name_32 (country VARCHAR, money___$__ VARCHAR, player VARCHAR) |
###question:What is the lowest round of the position de player with an overall less than 84?###answer:SELECT MIN(round) FROM table_name_51 WHERE position = "de" AND overall < 84###context:CREATE TABLE table_name_51 (round INTEGER, position VARCHAR, overall VARCHAR) |
###question:What is the highest pick of the player from texas a&i with an overall less than 28?###answer:SELECT MAX(pick) FROM table_name_13 WHERE college = "texas a&i" AND overall < 28###context:CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, overall VARCHAR) |
###question:What is the average round of the player from the college of baylor with a pick less than 28?###answer:SELECT AVG(round) FROM table_name_18 WHERE college = "baylor" AND pick < 28###context:CREATE TABLE table_name_18 (round INTEGER, college VARCHAR, pick VARCHAR) |
###question:What is the sum of the pick from texas a&i college with a round greater than 1?###answer:SELECT SUM(pick) FROM table_name_3 WHERE college = "texas a&i" AND round > 1###context:CREATE TABLE table_name_3 (pick INTEGER, college VARCHAR, round VARCHAR) |
###question:What date was the opponent the Boston Yanks?###answer:SELECT date FROM table_name_44 WHERE opponent = "boston yanks"###context:CREATE TABLE table_name_44 (date VARCHAR, opponent VARCHAR) |
###question:What was the record for December 5, 1948?###answer:SELECT record FROM table_name_41 WHERE date = "december 5, 1948"###context:CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR) |
###question:What was the average point total for the nets in games before game 9 where the opponents scored less than 95?###answer:SELECT AVG(nets_points) FROM table_name_62 WHERE game < 9 AND opponents < 95###context:CREATE TABLE table_name_62 (nets_points INTEGER, game VARCHAR, opponents VARCHAR) |
###question:In which game did the opponent score more than 103 and the record was 1-3?###answer:SELECT AVG(game) FROM table_name_32 WHERE record = "1-3" AND opponents > 103###context:CREATE TABLE table_name_32 (game INTEGER, record VARCHAR, opponents VARCHAR) |
###question:What is the lowest Game, when Date is "November 1"?###answer:SELECT MIN(game) FROM table_name_45 WHERE date = "november 1"###context:CREATE TABLE table_name_45 (game INTEGER, date VARCHAR) |
###question:What is High Rebounds, when High Assists is "Jason Kidd (13)"?###answer:SELECT high_rebounds FROM table_name_50 WHERE high_assists = "jason kidd (13)"###context:CREATE TABLE table_name_50 (high_rebounds VARCHAR, high_assists VARCHAR) |
###question:What is the Date of the Competition with a Result of 3–0?###answer:SELECT date FROM table_name_75 WHERE result = "3–0"###context:CREATE TABLE table_name_75 (date VARCHAR, result VARCHAR) |
###question:What is the Score of the Fifa World Cup 1986 Qualifying Competition?###answer:SELECT score FROM table_name_86 WHERE competition = "fifa world cup 1986 qualifying"###context:CREATE TABLE table_name_86 (score VARCHAR, competition VARCHAR) |
###question:What is the Score of the Fifa World Cup 1986 Play-off Competition?###answer:SELECT score FROM table_name_7 WHERE competition = "fifa world cup 1986 play-off"###context:CREATE TABLE table_name_7 (score VARCHAR, competition VARCHAR) |
###question:What is the Game number on April 12 with St. Louis Home Team?###answer:SELECT game FROM table_name_11 WHERE home_team = "st. louis" AND date = "april 12"###context:CREATE TABLE table_name_11 (game VARCHAR, home_team VARCHAR, date VARCHAR) |
###question:What is the Result of the Game on April 9?###answer:SELECT result FROM table_name_87 WHERE date = "april 9"###context:CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR) |
###question:What is the Game number on March 30?###answer:SELECT game FROM table_name_33 WHERE date = "march 30"###context:CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR) |
###question:What Game had a Result of 136-112?###answer:SELECT game FROM table_name_9 WHERE result = "136-112"###context:CREATE TABLE table_name_9 (game VARCHAR, result VARCHAR) |
###question:What is the Result of Game 3?###answer:SELECT result FROM table_name_16 WHERE game = "game 3"###context:CREATE TABLE table_name_16 (result VARCHAR, game VARCHAR) |
###question:On what Date is Game 3 with Boston Road Team?###answer:SELECT date FROM table_name_93 WHERE road_team = "boston" AND game = "game 3"###context:CREATE TABLE table_name_93 (date VARCHAR, road_team VARCHAR, game VARCHAR) |
###question:Who was the home team in the match against Luton Town?###answer:SELECT home_team FROM table_name_21 WHERE away_team = "luton town"###context:CREATE TABLE table_name_21 (home_team VARCHAR, away_team VARCHAR) |
###question:What tie happened with Southampton?###answer:SELECT tie_no FROM table_name_38 WHERE away_team = "southampton"###context:CREATE TABLE table_name_38 (tie_no VARCHAR, away_team VARCHAR) |
###question:What was the tie resulting from Sheffield Wednesday's game?###answer:SELECT tie_no FROM table_name_56 WHERE home_team = "sheffield wednesday"###context:CREATE TABLE table_name_56 (tie_no VARCHAR, home_team VARCHAR) |
###question:Which Week has an Opponent of washington redskins, and an Attendance larger than 56,077?###answer:SELECT COUNT(week) FROM table_name_74 WHERE opponent = "washington redskins" AND attendance > 56 OFFSET 077###context:CREATE TABLE table_name_74 (week VARCHAR, opponent VARCHAR, attendance VARCHAR) |
###question:Which Attendance has a Date of november 19, 1961?###answer:SELECT MIN(attendance) FROM table_name_61 WHERE date = "november 19, 1961"###context:CREATE TABLE table_name_61 (attendance INTEGER, date VARCHAR) |
###question:What was the result on october 8, 1961?###answer:SELECT result FROM table_name_49 WHERE date = "october 8, 1961"###context:CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR) |
###question:What league had a finish of 2nd and 3 losses?###answer:SELECT league FROM table_name_74 WHERE finish = "2nd" AND losses = 3###context:CREATE TABLE table_name_74 (league VARCHAR, finish VARCHAR, losses VARCHAR) |
###question:What is the number of losses when the ties are lesser than 0?###answer:SELECT COUNT(losses) FROM table_name_59 WHERE ties < 0###context:CREATE TABLE table_name_59 (losses VARCHAR, ties INTEGER) |
###question:What is the losses in the NFL in the 2011 season with less than 13 wins?###answer:SELECT AVG(losses) FROM table_name_81 WHERE league = "nfl" AND season = 2011 AND wins < 13###context:CREATE TABLE table_name_81 (losses INTEGER, wins VARCHAR, league VARCHAR, season VARCHAR) |
###question:What is the highest wins for the NFL with a finish of 1st, and more than 6 losses?###answer:SELECT MAX(wins) FROM table_name_27 WHERE league = "nfl" AND finish = "1st" AND losses > 6###context:CREATE TABLE table_name_27 (wins INTEGER, losses VARCHAR, league VARCHAR, finish VARCHAR) |
###question:What is the lowest number of ties in the NFL, with less than 2 losses and less than 15 wins?###answer:SELECT MIN(ties) FROM table_name_12 WHERE league = "nfl" AND losses < 2 AND wins < 15###context:CREATE TABLE table_name_12 (ties INTEGER, wins VARCHAR, league VARCHAR, losses VARCHAR) |
###question:Who was the runner-up in the RR Donnelley LPGA Founders Cup?###answer:SELECT runner_s__up FROM table_name_52 WHERE tournament = "rr donnelley lpga founders cup"###context:CREATE TABLE table_name_52 (runner_s__up VARCHAR, tournament VARCHAR) |
###question:What is the surface on 21 june 1993?###answer:SELECT surface FROM table_name_60 WHERE date = "21 june 1993"###context:CREATE TABLE table_name_60 (surface VARCHAR, date VARCHAR) |
###question:what is the score when the championship is rome and the opponent is richard krajicek?###answer:SELECT score FROM table_name_31 WHERE championship = "rome" AND opponent = "richard krajicek"###context:CREATE TABLE table_name_31 (score VARCHAR, championship VARCHAR, opponent VARCHAR) |
###question:who is the opponent when the surface is clay, the outcome is winner and the championship is estoril on 15 april 1996?###answer:SELECT opponent FROM table_name_93 WHERE surface = "clay" AND outcome = "winner" AND championship = "estoril" AND date = "15 april 1996"###context:CREATE TABLE table_name_93 (oppone... |
###question:who is the opponent on 18 january 1993?###answer:SELECT opponent FROM table_name_23 WHERE date = "18 january 1993"###context:CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR) |
###question:what is the score when the outcome is winner against yevgeny kafelnikov?###answer:SELECT score FROM table_name_51 WHERE outcome = "winner" AND opponent = "yevgeny kafelnikov"###context:CREATE TABLE table_name_51 (score VARCHAR, outcome VARCHAR, opponent VARCHAR) |
###question:What was the highest number of attendance in a week before 8 and game on October 25, 1981?###answer:SELECT MAX(attendance) FROM table_name_25 WHERE date = "october 25, 1981" AND week < 8###context:CREATE TABLE table_name_25 (attendance INTEGER, date VARCHAR, week VARCHAR) |
###question:On what date did the team play againt the New Orleans Saints?###answer:SELECT date FROM table_name_6 WHERE opponent = "new orleans saints"###context:CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR) |
###question:What was the average number of attendance for the game on November 29, 1981 played after week 13?###answer:SELECT AVG(attendance) FROM table_name_40 WHERE date = "november 29, 1981" AND week > 13###context:CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR, week VARCHAR) |
###question:Which model has a frequency of 750 mhz and a socket of bga2μpga2?###answer:SELECT model_number FROM table_name_19 WHERE frequency = "750 mhz" AND socket = "bga2μpga2"###context:CREATE TABLE table_name_19 (model_number VARCHAR, frequency VARCHAR, socket VARCHAR) |
###question:What model number uses standard voltage socket?###answer:SELECT model_number FROM table_name_48 WHERE socket = "standard voltage"###context:CREATE TABLE table_name_48 (model_number VARCHAR, socket VARCHAR) |
###question:what is the date when the round is sf?###answer:SELECT date FROM table_name_52 WHERE round = "sf"###context:CREATE TABLE table_name_52 (date VARCHAR, round VARCHAR) |
###question:what is the date when the round is qf?###answer:SELECT date FROM table_name_80 WHERE round = "qf"###context:CREATE TABLE table_name_80 (date VARCHAR, round VARCHAR) |
###question:Which Attendance has an Opponent of new york giants, and a Week smaller than 5?###answer:SELECT AVG(attendance) FROM table_name_88 WHERE opponent = "new york giants" AND week < 5###context:CREATE TABLE table_name_88 (attendance INTEGER, opponent VARCHAR, week VARCHAR) |
###question:Which Week has an Opponent of pittsburgh steelers, and an Attendance larger than 47,727?###answer:SELECT MIN(week) FROM table_name_69 WHERE opponent = "pittsburgh steelers" AND attendance > 47 OFFSET 727###context:CREATE TABLE table_name_69 (week INTEGER, opponent VARCHAR, attendance VARCHAR) |
###question:Which Attendance has a Date of september 29, 1968, and a Week smaller than 3?###answer:SELECT MIN(attendance) FROM table_name_17 WHERE date = "september 29, 1968" AND week < 3###context:CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR, week VARCHAR) |
###question:When did the party elected in jun. 1959 enter office?###answer:SELECT entered_office FROM table_name_43 WHERE election = "jun. 1959"###context:CREATE TABLE table_name_43 (entered_office VARCHAR, election VARCHAR) |
###question:What is Year Named, when Longitude is 227.5E?###answer:SELECT year_named FROM table_name_42 WHERE longitude = "227.5e"###context:CREATE TABLE table_name_42 (year_named VARCHAR, longitude VARCHAR) |
###question:What is the average Year Named, when Latitude is 37.9N, and when Diameter (km) is greater than 76?###answer:SELECT AVG(year_named) FROM table_name_70 WHERE latitude = "37.9n" AND diameter__km_ > 76###context:CREATE TABLE table_name_70 (year_named INTEGER, latitude VARCHAR, diameter__km_ VARCHAR) |
###question:What is Longitude, when Name is Raskova Paterae?###answer:SELECT longitude FROM table_name_61 WHERE name = "raskova paterae"###context:CREATE TABLE table_name_61 (longitude VARCHAR, name VARCHAR) |
###question:What's the song of artist liam reilly?###answer:SELECT song FROM table_name_8 WHERE artist = "liam reilly"###context:CREATE TABLE table_name_8 (song VARCHAR, artist VARCHAR) |
###question:What's the total number of points for grace dunne with a draw over 5?###answer:SELECT COUNT(points) FROM table_name_93 WHERE artist = "grace dunne" AND draw > 5###context:CREATE TABLE table_name_93 (points VARCHAR, artist VARCHAR, draw VARCHAR) |
###question:What's the highest draw with over 60 points for paul duffy?###answer:SELECT MAX(draw) FROM table_name_40 WHERE points > 60 AND artist = "paul duffy"###context:CREATE TABLE table_name_40 (draw INTEGER, points VARCHAR, artist VARCHAR) |
###question:What was the highest grid for a time/retired of +19.1 secs?###answer:SELECT MAX(grid) FROM table_name_50 WHERE time_retired = "+19.1 secs"###context:CREATE TABLE table_name_50 (grid INTEGER, time_retired VARCHAR) |
###question:What is the Population of the New Bandon Parish with an Area km 2 larger than 326.76?###answer:SELECT MAX(population) FROM table_name_97 WHERE area_km_2 > 326.76 AND official_name = "new bandon"###context:CREATE TABLE table_name_97 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR) |
###question:What is the Area of the Allardville Parish with a Population smaller than 2,151?###answer:SELECT SUM(area_km_2) FROM table_name_10 WHERE official_name = "allardville" AND population < 2 OFFSET 151###context:CREATE TABLE table_name_10 (area_km_2 INTEGER, official_name VARCHAR, population VARCHAR) |
###question:Who is the player with a 75-68-70=213 score?###answer:SELECT player FROM table_name_79 WHERE score = 75 - 68 - 70 = 213###context:CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR) |
###question:What is the place of Australia?###answer:SELECT place FROM table_name_46 WHERE country = "australia"###context:CREATE TABLE table_name_46 (place VARCHAR, country VARCHAR) |
###question:What is the place of player tom watson?###answer:SELECT place FROM table_name_25 WHERE player = "tom watson"###context:CREATE TABLE table_name_25 (place VARCHAR, player VARCHAR) |
###question:Who is the player with a +3 to par and a 74-71-68=213 score?###answer:SELECT player FROM table_name_42 WHERE to_par = "+3" AND score = 74 - 71 - 68 = 213###context:CREATE TABLE table_name_42 (player VARCHAR, to_par VARCHAR, score VARCHAR) |
###question:What is player raymond floyd's country?###answer:SELECT country FROM table_name_64 WHERE player = "raymond floyd"###context:CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR) |
###question:Who is the player from the United States with a 75-70-68=211 score?###answer:SELECT player FROM table_name_94 WHERE country = "united states" AND score = 75 - 70 - 68 = 211###context:CREATE TABLE table_name_94 (player VARCHAR, country VARCHAR, score VARCHAR) |
###question:What is the length in feet when the length in meters is 64.2?###answer:SELECT length___ft__ FROM table_name_47 WHERE length___m__ = "64.2"###context:CREATE TABLE table_name_47 (length___ft__ VARCHAR, length___m__ VARCHAR) |
###question:Where is the longest arch with a length in meters of 64.2?###answer:SELECT location FROM table_name_29 WHERE length___m__ = "64.2"###context:CREATE TABLE table_name_29 (location VARCHAR, length___m__ VARCHAR) |
###question:Where is the longest arch with a length in meters of 63?###answer:SELECT location FROM table_name_47 WHERE length___m__ = "63"###context:CREATE TABLE table_name_47 (location VARCHAR, length___m__ VARCHAR) |
###question:What is the rank of the arch with a length in meters of 75/55?###answer:SELECT rank FROM table_name_29 WHERE length___m__ = "75/55"###context:CREATE TABLE table_name_29 (rank VARCHAR, length___m__ VARCHAR) |
###question:What is the length in feet of the Jiangzhou arch?###answer:SELECT length___ft__ FROM table_name_7 WHERE name = "jiangzhou arch"###context:CREATE TABLE table_name_7 (length___ft__ VARCHAR, name VARCHAR) |
###question:What was the number of the crowd when the Wollongong Hawks were the home team?###answer:SELECT SUM(crowd) FROM table_name_53 WHERE home_team = "wollongong hawks"###context:CREATE TABLE table_name_53 (crowd INTEGER, home_team VARCHAR) |
###question:What was the crowd size for the game with a score of 101-105?###answer:SELECT crowd FROM table_name_13 WHERE score = "101-105"###context:CREATE TABLE table_name_13 (crowd VARCHAR, score VARCHAR) |
###question:What was the average crowd size for the game when the Gold Coast Blaze was the home team?###answer:SELECT AVG(crowd) FROM table_name_77 WHERE home_team = "gold coast blaze"###context:CREATE TABLE table_name_77 (crowd INTEGER, home_team VARCHAR) |
###question:What is City of License, when Frequency MHz is less than 102.5?###answer:SELECT city_of_license FROM table_name_8 WHERE frequency_mhz < 102.5###context:CREATE TABLE table_name_8 (city_of_license VARCHAR, frequency_mhz INTEGER) |
###question:What is Call Sign, when ERP W is greater than 50?###answer:SELECT call_sign FROM table_name_56 WHERE erp_w > 50###context:CREATE TABLE table_name_56 (call_sign VARCHAR, erp_w INTEGER) |
###question:What is City of License, when ERP W is greater than 3, and when Call Sign is K218DZ?###answer:SELECT city_of_license FROM table_name_42 WHERE erp_w > 3 AND call_sign = "k218dz"###context:CREATE TABLE table_name_42 (city_of_license VARCHAR, erp_w VARCHAR, call_sign VARCHAR) |
###question:What is Call Sign, when City of License is Brownfield, Texas?###answer:SELECT call_sign FROM table_name_51 WHERE city_of_license = "brownfield, texas"###context:CREATE TABLE table_name_51 (call_sign VARCHAR, city_of_license VARCHAR) |
###question:What is the Sum of ERP W, when Call Sign is K216GA?###answer:SELECT SUM(erp_w) FROM table_name_49 WHERE call_sign = "k216ga"###context:CREATE TABLE table_name_49 (erp_w INTEGER, call_sign VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.