answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT state FROM table_name_53 WHERE region = "mideast" AND city = "seattle"
Which mideast regional state contains the city of Seattle?
CREATE TABLE table_name_53 (state VARCHAR, region VARCHAR, city VARCHAR)
SELECT away_team AS score FROM table_name_57 WHERE home_team = "collingwood"
What was the score for the away team when they played collingwood?
CREATE TABLE table_name_57 (away_team VARCHAR, home_team VARCHAR)
SELECT poll_source FROM candidate GROUP BY poll_source ORDER BY COUNT(*) DESC LIMIT 1
Which poll resource provided the most number of candidate information?
CREATE TABLE candidate (poll_source VARCHAR)
SELECT venue FROM table_name_70 WHERE notes = "58.48 m"
Which Venue has Notes of 58.48 m?
CREATE TABLE table_name_70 (venue VARCHAR, notes VARCHAR)
SELECT bats FROM table_name_12 WHERE position = "p" AND dob = "18 april 1984"
Which batter played P and was born 18 April 1984?
CREATE TABLE table_name_12 (bats VARCHAR, position VARCHAR, dob VARCHAR)
SELECT date FROM table_name_49 WHERE home_team = "geelong"
What was the date when Geelong was the home team?
CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)
SELECT COUNT(us_viewers__millions_) FROM table_26914076_3 WHERE directed_by = "Rob Bailey"
How many entries are there for u.s. viewers (millions) for the episode directed by rob bailey?
CREATE TABLE table_26914076_3 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT tournament FROM table_name_46 WHERE court_surface = "clay" AND began = 1892
what is the tournament when the court surface is clay and began in 1892?
CREATE TABLE table_name_46 (tournament VARCHAR, court_surface VARCHAR, began VARCHAR)
SELECT player FROM table_name_28 WHERE score = 76 - 68 = 144
Which player scored 76-68=144?
CREATE TABLE table_name_28 (player VARCHAR, score VARCHAR)
SELECT score FROM table_name_87 WHERE team_2 = "usl dunkerque (d2)"
What was the Score of the match with USL Dunkerque (d2) as Team 2?
CREATE TABLE table_name_87 (score VARCHAR, team_2 VARCHAR)
SELECT SUM(silver) FROM table_name_47 WHERE nation = "mexico" AND total > 1
How much Silver has a Nation of mexico, and a Total larger than 1?
CREATE TABLE table_name_47 (silver INTEGER, nation VARCHAR, total VARCHAR)
SELECT COUNT(rides) FROM table_name_16 WHERE total_points < 274 AND rider = "ray day" AND bonus_pts > 3
How many rides did it take Ray Day to get 274 points in total with less than 3 bonus points?
CREATE TABLE table_name_16 (rides VARCHAR, bonus_pts VARCHAR, total_points VARCHAR, rider VARCHAR)
SELECT opponent FROM table_name_77 WHERE january > 8 AND game < 48 AND score = "5–3"
Which Opponent has a January larger than 8, and a Game smaller than 48, and a Score of 5–3?
CREATE TABLE table_name_77 (opponent VARCHAR, score VARCHAR, january VARCHAR, game VARCHAR)
SELECT written_by FROM table_name_12 WHERE directed_by = "dan lerner"
Who wrote the episode that was directed by dan lerner?
CREATE TABLE table_name_12 (written_by VARCHAR, directed_by VARCHAR)
SELECT MAX(round) FROM table_name_91 WHERE opponent = "rene rooze" AND location = "saitama, japan"
What is the highest round of the match with Rene Rooze as the opponent in Saitama, Japan?
CREATE TABLE table_name_91 (round INTEGER, opponent VARCHAR, location VARCHAR)
SELECT COUNT(torque__nm__rpm) FROM table_1212189_1 WHERE model_engine = "1.6 Duratec"
The 1.6 Duratec model/engine has how many torque formulas?
CREATE TABLE table_1212189_1 (torque__nm__rpm VARCHAR, model_engine VARCHAR)
SELECT constructor FROM table_name_17 WHERE circuit = "oulton park" AND date = "15 april"
What company constrcuted the vehicle with a circuit of oulton park on 15 april?
CREATE TABLE table_name_17 (constructor VARCHAR, circuit VARCHAR, date VARCHAR)
SELECT viewers_millions_ FROM table_12919003_3 WHERE episode = "episode 5"
How many millions of viewers did watch Episode 5?
CREATE TABLE table_12919003_3 (viewers_millions_ VARCHAR, episode VARCHAR)
SELECT position_in_table FROM table_27374004_4 WHERE outgoing_manager = "Danny Ost"
What was the team's position in table when Danny OST was the outgoing manager?
CREATE TABLE table_27374004_4 (position_in_table VARCHAR, outgoing_manager VARCHAR)
SELECT nhl_team FROM table_name_45 WHERE player = "rob white"
What NHL team does Rob White play on?
CREATE TABLE table_name_45 (nhl_team VARCHAR, player VARCHAR)
SELECT dorm_name FROM dorm EXCEPT SELECT T1.dorm_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T3.amenity_name = 'TV Lounge'
Find the name of dorms that do not have amenity TV Lounge.
CREATE TABLE dorm (dorm_name VARCHAR, dormid VARCHAR); CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dorm_name VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR, amenity_name VARCHAR)
SELECT date_of_birth__age_ FROM table_name_47 WHERE club_province = "blues" AND caps > 0 AND player = "tom james"
Which Date of Birth (Age) has a Club/province of blues, and Caps larger than 0, and a Player of tom james?
CREATE TABLE table_name_47 (date_of_birth__age_ VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)
SELECT position FROM table_30073089_2 WHERE fis_points = 3495
Name the position for fis points being 3495
CREATE TABLE table_30073089_2 (position VARCHAR, fis_points VARCHAR)
SELECT engine FROM table_20866024_3 WHERE model_designation = "97100"
What type of engine does the model with model designation 97100 have?
CREATE TABLE table_20866024_3 (engine VARCHAR, model_designation VARCHAR)
SELECT opponent FROM table_14263158_3 WHERE result = "0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5"
Who played in the series that resulted in matches with the following scores: 0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5?
CREATE TABLE table_14263158_3 (opponent VARCHAR, result VARCHAR)
SELECT nominee FROM table_name_38 WHERE category = "best female performer"
Who was nominated for best female performer?
CREATE TABLE table_name_38 (nominee VARCHAR, category VARCHAR)
SELECT prr_class FROM table_name_80 WHERE wheel_arrangement = "c-c" AND total_produced < 15
What is the PRR class for wheel arrangement c-c and total less than 15?
CREATE TABLE table_name_80 (prr_class VARCHAR, wheel_arrangement VARCHAR, total_produced VARCHAR)
SELECT yam_[y_] FROM table_name_34 WHERE cassava_[e_] = "0.11"
What is the yam amount when the Cassava amount is 0.11?
CREATE TABLE table_name_34 (yam_ VARCHAR, y_ VARCHAR, cassava_ VARCHAR, e_ VARCHAR)
SELECT title FROM table_2828803_1 WHERE directed_by = "Dennis Smith"
What is the name of the episode that was directed by Dennis Smith?
CREATE TABLE table_2828803_1 (title VARCHAR, directed_by VARCHAR)
SELECT COUNT(losses) FROM table_name_36 WHERE byes > 0
What is the total number of losses where the byes were greater than 0?
CREATE TABLE table_name_36 (losses VARCHAR, byes INTEGER)
SELECT MAX(cable_rank) FROM table_24399615_6
What is the highest cable ranking?
CREATE TABLE table_24399615_6 (cable_rank INTEGER)
SELECT score FROM table_name_50 WHERE away_team = "stoke city"
What was the score of the tie with an away team of Stoke City?
CREATE TABLE table_name_50 (score VARCHAR, away_team VARCHAR)
SELECT high_assists FROM table_name_13 WHERE team = "memphis"
Who had the high assists in the game against Memphis?
CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR)
SELECT race_name FROM table_name_45 WHERE constructor = "maserati" AND circuit = "aintree" AND winning_driver = "stirling moss"
What was the race that featured stirling moss winning with a maserati at aintree?
CREATE TABLE table_name_45 (race_name VARCHAR, winning_driver VARCHAR, constructor VARCHAR, circuit VARCHAR)
SELECT publisher FROM table_name_93 WHERE title = "drop dead"
Which publisher has a title of drop dead?
CREATE TABLE table_name_93 (publisher VARCHAR, title VARCHAR)
SELECT MAX(place) FROM table_name_65 WHERE artist = "nikolas metaxas" AND televote > 60
Which Place is the highest one that has an Artist of nikolas metaxas, and a Televote larger than 60?
CREATE TABLE table_name_65 (place INTEGER, artist VARCHAR, televote VARCHAR)
SELECT MIN(year) FROM table_name_69 WHERE performance = "long jump" AND competition = "world indoor championships" AND position = "5th"
What was the earliest year in which long jump was performed in the world indoor Championships in 5th position?
CREATE TABLE table_name_69 (year INTEGER, position VARCHAR, performance VARCHAR, competition VARCHAR)
SELECT area FROM table_name_76 WHERE decile = "8"
What area is the school with a decile of 8 in?
CREATE TABLE table_name_76 (area VARCHAR, decile VARCHAR)
SELECT segment_a FROM table_15187735_16 WHERE netflix = "S08E21"
Whats the name of segment in s08e21
CREATE TABLE table_15187735_16 (segment_a VARCHAR, netflix VARCHAR)
SELECT location FROM table_name_40 WHERE iteration = "10th"
What is the Location of the 10th Iteration?
CREATE TABLE table_name_40 (location VARCHAR, iteration VARCHAR)
SELECT location FROM table_2461720_1 WHERE theatre_name = "Méga-Plex Taschereau IMAX"
Name the location for democratic méga-plex taschereau imax
CREATE TABLE table_2461720_1 (location VARCHAR, theatre_name VARCHAR)
SELECT score FROM table_name_38 WHERE home_team = "parkgate"
What is the score when parkgate is at home?
CREATE TABLE table_name_38 (score VARCHAR, home_team VARCHAR)
SELECT nickname FROM table_262527_1 WHERE joined = "1902 1"
what is the nickname that joined 1902 1?
CREATE TABLE table_262527_1 (nickname VARCHAR, joined VARCHAR)
SELECT MIN(sp) + fs FROM table_name_64 WHERE name = "miljan begovic" AND placings > 189
What is the lowest value for SP+FS for Miljan Begovic with a greater than 189 place?
CREATE TABLE table_name_64 (fs VARCHAR, sp INTEGER, name VARCHAR, placings VARCHAR)
SELECT top_prize FROM table_name_3 WHERE price = "$1" AND launch_date = "february 12, 2008"
What is the top price of $1 with a launch date on February 12, 2008?
CREATE TABLE table_name_3 (top_prize VARCHAR, price VARCHAR, launch_date VARCHAR)
SELECT best_film FROM table_name_42 WHERE best_supporting_actress = "shamaine buencamino for niño"
Which Best Film has a Best Supporting Actress of shamaine buencamino for niño?
CREATE TABLE table_name_42 (best_film VARCHAR, best_supporting_actress VARCHAR)
SELECT transfer_window FROM table_name_46 WHERE moving_from = "são paulo"
What is the transfer window for the moving from of São Paulo?
CREATE TABLE table_name_46 (transfer_window VARCHAR, moving_from VARCHAR)
SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road" INTERSECT SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "Shipped"
Find the names of the customers who have order status both "On Road" and "Shipped".
CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
SELECT result FROM table_1346118_5 WHERE candidates = "John A. Elston (R) 88.4% Luella Twining (S) 11.6%"
What was the net seat gain in the race john a. elston (r) 88.4% luella twining (s) 11.6%?
CREATE TABLE table_1346118_5 (result VARCHAR, candidates VARCHAR)
SELECT 2007 FROM table_name_53 WHERE 2008 = "1r" AND tournament = "wimbledon"
Which 2007 has a 2008 of 1r, and a Tournament of wimbledon?
CREATE TABLE table_name_53 (tournament VARCHAR)
SELECT player FROM table_10015132_11 WHERE position = "Guard" AND years_in_toronto = "1996-97"
What player played guard for toronto in 1996-97?
CREATE TABLE table_10015132_11 (player VARCHAR, position VARCHAR, years_in_toronto VARCHAR)
SELECT tail_number FROM table_229917_2 WHERE brief_description = "Crashed"
What's the tail number of the airplane involved in the accident described as crashed?
CREATE TABLE table_229917_2 (tail_number VARCHAR, brief_description VARCHAR)
SELECT COUNT(college_junior_club_team) FROM table_2886617_5 WHERE nhl_team = "Colorado Avalanche"
How may college/junior/club team has a the nhl team listed as Colorado Avalanche?
CREATE TABLE table_2886617_5 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT prohibition_ticket FROM table_name_91 WHERE office = "lieutenant governor"
What kind of Prohibition ticket that has a Office of lieutenant governor?
CREATE TABLE table_name_91 (prohibition_ticket VARCHAR, office VARCHAR)
SELECT MAX(money___) AS $__ FROM table_name_93 WHERE player = "loren roberts"
What is the Money ($) player Loren Roberts has made?
CREATE TABLE table_name_93 (money___ INTEGER, player VARCHAR)
SELECT gender FROM table_name_86 WHERE decile = 5 AND roll = 90
What is the Gender of students at a school with a Decile of 5 and a Roll of 90?
CREATE TABLE table_name_86 (gender VARCHAR, decile VARCHAR, roll VARCHAR)
SELECT fastest_lap FROM table_29690363_3 WHERE most_laps_led = "Josef Newgarden" AND race = "Edmonton"
Who had the fastest lap(s) when josef newgarden led the most laps at edmonton?
CREATE TABLE table_29690363_3 (fastest_lap VARCHAR, most_laps_led VARCHAR, race VARCHAR)
SELECT metres FROM table_name_21 WHERE feet > 850
How many metres tall is the building that is larger than 850 feet tall?
CREATE TABLE table_name_21 (metres VARCHAR, feet INTEGER)
SELECT MIN(wins) FROM table_18607260_6 WHERE losses = 5
Name the least wins for 5 losses
CREATE TABLE table_18607260_6 (wins INTEGER, losses VARCHAR)
SELECT challenge_winner FROM table_name_19 WHERE challenge_loser = "gisel"
Which winner has a Challenge Loser of gisel?
CREATE TABLE table_name_19 (challenge_winner VARCHAR, challenge_loser VARCHAR)
SELECT MAX(televote) FROM table_name_64 WHERE artist = "justinas lapatinskas" AND draw > 9
Artist Justinas Lapatinskas with a draw of greater than 9 got what as the highest televote?
CREATE TABLE table_name_64 (televote INTEGER, artist VARCHAR, draw VARCHAR)
SELECT COUNT(no_in_season) FROM table_2226817_4 WHERE production_code = "3.09"
Name the number of number in season for 3.09
CREATE TABLE table_2226817_4 (no_in_season VARCHAR, production_code VARCHAR)
SELECT AVG(total_matches) FROM table_name_34 WHERE competition = "league cup" AND draw > 0
How many average total matches have league cup as the competition, with a draw greater than 0?
CREATE TABLE table_name_34 (total_matches INTEGER, competition VARCHAR, draw VARCHAR)
SELECT country FROM table_name_84 WHERE player = "greg norman"
What country is Greg Norman from?
CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR)
SELECT MAX(season__number) FROM table_2655016_10 WHERE nick_prod__number = 942
What was the latest season with a nick production number of 942?
CREATE TABLE table_2655016_10 (season__number INTEGER, nick_prod__number VARCHAR)
SELECT 2009 FROM table_name_25 WHERE 2008 = "a" AND 2011 = "a" AND tournament = "paris masters"
What is 2009, when 2008 is "A", when 2011 is "A", and when Tournament is "Paris Masters"?
CREATE TABLE table_name_25 (tournament VARCHAR)
SELECT MIN(tally) FROM table_name_9 WHERE venue = "vasil levski national stadium, sofia, bulgaria"
What is the fewest tally for the game played at Vasil Levski National Stadium, Sofia, Bulgaria?
CREATE TABLE table_name_9 (tally INTEGER, venue VARCHAR)
SELECT player FROM table_name_73 WHERE total = "154"
What is Player, when Total is "154"?
CREATE TABLE table_name_73 (player VARCHAR, total VARCHAR)
SELECT length FROM table_name_95 WHERE race = "first union six hours at the glen"
What is the length of the First Union six hours at the Glen?
CREATE TABLE table_name_95 (length VARCHAR, race VARCHAR)
SELECT result FROM table_name_19 WHERE date = "january 14, 2008"
Name the result for january 14, 2008
CREATE TABLE table_name_19 (result VARCHAR, date VARCHAR)
SELECT race FROM table_name_3 WHERE date = "10/10/2008"
What is the race on 10/10/2008?
CREATE TABLE table_name_3 (race VARCHAR, date VARCHAR)
SELECT AVG(gold) FROM table_name_63 WHERE nation = "china (chn)" AND bronze > 1
What average gold has China (chn) as the nation with a bronze greater than 1?
CREATE TABLE table_name_63 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT MAX(races) FROM table_17289224_1 WHERE wins = 3
When the wins is 3, what is the maximum races?
CREATE TABLE table_17289224_1 (races INTEGER, wins VARCHAR)
SELECT MIN(beatified) FROM table_name_12 WHERE place = "korea" AND canonised < 1984
When was the first beatification in Korea that was canonised before 1984?
CREATE TABLE table_name_12 (beatified INTEGER, place VARCHAR, canonised VARCHAR)
SELECT COUNT(crowd) FROM table_name_80 WHERE away_team = "footscray"
What was the attendance when Footscray played as the away team?
CREATE TABLE table_name_80 (crowd VARCHAR, away_team VARCHAR)
SELECT team_1 FROM table_name_6 WHERE team_2 = "gazélec ajaccio (d3)"
what is team 1 when team 2 is gazélec ajaccio (d3)?
CREATE TABLE table_name_6 (team_1 VARCHAR, team_2 VARCHAR)
SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ = "35.9"
What is the total number of population in the year 2005 where the population density 35.9 (/km 2)?
CREATE TABLE table_1480455_1 (population__2005_ VARCHAR, population_density___km_2__ VARCHAR)
SELECT year__ceremony_ FROM table_18123274_1 WHERE result = "Not Nominated" AND director = "Alberto Aruelo"
Name the year for not nominated for alberto aruelo
CREATE TABLE table_18123274_1 (year__ceremony_ VARCHAR, result VARCHAR, director VARCHAR)
SELECT MIN(silver) FROM table_name_72 WHERE total > 3 AND bronze > 22 AND gold < 395 AND nation = "austria"
What is the lowest number of silver medals received by Austria when they receive more than 3 total medals, more than 22 bronze medals, and fewer than 395 gold medals?
CREATE TABLE table_name_72 (silver INTEGER, nation VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT MIN(facility_id) FROM table_name_24 WHERE city_of_license = "beckley"
What is the lowest facility ID that's in Beckley?
CREATE TABLE table_name_24 (facility_id INTEGER, city_of_license VARCHAR)
SELECT Name, Population, LifeExpectancy FROM country WHERE Continent = "Asia" ORDER BY SurfaceArea DESC LIMIT 1
Find the name, population and expected life length of asian country with the largest area?
CREATE TABLE country (Name VARCHAR, Population VARCHAR, LifeExpectancy VARCHAR, Continent VARCHAR, SurfaceArea VARCHAR)
SELECT third_year FROM table_12148147_2 WHERE subjects = "Science"
What is the third year course in science?
CREATE TABLE table_12148147_2 (third_year VARCHAR, subjects VARCHAR)
SELECT environment FROM table_name_11 WHERE year_built = "2003"
What type of environment is the venue that was built in 2003?
CREATE TABLE table_name_11 (environment VARCHAR, year_built VARCHAR)
SELECT year FROM table_name_24 WHERE film = "7th heaven"
What year was 7th heaven made?
CREATE TABLE table_name_24 (year VARCHAR, film VARCHAR)
SELECT SUM(against) FROM table_name_11 WHERE opposing_teams = "south africa" AND status = "first test"
What is the sum of Against, when Opposing Teams is "South Africa", and when Status is "First Test"?
CREATE TABLE table_name_11 (against INTEGER, opposing_teams VARCHAR, status VARCHAR)
SELECT party FROM table_1342359_39 WHERE district = "South Carolina 3"
What is the party for south carolina 3?
CREATE TABLE table_1342359_39 (party VARCHAR, district VARCHAR)
SELECT field FROM table_name_7 WHERE date = "july 22"
What is the field of the game on July 22?
CREATE TABLE table_name_7 (field VARCHAR, date VARCHAR)
SELECT hdtv FROM table_15887683_6 WHERE n° = 378
Name the hdtv when number is 378
CREATE TABLE table_15887683_6 (hdtv VARCHAR, n° VARCHAR)
SELECT AVG(game) FROM table_name_7 WHERE high_points = "wilson chandler (16)"
Which average Game has a High points of wilson chandler (16)?
CREATE TABLE table_name_7 (game INTEGER, high_points VARCHAR)
SELECT MIN(pick__number) FROM table_2508633_8 WHERE nfl_team = "San Diego Chargers"
what is the pick number minimum if the NFL team is the San Diego Chargers?
CREATE TABLE table_2508633_8 (pick__number INTEGER, nfl_team VARCHAR)
SELECT party FROM table_2668378_18 WHERE incumbent = "John G. Jackson"
What party represents the district with john g. jackson?
CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR)
SELECT position FROM table_20170644_5 WHERE cfl_team = "Montreal Alouettes"
What position(s) drafted by the montreal alouettes?
CREATE TABLE table_20170644_5 (position VARCHAR, cfl_team VARCHAR)
SELECT AVG(attendance) FROM table_name_91 WHERE date = "december 22, 1980"
Mean attendance for December 22, 1980?
CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR)
SELECT date FROM table_name_37 WHERE opponent = "st. george illawarra dragons"
On what date was the match against the St. George Illawarra Dragons?
CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR)
SELECT DISTINCT T1.customer_details FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road"
Find the details of all the distinct customers who have orders with status "On Road".
CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR)
SELECT team FROM table_27721131_6 WHERE high_points = "Andray Blatche , JaVale McGee (20)"
Which team played them when andray blatche , javale mcgee (20) had the high points?
CREATE TABLE table_27721131_6 (team VARCHAR, high_points VARCHAR)
SELECT mixed_doubles FROM table_2486023_1 WHERE year = 1991
Who played Mixed Doubles in 1991?
CREATE TABLE table_2486023_1 (mixed_doubles VARCHAR, year VARCHAR)
SELECT AVG(total) FROM table_name_2 WHERE silver > 4 AND gold > 16
What is the average Total, when Silver is greater than 4, and when Gold is greater than 16?
CREATE TABLE table_name_2 (total INTEGER, silver VARCHAR, gold VARCHAR)
SELECT COUNT(round) FROM table_name_25 WHERE name = "anglia tv trophy"
How many rounds had a race name of anglia tv trophy?
CREATE TABLE table_name_25 (round VARCHAR, name VARCHAR)
SELECT start FROM table_name_36 WHERE laps < 200 AND rank = "11"
What is the start number for a rank 11 race with less than 200 laps?
CREATE TABLE table_name_36 (start VARCHAR, laps VARCHAR, rank VARCHAR)