question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the To par of the Player with a Score of 73-67-68=208?
CREATE TABLE table_name_89 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_89 WHERE score = 73 - 67 - 68 = 208
How much power does dwzf have?
CREATE TABLE table_27588823_2 (power__kw_ VARCHAR, callsign VARCHAR)
SELECT power__kw_ FROM table_27588823_2 WHERE callsign = "DWZF"
What is the largest number of innings with less than 342 runs and more than 4 matches?
CREATE TABLE table_name_86 (innings INTEGER, runs VARCHAR, matches VARCHAR)
SELECT MAX(innings) FROM table_name_86 WHERE runs < 342 AND matches > 4
What is the Kennel Club (UK) Toy Group with the shih-tzu as the American Kennel Club Toy Group breed?
CREATE TABLE table_name_65 (the_kennel_club__uk__toy_group VARCHAR, american_kennel_club_toy_group VARCHAR)
SELECT the_kennel_club__uk__toy_group FROM table_name_65 WHERE american_kennel_club_toy_group = "shih-tzu"
How many seasons featured 29 conversions?
CREATE TABLE table_20505342_1 (penalties VARCHAR, conversions VARCHAR)
SELECT COUNT(penalties) FROM table_20505342_1 WHERE conversions = 29
what is the type when the bie recognised is yes and year(s) is 1960?
CREATE TABLE table_name_62 (type VARCHAR, bie_recognised VARCHAR, year_s_ VARCHAR)
SELECT type FROM table_name_62 WHERE bie_recognised = "yes" AND year_s_ = "1960"
What are the drivers' first, last names and id who had more than 8 pit stops or participated in more than 5 race results?
CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE results (driverid VARCHAR); CREATE TABLE pitstops (driverid VARCHAR)
SELECT T1.forename, T1.surname, T1.driverid FROM drivers AS T1 JOIN pitstops AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 8 UNION SELECT T1.forename, T1.surname, T1.driverid FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 5
Which province has muju as the capital?
CREATE TABLE table_name_82 (province VARCHAR, capital VARCHAR)
SELECT province FROM table_name_82 WHERE capital = "muju"
What is the length of the highway with remarks that it was replaced by lp 20?
CREATE TABLE table_name_28 (length VARCHAR, remarks VARCHAR)
SELECT length FROM table_name_28 WHERE remarks = "replaced by lp 20"
Who were the candidates in the Kentucky 5 district?
CREATE TABLE table_2668254_8 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_2668254_8 WHERE district = "Kentucky 5"
Which sport had the club of the Montgomery Biscuits?
CREATE TABLE table_name_22 (sport VARCHAR, club VARCHAR)
SELECT sport FROM table_name_22 WHERE club = "montgomery biscuits"
What is the country associated with the date in 2003?
CREATE TABLE table_name_34 (country VARCHAR, date VARCHAR)
SELECT country FROM table_name_34 WHERE date = "2003"
What NHL team picked Sergei Luchinkin?
CREATE TABLE table_2886617_8 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_2886617_8 WHERE player = "Sergei Luchinkin"
Name the landesliga mitte for fc gundelfingen and vfl frohnlach
CREATE TABLE table_20181270_3 (landesliga_mitte VARCHAR, landesliga_süd VARCHAR, landesliga_nord VARCHAR)
SELECT landesliga_mitte FROM table_20181270_3 WHERE landesliga_süd = "FC Gundelfingen" AND landesliga_nord = "VfL Frohnlach"
Which state had an average of less than 8.67, a swimsuit score of 8.27, an evening gown score of 8.78, and an interview number of 8.52?
CREATE TABLE table_name_70 (state VARCHAR, interview VARCHAR, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)
SELECT state FROM table_name_70 WHERE average < 8.67 AND swimsuit = 8.27 AND evening_gown = 8.78 AND interview = 8.52
What is the average value in the 100s category when the high score is 196?
CREATE TABLE table_name_86 (highest_score VARCHAR)
SELECT AVG(100 AS s) FROM table_name_86 WHERE highest_score = "196"
What is the lowest overall amount of times they've been in 3rd?
CREATE TABLE table_24330912_1 (Id VARCHAR)
SELECT MIN(3 AS rd) FROM table_24330912_1
who is the athlete with the rank smaller than 2?
CREATE TABLE table_name_10 (athlete VARCHAR, rank INTEGER)
SELECT athlete FROM table_name_10 WHERE rank < 2
What engine was in the lotus 44 f2 Chassis?
CREATE TABLE table_name_27 (engine VARCHAR, chassis VARCHAR)
SELECT engine FROM table_name_27 WHERE chassis = "lotus 44 f2"
Who is the founder of Sony?
CREATE TABLE manufacturers (founder VARCHAR, name VARCHAR)
SELECT founder FROM manufacturers WHERE name = 'Sony'
What is the Other b when the FA Cup shows 3 (17)?
CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR)
SELECT other_b FROM table_name_96 WHERE fa_cup = "3 (17)"
What is Venue, when Status is "2007 Rugby World Cup", when Against is less than 22, and when Date is "08/09/2007"?
CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR, status VARCHAR, against VARCHAR)
SELECT venue FROM table_name_22 WHERE status = "2007 rugby world cup" AND against < 22 AND date = "08/09/2007"
What is the amount of apperances of the person who had 36 goals?
CREATE TABLE table_name_5 (appearances VARCHAR, goals VARCHAR)
SELECT appearances FROM table_name_5 WHERE goals = 36
What is the value in 1965 when 7 is the value for 1967?
CREATE TABLE table_name_81 (Id VARCHAR)
SELECT 1965 FROM table_name_81 WHERE 1967 = "7"
When was Catalog CHD-9192 published?
CREATE TABLE table_name_66 (date VARCHAR, catalog VARCHAR)
SELECT date FROM table_name_66 WHERE catalog = "chd-9192"
what's the airport with aircraft movements 2009 being smaller than 238223.1659471435 and change 2008/09 being 0.5%
CREATE TABLE table_13836704_4 (airport VARCHAR, aircraft_movements_2009 VARCHAR, change_2008_09 VARCHAR)
SELECT airport FROM table_13836704_4 WHERE aircraft_movements_2009 < 238223.1659471435 AND change_2008_09 = "0.5%"
What is the nhl team when the college, junior, club team is toronto marlboros (ohl) and the position is centre?
CREATE TABLE table_2679061_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR, position VARCHAR)
SELECT nhl_team FROM table_2679061_2 WHERE college_junior_club_team = "Toronto Marlboros (OHL)" AND position = "Centre"
Which State has an Electorate of West Sydney?
CREATE TABLE table_name_74 (state VARCHAR, electorate VARCHAR)
SELECT state FROM table_name_74 WHERE electorate = "west sydney"
What is the title of the episode directed by William Webb?
CREATE TABLE table_22078906_2 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_22078906_2 WHERE directed_by = "William Webb"
What name was proposed on 12/30/1982 in rockingham county with a CERCLIS ID of nhd062004569?
CREATE TABLE table_name_87 (name VARCHAR, cerclis_id VARCHAR, proposed VARCHAR, county VARCHAR)
SELECT name FROM table_name_87 WHERE proposed = "12/30/1982" AND county = "rockingham" AND cerclis_id = "nhd062004569"
What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley?
CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_69 WHERE margin_of_victory = "2 strokes" AND runner_s__up = "pat bradley"
Which away team played at Lake Oval?
CREATE TABLE table_name_50 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_50 WHERE venue = "lake oval"
What are the most goals listed when Jack Trehey was the player, with the listed debut year of 1902, games less than 1?
CREATE TABLE table_name_29 (goals INTEGER, games VARCHAR, debut_year VARCHAR, player VARCHAR)
SELECT MAX(goals) FROM table_name_29 WHERE debut_year = 1902 AND player = "jack trehey" AND games < 1
What year had Best Actor in a Musical as a category?
CREATE TABLE table_name_15 (year INTEGER, category VARCHAR)
SELECT SUM(year) FROM table_name_15 WHERE category = "best actor in a musical"
What was the score of the match in which mardy fish was the partner?
CREATE TABLE table_name_72 (score VARCHAR, partner VARCHAR)
SELECT score FROM table_name_72 WHERE partner = "mardy fish"
who is the replacement when the team is milton keynes dons?
CREATE TABLE table_name_10 (replaced_by VARCHAR, team VARCHAR)
SELECT replaced_by FROM table_name_10 WHERE team = "milton keynes dons"
How many times was taiwan 3rd runner-up?
CREATE TABLE table_28634206_1 (country VARCHAR)
SELECT MAX(3 AS rd_runner_up) FROM table_28634206_1 WHERE country = "Taiwan"
What is the week 3, prior to the when the week 4 was Laura Nicole?
CREATE TABLE table_name_26 (week_4 VARCHAR, week_3 VARCHAR)
SELECT week_4 FROM table_name_26 WHERE week_3 = "laura nicole"
What is the largest amount of bronze medals when the silver medals are less than 1, and Belgium (BEL) is the nation, and the gold medals are less than 0?
CREATE TABLE table_name_18 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT MAX(bronze) FROM table_name_18 WHERE silver < 1 AND nation = "belgium (bel)" AND gold < 0
What is every value for periselene if period is 4.947432?
CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, period__h_ VARCHAR)
SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = "4.947432"
What is the location for 2012?
CREATE TABLE table_name_13 (location VARCHAR, year VARCHAR)
SELECT location FROM table_name_13 WHERE year = 2012
What was the pick number for the compensation-a round, for player Frank Catalanotto?
CREATE TABLE table_name_93 (pick VARCHAR, round VARCHAR, player VARCHAR)
SELECT pick FROM table_name_93 WHERE round = "compensation-a" AND player = "frank catalanotto"
Who wrote Series 38?
CREATE TABLE table_11075747_4 (written_by VARCHAR, series__number VARCHAR)
SELECT written_by FROM table_11075747_4 WHERE series__number = 38
Which result has sunderland as opponent?
CREATE TABLE table_name_38 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_38 WHERE opponent = "sunderland"
What was the conference record for the Pandas when they were first in the standings in the 2003-04 season?
CREATE TABLE table_27069503_2 (conf_record VARCHAR, standings VARCHAR, season VARCHAR)
SELECT conf_record FROM table_27069503_2 WHERE standings = "First" AND season = "2003-04"
Which competition has a Goal of deacon 8/8 and a Score of 32-14?
CREATE TABLE table_name_3 (competition VARCHAR, goals VARCHAR, score VARCHAR)
SELECT competition FROM table_name_3 WHERE goals = "deacon 8/8" AND score = "32-14"
Can you tell me the Score that has the Result of win, and the Date of 13 november 2009?
CREATE TABLE table_name_62 (score VARCHAR, result VARCHAR, date VARCHAR)
SELECT score FROM table_name_62 WHERE result = "win" AND date = "13 november 2009"
What director is from Poland?
CREATE TABLE table_name_65 (director VARCHAR, country VARCHAR)
SELECT director FROM table_name_65 WHERE country = "poland"
What is the pick number for the player from higher than round 3 and a PI GP bigger than 0?
CREATE TABLE table_name_70 (pick__number VARCHAR, rd__number VARCHAR, pl_gp VARCHAR)
SELECT pick__number FROM table_name_70 WHERE rd__number > 3 AND pl_gp > 0
What year had a Ford engine and 13 points?
CREATE TABLE table_name_16 (year VARCHAR, engine VARCHAR, pts VARCHAR)
SELECT year FROM table_name_16 WHERE engine = "ford" AND pts = 13
Name the lower index kcal/ nm3 for 61.32
CREATE TABLE table_1868929_1 (lower_index_kcal__nm_3 VARCHAR, upper_index_mj__nm_3 VARCHAR)
SELECT lower_index_kcal__nm_3 FROM table_1868929_1 WHERE upper_index_mj__nm_3 = "61.32"
What are the first and last name of the president of the club "Bootup Baltimore"?
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR, position VARCHAR)
SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t2.position = "President"
What is the grid with a yamaha manufacturer and a +19.435 time/retired?
CREATE TABLE table_name_65 (grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
SELECT grid FROM table_name_65 WHERE manufacturer = "yamaha" AND time_retired = "+19.435"
What is the class with 1 quantity?
CREATE TABLE table_name_6 (class VARCHAR, quantity VARCHAR)
SELECT class FROM table_name_6 WHERE quantity = "1"
What is the score of the season in the host city kėdainiai?
CREATE TABLE table_name_59 (score VARCHAR, host_city VARCHAR)
SELECT score FROM table_name_59 WHERE host_city = "kėdainiai"
How many VFL games were located off Goodenough Island Milne Bay?
CREATE TABLE table_16527640_3 (vfl_games VARCHAR, location VARCHAR)
SELECT vfl_games FROM table_16527640_3 WHERE location = "off Goodenough Island Milne Bay"
Which Year has a Venue of bydgoszcz, poland?
CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR)
SELECT AVG(year) FROM table_name_35 WHERE venue = "bydgoszcz, poland"
Which Result has a Round of 6?
CREATE TABLE table_name_88 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_88 WHERE round = "6"
Which Opponents have a Year of 1998–99, and a Team of aston villa?
CREATE TABLE table_name_23 (opponents VARCHAR, year VARCHAR, team VARCHAR)
SELECT opponents FROM table_name_23 WHERE year = "1998–99" AND team = "aston villa"
What is the total enrollment for the school in garden city, new york?
CREATE TABLE table_1969634_1 (enrollment VARCHAR, location VARCHAR)
SELECT enrollment FROM table_1969634_1 WHERE location = "Garden City, New York"
List all results where the voting district is Maryland 7.
CREATE TABLE table_1341690_20 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341690_20 WHERE district = "Maryland 7"
Name the attendance for loss result and salford city reds
CREATE TABLE table_21269143_1 (attendance VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_21269143_1 WHERE result = "Loss" AND opponent = "Salford City Reds"
What's the $51,914 median household income per capita?
CREATE TABLE table_name_34 (per_capita_income VARCHAR, median_household_income VARCHAR)
SELECT per_capita_income FROM table_name_34 WHERE median_household_income = "$51,914"
What is the time/retired for eddie irvine with a grid of greater than 3?
CREATE TABLE table_name_84 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_84 WHERE grid > 3 AND driver = "eddie irvine"
How much did Larry Nelson win?
CREATE TABLE table_name_73 (money___$__ VARCHAR, player VARCHAR)
SELECT money___$__ FROM table_name_73 WHERE player = "larry nelson"
What season had 3rd position, a 36 pld, and a bbl div?
CREATE TABLE table_name_81 (season VARCHAR, div VARCHAR, pos VARCHAR, pld VARCHAR)
SELECT season FROM table_name_81 WHERE pos = "3rd" AND pld = "36" AND div = "bbl"
Find the name and account balance of the customers who have loans with a total amount of more than 5000.
CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR, cust_id VARCHAR)
SELECT T1.cust_name, T1.acc_type FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name HAVING SUM(T2.amount) > 5000
Which DRG number has xxx railway number?
CREATE TABLE table_name_32 (drg_number_s_ VARCHAR, railway_number_s_ VARCHAR)
SELECT drg_number_s_ FROM table_name_32 WHERE railway_number_s_ = "xxx"
If the spectral type is g1v, what is the constellation?
CREATE TABLE table_1820752_1 (constellation VARCHAR, spectral_type VARCHAR)
SELECT constellation FROM table_1820752_1 WHERE spectral_type = "G1V"
How much Gold has a Bronze smaller than 2, and a Silver of 0, and a Rank larger than 3?
CREATE TABLE table_name_78 (gold INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT SUM(gold) FROM table_name_78 WHERE bronze < 2 AND silver = 0 AND rank > 3
Which artists have order number 6?
CREATE TABLE table_29756040_1 (original_artist VARCHAR, order__number VARCHAR)
SELECT original_artist FROM table_29756040_1 WHERE order__number = "6"
How much power was used when the callsign was DZYT?
CREATE TABLE table_12547903_3 (power__kw_ VARCHAR, callsign VARCHAR)
SELECT power__kw_ FROM table_12547903_3 WHERE callsign = "DZYT"
which part on the team does rick schuhwerk play
CREATE TABLE table_2781227_10 (position VARCHAR, player VARCHAR)
SELECT position FROM table_2781227_10 WHERE player = "Rick Schuhwerk"
What cc displacement has an i6 engine in 1936?
CREATE TABLE table_name_13 (displacement_cc VARCHAR, engine VARCHAR, year VARCHAR)
SELECT displacement_cc FROM table_name_13 WHERE engine = "i6" AND year = "1936"
Who was the player that was picked at a number less than 205 from the Michigan State Spartans?
CREATE TABLE table_name_46 (player VARCHAR, pick__number VARCHAR, team_from VARCHAR)
SELECT player FROM table_name_46 WHERE pick__number < 205 AND team_from = "michigan state spartans"
What is Date (Opening), when Opening Film is "Another Myanmar, Mae Sot"?
CREATE TABLE table_name_47 (date__opening_ VARCHAR, opening_film VARCHAR)
SELECT date__opening_ FROM table_name_47 WHERE opening_film = "another myanmar, mae sot"
What team plays in Dinamo, Brest?
CREATE TABLE table_name_97 (team VARCHAR, venue VARCHAR)
SELECT team FROM table_name_97 WHERE venue = "dinamo, brest"
What are all the profits elegance (2007) in which mayor is ma. Ester a. Hamor
CREATE TABLE table_255812_1 (income_class__2007_ VARCHAR, mayor VARCHAR)
SELECT income_class__2007_ FROM table_255812_1 WHERE mayor = "Ma. Ester A. Hamor"
What is the sum of Round, when Player is Tim Hunter (RW), and when Pick is less than 54?
CREATE TABLE table_name_32 (round INTEGER, player VARCHAR, pick VARCHAR)
SELECT SUM(round) FROM table_name_32 WHERE player = "tim hunter (rw)" AND pick < 54
What are the minimum and maximum crime rate of counties?
CREATE TABLE county_public_safety (Crime_rate INTEGER)
SELECT MIN(Crime_rate), MAX(Crime_rate) FROM county_public_safety
what is the time/retired when the constructor is maserati and the laps is 90?
CREATE TABLE table_name_74 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)
SELECT time_retired FROM table_name_74 WHERE constructor = "maserati" AND laps = 90
What position does Syracuse's player have?
CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR)
SELECT position FROM table_12165999_1 WHERE college = "Syracuse"
How many results have 14,381 as the attendance?
CREATE TABLE table_21350934_2 (result VARCHAR, attendance VARCHAR)
SELECT COUNT(result) FROM table_21350934_2 WHERE attendance = "14,381"
What is the To par of the United States, when the Total was 145, in 2004?
CREATE TABLE table_name_21 (to_par VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR)
SELECT to_par FROM table_name_21 WHERE country = "united states" AND total = 145 AND year_s__won = "2004"
What is the average gold medals for countries with more than 0 bronze, more than 0 silver, rank over 2 and total over 3?
CREATE TABLE table_name_56 (gold INTEGER, total VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT AVG(gold) FROM table_name_56 WHERE bronze > 0 AND silver > 0 AND rank > 2 AND total > 3
What is the lowest rank of Jens Kruppa in a lane larger than 2?
CREATE TABLE table_name_28 (rank INTEGER, name VARCHAR, lane VARCHAR)
SELECT MIN(rank) FROM table_name_28 WHERE name = "jens kruppa" AND lane > 2
In which tournament was the result 25th?
CREATE TABLE table_name_24 (tournament VARCHAR, result VARCHAR)
SELECT tournament FROM table_name_24 WHERE result = "25th"
What are all the movies rated as R? List the titles.
CREATE TABLE film (title VARCHAR, rating VARCHAR)
SELECT title FROM film WHERE rating = 'R'
How many were won when the points were 12?
CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)
SELECT COUNT(won) FROM table_17369472_2 WHERE points = "12"
What is Nat., when Name is "Fàbregas ( Captain )"?
CREATE TABLE table_name_73 (nat VARCHAR, name VARCHAR)
SELECT nat FROM table_name_73 WHERE name = "fàbregas ( captain )"
What is the Attendance of the game September 21, 2003?
CREATE TABLE table_name_36 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_36 WHERE date = "september 21, 2003"
What is the venue when the year is after 2001 for the summer olympics?
CREATE TABLE table_name_56 (venue VARCHAR, year VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_56 WHERE year > 2001 AND competition = "summer olympics"
What was the game when Houston was the home team and the result is 106-104?
CREATE TABLE table_name_49 (game VARCHAR, home_team VARCHAR, result VARCHAR)
SELECT game FROM table_name_49 WHERE home_team = "houston" AND result = "106-104"
What is the name of the player with a transfer window in summer, an undisclosed transfer fee, and is moving from brussels?
CREATE TABLE table_name_15 (name VARCHAR, moving_from VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR)
SELECT name FROM table_name_15 WHERE transfer_window = "summer" AND transfer_fee = "undisclosed" AND moving_from = "brussels"
what is the location when began is before 1990 and the country is france?
CREATE TABLE table_name_87 (location VARCHAR, began VARCHAR, country VARCHAR)
SELECT location FROM table_name_87 WHERE began < 1990 AND country = "france"
Which Played has a Club of club?
CREATE TABLE table_name_94 (played VARCHAR)
SELECT played FROM table_name_94 WHERE "club" = "club"
What is the average week number for games that had 28,800 fans in attendance?
CREATE TABLE table_name_19 (week INTEGER, attendance VARCHAR)
SELECT AVG(week) FROM table_name_19 WHERE attendance = "28,800"
Which episode of Top Gear had a budget of £7,000?
CREATE TABLE table_name_35 (episode VARCHAR, budget VARCHAR)
SELECT episode FROM table_name_35 WHERE budget = "£7,000"
Name the language for b. ajith kumar
CREATE TABLE table_24446718_3 (language VARCHAR, awardee_s_ VARCHAR)
SELECT language FROM table_24446718_3 WHERE awardee_s_ = "B. Ajith Kumar"
How many laps had a time of +2.987?
CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR)
SELECT COUNT(laps) FROM table_name_37 WHERE time = "+2.987"