combined_text
stringlengths
106
1.05k
###question:What is the sum of Date of Official Foundation of Municipality, when Province is "Kermān", when 2006 us "167014", and when Rank is less than 46?###answer:SELECT SUM(date_of_official_foundation_of_municipality) FROM table_name_65 WHERE province = "kermān" AND 2006 = 167014 AND rank < 46###context:CREATE TABL...
###question:What is the total number of Rank, when Date of Official Foundation of Municipality is after 1926, when Province is "Sistan and Baluchestan", and when 2006 is greater than 567449?###answer:SELECT COUNT(rank) FROM table_name_87 WHERE date_of_official_foundation_of_municipality > 1926 AND province = "sistan an...
###question:What is the sum of Rank, when Province is Gīlān, when Date of Official Foundation of Municipality is after 1922, and when 2006 is greater than 557366?###answer:SELECT SUM(rank) FROM table_name_51 WHERE province = "gīlān" AND date_of_official_foundation_of_municipality > 1922 AND 2006 > 557366###context:CREA...
###question:What is the highest Rank, when Date of Official Foundation of Municipality is "1952", and when 2006 is less than 189120?###answer:SELECT MAX(rank) FROM table_name_16 WHERE date_of_official_foundation_of_municipality = 1952 AND 2006 < 189120###context:CREATE TABLE table_name_16 (rank INTEGER, date_of_officia...
###question:What is Province, when 2006 is less than 153748, when Date of Official Foundation of Municipality is after 1958, and when City is "Pakdasht"?###answer:SELECT province FROM table_name_46 WHERE 2006 < 153748 AND date_of_official_foundation_of_municipality > 1958 AND city = "pakdasht"###context:CREATE TABLE ta...
###question:what is the place when the score is 68-70-68=206?###answer:SELECT place FROM table_name_3 WHERE score = 68 - 70 - 68 = 206###context:CREATE TABLE table_name_3 (place VARCHAR, score VARCHAR)
###question:what is the country when the score is 71-65-69=205?###answer:SELECT country FROM table_name_47 WHERE score = 71 - 65 - 69 = 205###context:CREATE TABLE table_name_47 (country VARCHAR, score VARCHAR)
###question:what is the country when the score is 72-68-67=207?###answer:SELECT country FROM table_name_79 WHERE score = 72 - 68 - 67 = 207###context:CREATE TABLE table_name_79 (country VARCHAR, score VARCHAR)
###question:what is the country when the score is 68-72-67=207?###answer:SELECT country FROM table_name_75 WHERE score = 68 - 72 - 67 = 207###context:CREATE TABLE table_name_75 (country VARCHAR, score VARCHAR)
###question:who is the player when the place is t5 and the score is 69-66-71=206?###answer:SELECT player FROM table_name_51 WHERE place = "t5" AND score = 69 - 66 - 71 = 206###context:CREATE TABLE table_name_51 (player VARCHAR, place VARCHAR, score VARCHAR)
###question:What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing?###answer:SELECT MAX(laps) FROM table_name_13 WHERE class = "v8" AND entrant = "diet-coke racing"###context:CREATE TABLE table_name_13 (laps INTEGER, class VARCHAR, entrant VARCHAR)
###question:What is the tie with a win of 0?###answer:SELECT ties FROM table_name_38 WHERE wins = "0"###context:CREATE TABLE table_name_38 (ties VARCHAR, wins VARCHAR)
###question:What is the final position with ties of 0, and wins of 5?###answer:SELECT final_position FROM table_name_87 WHERE ties = "0" AND wins = "5"###context:CREATE TABLE table_name_87 (final_position VARCHAR, ties VARCHAR, wins VARCHAR)
###question:What are the ties for division of bafl division two south?###answer:SELECT ties FROM table_name_8 WHERE division = "bafl division two south"###context:CREATE TABLE table_name_8 (ties VARCHAR, division VARCHAR)
###question:What is the final position for the season 2008?###answer:SELECT final_position FROM table_name_76 WHERE season = "2008"###context:CREATE TABLE table_name_76 (final_position VARCHAR, season VARCHAR)
###question:What is the final position for the season 2012?###answer:SELECT final_position FROM table_name_70 WHERE season = "2012"###context:CREATE TABLE table_name_70 (final_position VARCHAR, season VARCHAR)
###question:What is the division with wins of 2?###answer:SELECT division FROM table_name_76 WHERE wins = "2"###context:CREATE TABLE table_name_76 (division VARCHAR, wins VARCHAR)
###question:What is the Location of the Hietalahti Stadium?###answer:SELECT location FROM table_name_46 WHERE stadium = "hietalahti stadium"###context:CREATE TABLE table_name_46 (location VARCHAR, stadium VARCHAR)
###question:What is the Location of the Stadium where Job Dragtsma is Manager?###answer:SELECT location FROM table_name_5 WHERE manager = "job dragtsma"###context:CREATE TABLE table_name_5 (location VARCHAR, manager VARCHAR)
###question:what is the react when the lane is 3 and heat is 2?###answer:SELECT react FROM table_name_98 WHERE lane = 3 AND heat = 2###context:CREATE TABLE table_name_98 (react VARCHAR, lane VARCHAR, heat VARCHAR)
###question:what is the highest lane number for johan wissman when the react is less than 0.242?###answer:SELECT MAX(lane) FROM table_name_48 WHERE name = "johan wissman" AND react < 0.242###context:CREATE TABLE table_name_48 (lane INTEGER, name VARCHAR, react VARCHAR)
###question:what is the heat when the country is united kingdom and react is less than 0.232?###answer:SELECT MAX(heat) FROM table_name_91 WHERE country = "united kingdom" AND react < 0.232###context:CREATE TABLE table_name_91 (heat INTEGER, country VARCHAR, react VARCHAR)
###question:what is the react when the country is sweden and the lane is higher than 6?###answer:SELECT SUM(react) FROM table_name_65 WHERE country = "sweden" AND lane > 6###context:CREATE TABLE table_name_65 (react INTEGER, country VARCHAR, lane VARCHAR)
###question:What is the 1st leg of the UEFA Champions League Compeition in the Skonto Riga Club?###answer:SELECT 1 AS st_leg FROM table_name_52 WHERE competition = "uefa champions league" AND club = "skonto riga"###context:CREATE TABLE table_name_52 (competition VARCHAR, club VARCHAR)
###question:Which season has the Renova Club?###answer:SELECT season FROM table_name_43 WHERE club = "renova"###context:CREATE TABLE table_name_43 (season VARCHAR, club VARCHAR)
###question:Which season has the Werder Bremen Club and is in Round 2r?###answer:SELECT season FROM table_name_50 WHERE club = "werder bremen" AND round = "2r"###context:CREATE TABLE table_name_50 (season VARCHAR, club VARCHAR, round VARCHAR)
###question:Which round is the UEFA Cup Compeition and the Kolkheti-1913 Poti Cub?###answer:SELECT round FROM table_name_39 WHERE competition = "uefa cup" AND club = "kolkheti-1913 poti"###context:CREATE TABLE table_name_39 (round VARCHAR, competition VARCHAR, club VARCHAR)
###question:What is the PAL B, G, H for the PAL I 4.43361875mhz?###answer:SELECT pal_b, g, h FROM table_name_60 WHERE pal_i = "4.43361875mhz"###context:CREATE TABLE table_name_60 (pal_b VARCHAR, g VARCHAR, h VARCHAR, pal_i VARCHAR)
###question:Which PAL M has a PAL I of 50HZ?###answer:SELECT pal_m FROM table_name_55 WHERE pal_i = "50hz"###context:CREATE TABLE table_name_55 (pal_m VARCHAR, pal_i VARCHAR)
###question:What is the NTSC M for Pal M 525/60?###answer:SELECT ntsc_m FROM table_name_23 WHERE pal_m = "525/60"###context:CREATE TABLE table_name_23 (ntsc_m VARCHAR, pal_m VARCHAR)
###question:What is the PAL M for the NTSC M 4.5mhz?###answer:SELECT pal_m FROM table_name_54 WHERE ntsc_m = "4.5mhz"###context:CREATE TABLE table_name_54 (pal_m VARCHAR, ntsc_m VARCHAR)
###question:What is the sum of Year, when Rank is less than 19?###answer:SELECT SUM(year) FROM table_name_4 WHERE rank < 19###context:CREATE TABLE table_name_4 (year INTEGER, rank INTEGER)
###question:What is the sum of Year, when Publication is "VH1", and when Rank is greater than 11?###answer:SELECT SUM(year) FROM table_name_65 WHERE publication = "vh1" AND rank > 11###context:CREATE TABLE table_name_65 (year INTEGER, publication VARCHAR, rank VARCHAR)
###question:What is Accolade, when Year is less than 2002, when Publication is "Rolling Stone", and when Rank is "48"?###answer:SELECT accolade FROM table_name_76 WHERE year < 2002 AND publication = "rolling stone" AND rank = 48###context:CREATE TABLE table_name_76 (accolade VARCHAR, rank VARCHAR, year VARCHAR, publica...
###question:What is the lowest Year, when Rank is greater than 85?###answer:SELECT MIN(year) FROM table_name_28 WHERE rank > 85###context:CREATE TABLE table_name_28 (year INTEGER, rank INTEGER)
###question:What is Accolade, when Country is "United States", and when Year is "1999"?###answer:SELECT accolade FROM table_name_8 WHERE country = "united states" AND year = 1999###context:CREATE TABLE table_name_8 (accolade VARCHAR, country VARCHAR, year VARCHAR)
###question:What is Pick, when Player is "Dexter Bailey"?###answer:SELECT pick FROM table_name_34 WHERE player = "dexter bailey"###context:CREATE TABLE table_name_34 (pick VARCHAR, player VARCHAR)
###question:What is the sum of Round, when Nationality is "United States", and when Pick is "125"?###answer:SELECT SUM(round) FROM table_name_91 WHERE nationality = "united states" AND pick = 125###context:CREATE TABLE table_name_91 (round INTEGER, nationality VARCHAR, pick VARCHAR)
###question:What is Round, when School/Club Team is "Tennessee-Chattanooga"?###answer:SELECT round FROM table_name_62 WHERE school_club_team = "tennessee-chattanooga"###context:CREATE TABLE table_name_62 (round VARCHAR, school_club_team VARCHAR)
###question:What is the average Pick, when Player is "Willie White",and when Round is less than 2?###answer:SELECT AVG(pick) FROM table_name_82 WHERE player = "willie white" AND round < 2###context:CREATE TABLE table_name_82 (pick INTEGER, player VARCHAR, round VARCHAR)
###question:What is the total prominence in ft of the peak of kangchenjunga central, which has a prominence in m less than 32?###answer:SELECT COUNT(prominence__ft_) FROM table_name_67 WHERE name_of_peak = "kangchenjunga central" AND prominence__m_ < 32###context:CREATE TABLE table_name_67 (prominence__ft_ VARCHAR, nam...
###question:What is the highest prominence in ft of the peak with a prominence in m less than 103?###answer:SELECT MAX(prominence__ft_) FROM table_name_18 WHERE prominence__m_ < 103###context:CREATE TABLE table_name_18 (prominence__ft_ INTEGER, prominence__m_ INTEGER)
###question:What was the result when the attendance was 78,793?###answer:SELECT result FROM table_name_53 WHERE attendance = "78,793"###context:CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR)
###question:What was the attendance when the result was a bye?###answer:SELECT attendance FROM table_name_79 WHERE result = "bye"###context:CREATE TABLE table_name_79 (attendance VARCHAR, result VARCHAR)
###question:What was the attendance total for week 10?###answer:SELECT attendance FROM table_name_77 WHERE week = 10###context:CREATE TABLE table_name_77 (attendance VARCHAR, week VARCHAR)
###question:What's the game date for week 7?###answer:SELECT date FROM table_name_32 WHERE week = 7###context:CREATE TABLE table_name_32 (date VARCHAR, week VARCHAR)
###question:WHAT IS THE ROUND WITH PICK OF 7?###answer:SELECT SUM(round) FROM table_name_9 WHERE pick = 7###context:CREATE TABLE table_name_9 (round INTEGER, pick VARCHAR)
###question:WHAT IS THE PICK WITH K POSITION AND OVERALL SMALLER THAN 181?###answer:SELECT SUM(pick) FROM table_name_40 WHERE position = "k" AND overall < 181###context:CREATE TABLE table_name_40 (pick INTEGER, position VARCHAR, overall VARCHAR)
###question:WHAT IS THE ROUND FROM MICHIGAN COLLEGE, AND OVERALL LARGER THAN 37?###answer:SELECT SUM(round) FROM table_name_55 WHERE college = "michigan" AND overall > 37###context:CREATE TABLE table_name_55 (round INTEGER, college VARCHAR, overall VARCHAR)
###question:WHAT IS THE LOWEST ROUND FOR CB POSITION?###answer:SELECT MIN(round) FROM table_name_56 WHERE position = "cb"###context:CREATE TABLE table_name_56 (round INTEGER, position VARCHAR)
###question:Who's the Writer with an Original Airdate of september 4, 2005 (hbo)?###answer:SELECT writer FROM table_name_91 WHERE original_airdate = "september 4, 2005 (hbo)"###context:CREATE TABLE table_name_91 (writer VARCHAR, original_airdate VARCHAR)
###question:Which Director has an Episode of 13?###answer:SELECT director FROM table_name_17 WHERE episode = 13###context:CREATE TABLE table_name_17 (director VARCHAR, episode VARCHAR)
###question:Which Original Airdate has an Episode of 1?###answer:SELECT original_airdate FROM table_name_2 WHERE episode = 1###context:CREATE TABLE table_name_2 (original_airdate VARCHAR, episode VARCHAR)
###question:On what date was the venue A with a result of 3–0?###answer:SELECT date FROM table_name_93 WHERE venue = "a" AND result = "3–0"###context:CREATE TABLE table_name_93 (date VARCHAR, venue VARCHAR, result VARCHAR)
###question:What is the most noteworthy Bike No that has a Position bigger than 1, and a Points bigger than 369, and an Equipment of zabel-wsp?###answer:SELECT MAX(bike_no) FROM table_name_77 WHERE position > 1 AND points > 369 AND equipment = "zabel-wsp"###context:CREATE TABLE table_name_77 (bike_no INTEGER, equipment...
###question:What is the aggregate number of Position that has a Bike No of 4?###answer:SELECT COUNT(position) FROM table_name_19 WHERE bike_no = 4###context:CREATE TABLE table_name_19 (position VARCHAR, bike_no VARCHAR)
###question:When was the result l 14–24?###answer:SELECT date FROM table_name_71 WHERE result = "l 14–24"###context:CREATE TABLE table_name_71 (date VARCHAR, result VARCHAR)
###question:What was the first week when there was an attendance over 75,007 at Mile High Stadium?###answer:SELECT MIN(week) FROM table_name_21 WHERE game_site = "mile high stadium" AND attendance > 75 OFFSET 007###context:CREATE TABLE table_name_21 (week INTEGER, game_site VARCHAR, attendance VARCHAR)
###question:Away team Swindon Town had a Tie no listing of Replay with what as an Attendance?###answer:SELECT attendance FROM table_name_74 WHERE tie_no = "replay" AND away_team = "swindon town"###context:CREATE TABLE table_name_74 (attendance VARCHAR, tie_no VARCHAR, away_team VARCHAR)
###question:Liverpool as a home team as listed what in the Tie no column?###answer:SELECT tie_no FROM table_name_28 WHERE home_team = "liverpool"###context:CREATE TABLE table_name_28 (tie_no VARCHAR, home_team VARCHAR)
###question:What is the score for the away team of Grimsby Town?###answer:SELECT score FROM table_name_41 WHERE away_team = "grimsby town"###context:CREATE TABLE table_name_41 (score VARCHAR, away_team VARCHAR)
###question:Which Pick has a Round larger than 1, a School/Club Team of alcorn state, and a Position of defensive back?###answer:SELECT SUM(pick) FROM table_name_88 WHERE round > 1 AND school_club_team = "alcorn state" AND position = "defensive back"###context:CREATE TABLE table_name_88 (pick INTEGER, position VARCHAR,...
###question:Which Pick has a Position of offensive guard, a Player of reggie mckenzie, and a Round larger than 2?###answer:SELECT COUNT(pick) FROM table_name_96 WHERE position = "offensive guard" AND player = "reggie mckenzie" AND round > 2###context:CREATE TABLE table_name_96 (pick VARCHAR, round VARCHAR, position VAR...
###question:Which School/Club Team has a Round smaller than 5, a Pick larger than 1, and a Player of reggie mckenzie?###answer:SELECT school_club_team FROM table_name_97 WHERE round < 5 AND pick > 1 AND player = "reggie mckenzie"###context:CREATE TABLE table_name_97 (school_club_team VARCHAR, player VARCHAR, round VARC...
###question:Which Player has a Round smaller than 2?###answer:SELECT player FROM table_name_69 WHERE round < 2###context:CREATE TABLE table_name_69 (player VARCHAR, round INTEGER)
###question:What was the record on march 26?###answer:SELECT record FROM table_name_79 WHERE date = "march 26"###context:CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)
###question:Who visited on march 26?###answer:SELECT visitor FROM table_name_6 WHERE date = "march 26"###context:CREATE TABLE table_name_6 (visitor VARCHAR, date VARCHAR)
###question:What were the lowest points on march 2?###answer:SELECT MIN(points) FROM table_name_56 WHERE date = "march 2"###context:CREATE TABLE table_name_56 (points INTEGER, date VARCHAR)
###question:Which Points have a Record of 21–36–9, and an Attendance larger than 14,768?###answer:SELECT SUM(points) FROM table_name_9 WHERE record = "21–36–9" AND attendance > 14 OFFSET 768###context:CREATE TABLE table_name_9 (points INTEGER, record VARCHAR, attendance VARCHAR)
###question:which Name has a Loss larger than 2, and a Avg/G larger than -16, and a GP-GS of 11–7, and a Gain larger than 86?###answer:SELECT name FROM table_name_23 WHERE loss > 2 AND avg_g > -16 AND gp_gs = "11–7" AND gain > 86###context:CREATE TABLE table_name_23 (name VARCHAR, gain VARCHAR, gp_gs VARCHAR, loss VARC...
###question:Name the highest Long that has an Avg/G smaller than 8.4, and an GP-GS of 4–0?###answer:SELECT MAX(long) FROM table_name_88 WHERE avg_g < 8.4 AND gp_gs = "4–0"###context:CREATE TABLE table_name_88 (long INTEGER, avg_g VARCHAR, gp_gs VARCHAR)
###question:Name the lowest Gain which has a Long of 0, and a GP-GS of 4–0, and a Loss smaller than 3?###answer:SELECT MIN(gain) FROM table_name_95 WHERE long = 0 AND gp_gs = "4–0" AND loss < 3###context:CREATE TABLE table_name_95 (gain INTEGER, loss VARCHAR, long VARCHAR, gp_gs VARCHAR)
###question:Name the total of Loss which has an Avg/G of 8.4?###answer:SELECT COUNT(loss) FROM table_name_37 WHERE avg_g = 8.4###context:CREATE TABLE table_name_37 (loss VARCHAR, avg_g VARCHAR)
###question:Which Team has Points of 15?###answer:SELECT team FROM table_name_80 WHERE points = "15"###context:CREATE TABLE table_name_80 (team VARCHAR, points VARCHAR)
###question:Which Laps has a Points of lead changes: 13 between 8 drivers?###answer:SELECT laps FROM table_name_99 WHERE points = "lead changes: 13 between 8 drivers"###context:CREATE TABLE table_name_99 (laps VARCHAR, points VARCHAR)
###question:Which Driver has a Grid of 1?###answer:SELECT driver FROM table_name_45 WHERE grid = "1"###context:CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR)
###question:WHAT IS THE HIGHEST WINS WITH A SERIES OF BRITISH FORMULA THREE, SEASON 2005, POLES SMALLER THAN 0?###answer:SELECT MAX(wins) FROM table_name_89 WHERE series = "british formula three" AND season = "2005" AND poles < 0###context:CREATE TABLE table_name_89 (wins INTEGER, poles VARCHAR, series VARCHAR, season ...
###question:WHAT IS THE SUM OF RACES WITH 9 POINTS?###answer:SELECT SUM(races) FROM table_name_49 WHERE points = "9"###context:CREATE TABLE table_name_49 (races INTEGER, points VARCHAR)
###question:WHAT IS THE AVERAGE POLES WITH POINTS N/A?###answer:SELECT AVG(poles) FROM table_name_71 WHERE points = "n/a"###context:CREATE TABLE table_name_71 (poles INTEGER, points VARCHAR)
###question:Who is that player from South Africa who had a total score under 293?###answer:SELECT player FROM table_name_93 WHERE total < 293 AND country = "south africa"###context:CREATE TABLE table_name_93 (player VARCHAR, total VARCHAR, country VARCHAR)
###question:What is the best when the qual 2 is 1:47.042?###answer:SELECT best FROM table_name_5 WHERE qual_2 = "1:47.042"###context:CREATE TABLE table_name_5 (best VARCHAR, qual_2 VARCHAR)
###question:What is the team when the name is alex sperafico?###answer:SELECT team FROM table_name_58 WHERE name = "alex sperafico"###context:CREATE TABLE table_name_58 (team VARCHAR, name VARCHAR)
###question:What is the qual 2 when the best is 1:45.172?###answer:SELECT qual_2 FROM table_name_32 WHERE best = "1:45.172"###context:CREATE TABLE table_name_32 (qual_2 VARCHAR, best VARCHAR)
###question:What is the name for the best of 1:45.361?###answer:SELECT name FROM table_name_17 WHERE best = "1:45.361"###context:CREATE TABLE table_name_17 (name VARCHAR, best VARCHAR)
###question:What name has a qual 2 of 1:43.374?###answer:SELECT name FROM table_name_97 WHERE qual_2 = "1:43.374"###context:CREATE TABLE table_name_97 (name VARCHAR, qual_2 VARCHAR)
###question:What name has a qual 2 of 1:46.025?###answer:SELECT name FROM table_name_33 WHERE qual_2 = "1:46.025"###context:CREATE TABLE table_name_33 (name VARCHAR, qual_2 VARCHAR)
###question:What was the streak on March 27?###answer:SELECT streak FROM table_name_81 WHERE date = "march 27"###context:CREATE TABLE table_name_81 (streak VARCHAR, date VARCHAR)
###question:Which streak before game 12 had a team points larger than 113 on November 16?###answer:SELECT streak FROM table_name_88 WHERE team_points > 113 AND game < 12 AND date = "november 16"###context:CREATE TABLE table_name_88 (streak VARCHAR, date VARCHAR, team_points VARCHAR, game VARCHAR)
###question:Who scored the lowest with 8 gold medals and less than 4 silver medals?###answer:SELECT MIN(total) FROM table_name_40 WHERE gold = 8 AND silver < 4###context:CREATE TABLE table_name_40 (total INTEGER, gold VARCHAR, silver VARCHAR)
###question:What is the rank for the 3 silver medals?###answer:SELECT rank FROM table_name_13 WHERE silver = 3###context:CREATE TABLE table_name_13 (rank VARCHAR, silver VARCHAR)
###question:Which young classification has an aggressive rider of Tim Johnson?###answer:SELECT young_classification FROM table_name_89 WHERE aggressive_rider = "tim johnson"###context:CREATE TABLE table_name_89 (young_classification VARCHAR, aggressive_rider VARCHAR)
###question:what was the overall pick number for rich dobbert?###answer:SELECT AVG(overall) FROM table_name_36 WHERE name = "rich dobbert"###context:CREATE TABLE table_name_36 (overall INTEGER, name VARCHAR)
###question:What is the sum of the rounds where the overall pick was more than 295 and the pick was smaller than 10 and the player was rich dobbert?###answer:SELECT SUM(round) FROM table_name_93 WHERE overall > 295 AND name = "rich dobbert" AND pick < 10###context:CREATE TABLE table_name_93 (round INTEGER, pick VARCHAR...
###question:What position did eric norri play who was the overall pick less than 322 on a round larger than 3?###answer:SELECT position FROM table_name_33 WHERE overall < 322 AND round > 3 AND name = "eric norri"###context:CREATE TABLE table_name_33 (position VARCHAR, name VARCHAR, overall VARCHAR, round VARCHAR)
###question:What was the report for the game with the home team of the Townsville Crocodiles?###answer:SELECT report FROM table_name_54 WHERE home_team = "townsville crocodiles"###context:CREATE TABLE table_name_54 (report VARCHAR, home_team VARCHAR)
###question:What was the venue that featured the Melbourne Tigers as the away team?###answer:SELECT venue FROM table_name_95 WHERE away_team = "melbourne tigers"###context:CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)
###question:What was the report for the game played at the Hisense Arena?###answer:SELECT report FROM table_name_42 WHERE venue = "hisense arena"###context:CREATE TABLE table_name_42 (report VARCHAR, venue VARCHAR)
###question:When the Points 1 was 51 and the Goals Against was less than 66, what was the Goal Difference?###answer:SELECT goal_difference FROM table_name_56 WHERE points_1 = "51" AND goals_against < 66###context:CREATE TABLE table_name_56 (goal_difference VARCHAR, points_1 VARCHAR, goals_against VARCHAR)
###question:What is the total of Played where the Goals For is higher than 60, the Lost is 8, and the Position is less than 1?###answer:SELECT SUM(played) FROM table_name_22 WHERE goals_for > 60 AND lost = 8 AND position < 1###context:CREATE TABLE table_name_22 (played INTEGER, position VARCHAR, goals_for VARCHAR, lost...
###question:What was the Goal Difference for Postion 22?###answer:SELECT goal_difference FROM table_name_61 WHERE position = 22###context:CREATE TABLE table_name_61 (goal_difference VARCHAR, position VARCHAR)