question
stringlengths
12
243
answer
stringlengths
18
557
context
stringlengths
27
489
What is the result of the european indoor championships after 1974?
SELECT result FROM table_name_41 WHERE tournament = "european indoor championships" AND year > 1974
CREATE TABLE table_name_41 (result VARCHAR, tournament VARCHAR, year VARCHAR)
How many times did Saxby Chambliss have a lead margin of 21?
SELECT COUNT(republican) AS :_saxby_chambliss FROM table_16751596_16 WHERE lead_margin = 21
CREATE TABLE table_16751596_16 (republican VARCHAR, lead_margin VARCHAR)
How many positions does the draft pick whose nationality is Czech Republic play?
SELECT COUNT(position) FROM table_2840500_1 WHERE nationality = "Czech Republic"
CREATE TABLE table_2840500_1 (position VARCHAR, nationality VARCHAR)
Which LE-5 Model has an LE-5A of 130?
SELECT le_5_model FROM table_name_2 WHERE le_5A = 130
CREATE TABLE table_name_2 (le_5_model VARCHAR, le_5A VARCHAR)
What is th IATA for Norway with an ICAO of ENTO?
SELECT iata FROM table_name_99 WHERE country = "norway" AND icao = "ento"
CREATE TABLE table_name_99 (iata VARCHAR, country VARCHAR, icao VARCHAR)
What is Position, when Weight is greater than 200, when Number is less than 44, when Years Exp is 9, and when College is "University of New Mexico"?
SELECT position FROM table_name_68 WHERE weight > 200 AND number < 44 AND years_exp = "9" AND college = "university of new mexico"
CREATE TABLE table_name_68 (position VARCHAR, college VARCHAR, years_exp VARCHAR, weight VARCHAR, number VARCHAR)
In what year did the #14 FitzBradshaw Racing compete?
SELECT year FROM table_1909647_2 WHERE team_s_ = "#14 FitzBradshaw Racing"
CREATE TABLE table_1909647_2 (year VARCHAR, team_s_ VARCHAR)
What model is the A310 of 1983?
SELECT model FROM table_name_48 WHERE a310 = "1983"
CREATE TABLE table_name_48 (model VARCHAR, a310 VARCHAR)
When is the record 5-4?
SELECT date FROM table_name_51 WHERE record = "5-4"
CREATE TABLE table_name_51 (date VARCHAR, record VARCHAR)
What is the flange thickness (mm) for the weight (kg/m) 6.0?Wg
SELECT flange_thickness__mm_ FROM table_2071644_1 WHERE weight__kg_m_ = "6.0"
CREATE TABLE table_2071644_1 (flange_thickness__mm_ VARCHAR, weight__kg_m_ VARCHAR)
What season did Stoke City win?
SELECT season FROM table_name_13 WHERE winner = "stoke city"
CREATE TABLE table_name_13 (season VARCHAR, winner VARCHAR)
What was the to par that goes with the score 68-74-69=211?
SELECT to_par FROM table_name_70 WHERE score = 68 - 74 - 69 = 211
CREATE TABLE table_name_70 (to_par VARCHAR, score VARCHAR)
When was the attendance 1,034?
SELECT MIN(date) FROM table_name_51 WHERE attendance = "1,034"
CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR)
What country has a score of 71-66-72-72=281?
SELECT country FROM table_name_79 WHERE score = 71 - 66 - 72 - 72 = 281
CREATE TABLE table_name_79 (country VARCHAR, score VARCHAR)
What year did Orlando have a School/Club team in Clemson?
SELECT years_in_orlando FROM table_name_53 WHERE school_club_team = "clemson"
CREATE TABLE table_name_53 (years_in_orlando VARCHAR, school_club_team VARCHAR)
What was their record when the attendance at the game was 14489?
SELECT record FROM table_17765264_1 WHERE attendance = 14489
CREATE TABLE table_17765264_1 (record VARCHAR, attendance VARCHAR)
What years did J. Smith Young serve as a Representative?
SELECT years FROM table_name_36 WHERE representative = "j. smith young"
CREATE TABLE table_name_36 (years VARCHAR, representative VARCHAR)
What is the lowest wins that has a year prior to 1999, with draws greater than 1, and points greater than 17?
SELECT MIN(wins) FROM table_name_11 WHERE year < 1999 AND draws > 1 AND points > 17
CREATE TABLE table_name_11 (wins INTEGER, points VARCHAR, year VARCHAR, draws VARCHAR)
What was the music video that was from the album High Society, with a length of 3:50?
SELECT music_video FROM table_name_91 WHERE album = "high society" AND length = "3:50"
CREATE TABLE table_name_91 (music_video VARCHAR, album VARCHAR, length VARCHAR)
Which 2010 has a 2006 of w?
SELECT 2010 FROM table_name_51 WHERE 2006 = "w"
CREATE TABLE table_name_51 (Id VARCHAR)
What party's candidate was re-elected in the Louisiana 6 district?
SELECT party FROM table_1342149_18 WHERE result = "Re-elected" AND district = "Louisiana 6"
CREATE TABLE table_1342149_18 (party VARCHAR, result VARCHAR, district VARCHAR)
Name the total number of dates for toshiba classic
SELECT COUNT(date) FROM table_25938117_1 WHERE tournament = "Toshiba Classic"
CREATE TABLE table_25938117_1 (date VARCHAR, tournament VARCHAR)
What is the highest attendance of the match with a 2:0 score and vida as the away team?
SELECT MAX(attendance) FROM table_name_59 WHERE score = "2:0" AND away = "vida"
CREATE TABLE table_name_59 (attendance INTEGER, score VARCHAR, away VARCHAR)
Name the total number of grupo capitol valladolid
SELECT COUNT(no) FROM table_12962773_13 WHERE current_club = "Grupo Capitol Valladolid"
CREATE TABLE table_12962773_13 (no VARCHAR, current_club VARCHAR)
Who got the most points in game number 5?
SELECT high_points FROM table_27312918_5 WHERE game = 5
CREATE TABLE table_27312918_5 (high_points VARCHAR, game VARCHAR)
What place did R. Wenzel, who was active after 1934, have?
SELECT SUM(place) FROM table_name_7 WHERE name = "r. wenzel" AND until > 1934
CREATE TABLE table_name_7 (place INTEGER, name VARCHAR, until VARCHAR)
What is the average number of laps with 16 grids?
SELECT AVG(laps) FROM table_name_54 WHERE grid = 16
CREATE TABLE table_name_54 (laps INTEGER, grid VARCHAR)
What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets?
SELECT MAX(market_value__billion_) AS $_ FROM table_name_79 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ > 166.99
CREATE TABLE table_name_79 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)
What is the total with a rank less than 5, gold larger than 5 and bronze larger than 8?
SELECT SUM(total) FROM table_name_89 WHERE rank < 5 AND gold > 5 AND bronze > 8
CREATE TABLE table_name_89 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR)
How many years have a conventional plan of 7%?
SELECT SUM(year) FROM table_name_24 WHERE conventional_plans = "7%"
CREATE TABLE table_name_24 (year INTEGER, conventional_plans VARCHAR)
What are the staff ids and genders of all staffs whose job title is Department Manager?
SELECT T1.staff_id, T1.staff_gender FROM staff AS T1 JOIN staff_department_assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.job_title_code = "Department Manager"
CREATE TABLE staff_department_assignments (staff_id VARCHAR, job_title_code VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_gender VARCHAR)
What was the surface made of in the contest where Paula Ormaechea was the partner?
SELECT surface FROM table_name_50 WHERE partner = "paula ormaechea"
CREATE TABLE table_name_50 (surface VARCHAR, partner VARCHAR)
Find the titles of all movies directed by steven spielberg.
SELECT title FROM Movie WHERE director = 'Steven Spielberg'
CREATE TABLE Movie (title VARCHAR, director VARCHAR)
How many losses did 12 de Octubre have ?
SELECT MIN(losses) FROM table_14997324_5 WHERE team = "12 de Octubre"
CREATE TABLE table_14997324_5 (losses INTEGER, team VARCHAR)
Who was the supporting actress in 1943?
SELECT supporting_actress FROM table_24225238_1 WHERE year = 1943
CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, year VARCHAR)
How many episodes were written by Alexander Woo and directed by Scott Winant?
SELECT COUNT(title) FROM table_26493520_1 WHERE written_by = "Alexander Woo" AND directed_by = "Scott Winant"
CREATE TABLE table_26493520_1 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)
What venue has don bradman (nsw) as the player?
SELECT venue FROM table_name_7 WHERE player = "don bradman (nsw)"
CREATE TABLE table_name_7 (venue VARCHAR, player VARCHAR)
What was Jim Furyk's score?
SELECT score FROM table_name_23 WHERE player = "jim furyk"
CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR)
What is the sum of Overall, when Name is "Tim Smiley", and when Round is less than 5?
SELECT SUM(overall) FROM table_name_22 WHERE name = "tim smiley" AND round < 5
CREATE TABLE table_name_22 (overall INTEGER, name VARCHAR, round VARCHAR)
What highest Year has Wins 15 and Losses less than 5?
SELECT MAX(year) FROM table_name_78 WHERE wins = 15 AND loses < 5
CREATE TABLE table_name_78 (year INTEGER, wins VARCHAR, loses VARCHAR)
What is the average pick number for Washington State?
SELECT AVG(pick) FROM table_name_32 WHERE school = "washington state"
CREATE TABLE table_name_32 (pick INTEGER, school VARCHAR)
Find the names of Japanese constructors that have once earned more than 5 points?
SELECT T1.name FROM constructors AS T1 JOIN constructorstandings AS T2 ON T1.constructorid = T2.constructorid WHERE T1.nationality = "Japanese" AND T2.points > 5
CREATE TABLE constructorstandings (constructorid VARCHAR, points VARCHAR); CREATE TABLE constructors (name VARCHAR, constructorid VARCHAR, nationality VARCHAR)
Find the name of the department that offers the largest number of credits of all classes.
SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY SUM(T1.crs_credit) DESC LIMIT 1
CREATE TABLE CLASS (crs_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR); CREATE TABLE course (dept_code VARCHAR, crs_code VARCHAR, crs_credit INTEGER)
What driver has 19 as the zan 1?
SELECT driver FROM table_name_13 WHERE zan_1 = "19"
CREATE TABLE table_name_13 (driver VARCHAR, zan_1 VARCHAR)
What is the product, chromosome and porphyria related to the enzymes which take effect at the location 'Cytosol'?
SELECT product, chromosome, porphyria FROM enzyme WHERE LOCATION = 'Cytosol'
CREATE TABLE enzyme (product VARCHAR, chromosome VARCHAR, porphyria VARCHAR, LOCATION VARCHAR)
What is 2nd Leg, when Team #2 is "San Lorenzo"?
SELECT 2 AS nd_leg FROM table_name_96 WHERE team__number2 = "san lorenzo"
CREATE TABLE table_name_96 (team__number2 VARCHAR)
What is the ISBN in 1999?
SELECT isbn FROM table_name_48 WHERE year = 1999
CREATE TABLE table_name_48 (isbn VARCHAR, year VARCHAR)
What is the customer id, first and last name with least number of accounts.
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) LIMIT 1
CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
Find all the stage positions of the musicians with first name "Solveig"
SELECT DISTINCT T1.stageposition FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id WHERE Firstname = "Solveig"
CREATE TABLE Band (id VARCHAR); CREATE TABLE Performance (stageposition VARCHAR, bandmate VARCHAR)
What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling?
SELECT length_fuel FROM table_name_91 WHERE floor_styling = "high" AND year_built = "2000-2003"
CREATE TABLE table_name_91 (length_fuel VARCHAR, floor_styling VARCHAR, year_built VARCHAR)
How many results for incumbent Noble Jones Gregory?
SELECT COUNT(district) FROM table_1342198_17 WHERE incumbent = "Noble Jones Gregory"
CREATE TABLE table_1342198_17 (district VARCHAR, incumbent VARCHAR)
What is the Tries against when lost shows 12 for pontycymmer rfc?
SELECT tries_against FROM table_name_79 WHERE lost = "12" AND club = "pontycymmer rfc"
CREATE TABLE table_name_79 (tries_against VARCHAR, lost VARCHAR, club VARCHAR)
What is the strongs words compounded when the english spelling is jonadab?
SELECT strongs_words_compounded FROM table_1242447_1 WHERE english_spelling = "Jonadab"
CREATE TABLE table_1242447_1 (strongs_words_compounded VARCHAR, english_spelling VARCHAR)
Who was the home team at the game that had a score of 2 – 2?
SELECT home FROM table_name_96 WHERE score = "2 – 2"
CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)
Name the episodes when region 1 is september 19, 2006
SELECT episodes FROM table_14562722_2 WHERE region_1 = "September 19, 2006"
CREATE TABLE table_14562722_2 (episodes VARCHAR, region_1 VARCHAR)
What is the Rank of the Swimmer in Lane 5?
SELECT AVG(rank) FROM table_name_16 WHERE lane = 5
CREATE TABLE table_name_16 (rank INTEGER, lane VARCHAR)
What location had 25/25 fatalities?
SELECT location FROM table_name_15 WHERE fatalities = "25/25"
CREATE TABLE table_name_15 (location VARCHAR, fatalities VARCHAR)
Which venue held the Euro 2012 Qualifier?
SELECT venue FROM table_name_80 WHERE competition = "euro 2012 qualifier"
CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)
What is the lowest number of blocks for players with height of 206 and more than 356 spikes?
SELECT MIN(block) FROM table_name_69 WHERE height = 206 AND spike > 356
CREATE TABLE table_name_69 (block INTEGER, height VARCHAR, spike VARCHAR)
What was the Attendance on Week 9?
SELECT MAX(attendance) FROM table_name_25 WHERE week = 9
CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR)
Where does the staff member with the first name Elsa live?
SELECT T2.address FROM staff AS T1 JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.first_name = 'Elsa'
CREATE TABLE staff (address_id VARCHAR, first_name VARCHAR); CREATE TABLE address (address VARCHAR, address_id VARCHAR)
What is the song choice when the theme is not aired?
SELECT theme FROM table_12175755_1 WHERE song_choice = "Not Aired"
CREATE TABLE table_12175755_1 (theme VARCHAR, song_choice VARCHAR)
What is the total of overall values with a safety position in a round greater than 1?
SELECT COUNT(overall) FROM table_name_26 WHERE position = "safety" AND round > 1
CREATE TABLE table_name_26 (overall VARCHAR, position VARCHAR, round VARCHAR)
Who are the candidates in Florida 13 district?
SELECT candidates FROM table_19753079_12 WHERE district = "Florida 13"
CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR)
What are the career and other notes for wrestlers whose stable is oguruma?
SELECT career_and_other_notes FROM table_1557974_1 WHERE stable = "Oguruma"
CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, stable VARCHAR)
What is the power of b-b wheel arrangement, built in 1952?
SELECT power_output FROM table_name_88 WHERE wheel_arrangement = "b-b" AND build_date = "1952"
CREATE TABLE table_name_88 (power_output VARCHAR, wheel_arrangement VARCHAR, build_date VARCHAR)
List the names of representatives that have not participated in elections listed here.
SELECT Name FROM representative WHERE NOT Representative_ID IN (SELECT Representative_ID FROM election)
CREATE TABLE election (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR)
What is the FA Cup Apps when total goals is smaller than 4, League Cup Goals is 0, and League Apps is 8 (10)?
SELECT fa_cup_apps FROM table_name_73 WHERE total_goals < 4 AND league_cup_goals = 0 AND league_apps = "8 (10)"
CREATE TABLE table_name_73 (fa_cup_apps VARCHAR, league_apps VARCHAR, total_goals VARCHAR, league_cup_goals VARCHAR)
Player of dan federman, and a Pick larger than 114 involves which highest round?
SELECT MAX(round) FROM table_name_59 WHERE player = "dan federman" AND pick > 114
CREATE TABLE table_name_59 (round INTEGER, player VARCHAR, pick VARCHAR)
What is the year that has a name with the Greek small letter sampi?
SELECT SUM(year) FROM table_name_89 WHERE name = "greek small letter sampi"
CREATE TABLE table_name_89 (year INTEGER, name VARCHAR)
Which round's position is according to official website?
SELECT round FROM table_name_30 WHERE position = "according to official website"
CREATE TABLE table_name_30 (round VARCHAR, position VARCHAR)
what is the least capacity (mw) when the rank is less than 46 and the province is newfoundland and labrador?
SELECT MIN(capacity___mw__) FROM table_name_99 WHERE rank < 46 AND province = "newfoundland and labrador"
CREATE TABLE table_name_99 (capacity___mw__ INTEGER, rank VARCHAR, province VARCHAR)
Which team plays at Punt Road Oval?
SELECT home_team FROM table_name_75 WHERE venue = "punt road oval"
CREATE TABLE table_name_75 (home_team VARCHAR, venue VARCHAR)
How many Rebounds did Novica Veličković get in less than 22 Games?
SELECT SUM(rebounds) FROM table_name_6 WHERE name = "novica veličković" AND games < 22
CREATE TABLE table_name_6 (rebounds INTEGER, name VARCHAR, games VARCHAR)
Which Opponent has a Venue of h, and a Result of 0–1, and a Date of 29 august 1998?
SELECT opponent FROM table_name_12 WHERE venue = "h" AND result = "0–1" AND date = "29 august 1998"
CREATE TABLE table_name_12 (opponent VARCHAR, date VARCHAR, venue VARCHAR, result VARCHAR)
What is the maximum folded value of the team whose stadium is Fraser Field?
SELECT MAX(folded) FROM table_24334261_1 WHERE stadium = "Fraser Field"
CREATE TABLE table_24334261_1 (folded INTEGER, stadium VARCHAR)
What were the sets when Federer had 6 and a nadal of 13?
SELECT sets FROM table_name_95 WHERE nadal = 13 AND federer = 6
CREATE TABLE table_name_95 (sets VARCHAR, nadal VARCHAR, federer VARCHAR)
How many new conferences are in the NCLL deep south conference?
SELECT COUNT(new_conference) FROM table_26476336_2 WHERE new_classification = "NCLL Deep South Conference"
CREATE TABLE table_26476336_2 (new_conference VARCHAR, new_classification VARCHAR)
What's the year that has a Baden Freiburger FC?
SELECT COUNT(year) FROM table_name_78 WHERE baden = "freiburger fc"
CREATE TABLE table_name_78 (year VARCHAR, baden VARCHAR)
What series was Sam Evans on?
SELECT series FROM table_name_20 WHERE name = "sam evans"
CREATE TABLE table_name_20 (series VARCHAR, name VARCHAR)
How many directors are there for the episode that had 1.59 million U.S. viewers?
SELECT COUNT(directed_by) FROM table_22347090_6 WHERE us_viewers__million_ = "1.59"
CREATE TABLE table_22347090_6 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
What's the sum of Quantity for the Class of 1928 of CI-30?
SELECT SUM(quantity) FROM table_name_1 WHERE class_from_1928 = "ci-30"
CREATE TABLE table_name_1 (quantity INTEGER, class_from_1928 VARCHAR)
What is the group B region with a Group E region of Georgia?
SELECT group_b FROM table_name_17 WHERE group_e = "georgia"
CREATE TABLE table_name_17 (group_b VARCHAR, group_e VARCHAR)
what is the date when the round is sf?
SELECT date FROM table_name_52 WHERE round = "sf"
CREATE TABLE table_name_52 (date VARCHAR, round VARCHAR)
What is the up/down associated with the Subiaco Oval?
SELECT up_down FROM table_2472711_32 WHERE venue = "Subiaco Oval"
CREATE TABLE table_2472711_32 (up_down VARCHAR, venue VARCHAR)
what's the first elected with incumbent being clair engle
SELECT first_elected FROM table_1342233_6 WHERE incumbent = "Clair Engle"
CREATE TABLE table_1342233_6 (first_elected VARCHAR, incumbent VARCHAR)
What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)?
SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "2040(93%)"
CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?
SELECT MIN(against) FROM table_name_17 WHERE drawn < 2 AND points = 10 AND lost < 4
CREATE TABLE table_name_17 (against INTEGER, lost VARCHAR, drawn VARCHAR, points VARCHAR)
How many connections aux in using FIrewire?
SELECT COUNT(aux_in) FROM table_24384861_1 WHERE dock_connection = "FireWire"
CREATE TABLE table_24384861_1 (aux_in VARCHAR, dock_connection VARCHAR)
Can you tell me the sum of Score that has the Place of t5, and the Country of united states, and the Player of jeff maggert?
SELECT SUM(score) FROM table_name_27 WHERE place = "t5" AND country = "united states" AND player = "jeff maggert"
CREATE TABLE table_name_27 (score INTEGER, player VARCHAR, place VARCHAR, country VARCHAR)
What is Position, when Nationality is "Canada", and when Round is greater than 3?
SELECT position FROM table_name_31 WHERE nationality = "canada" AND round > 3
CREATE TABLE table_name_31 (position VARCHAR, nationality VARCHAR, round VARCHAR)
How many wins did he have with carlin motorsport?
SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = "Carlin Motorsport"
CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR)
What is the quantity of class B V?
SELECT quantity FROM table_name_55 WHERE class = "b v"
CREATE TABLE table_name_55 (quantity VARCHAR, class VARCHAR)
What district does the road with a MDR number of 47 pass through?
SELECT passes_through___district_s FROM table_26036389_1 WHERE mdr_no = 47
CREATE TABLE table_26036389_1 (passes_through___district_s VARCHAR, mdr_no VARCHAR)
what's the leading scorer on march 2
SELECT leading_scorer FROM table_11964047_9 WHERE date = "March 2"
CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, date VARCHAR)
What is the institution whose current conference is gcac (naia)?
SELECT institution FROM table_262481_2 WHERE current_conference = "GCAC (NAIA)"
CREATE TABLE table_262481_2 (institution VARCHAR, current_conference VARCHAR)
What are the fa.brill when w.h. archer is known as r. newman?
SELECT fa_brill FROM table_1320857_1 WHERE wh_archer = "R. Newman"
CREATE TABLE table_1320857_1 (fa_brill VARCHAR, wh_archer VARCHAR)
Who was the Winner in the AMC Round 4 at Lakeside International Raceway?
SELECT winner FROM table_name_96 WHERE circuit = "lakeside international raceway" AND series = "amc round 4"
CREATE TABLE table_name_96 (winner VARCHAR, circuit VARCHAR, series VARCHAR)
How many data were given on 2010/2011 in Brazil?
SELECT COUNT(2010 AS _11) FROM table_27712_2 WHERE country = "Brazil"
CREATE TABLE table_27712_2 (country VARCHAR)
Tell me the sum of original week for september 16, 1982
SELECT SUM(original_week) FROM table_name_51 WHERE date = "september 16, 1982"
CREATE TABLE table_name_51 (original_week INTEGER, date VARCHAR)