context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_81 (county VARCHAR, ihsaa_football_class VARCHAR, size VARCHAR)
What county has a school with less than 301 students and plays IHSAA class A football?
SELECT county FROM table_name_81 WHERE ihsaa_football_class = "a" AND size < 301
CREATE TABLE table_224672_2 (term_began VARCHAR, term_ended VARCHAR)
When did the term begin that ended January 3, 1995?
SELECT term_began FROM table_224672_2 WHERE term_ended = "January 3, 1995"
CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR)
Name the high points for l 110–112 (ot)
SELECT high_points FROM table_27733258_6 WHERE score = "L 110–112 (OT)"
CREATE TABLE table_name_33 (years VARCHAR, duration VARCHAR, character VARCHAR)
What are the years that have a duration of 15 years and giulia poggi as the character?
SELECT years FROM table_name_33 WHERE duration = "15 years" AND character = "giulia poggi"
CREATE TABLE table_name_76 (attendance INTEGER, date VARCHAR, week VARCHAR)
What is the lowest attendance for December 14, 1958 after week 12?
SELECT MIN(attendance) FROM table_name_76 WHERE date = "december 14, 1958" AND week > 12
CREATE TABLE table_225205_4 (date_successor_seated VARCHAR, district VARCHAR)
How many date of successor seated is new jersey 2nd in the district?
SELECT COUNT(date_successor_seated) FROM table_225205_4 WHERE district = "New Jersey 2nd"
CREATE TABLE table_name_43 (film_title_used_in_nomination VARCHAR, language VARCHAR, original_title VARCHAR)
What title was used in the nomination of the Spanish language film Traffic?
SELECT film_title_used_in_nomination FROM table_name_43 WHERE language = "spanish" AND original_title = "traffic"
CREATE TABLE table_name_92 (position VARCHAR, test_debut VARCHAR, year VARCHAR, cross_code_debut VARCHAR)
What is the position earlier than 1907, with a cross-code debut of inaugural rl test v new zealand, and a test debut of inaugural ru test v new zealand?
SELECT position FROM table_name_92 WHERE year < 1907 AND cross_code_debut = "inaugural rl test v new zealand" AND test_debut = "inaugural ru test v new zealand"
CREATE TABLE table_2259502_2 (outcome VARCHAR, score VARCHAR)
What was the outcome in games where the score was 7-5, 2-6, [6-10]?
SELECT outcome FROM table_2259502_2 WHERE score = "7-5, 2-6, [6-10]"
CREATE TABLE table_22597626_2 (year INTEGER, outcome VARCHAR, championship VARCHAR)
In the US Open championship and the outcome is runner-up, what is the minimum year?
SELECT MIN(year) FROM table_22597626_2 WHERE outcome = "Runner-up" AND championship = "US Open"
CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)
How many people attended on december 26, 1982?
SELECT attendance FROM table_name_78 WHERE date = "december 26, 1982"
CREATE TABLE table_27743641_2 (lmp2_winning_driver VARCHAR, lmp1_winning_team VARCHAR)
Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing?
SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = "No. 20 Oryx Dyson Racing"
CREATE TABLE table_22607062_1 (comptroller VARCHAR, ticket___office VARCHAR)
Name the comptroller for office of prohibition
SELECT comptroller FROM table_22607062_1 WHERE ticket___office = "Prohibition"
CREATE TABLE table_27734769_8 (date VARCHAR, high_points VARCHAR)
What is the date the high points was lamarcus aldridge (36)?
SELECT date FROM table_27734769_8 WHERE high_points = "LaMarcus Aldridge (36)"
CREATE TABLE table_22640051_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
Name the date of vacancy for manuel pellegrini
SELECT date_of_vacancy FROM table_22640051_3 WHERE outgoing_manager = "Manuel Pellegrini"
CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR)
How many times was the high assists andre miller (7)?
SELECT COUNT(date) FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)"
CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR)
What is the date the high rebounds were by lamarcus aldridge (6)?
SELECT date FROM table_27734769_8 WHERE high_rebounds = "LaMarcus Aldridge (6)"
CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, fastest_lap VARCHAR)
What date was the circuit, snetterton, when riki christodoulou had the fastest lap?
SELECT date FROM table_name_10 WHERE circuit = "snetterton" AND fastest_lap = "riki christodoulou"
CREATE TABLE table_22654139_3 (year INTEGER, reporters VARCHAR)
What is the latest year with reporters Lesley Visser and Robin Roberts?
SELECT MAX(year) FROM table_22654139_3 WHERE reporters = "Lesley Visser and Robin Roberts"
CREATE TABLE table_name_10 (pole_position VARCHAR, fastest_lap VARCHAR, circuit VARCHAR)
who had the pole position at rockingham circuit with adam christodoulou having the fastest lap?
SELECT pole_position FROM table_name_10 WHERE fastest_lap = "adam christodoulou" AND circuit = "rockingham"
CREATE TABLE table_27744844_5 (high_points VARCHAR, date VARCHAR)
Which player scored the most points and how many were scored on November 6?
SELECT high_points FROM table_27744844_5 WHERE date = "November 6"
CREATE TABLE table_name_49 (drawn VARCHAR, points_for VARCHAR, points_against VARCHAR)
What drawn has 416 as the points for and 533 as the points against?
SELECT drawn FROM table_name_49 WHERE points_for = "416" AND points_against = "533"
CREATE TABLE table_22669044_8 (record VARCHAR, location_attendance VARCHAR)
Name the number of record for united center 18,838
SELECT COUNT(record) FROM table_22669044_8 WHERE location_attendance = "United Center 18,838"
CREATE TABLE table_22670216_1 (location VARCHAR, winning_driver VARCHAR, track VARCHAR)
If the track is the Wisconsin State Fair Park Speedway and the winning driver is Wally Dallenbach, what was the location?
SELECT location FROM table_22670216_1 WHERE winning_driver = "Wally Dallenbach" AND track = "Wisconsin State Fair Park Speedway"
CREATE TABLE table_27755603_2 (high_rebounds VARCHAR, high_points VARCHAR)
Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points?
SELECT high_rebounds FROM table_27755603_2 WHERE high_points = "Rodney Stuckey (16)"
CREATE TABLE table_22670216_1 (rnd VARCHAR, track VARCHAR, pole_position VARCHAR)
If the pole position is Johnny Rutherford and the track is the Ontario Motor Speedway, what is the RND total number?
SELECT COUNT(rnd) FROM table_22670216_1 WHERE track = "Ontario Motor Speedway" AND pole_position = "Johnny Rutherford"
CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR)
What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)?
SELECT team FROM table_27755784_10 WHERE high_assists = "Stephen Curry (7)" AND high_points = "Monta Ellis (27)"
CREATE TABLE table_22756549_1 (winner VARCHAR, runner_up_a VARCHAR)
Who won when V. A. Muthiah was the runner-up?
SELECT winner FROM table_22756549_1 WHERE runner_up_a = "V. A. Muthiah"
CREATE TABLE table_name_88 (previous_conference VARCHAR, conference_joined VARCHAR, mascot VARCHAR)
What was the previous conference for the team with the Governors as their mascot that joined the Indiana Lake Shore conference?
SELECT previous_conference FROM table_name_88 WHERE conference_joined = "indiana lake shore" AND mascot = "governors"
CREATE TABLE table_27756164_2 (score VARCHAR, high_points VARCHAR)
What was the score of the game in which Danny Granger (30) did the high points?
SELECT score FROM table_27756164_2 WHERE high_points = "Danny Granger (30)"
CREATE TABLE table_22825058_23 (round VARCHAR, against VARCHAR)
Name the total number of round for against the netherlands
SELECT COUNT(round) FROM table_22825058_23 WHERE against = "The Netherlands"
CREATE TABLE table_name_27 (gain INTEGER, long VARCHAR, avg_g VARCHAR)
How many gains have a long greater than 8, with avg/g of 124.9?
SELECT SUM(gain) FROM table_name_27 WHERE long > 8 AND avg_g = 124.9
CREATE TABLE table_name_72 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR, points VARCHAR)
Which Driver has a Grid smaller than 17, and Points larger than 0, and a Lapse of 87, and a Time/Retired of 1:48:11.023?
SELECT driver FROM table_name_72 WHERE grid < 17 AND points > 0 AND laps = 87 AND time_retired = "1:48:11.023"
CREATE TABLE table_22849575_6 (tournament_venue__city_ VARCHAR, conference VARCHAR)
Name the tournament venue for big sky conference
SELECT tournament_venue__city_ FROM table_22849575_6 WHERE conference = "Big Sky conference"
CREATE TABLE table_22849575_6 (conference VARCHAR, tournament_winner VARCHAR)
Name the number of conference tournament for james madison
SELECT COUNT(conference) AS Tournament FROM table_22849575_6 WHERE tournament_winner = "James Madison"
CREATE TABLE table_name_31 (location VARCHAR, record VARCHAR)
Which Location has a Record of 5–2–1?
SELECT location FROM table_name_31 WHERE record = "5–2–1"
CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR)
How many times did the Centurions play the Rhein Fire?
SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = "Rhein Fire"
CREATE TABLE table_name_62 (record VARCHAR, round VARCHAR, event VARCHAR)
Which Record has a Round larger than 2, and an Event of bellator 38?
SELECT record FROM table_name_62 WHERE round > 2 AND event = "bellator 38"
CREATE TABLE table_name_62 (pick INTEGER, hometown_school VARCHAR)
What was the pick # of the player who has a hometown/school of Atlanta, GA?
SELECT AVG(pick) FROM table_name_62 WHERE hometown_school = "atlanta, ga"
CREATE TABLE table_name_34 (monday_to_friday VARCHAR, mañana_es_para_siempre VARCHAR)
What is Mañana es para siempre of impreuna pentru totdeauna from Monday to Friday?
SELECT monday_to_friday FROM table_name_34 WHERE mañana_es_para_siempre = "impreuna pentru totdeauna"
CREATE TABLE table_22901612_2 (region VARCHAR, chief_judge VARCHAR)
If the chief judge is Glen E. Conrad, what is the region?
SELECT region FROM table_22901612_2 WHERE chief_judge = "Glen E. Conrad"
CREATE TABLE table_name_71 (name VARCHAR)
Which 2008 club has the name Francesca Piccinini Category:Articles with hCards?
SELECT 2008 AS _club FROM table_name_71 WHERE name = "francesca piccinini category:articles with hcards"
CREATE TABLE table_27771406_1 (catches INTEGER, player VARCHAR)
How many catches did Clifford McWatt have?
SELECT MIN(catches) FROM table_27771406_1 WHERE player = "Clifford McWatt"
CREATE TABLE table_name_29 (against INTEGER, draws VARCHAR, wins VARCHAR, club VARCHAR)
What is the number of against when the wins were 8, and a Club of South Warrnambool, with less than 0 draws?
SELECT SUM(against) FROM table_name_29 WHERE wins = 8 AND club = "south warrnambool" AND draws < 0
CREATE TABLE table_27786562_1 (points__margin_ VARCHAR, top_tens VARCHAR, owner VARCHAR)
Name the points for top tens being 24 and ownder david pearson
SELECT points__margin_ FROM table_27786562_1 WHERE top_tens = 24 AND owner = "David Pearson"
CREATE TABLE table_23018775_3 (lap_two VARCHAR, name VARCHAR)
How many lap two's did marco andretti do?
SELECT COUNT(lap_two) FROM table_23018775_3 WHERE name = "Marco Andretti"
CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR)
How many teams does Lee Sorochan play for?
SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = "Lee Sorochan"
CREATE TABLE table_23114705_3 (original_air_date VARCHAR, written_by VARCHAR)
If the episode was written by Tim Balme, what was the original air date?
SELECT original_air_date FROM table_23114705_3 WHERE written_by = "Tim Balme"
CREATE TABLE table_name_80 (characters VARCHAR, title VARCHAR)
What are the characters from the movie Suppressed Duck?
SELECT characters FROM table_name_80 WHERE title = "suppressed duck"
CREATE TABLE table_name_13 (round VARCHAR, pick VARCHAR, player VARCHAR)
How many rounds did Pierre Bland have a pick larger than 148?
SELECT COUNT(round) FROM table_name_13 WHERE pick > 148 AND player = "pierre bland"
CREATE TABLE table_23141790_1 (director VARCHAR, original_title VARCHAR)
Name the total number of director for vesničko má středisková
SELECT COUNT(director) FROM table_23141790_1 WHERE original_title = "Vesničko má středisková"
CREATE TABLE table_231623_3 (sex_ratio INTEGER, population VARCHAR)
Name the sex ratio lowest for population 4773138
SELECT MAX(sex_ratio) FROM table_231623_3 WHERE population = 4773138
CREATE TABLE table_27816698_2 (pac_12_sports VARCHAR, institution VARCHAR)
How many pac-12 sports are shown for california polytechnic state university?
SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = "California Polytechnic State University"
CREATE TABLE table_23177573_1 (rank__week_ VARCHAR, written_by VARCHAR, directed_by VARCHAR)
What was the week ranking of the episode written by Thomas L. Moran and directed by Andrew Bernstein?
SELECT rank__week_ FROM table_23177573_1 WHERE written_by = "Thomas L. Moran" AND directed_by = "Andrew Bernstein"
CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR)
Which institution was located in bakersfield, california?
SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California"
CREATE TABLE table_278229_1 (commandery VARCHAR)
When gaoliang 高涼 is the commandery what is the commandery capital?
SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Gaoliang 高涼"
CREATE TABLE table_name_82 (notes VARCHAR, call_sign VARCHAR)
What is the Notes of the Frequency with a call sign of CBUE-FM?
SELECT notes FROM table_name_82 WHERE call_sign = "cbue-fm"
CREATE TABLE table_name_25 (dynamo INTEGER, spartak VARCHAR, draw VARCHAR, played VARCHAR)
what is the average dynamo when draw is more than 0, played is less than 15 and spartak is more than 1?
SELECT AVG(dynamo) FROM table_name_25 WHERE draw > 0 AND played < 15 AND spartak > 1
CREATE TABLE table_27833186_1 (rider_names VARCHAR, location VARCHAR, horse_name VARCHAR)
Who were the winning riders of the championship in Euer Valley, CA and whose horse was Magic Sirocco?
SELECT rider_names FROM table_27833186_1 WHERE location = "Euer Valley, CA" AND horse_name = "Magic Sirocco"
CREATE TABLE table_23214833_1 (capacity VARCHAR, team_captain VARCHAR)
How many people can attend games in the stadium of the team whose captain is Vasil Vasilev?
SELECT capacity FROM table_23214833_1 WHERE team_captain = "Vasil Vasilev"
CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_category VARCHAR)
What are the the approximate translations when the Morphological Category is 1st. plur. perfect?
SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = "1st. plur. perfect"
CREATE TABLE table_name_62 (rank INTEGER, day_1 VARCHAR, country VARCHAR)
what is the average rank when the day 1 is less than 71 and the country is romania?
SELECT AVG(rank) FROM table_name_62 WHERE day_1 < 71 AND country = "romania"
CREATE TABLE table_name_20 (venue VARCHAR, event VARCHAR, year VARCHAR, competition VARCHAR)
what is the venue when the year is 2006, the competition is asian games and the event is 400 m?
SELECT venue FROM table_name_20 WHERE year = 2006 AND competition = "asian games" AND event = "400 m"
CREATE TABLE table_23248967_5 (score VARCHAR, team VARCHAR)
What was the score against New Orleans?
SELECT score FROM table_23248967_5 WHERE team = "New Orleans"
CREATE TABLE table_name_93 (venue VARCHAR, year VARCHAR, competition VARCHAR, event VARCHAR)
what is the venue when the competition is asian games, the event is 4x400 m relay and the year is 2002?
SELECT venue FROM table_name_93 WHERE competition = "asian games" AND event = "4x400 m relay" AND year = 2002
CREATE TABLE table_name_7 (spokespersons VARCHAR, commentator VARCHAR, voting_order VARCHAR)
During the voting order 11, when the commentator was pierre tchernia, who was the spokesperson?
SELECT spokespersons FROM table_name_7 WHERE commentator = "pierre tchernia" AND voting_order = 11
CREATE TABLE table_name_50 (voting_order INTEGER, commentator VARCHAR)
What was the voting order when bunny carr was the commentator?
SELECT SUM(voting_order) FROM table_name_50 WHERE commentator = "bunny carr"
CREATE TABLE table_27882867_4 (location_attendance VARCHAR, score VARCHAR)
Name the location attendance for l 93-105
SELECT location_attendance FROM table_27882867_4 WHERE score = "L 93-105"
CREATE TABLE table_27877656_7 (surface VARCHAR, score VARCHAR, edition VARCHAR)
For edition is 2011 europe/africa group iiib and surface where score is 6–4, 6–1 please specify all the surface
SELECT surface FROM table_27877656_7 WHERE score = "6–4, 6–1" AND edition = "2011 Europe/Africa Group IIIB"
CREATE TABLE table_27877656_7 (opponent_team VARCHAR, opponent VARCHAR, edition VARCHAR, outcome VARCHAR)
For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team.
SELECT opponent_team FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND outcome = "Winner" AND opponent = "Sandra Kristjánsdóttir"
CREATE TABLE table_23274514_5 (high_rebounds VARCHAR, record VARCHAR)
Name the high rebounds for record 10-19
SELECT high_rebounds FROM table_23274514_5 WHERE record = "10-19"
CREATE TABLE table_27877656_7 (opponent VARCHAR, edition VARCHAR, opponent_team VARCHAR)
For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent
SELECT opponent FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND opponent_team = "Armenia"
CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record VARCHAR)
Name the number of location attendance for 36-29 record
SELECT COUNT(location_attendance) FROM table_27902171_8 WHERE record = "36-29"
CREATE TABLE table_name_50 (airing_date VARCHAR, english_title__chinese_title_ VARCHAR, genre VARCHAR, official_website VARCHAR, number_of_episodes VARCHAR)
What's the airing date of Armed Reaction 陀槍師姐 with 20 episodes in the Modern Action genre having an official website?
SELECT airing_date FROM table_name_50 WHERE official_website = "official website" AND number_of_episodes = 20 AND genre = "modern action" AND english_title__chinese_title_ = "armed reaction 陀槍師姐"
CREATE TABLE table_23286158_8 (team VARCHAR, location_attendance VARCHAR)
Name the team at the rose garden 20,565
SELECT team FROM table_23286158_8 WHERE location_attendance = "Rose Garden 20,565"
CREATE TABLE table_name_33 (official_website VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)
What's the official website of Burning Flame 烈火雄心 with 22 episodes?
SELECT official_website FROM table_name_33 WHERE number_of_episodes > 22 AND english_title__chinese_title_ = "burning flame 烈火雄心"
CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR)
Name the callsign for davao mindanao region
SELECT callsign FROM table_27914076_1 WHERE coverage = "Davao Mindanao Region"
CREATE TABLE table_23289934_1 (no_in_series INTEGER, production_code VARCHAR)
Name the least number for production code for 3abc21
SELECT MIN(no_in_series) FROM table_23289934_1 WHERE production_code = "3ABC21"
CREATE TABLE table_name_9 (body_length_mm INTEGER, lead_pitch_mm INTEGER)
Which Body Length/mm has a Lead Pitch/mm smaller than 0.5?
SELECT AVG(body_length_mm) FROM table_name_9 WHERE lead_pitch_mm < 0.5
CREATE TABLE table_27914076_1 (coverage VARCHAR, branding VARCHAR)
Name the number of coverage for 106.7 energy fm
SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = "106.7 Energy FM"
CREATE TABLE table_23308178_8 (game VARCHAR, record VARCHAR)
How many games did they have a record of 39-12-6?
SELECT COUNT(game) FROM table_23308178_8 WHERE record = "39-12-6"
CREATE TABLE table_name_12 (firefox_ VARCHAR, _other_mozilla VARCHAR, chrome VARCHAR)
What percentage of browsers were using Firefox or other Mozilla browsers during the period in which 1.93% were using Chrome?
SELECT firefox_, _other_mozilla FROM table_name_12 WHERE chrome = "1.93%"
CREATE TABLE table_name_27 (country VARCHAR, series_premiere VARCHAR, tv_network_s_ VARCHAR)
What country has a series premier of unknown and mbc action as their TV network?
SELECT country FROM table_name_27 WHERE series_premiere = "unknown" AND tv_network_s_ = "mbc action"
CREATE TABLE table_2343740_1 (title VARCHAR, original_air_date VARCHAR)
What was the title of the episode that aired February 9, 1979?
SELECT title FROM table_2343740_1 WHERE original_air_date = "February 9, 1979"
CREATE TABLE table_2345558_1 (director VARCHAR, writer_s_ VARCHAR)
Who directed the episode written by Jason Yoshimura?
SELECT director FROM table_2345558_1 WHERE writer_s_ = "Jason Yoshimura"
CREATE TABLE table_23465864_3 (sat_29_aug VARCHAR, rider VARCHAR)
When roy richardson 476cc aermacchi is the rider what is the time for saturday august 9th?
SELECT sat_29_aug FROM table_23465864_3 WHERE rider = "Roy Richardson 476cc Aermacchi"
CREATE TABLE table_name_83 (league_cup_apps VARCHAR, fa_cup_apps VARCHAR)
Which league cup apps has FA as the cup apps of 5?
SELECT league_cup_apps FROM table_name_83 WHERE fa_cup_apps = "5"
CREATE TABLE table_name_33 (social_democratic VARCHAR, democratic_and_social_centre VARCHAR)
What Social Democratic has a Democratic and Social Centre of 10.0% 22 seats?
SELECT social_democratic FROM table_name_33 WHERE democratic_and_social_centre = "10.0% 22 seats"
CREATE TABLE table_name_86 (social_democratic VARCHAR, democratic_and_social_centre VARCHAR)
What Social Democratic has the Democratic and Social Centre of 4.4% 4 seats?
SELECT social_democratic FROM table_name_86 WHERE democratic_and_social_centre = "4.4% 4 seats"
CREATE TABLE table_name_66 (number_of_teams VARCHAR, top_goalscorer_s_ VARCHAR, year VARCHAR)
How many teams were at the 2007 details tournament where there a top goalscorer was not awarded?
SELECT number_of_teams FROM table_name_66 WHERE top_goalscorer_s_ = "not awarded" AND year = "2007 details"
CREATE TABLE table_name_30 (section VARCHAR, level VARCHAR, season VARCHAR)
What section were they in when there were tier 2 in 1996?
SELECT section FROM table_name_30 WHERE level = "tier 2" AND season = 1996
CREATE TABLE table_name_81 (film_title_used_in_nomination VARCHAR, actor_actress VARCHAR, category VARCHAR)
What was the film title that emma thompson was the actress nominated for best supporting actress?
SELECT film_title_used_in_nomination FROM table_name_81 WHERE actor_actress = "emma thompson" AND category = "best supporting actress"
CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, a_winning_car VARCHAR)
Name the b winning car for #88 team mitsubishi 88 mitsubishi starion
SELECT b_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion"
CREATE TABLE table_name_51 (category VARCHAR, actor_actress VARCHAR, film_title_used_in_nomination VARCHAR)
What category was al pacino nominated for in the film, glengarry glen ross?
SELECT category FROM table_name_51 WHERE actor_actress = "al pacino" AND film_title_used_in_nomination = "glengarry glen ross"
CREATE TABLE table_name_21 (year INTEGER, result VARCHAR, role_episode VARCHAR)
what is the earliest year when the result is won and the role/episode is fox mulder?
SELECT MIN(year) FROM table_name_21 WHERE result = "won" AND role_episode = "fox mulder"
CREATE TABLE table_name_84 (executive_director VARCHAR, type VARCHAR, location VARCHAR)
Who is the executive director of the Lemery, Batangas extension?
SELECT executive_director FROM table_name_84 WHERE type = "extension" AND location = "lemery, batangas"
CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR)
What is the number of gold for the country ranked 19?
SELECT SUM(gold) FROM table_name_19 WHERE rank = "19"
CREATE TABLE table_name_21 (number_of_electorates__2009_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208?
SELECT SUM(number_of_electorates__2009_) FROM table_name_21 WHERE district = "indore" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "208"
CREATE TABLE table_27987767_2 (match_points VARCHAR, losers VARCHAR)
how many match points did gran parma lost
SELECT match_points FROM table_27987767_2 WHERE losers = "Gran Parma"
CREATE TABLE table_27987767_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR)
When brive is the proceed to quarter final how many were eliminated from competition?
SELECT COUNT(eliminated_from_competition) FROM table_27987767_3 WHERE proceed_to_quarter_final = "Brive"