combined_text
stringlengths
106
1.05k
###question:How many gold have a silver of 1 and a bronze of 0?###answer:SELECT SUM(gold) FROM table_name_12 WHERE silver = 1 AND bronze < 1###context:CREATE TABLE table_name_12 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
###question:What is the Aircraft when Kabul was the location, unknown fatalities, and the tail number was ya-ban?###answer:SELECT aircraft FROM table_name_3 WHERE location = "kabul" AND fatalities = "unknown" AND tail_number = "ya-ban"###context:CREATE TABLE table_name_3 (aircraft VARCHAR, tail_number VARCHAR, location...
###question:What is the Fatalities when the tail number was unknown and in Kabul>###answer:SELECT fatalities FROM table_name_53 WHERE tail_number = "unknown" AND location = "kabul"###context:CREATE TABLE table_name_53 (fatalities VARCHAR, tail_number VARCHAR, location VARCHAR)
###question:What is the location for the an-12b aircraft?###answer:SELECT location FROM table_name_50 WHERE aircraft = "an-12b"###context:CREATE TABLE table_name_50 (location VARCHAR, aircraft VARCHAR)
###question:What location had 25/25 fatalities?###answer:SELECT location FROM table_name_15 WHERE fatalities = "25/25"###context:CREATE TABLE table_name_15 (location VARCHAR, fatalities VARCHAR)
###question:What tail number was on the an-26, with 25/25 fatalities?###answer:SELECT tail_number FROM table_name_82 WHERE aircraft = "an-26" AND fatalities = "25/25"###context:CREATE TABLE table_name_82 (tail_number VARCHAR, aircraft VARCHAR, fatalities VARCHAR)
###question:What type of aircraft was the plane with a tail number of ya-bao?###answer:SELECT aircraft FROM table_name_75 WHERE tail_number = "ya-bao"###context:CREATE TABLE table_name_75 (aircraft VARCHAR, tail_number VARCHAR)
###question:What is the total number of Points from a Match that is larger than 18?###answer:SELECT COUNT(points) FROM table_name_38 WHERE match > 18###context:CREATE TABLE table_name_38 (points VARCHAR, match INTEGER)
###question:In what Season was the Series Formula Renault 3.5 series with less than 7 Races?###answer:SELECT SUM(season) FROM table_name_74 WHERE series = "formula renault 3.5 series" AND races < 7###context:CREATE TABLE table_name_74 (season INTEGER, series VARCHAR, races VARCHAR)
###question:What was the Series in 2009?###answer:SELECT series FROM table_name_67 WHERE season = 2009###context:CREATE TABLE table_name_67 (series VARCHAR, season VARCHAR)
###question:How many Wins in the Year with more than 16 Races?###answer:SELECT wins FROM table_name_7 WHERE races > 16###context:CREATE TABLE table_name_7 (wins VARCHAR, races INTEGER)
###question:In what Season were then less than 3 Races with less than 1 Win?###answer:SELECT AVG(season) FROM table_name_51 WHERE races < 3 AND wins < 1###context:CREATE TABLE table_name_51 (season INTEGER, races VARCHAR, wins VARCHAR)
###question:Which 1st leg has a Team #1 of ummc ekaterinburg?###answer:SELECT 1 AS st_leg FROM table_name_33 WHERE team__number1 = "ummc ekaterinburg"###context:CREATE TABLE table_name_33 (team__number1 VARCHAR)
###question:Which Team #2 has a Team #1 of gambrinus sika brno?###answer:SELECT team__number2 FROM table_name_70 WHERE team__number1 = "gambrinus sika brno"###context:CREATE TABLE table_name_70 (team__number2 VARCHAR, team__number1 VARCHAR)
###question:What is the Goal number in Råsunda, Stockholm with a Result of 2–2?###answer:SELECT AVG(goal) FROM table_name_80 WHERE result = "2–2" AND venue = "råsunda, stockholm"###context:CREATE TABLE table_name_80 (goal INTEGER, result VARCHAR, venue VARCHAR)
###question:What is the Result of Goal number 3?###answer:SELECT result FROM table_name_21 WHERE goal = 3###context:CREATE TABLE table_name_21 (result VARCHAR, goal VARCHAR)
###question:On what day was a game played at Reese Smith Field, with a score of 4-3?###answer:SELECT date FROM table_name_14 WHERE score = "4-3" AND site_stadium = "reese smith field"###context:CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR, site_stadium VARCHAR)
###question:What was the score for the game played on May 10 at Alex Box Stadium?###answer:SELECT score FROM table_name_65 WHERE site_stadium = "alex box stadium" AND date = "may 10"###context:CREATE TABLE table_name_65 (score VARCHAR, site_stadium VARCHAR, date VARCHAR)
###question:What was the score for the game played at Sarge Frye Field?###answer:SELECT score FROM table_name_15 WHERE site_stadium = "sarge frye field"###context:CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR)
###question:On what date was a game played, which left the team with a record of 5-7?###answer:SELECT date FROM table_name_16 WHERE record = "5-7"###context:CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)
###question:What was the score of the game played at Harmon Stadium on February 24?###answer:SELECT score FROM table_name_38 WHERE site_stadium = "harmon stadium" AND date = "february 24"###context:CREATE TABLE table_name_38 (score VARCHAR, site_stadium VARCHAR, date VARCHAR)
###question:Where was the game on May 9 played?###answer:SELECT site_stadium FROM table_name_21 WHERE date = "may 9"###context:CREATE TABLE table_name_21 (site_stadium VARCHAR, date VARCHAR)
###question:What is the greatest position when the points are less than 21, and the played greater than 14?###answer:SELECT MAX(position) FROM table_name_78 WHERE points < 21 AND played > 14###context:CREATE TABLE table_name_78 (position INTEGER, points VARCHAR, played VARCHAR)
###question:What is the fewest lost with a difference of 9 and a less than 3 drawn?###answer:SELECT MIN(lost) FROM table_name_69 WHERE difference = "9" AND drawn < 3###context:CREATE TABLE table_name_69 (lost INTEGER, difference VARCHAR, drawn VARCHAR)
###question:Team Estudantes Paulista with a position less than 4 has what average against?###answer:SELECT AVG(against) FROM table_name_78 WHERE team = "estudantes paulista" AND position < 4###context:CREATE TABLE table_name_78 (against INTEGER, team VARCHAR, position VARCHAR)
###question:What was the margin of victory on Apr 8, 1979?###answer:SELECT margin_of_victory FROM table_name_28 WHERE date = "apr 8, 1979"###context:CREATE TABLE table_name_28 (margin_of_victory VARCHAR, date VARCHAR)
###question:What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley?###answer:SELECT winning_score FROM table_name_69 WHERE margin_of_victory = "2 strokes" AND runner_s__up = "pat bradley"###context:CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHA...
###question:What was the margin of victory when the winning score was −5 (69-69-73=211)?###answer:SELECT margin_of_victory FROM table_name_21 WHERE winning_score = −5(69 - 69 - 73 = 211)###context:CREATE TABLE table_name_21 (margin_of_victory VARCHAR, winning_score VARCHAR)
###question:Which tournament had a winning score of −5 (69-69-73=211)?###answer:SELECT tournament FROM table_name_37 WHERE winning_score = −5(69 - 69 - 73 = 211)###context:CREATE TABLE table_name_37 (tournament VARCHAR, winning_score VARCHAR)
###question:When was the winning score −6 (69-69-73-71=282)?###answer:SELECT date FROM table_name_7 WHERE winning_score = −6(69 - 69 - 73 - 71 = 282)###context:CREATE TABLE table_name_7 (date VARCHAR, winning_score VARCHAR)
###question:Who is the opponent of the game played on November 20, 1995?###answer:SELECT opponent FROM table_name_66 WHERE date = "november 20, 1995"###context:CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR)
###question:What is the highest Grid with a Name that is jamie whincup?###answer:SELECT MAX(grid) FROM table_name_67 WHERE name = "jamie whincup"###context:CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR)
###question:What is the Team with a Lap that is 5?###answer:SELECT team FROM table_name_48 WHERE laps = 5###context:CREATE TABLE table_name_48 (team VARCHAR, laps VARCHAR)
###question:What's the lowest round Justin Forsett was drafted in, with a draft pick larger than 233?###answer:SELECT MIN(round) FROM table_name_62 WHERE name = "justin forsett" AND pick > 233###context:CREATE TABLE table_name_62 (round INTEGER, name VARCHAR, pick VARCHAR)
###question:What's the average round the position of RB was drafted?###answer:SELECT AVG(round) FROM table_name_90 WHERE position = "rb"###context:CREATE TABLE table_name_90 (round INTEGER, position VARCHAR)
###question:What's the average round Red Bryant was drafted with a pick larger than 121?###answer:SELECT AVG(round) FROM table_name_29 WHERE name = "red bryant" AND pick > 121###context:CREATE TABLE table_name_29 (round INTEGER, name VARCHAR, pick VARCHAR)
###question:Can you tell me the Overall Record that has the Away Team of miami?###answer:SELECT overall_record FROM table_name_46 WHERE away_team = "miami"###context:CREATE TABLE table_name_46 (overall_record VARCHAR, away_team VARCHAR)
###question:Can you tell me the Overall Record that has the Week of 3?###answer:SELECT overall_record FROM table_name_81 WHERE week = 3###context:CREATE TABLE table_name_81 (overall_record VARCHAR, week VARCHAR)
###question:Can you tell me the Divisional Record that has the Away Team of dallas?###answer:SELECT divisional_record FROM table_name_58 WHERE away_team = "dallas"###context:CREATE TABLE table_name_58 (divisional_record VARCHAR, away_team VARCHAR)
###question:Can you tell me the Overall Record that has the Week smaller than 16, and the Divisional Record of (1-0), and the Away Team of miami?###answer:SELECT overall_record FROM table_name_42 WHERE week < 16 AND divisional_record = "(1-0)" AND away_team = "miami"###context:CREATE TABLE table_name_42 (overall_record...
###question:Can you tell me the Week that has the Home Team of detroit, and the Divisional Record of (3-0), and the Overall Record of (5-1), and the Away Team of minnesota?###answer:SELECT week FROM table_name_40 WHERE home_team = "detroit" AND divisional_record = "(3-0)" AND overall_record = "(5-1)" AND away_team = "m...
###question:Who is the choreographer with the style pas de deux?###answer:SELECT choreographer_s_ FROM table_name_10 WHERE style = "pas de deux"###context:CREATE TABLE table_name_10 (choreographer_s_ VARCHAR, style VARCHAR)
###question:What is the title of the person who started their reign in 1999?###answer:SELECT title FROM table_name_63 WHERE start_of_reign = 1999###context:CREATE TABLE table_name_63 (title VARCHAR, start_of_reign VARCHAR)
###question:What is the date of birth of the person who started their reign in 1986?###answer:SELECT Birth AS name FROM table_name_61 WHERE start_of_reign = 1986###context:CREATE TABLE table_name_61 (Birth VARCHAR, start_of_reign VARCHAR)
###question:What is the average number for goals less than 73?###answer:SELECT COUNT(average) FROM table_name_23 WHERE goals < 73###context:CREATE TABLE table_name_23 (average VARCHAR, goals INTEGER)
###question:What is the total average for 1990-1995, and goals less than 90?###answer:SELECT COUNT(average) FROM table_name_40 WHERE career = "1990-1995" AND goals < 90###context:CREATE TABLE table_name_40 (average VARCHAR, career VARCHAR, goals VARCHAR)
###question:What was the lowest Position for a Team with fewer than 3 Lost, a Difference of 1, and more than 7 games Played?###answer:SELECT MIN(position) FROM table_name_43 WHERE lost < 3 AND difference = "1" AND played > 7###context:CREATE TABLE table_name_43 (position INTEGER, played VARCHAR, lost VARCHAR, differenc...
###question:What is the sum of games Played by the Team Vasco Da Gama, with fewer than 12 Against?###answer:SELECT SUM(played) FROM table_name_12 WHERE team = "vasco da gama" AND against < 12###context:CREATE TABLE table_name_12 (played INTEGER, team VARCHAR, against VARCHAR)
###question:What was the Difference of the Team that had a Position less than 2?###answer:SELECT difference FROM table_name_8 WHERE position < 2###context:CREATE TABLE table_name_8 (difference VARCHAR, position INTEGER)
###question:Which attendance number was taken on november 21, 2004?###answer:SELECT attendance FROM table_name_54 WHERE date = "november 21, 2004"###context:CREATE TABLE table_name_54 (attendance VARCHAR, date VARCHAR)
###question:Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents?###answer:SELECT attendance FROM table_name_39 WHERE week < 16 AND opponent = "washington redskins"###context:CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
###question:How many weeks had the Green Bay packers as opponents?###answer:SELECT SUM(week) FROM table_name_74 WHERE opponent = "green bay packers"###context:CREATE TABLE table_name_74 (week INTEGER, opponent VARCHAR)
###question:What Country had a Score of 71-67=138?###answer:SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138###context:CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
###question:What Country had a Score of 75-68=143?###answer:SELECT country FROM table_name_91 WHERE score = 75 - 68 = 143###context:CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR)
###question:How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored?###answer:SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19###context:CREATE TABLE table_name_35 (innings INTEGE...
###question:What is the number of averages having a balls faced over 297 and more than 7 innings?###answer:SELECT COUNT(average) FROM table_name_34 WHERE balls_faced > 297 AND innings > 7###context:CREATE TABLE table_name_34 (average VARCHAR, balls_faced VARCHAR, innings VARCHAR)
###question:What is the smallest number of innings with a strike rate of 72.05 and under 297 balls faced?###answer:SELECT MIN(innings) FROM table_name_89 WHERE sr = 72.05 AND balls_faced < 297###context:CREATE TABLE table_name_89 (innings INTEGER, sr VARCHAR, balls_faced VARCHAR)
###question:What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?###answer:SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5###context:CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VAR...
###question:What is the Nation with a Date that is may 6, 1991?###answer:SELECT nation FROM table_name_51 WHERE date = "may 6, 1991"###context:CREATE TABLE table_name_51 (nation VARCHAR, date VARCHAR)
###question:What is the Record with a Date that is may 20, 1961?###answer:SELECT record FROM table_name_73 WHERE date = "may 20, 1961"###context:CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR)
###question:Who was the partner of the winner?###answer:SELECT partner FROM table_name_46 WHERE outcome = "winner"###context:CREATE TABLE table_name_46 (partner VARCHAR, outcome VARCHAR)
###question:How many Places (Posición) has a Draw (PE) larger than 2 and a Team (Equipo) of paraíso and a Won (PG) larger than 6?###answer:SELECT COUNT(place__posición_) FROM table_name_53 WHERE draw__pe_ > 2 AND team__equipo_ = "paraíso" AND won__pg_ > 6###context:CREATE TABLE table_name_53 (place__posición_ VARCHAR, ...
###question:How many league cups have yeovil town as the club, with a league less than 16?###answer:SELECT COUNT(league) AS Cup FROM table_name_88 WHERE club = "yeovil town" AND league < 16###context:CREATE TABLE table_name_88 (league VARCHAR, club VARCHAR)
###question:What is the average FA Cup that has gary jones as the player, and an FA trophy greater than 5?###answer:SELECT AVG(fa_cup) FROM table_name_15 WHERE player = "gary jones" AND fa_trophy > 5###context:CREATE TABLE table_name_15 (fa_cup INTEGER, player VARCHAR, fa_trophy VARCHAR)
###question:What FA trophys have tony hemmings as the player, with a league greater than 15?###answer:SELECT SUM(fa_trophy) FROM table_name_98 WHERE player = "tony hemmings" AND league > 15###context:CREATE TABLE table_name_98 (fa_trophy INTEGER, player VARCHAR, league VARCHAR)
###question:What is the score where the country is Japan?###answer:SELECT score FROM table_name_95 WHERE country = "japan"###context:CREATE TABLE table_name_95 (score VARCHAR, country VARCHAR)
###question:Which province has muju as the capital?###answer:SELECT province FROM table_name_82 WHERE capital = "muju"###context:CREATE TABLE table_name_82 (province VARCHAR, capital VARCHAR)
###question:What is the modern equivalent of 良州 in Hanja?###answer:SELECT modern_equivalent FROM table_name_17 WHERE hanja = "良州"###context:CREATE TABLE table_name_17 (modern_equivalent VARCHAR, hanja VARCHAR)
###question:What is the capital of the province with 양주 in Hangul?###answer:SELECT capital FROM table_name_21 WHERE hangul = "양주"###context:CREATE TABLE table_name_21 (capital VARCHAR, hangul VARCHAR)
###question:What is the capital of the province with 漢州 in Hanja?###answer:SELECT capital FROM table_name_88 WHERE hanja = "漢州"###context:CREATE TABLE table_name_88 (capital VARCHAR, hanja VARCHAR)
###question:What is the Hanja for the sakju province?###answer:SELECT hanja FROM table_name_78 WHERE province = "sakju"###context:CREATE TABLE table_name_78 (hanja VARCHAR, province VARCHAR)
###question:What is the fewest number of top-25s for events with more than 0 wins?###answer:SELECT MIN(top_25) FROM table_name_17 WHERE wins > 0###context:CREATE TABLE table_name_17 (top_25 INTEGER, wins INTEGER)
###question:What is the highest number of top-10s in events with more than 0 wins?###answer:SELECT MAX(top_10) FROM table_name_46 WHERE wins > 0###context:CREATE TABLE table_name_46 (top_10 INTEGER, wins INTEGER)
###question:What is the number of top-25s in events under 13, cuts made under 3, and 1 top-10?###answer:SELECT top_25 FROM table_name_47 WHERE events < 13 AND cuts_made < 3 AND top_10 = 1###context:CREATE TABLE table_name_47 (top_25 VARCHAR, top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR)
###question:Which season had an average under 28, a rank under 10, and a partner of Janja Lesar?###answer:SELECT season FROM table_name_7 WHERE average < 28 AND rank < 10 AND professional_partner = "janja lesar"###context:CREATE TABLE table_name_7 (season VARCHAR, professional_partner VARCHAR, average VARCHAR, rank VAR...
###question:What is the highest season that had rank under 1?###answer:SELECT MAX(season) FROM table_name_45 WHERE rank < 1###context:CREATE TABLE table_name_45 (season INTEGER, rank INTEGER)
###question:Who was the professional partner in season 4?###answer:SELECT professional_partner FROM table_name_29 WHERE season = 4###context:CREATE TABLE table_name_29 (professional_partner VARCHAR, season VARCHAR)
###question:Who had the highest rebounds against detroit?###answer:SELECT high_rebounds FROM table_name_65 WHERE team = "detroit"###context:CREATE TABLE table_name_65 (high_rebounds VARCHAR, team VARCHAR)
###question:How much gold received by nation of uzbekistan (uzb)?###answer:SELECT MAX(gold) FROM table_name_93 WHERE nation = "uzbekistan (uzb)"###context:CREATE TABLE table_name_93 (gold INTEGER, nation VARCHAR)
###question:Which team has the lowest gold and 0 silver?###answer:SELECT MIN(gold) FROM table_name_68 WHERE silver < 0###context:CREATE TABLE table_name_68 (gold INTEGER, silver INTEGER)
###question:How much gold when silver, bronze and total is smaller than 1?###answer:SELECT MAX(gold) FROM table_name_27 WHERE silver < 1 AND bronze = 1 AND total < 1###context:CREATE TABLE table_name_27 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR)
###question:What is the ICAO with commenced operations before 1989?###answer:SELECT icao FROM table_name_2 WHERE commenced_operations < 1989###context:CREATE TABLE table_name_2 (icao VARCHAR, commenced_operations INTEGER)
###question:What is the lowest commenced operations that has a nouvelair callsign?###answer:SELECT MIN(commenced_operations) FROM table_name_90 WHERE callsign = "nouvelair"###context:CREATE TABLE table_name_90 (commenced_operations INTEGER, callsign VARCHAR)
###question:What callsign has commenced operations in 2011?###answer:SELECT callsign FROM table_name_34 WHERE commenced_operations = 2011###context:CREATE TABLE table_name_34 (callsign VARCHAR, commenced_operations VARCHAR)
###question:What language is used when the service is sky primafila 10 and the package/option is qualsiasi?###answer:SELECT language FROM table_name_19 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 10"###context:CREATE TABLE table_name_19 (language VARCHAR, package_option VARCHAR, televisio...
###question:What is the content when the package/option is qualsiasi and sky primafila 14 is the television service?###answer:SELECT content FROM table_name_13 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 14"###context:CREATE TABLE table_name_13 (content VARCHAR, package_option VARCHAR, te...
###question:What is the HDTV that has television service of tv 8 mont blanc and content is general television?###answer:SELECT hdtv FROM table_name_26 WHERE content = "general television" AND television_service = "tv 8 mont blanc"###context:CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service V...
###question:Which city's IATA is nkg?###answer:SELECT city FROM table_name_64 WHERE iata = "nkg"###context:CREATE TABLE table_name_64 (city VARCHAR, iata VARCHAR)
###question:Which airport is in Xinjiang province in the city Kuqa?###answer:SELECT airport FROM table_name_45 WHERE province = "xinjiang" AND city = "kuqa"###context:CREATE TABLE table_name_45 (airport VARCHAR, province VARCHAR, city VARCHAR)
###question:Which province's IATA is kix?###answer:SELECT province FROM table_name_21 WHERE iata = "kix"###context:CREATE TABLE table_name_21 (province VARCHAR, iata VARCHAR)
###question:Which airport's IATA is pen?###answer:SELECT airport FROM table_name_31 WHERE iata = "pen"###context:CREATE TABLE table_name_31 (airport VARCHAR, iata VARCHAR)
###question:Which Event has a Record of 4:02.54?###answer:SELECT event FROM table_name_90 WHERE record = "4:02.54"###context:CREATE TABLE table_name_90 (event VARCHAR, record VARCHAR)
###question:Whcih Date has an Event of 3000 m?###answer:SELECT date FROM table_name_6 WHERE event = "3000 m"###context:CREATE TABLE table_name_6 (date VARCHAR, event VARCHAR)
###question:Which Record has a Date of 23 february 1986?###answer:SELECT record FROM table_name_20 WHERE date = "23 february 1986"###context:CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)
###question:Which Date has a Record of 8:39.49?###answer:SELECT date FROM table_name_95 WHERE record = "8:39.49"###context:CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR)
###question:Which Record has a Date of 3 march 2013?###answer:SELECT record FROM table_name_71 WHERE date = "3 march 2013"###context:CREATE TABLE table_name_71 (record VARCHAR, date VARCHAR)
###question:Which Nation has a Record of 15.16 m?###answer:SELECT nation FROM table_name_84 WHERE record = "15.16 m"###context:CREATE TABLE table_name_84 (nation VARCHAR, record VARCHAR)
###question:What is the Nationality of the Player with more than 8 Goals and Apps of 52?###answer:SELECT nationality FROM table_name_5 WHERE goals > 8 AND apps = 52###context:CREATE TABLE table_name_5 (nationality VARCHAR, goals VARCHAR, apps VARCHAR)
###question:How many Apps did Player Gilberto with more than 1 Goals have?###answer:SELECT AVG(apps) FROM table_name_64 WHERE player = "gilberto" AND goals > 1###context:CREATE TABLE table_name_64 (apps INTEGER, player VARCHAR, goals VARCHAR)
###question:On what date was the 4th round, with home team Itabuna, played?###answer:SELECT date FROM table_name_4 WHERE round = "4th" AND home_team = "itabuna"###context:CREATE TABLE table_name_4 (date VARCHAR, round VARCHAR, home_team VARCHAR)