combined_text stringlengths 106 1.05k |
|---|
###question:Which Other has a Green of 0, and an Independent of 1, and a Labour smaller than 45, and a Control of labour lose to no overall control?###answer:SELECT other FROM table_name_90 WHERE green = 0 AND independent = 1 AND labour < 45 AND control = "labour lose to no overall control"###context:CREATE TABLE table... |
###question:Which Social Democratic Party has a Green smaller than 0?###answer:SELECT AVG(social_democratic_party) FROM table_name_10 WHERE green < 0###context:CREATE TABLE table_name_10 (social_democratic_party INTEGER, green INTEGER) |
###question:When the try bonus was 10 what was the losing bonus?###answer:SELECT losing_bonus FROM table_name_78 WHERE try_bonus = "10"###context:CREATE TABLE table_name_78 (losing_bonus VARCHAR, try_bonus VARCHAR) |
###question:When the losing bonus was 2 what was drawn score?###answer:SELECT drawn FROM table_name_97 WHERE losing_bonus = "2"###context:CREATE TABLE table_name_97 (drawn VARCHAR, losing_bonus VARCHAR) |
###question:If the try bonus was 5 what was the try against score?###answer:SELECT tries_against FROM table_name_99 WHERE try_bonus = "5"###context:CREATE TABLE table_name_99 (tries_against VARCHAR, try_bonus VARCHAR) |
###question:When the tries against is 90 how many points are there?###answer:SELECT points FROM table_name_92 WHERE tries_against = "90"###context:CREATE TABLE table_name_92 (points VARCHAR, tries_against VARCHAR) |
###question:What club has tries against of 75?###answer:SELECT club FROM table_name_58 WHERE tries_against = "75"###context:CREATE TABLE table_name_58 (club VARCHAR, tries_against VARCHAR) |
###question:What is the total number of overall figures when duke was the college and the round was higher than 7?###answer:SELECT SUM(overall) FROM table_name_99 WHERE college = "duke" AND round > 7###context:CREATE TABLE table_name_99 (overall INTEGER, college VARCHAR, round VARCHAR) |
###question:Which of the highest pick numbers had a round of less than 2?###answer:SELECT MAX(pick__number) FROM table_name_81 WHERE round < 2###context:CREATE TABLE table_name_81 (pick__number INTEGER, round INTEGER) |
###question:Which pick number had a round of less than 7, an overall of less than 127, and where the name was Robert Alford?###answer:SELECT pick__number FROM table_name_82 WHERE round < 7 AND overall < 127 AND name = "robert alford"###context:CREATE TABLE table_name_82 (pick__number VARCHAR, name VARCHAR, round VARCHA... |
###question:Which highest overall figure had Robert Alford as a name and a round of more than 2?###answer:SELECT MAX(overall) FROM table_name_89 WHERE name = "robert alford" AND round > 2###context:CREATE TABLE table_name_89 (overall INTEGER, name VARCHAR, round VARCHAR) |
###question:What Game site has an Opponent of Miami Dolphins?###answer:SELECT game_site FROM table_name_90 WHERE opponent = "miami dolphins"###context:CREATE TABLE table_name_90 (game_site VARCHAR, opponent VARCHAR) |
###question:What's the Lowest Attendance with a Game site of Riverfront Stadium?###answer:SELECT MIN(attendance) FROM table_name_56 WHERE game_site = "riverfront stadium"###context:CREATE TABLE table_name_56 (attendance INTEGER, game_site VARCHAR) |
###question:What's the lowest Attendance for a Week of 2?###answer:SELECT MIN(attendance) FROM table_name_3 WHERE week = 2###context:CREATE TABLE table_name_3 (attendance INTEGER, week VARCHAR) |
###question:How many bronze medals does South Korea have?###answer:SELECT bronze FROM table_name_20 WHERE nation = "south korea"###context:CREATE TABLE table_name_20 (bronze VARCHAR, nation VARCHAR) |
###question:What is the smallest number of total medals for Georgia with 0 silver and 1 bronze?###answer:SELECT MIN(total) FROM table_name_87 WHERE silver > 0 AND nation = "georgia" AND bronze < 1###context:CREATE TABLE table_name_87 (total INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR) |
###question:What is the lowest year that had foil team as the event at Melbourne?###answer:SELECT MIN(year) FROM table_name_7 WHERE event = "foil team" AND venue = "melbourne"###context:CREATE TABLE table_name_7 (year INTEGER, event VARCHAR, venue VARCHAR) |
###question:What is the number of years that the event was foil team and took place in Los Angeles?###answer:SELECT COUNT(year) FROM table_name_77 WHERE venue = "los angeles" AND event = "foil team"###context:CREATE TABLE table_name_77 (year VARCHAR, venue VARCHAR, event VARCHAR) |
###question:What was the position at the venue of lyon?###answer:SELECT position FROM table_name_71 WHERE venue = "lyon"###context:CREATE TABLE table_name_71 (position VARCHAR, venue VARCHAR) |
###question:What was the position for mauro at the world championships in 1985 during the foil individual event?###answer:SELECT position FROM table_name_41 WHERE event = "foil individual" AND competition = "world championships" AND year = 1985###context:CREATE TABLE table_name_41 (position VARCHAR, year VARCHAR, event... |
###question:What was the playoff status when the head coach was Brent Sutter, the finish was 4th central, and the points were 82?###answer:SELECT playoffs FROM table_name_50 WHERE head_coach = "brent sutter" AND finish = "4th central" AND points = "82"###context:CREATE TABLE table_name_50 (playoffs VARCHAR, points VARC... |
###question:2001 of 2–4 was in which tournament?###answer:SELECT tournament FROM table_name_2 WHERE 2001 = "2–4"###context:CREATE TABLE table_name_2 (tournament VARCHAR) |
###question:2013 of 4–4 is involved in what 2006?###answer:SELECT 2006 FROM table_name_59 WHERE 2013 = "4–4"###context:CREATE TABLE table_name_59 (Id VARCHAR) |
###question:2007 of 1r is involved in what 2001?###answer:SELECT 2001 FROM table_name_31 WHERE 2007 = "1r"###context:CREATE TABLE table_name_31 (Id VARCHAR) |
###question:2007 of 8–4 is involved in what 2002?###answer:SELECT 2002 FROM table_name_69 WHERE 2007 = "8–4"###context:CREATE TABLE table_name_69 (Id VARCHAR) |
###question:2005 of 3r, and a 2000 of lq, and a 2002 of 3r is in what 2004?###answer:SELECT 2004 FROM table_name_7 WHERE 2005 = "3r" AND 2000 = "lq" AND 2002 = "3r"###context:CREATE TABLE table_name_7 (Id VARCHAR) |
###question:2006 of 10–4 is in which 2000?###answer:SELECT 2000 FROM table_name_85 WHERE 2006 = "10–4"###context:CREATE TABLE table_name_85 (Id VARCHAR) |
###question:What is the smallest number of drawn games when there are fewer than 4 points and more than 4 lost games?###answer:SELECT MIN(drawn) FROM table_name_52 WHERE points < 4 AND lost > 4###context:CREATE TABLE table_name_52 (drawn INTEGER, points VARCHAR, lost VARCHAR) |
###question:What is the sum of the points when there are fewer than 4 games?###answer:SELECT SUM(points) FROM table_name_87 WHERE games < 4###context:CREATE TABLE table_name_87 (points INTEGER, games INTEGER) |
###question:Who holds the lead role when Aanders Brorson is third?###answer:SELECT lead FROM table_name_97 WHERE third = "aanders brorson"###context:CREATE TABLE table_name_97 (lead VARCHAR, third VARCHAR) |
###question:Who has the role of skip when the lead is Dominik Greindl?###answer:SELECT skip FROM table_name_69 WHERE lead = "dominik greindl"###context:CREATE TABLE table_name_69 (skip VARCHAR, lead VARCHAR) |
###question:Who is the second when Mikkel Krause is the third?###answer:SELECT second FROM table_name_18 WHERE third = "mikkel krause"###context:CREATE TABLE table_name_18 (second VARCHAR, third VARCHAR) |
###question:Who is the Skip when Alasdair Guthrie is the third?###answer:SELECT skip FROM table_name_83 WHERE third = "alasdair guthrie"###context:CREATE TABLE table_name_83 (skip VARCHAR, third VARCHAR) |
###question:Who is the Second when Michel Gribi is the lead?###answer:SELECT second FROM table_name_90 WHERE lead = "michel gribi"###context:CREATE TABLE table_name_90 (second VARCHAR, lead VARCHAR) |
###question:What is the highest position of the team with an against of 12, less than 11 points, more than 2 drawn, and more than 9 played?###answer:SELECT MAX(position) FROM table_name_24 WHERE against = 12 AND points < 11 AND drawn > 2 AND played > 9###context:CREATE TABLE table_name_24 (position INTEGER, played VARC... |
###question:What is the difference of the team with 12 points?###answer:SELECT difference FROM table_name_57 WHERE points = 12###context:CREATE TABLE table_name_57 (difference VARCHAR, points VARCHAR) |
###question:What is the average number of played of the team with 3 losses, more than 9 points, a position of 5, and less than 12 against?###answer:SELECT AVG(played) FROM table_name_51 WHERE lost = 3 AND points > 9 AND position = 5 AND against < 12###context:CREATE TABLE table_name_51 (played INTEGER, against VARCHAR,... |
###question:Name the rating % for channel of anhui satellite tv###answer:SELECT rating___percentage_ FROM table_name_73 WHERE channel = "anhui satellite tv"###context:CREATE TABLE table_name_73 (rating___percentage_ VARCHAR, channel VARCHAR) |
###question:Name the most share for anhui satellite tv###answer:SELECT MAX(share___percentage_) FROM table_name_42 WHERE channel = "anhui satellite tv"###context:CREATE TABLE table_name_42 (share___percentage_ INTEGER, channel VARCHAR) |
###question:Name the sum of rating % for cctv and position more than 7###answer:SELECT SUM(rating___percentage_) FROM table_name_62 WHERE owner = "cctv" AND position > 7###context:CREATE TABLE table_name_62 (rating___percentage_ INTEGER, owner VARCHAR, position VARCHAR) |
###question:Name the average rating % for shandong satellite tv and share % less than 1.74###answer:SELECT AVG(rating___percentage_) FROM table_name_13 WHERE channel = "shandong satellite tv" AND share___percentage_ < 1.74###context:CREATE TABLE table_name_13 (rating___percentage_ INTEGER, channel VARCHAR, share___perc... |
###question:What date was Montreal the visitor?###answer:SELECT date FROM table_name_50 WHERE visitor = "montreal"###context:CREATE TABLE table_name_50 (date VARCHAR, visitor VARCHAR) |
###question:What is the record for the NY Rangers?###answer:SELECT record FROM table_name_92 WHERE home = "ny rangers"###context:CREATE TABLE table_name_92 (record VARCHAR, home VARCHAR) |
###question:Name the sum of round for pick of 169###answer:SELECT SUM(round) FROM table_name_41 WHERE pick = 169###context:CREATE TABLE table_name_41 (round INTEGER, pick VARCHAR) |
###question:Name the nationality for pick of 16###answer:SELECT nationality FROM table_name_12 WHERE pick = 16###context:CREATE TABLE table_name_12 (nationality VARCHAR, pick VARCHAR) |
###question:Which Lead has a Skip of pavol pitonak?###answer:SELECT lead FROM table_name_94 WHERE skip = "pavol pitonak"###context:CREATE TABLE table_name_94 (lead VARCHAR, skip VARCHAR) |
###question:What is the skip in Wales?###answer:SELECT skip FROM table_name_31 WHERE nation = "wales"###context:CREATE TABLE table_name_31 (skip VARCHAR, nation VARCHAR) |
###question:Which Nation has a Second of tomas pitonak?###answer:SELECT nation FROM table_name_72 WHERE second = "tomas pitonak"###context:CREATE TABLE table_name_72 (nation VARCHAR, second VARCHAR) |
###question:Which Second has a Third of athanassios pantios?###answer:SELECT second FROM table_name_56 WHERE third = "athanassios pantios"###context:CREATE TABLE table_name_56 (second VARCHAR, third VARCHAR) |
###question:Where did Croatia lead?###answer:SELECT lead FROM table_name_1 WHERE nation = "croatia"###context:CREATE TABLE table_name_1 (lead VARCHAR, nation VARCHAR) |
###question:Which Skip has a Third of carlo alessandro zisa?###answer:SELECT skip FROM table_name_34 WHERE third = "carlo alessandro zisa"###context:CREATE TABLE table_name_34 (skip VARCHAR, third VARCHAR) |
###question:What is the nationality of Shaun Sabol?###answer:SELECT nationality FROM table_name_94 WHERE player = "shaun sabol"###context:CREATE TABLE table_name_94 (nationality VARCHAR, player VARCHAR) |
###question:What is the position of United States' player Brett Lawrence?###answer:SELECT position FROM table_name_74 WHERE nationality = "united states" AND player = "brett lawrence"###context:CREATE TABLE table_name_74 (position VARCHAR, nationality VARCHAR, player VARCHAR) |
###question:Which Compression ratio has a (none) DX 10 Name and a FOURCC of dxt4?###answer:SELECT compression_ratio FROM table_name_57 WHERE dx_10_name = "(none)" AND fourcc = "dxt4"###context:CREATE TABLE table_name_57 (compression_ratio VARCHAR, dx_10_name VARCHAR, fourcc VARCHAR) |
###question:What is the venue of the napa auto parts 200 race with a mrn radio?###answer:SELECT venue FROM table_name_79 WHERE radio = "mrn" AND race = "napa auto parts 200"###context:CREATE TABLE table_name_79 (venue VARCHAR, radio VARCHAR, race VARCHAR) |
###question:What is the race on 10/10/2008?###answer:SELECT race FROM table_name_3 WHERE date = "10/10/2008"###context:CREATE TABLE table_name_3 (race VARCHAR, date VARCHAR) |
###question:Which race has a distance of 201.44 miles?###answer:SELECT race FROM table_name_71 WHERE distance = "201.44 miles"###context:CREATE TABLE table_name_71 (race VARCHAR, distance VARCHAR) |
###question:What is the distance of the race at the Atlanta Motor Speedway?###answer:SELECT distance FROM table_name_48 WHERE venue = "atlanta motor speedway"###context:CREATE TABLE table_name_48 (distance VARCHAR, venue VARCHAR) |
###question:What is the distance of the Sam's town 250 race?###answer:SELECT distance FROM table_name_24 WHERE race = "sam's town 250"###context:CREATE TABLE table_name_24 (distance VARCHAR, race VARCHAR) |
###question:What is the venue of teh carfax 250 race?###answer:SELECT venue FROM table_name_62 WHERE race = "carfax 250"###context:CREATE TABLE table_name_62 (venue VARCHAR, race VARCHAR) |
###question:What is the name of the event where Cornell-Penn played?###answer:SELECT name FROM table_name_33 WHERE teams = "cornell-penn"###context:CREATE TABLE table_name_33 (name VARCHAR, teams VARCHAR) |
###question:Who many games were played for the series with the Sawhorse Dollar trophy?###answer:SELECT games_played FROM table_name_77 WHERE trophy = "sawhorse dollar"###context:CREATE TABLE table_name_77 (games_played VARCHAR, trophy VARCHAR) |
###question:How many games have Points smaller than 4, and an October smaller than 5?###answer:SELECT COUNT(game) FROM table_name_51 WHERE points < 4 AND october < 5###context:CREATE TABLE table_name_51 (game VARCHAR, points VARCHAR, october VARCHAR) |
###question:Which Game has a Record of 8–2–0, and Points larger than 16?###answer:SELECT SUM(game) FROM table_name_43 WHERE record = "8–2–0" AND points > 16###context:CREATE TABLE table_name_43 (game INTEGER, record VARCHAR, points VARCHAR) |
###question:Which Score has an October smaller than 15, and a Record of 2–0–0?###answer:SELECT score FROM table_name_73 WHERE october < 15 AND record = "2–0–0"###context:CREATE TABLE table_name_73 (score VARCHAR, october VARCHAR, record VARCHAR) |
###question:How many games have November 7 as the date, and points greater than 17?###answer:SELECT COUNT(game) FROM table_name_31 WHERE november = 7 AND points > 17###context:CREATE TABLE table_name_31 (game VARCHAR, november VARCHAR, points VARCHAR) |
###question:How many points have November of 15?###answer:SELECT SUM(points) FROM table_name_45 WHERE november = 15###context:CREATE TABLE table_name_45 (points INTEGER, november VARCHAR) |
###question:Name the winning score for jim barnes and year of 1924###answer:SELECT winning_score FROM table_name_24 WHERE runner_up = "jim barnes" AND year = 1924###context:CREATE TABLE table_name_24 (winning_score VARCHAR, runner_up VARCHAR, year VARCHAR) |
###question:What was the Rider of the LCR Honda 600CC Team with a Time of 59’ 22.80?###answer:SELECT rider FROM table_name_96 WHERE team = "lcr honda 600cc" AND time = "59’ 22.80"###context:CREATE TABLE table_name_96 (rider VARCHAR, team VARCHAR, time VARCHAR) |
###question:What Rider had a Speed of 108.347mph and Time of 1:02.40.93?###answer:SELECT rider FROM table_name_12 WHERE speed = "108.347mph" AND time = "1:02.40.93"###context:CREATE TABLE table_name_12 (rider VARCHAR, speed VARCHAR, time VARCHAR) |
###question:What Rider had a Time of 1:01.50.57?###answer:SELECT rider FROM table_name_46 WHERE time = "1:01.50.57"###context:CREATE TABLE table_name_46 (rider VARCHAR, time VARCHAR) |
###question:What is the average attendance that has june 24 as the date?###answer:SELECT AVG(attendance) FROM table_name_14 WHERE date = "june 24"###context:CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR) |
###question:What date has 2:59 as the time?###answer:SELECT date FROM table_name_95 WHERE time = "2:59"###context:CREATE TABLE table_name_95 (date VARCHAR, time VARCHAR) |
###question:What is the surface when the tournament is manta, ecuador?###answer:SELECT surface FROM table_name_95 WHERE tournament = "manta, ecuador"###context:CREATE TABLE table_name_95 (surface VARCHAR, tournament VARCHAR) |
###question:What is the surface for the tournament of manta, ecuador?###answer:SELECT surface FROM table_name_22 WHERE tournament = "manta, ecuador"###context:CREATE TABLE table_name_22 (surface VARCHAR, tournament VARCHAR) |
###question:What tournament is lesley joseph the opponent?###answer:SELECT tournament FROM table_name_11 WHERE opponent = "lesley joseph"###context:CREATE TABLE table_name_11 (tournament VARCHAR, opponent VARCHAR) |
###question:What date was marcos daniel the opponent?###answer:SELECT date FROM table_name_16 WHERE opponent = "marcos daniel"###context:CREATE TABLE table_name_16 (date VARCHAR, opponent VARCHAR) |
###question:What is the Copa Libertadores 1999 result for team grêmio, who did not qualify for Copa Conmebol 1999?###answer:SELECT copa_libertadores_1999 FROM table_name_23 WHERE copa_conmebol_1999 = "did not qualify" AND team = "grêmio"###context:CREATE TABLE table_name_23 (copa_libertadores_1999 VARCHAR, copa_conmebo... |
###question:What is the copa mercosur 1999 result for team grêmio, who did not qualify for the Copa Libertadores 1999 and Copa Conmebol 1999?###answer:SELECT copa_mercosur_1999 FROM table_name_51 WHERE copa_libertadores_1999 = "did not qualify" AND copa_conmebol_1999 = "did not qualify" AND team = "grêmio"###context:CR... |
###question:What is the intercontinental cup 1999 result of the team who did not qualify for the Copa Libertadores 1999 and made quarterfinals in the Copa Mercosur 1999?###answer:SELECT intercontinental_cup_1999 FROM table_name_48 WHERE copa_libertadores_1999 = "did not qualify" AND copa_mercosur_1999 = "quarterfinals"... |
###question:What is the Copa Libertadores 1999 result for team vasco, which made the group stage in the Copa Mercosur 1999?###answer:SELECT copa_libertadores_1999 FROM table_name_62 WHERE copa_mercosur_1999 = "group stage" AND team = "vasco"###context:CREATE TABLE table_name_62 (copa_libertadores_1999 VARCHAR, copa_mer... |
###question:What is the Intercontinental Cup 1999 result for the team with a Copa Conmebol 1999 result of runner-up?###answer:SELECT intercontinental_cup_1999 FROM table_name_63 WHERE copa_conmebol_1999 = "runner-up"###context:CREATE TABLE table_name_63 (intercontinental_cup_1999 VARCHAR, copa_conmebol_1999 VARCHAR) |
###question:What is the Copa Conmebol 1999 result of team cruzeiro, which did not qualify for the Copa Libertadores 1999?###answer:SELECT copa_conmebol_1999 FROM table_name_4 WHERE copa_libertadores_1999 = "did not qualify" AND team = "cruzeiro"###context:CREATE TABLE table_name_4 (copa_conmebol_1999 VARCHAR, copa_libe... |
###question:How many people attended the game that lost 2-4 and the date was higher than 15?###answer:SELECT COUNT(attendance) FROM table_name_60 WHERE result = "lost 2-4" AND date > 15###context:CREATE TABLE table_name_60 (attendance VARCHAR, result VARCHAR, date VARCHAR) |
###question:What kind of competition had an attendance of more than 914 people and the Wightlink Raiders as an opponent?###answer:SELECT competition FROM table_name_52 WHERE attendance > 914 AND opponent = "wightlink raiders"###context:CREATE TABLE table_name_52 (competition VARCHAR, attendance VARCHAR, opponent VARCHA... |
###question:How many people attended the away league competition with a date of 22?###answer:SELECT attendance FROM table_name_61 WHERE competition = "league" AND venue = "away" AND date = 22###context:CREATE TABLE table_name_61 (attendance VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR) |
###question:Which Series has a Date of may 2?###answer:SELECT series FROM table_name_7 WHERE date = "may 2"###context:CREATE TABLE table_name_7 (series VARCHAR, date VARCHAR) |
###question:Which Game has a Series of bruins lead 3–1?###answer:SELECT SUM(game) FROM table_name_30 WHERE series = "bruins lead 3–1"###context:CREATE TABLE table_name_30 (game INTEGER, series VARCHAR) |
###question:Which Opponent has a Series of bruins lead 2–1?###answer:SELECT opponent FROM table_name_91 WHERE series = "bruins lead 2–1"###context:CREATE TABLE table_name_91 (opponent VARCHAR, series VARCHAR) |
###question:Which Date has a Game of 4?###answer:SELECT date FROM table_name_33 WHERE game = 4###context:CREATE TABLE table_name_33 (date VARCHAR, game VARCHAR) |
###question:Which Game has a Score of 3–6?###answer:SELECT SUM(game) FROM table_name_19 WHERE score = "3–6"###context:CREATE TABLE table_name_19 (game INTEGER, score VARCHAR) |
###question:What is the Rank of industrial and commercial bank of china 277,236?###answer:SELECT rank FROM table_name_1 WHERE first_quarter = "industrial and commercial bank of china 277,236"###context:CREATE TABLE table_name_1 (rank VARCHAR, first_quarter VARCHAR) |
###question:What was result of goal 4?###answer:SELECT result FROM table_name_11 WHERE goal = 4###context:CREATE TABLE table_name_11 (result VARCHAR, goal VARCHAR) |
###question:Who is the player that is part of the team Shawinigan Dynamos (Qmjhl)?###answer:SELECT player FROM table_name_30 WHERE college_junior_club_team__league_ = "shawinigan dynamos (qmjhl)"###context:CREATE TABLE table_name_30 (player VARCHAR, college_junior_club_team__league_ VARCHAR) |
###question:What is the highest round for the Minnesota Junior Stars (Mjhl)?###answer:SELECT MAX(round) FROM table_name_60 WHERE college_junior_club_team__league_ = "minnesota junior stars (mjhl)"###context:CREATE TABLE table_name_60 (round INTEGER, college_junior_club_team__league_ VARCHAR) |
###question:When did woking compete?###answer:SELECT date FROM table_name_92 WHERE opponent = "woking"###context:CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR) |
###question:Which Opponent has an Attendance of 375?###answer:SELECT opponent FROM table_name_65 WHERE attendance = 375###context:CREATE TABLE table_name_65 (opponent VARCHAR, attendance VARCHAR) |
###question:How much Attendance has an Opponent of oxford united?###answer:SELECT SUM(attendance) FROM table_name_58 WHERE opponent = "oxford united"###context:CREATE TABLE table_name_58 (attendance INTEGER, opponent VARCHAR) |
###question:Which Attendance has an Opponent of crawley town?###answer:SELECT attendance FROM table_name_78 WHERE opponent = "crawley town"###context:CREATE TABLE table_name_78 (attendance VARCHAR, opponent VARCHAR) |
###question:How many Podiums where their total for the Series of Macau grand prix, as well as being a season before 2008?###answer:SELECT SUM(podiums) FROM table_name_94 WHERE series = "macau grand prix" AND season < 2008###context:CREATE TABLE table_name_94 (podiums INTEGER, series VARCHAR, season VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.