context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_66 (director VARCHAR, film_title_used_in_nomination VARCHAR)
Who is the Director that has a Film title of nick carter in prague?
SELECT director FROM table_name_66 WHERE film_title_used_in_nomination = "nick carter in prague"
CREATE TABLE table_name_10 (film_title_used_in_nomination VARCHAR, original_name VARCHAR)
What is the Film title used in nomination of Mig Og Charly?
SELECT film_title_used_in_nomination FROM table_name_10 WHERE original_name = "mig og charly"
CREATE TABLE table_name_17 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)
What is the Original name of empire of passion?
SELECT original_name FROM table_name_17 WHERE film_title_used_in_nomination = "empire of passion"
CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley?
SELECT winning_score FROM table_name_69 WHERE margin_of_victory = "2 strokes" AND runner_s__up = "pat bradley"
CREATE TABLE table_name_25 (race_1 VARCHAR, round VARCHAR)
What is the Race 1 result of Round 2?
SELECT race_1 FROM table_name_25 WHERE round = "round 2"
CREATE TABLE table_name_40 (week VARCHAR, away_team VARCHAR, overall_record VARCHAR, home_team VARCHAR, divisional_record VARCHAR)
Can you tell me the Week that has the Home Team of detroit, and the Divisional Record of (3-0), and the Overall Record of (5-1), and the Away Team of minnesota?
SELECT week FROM table_name_40 WHERE home_team = "detroit" AND divisional_record = "(3-0)" AND overall_record = "(5-1)" AND away_team = "minnesota"
CREATE TABLE table_name_7 (to_par VARCHAR, winning_score VARCHAR)
When the Winning is 71-71-70-69=281, what is the To par?
SELECT to_par FROM table_name_7 WHERE winning_score = 71 - 71 - 70 - 69 = 281
What is the average number of 2nd place finishes for racers active in the year 2000 and more than 0 titles?
SELECT AVG(_2nd_place) FROM table_name_16 WHERE years_active = "2000" AND titles > 0
CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents?
SELECT attendance FROM table_name_39 WHERE week < 16 AND opponent = "washington redskins"
CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
What Country had a Score of 71-67=138?
SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138
CREATE TABLE table_name_35 (innings INTEGER, runs_scored VARCHAR, balls_faced VARCHAR, average VARCHAR, sr VARCHAR)
How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored?
SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19
CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VARCHAR)
What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?
SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5
CREATE TABLE table_name_79 (season VARCHAR, final_placing VARCHAR, podiums VARCHAR)
Which Season has a Final Place of 8th and 8 Podiums?
SELECT season FROM table_name_79 WHERE final_placing = "8th" AND podiums = "8"
CREATE TABLE table_name_66 (frequency INTEGER, status VARCHAR, format VARCHAR)
What is the total frequency have a Status of owned by cumulus media, and a Format of news?
SELECT SUM(frequency) FROM table_name_66 WHERE status = "owned by cumulus media" AND format = "news"
CREATE TABLE table_name_13 (content VARCHAR, package_option VARCHAR, television_service VARCHAR)
What is the content when the package/option is qualsiasi and sky primafila 14 is the television service?
SELECT content FROM table_name_13 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 14"
CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service VARCHAR)
What is the HDTV that has television service of tv 8 mont blanc and content is general television?
SELECT hdtv FROM table_name_26 WHERE content = "general television" AND television_service = "tv 8 mont blanc"
CREATE TABLE table_name_22 (entrant VARCHAR, points VARCHAR, year VARCHAR, chassis VARCHAR)
which entrant after 1987 had 12 points and a benetton b188 chassis?
SELECT entrant FROM table_name_22 WHERE year > 1987 AND chassis = "benetton b188" AND points = 12
CREATE TABLE table_name_58 (secondary_military_speciality VARCHAR, primary_military_speciality VARCHAR)
With a Primary military speciality of astral assault tactics, what is the Secondary military speciality?
SELECT secondary_military_speciality FROM table_name_58 WHERE primary_military_speciality = "astral assault tactics"
CREATE TABLE table_name_79 (birthplace VARCHAR, jersey_number VARCHAR, position VARCHAR, height__cm_ VARCHAR)
What is the birthplace of the player who is 190 CM tall, plays the D position, and wears number 11?
SELECT birthplace FROM table_name_79 WHERE position = "d" AND height__cm_ = 190 AND jersey_number = 11
CREATE TABLE table_name_3 (points INTEGER, year VARCHAR, entrant VARCHAR)
What's the least amount of points that Walter Wolf Racing had after 1974?
SELECT MIN(points) FROM table_name_3 WHERE year > 1974 AND entrant = "walter wolf racing"
CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, competition VARCHAR)
What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games?
SELECT SUM(year) FROM table_name_68 WHERE position = "6th" AND competition = "commonwealth games"
CREATE TABLE table_name_60 (points INTEGER, engine VARCHAR, year VARCHAR, entrant VARCHAR)
What's the total points that Scuderia Ferrari with a Ferrari V12 engine have before 1971?
SELECT SUM(points) FROM table_name_60 WHERE year < 1971 AND entrant = "scuderia ferrari" AND engine = "ferrari v12"
CREATE TABLE table_name_62 (weight__kg_ INTEGER, birthdate VARCHAR, jersey__number VARCHAR, position VARCHAR)
What is the lightest Weight (kg), when the Jersey # is greater than 22, when the Position is F, and when the Birthdate is March 19, 1980?
SELECT MIN(weight__kg_) FROM table_name_62 WHERE jersey__number > 22 AND position = "f" AND birthdate = "march 19, 1980"
CREATE TABLE table_name_24 (birthplace VARCHAR, birthdate VARCHAR, jersey__number VARCHAR, height__cm_ VARCHAR)
What is the Birthplace, when the Jersey # is less than 18, when the Height (cm) is higher than 185, and when the Birthdate is March 3, 1980?
SELECT birthplace FROM table_name_24 WHERE jersey__number < 18 AND height__cm_ > 185 AND birthdate = "march 3, 1980"
CREATE TABLE table_name_53 (golden_point_s__scorer VARCHAR, away VARCHAR, home VARCHAR)
What Golden point(s) scorer has the Away Sydney Roosters and Home Cronulla Sharks?
SELECT golden_point_s__scorer FROM table_name_53 WHERE away = "sydney roosters" AND home = "cronulla sharks"
CREATE TABLE table_name_5 (Id VARCHAR)
What was 2009, when 2001 was, "not masters series"?
SELECT 2009 FROM table_name_5 WHERE 2001 = "not masters series"
CREATE TABLE table_name_71 (grid VARCHAR, rider VARCHAR)
The rider mike di meglio had a total of how many grids?
SELECT COUNT(grid) FROM table_name_71 WHERE rider = "mike di meglio"
CREATE TABLE table_name_61 (republican_ticket VARCHAR, socialist_ticket VARCHAR)
Who's the Republican ticket with a Socialist ticket of frank r. crosswaith?
SELECT republican_ticket FROM table_name_61 WHERE socialist_ticket = "frank r. crosswaith"
CREATE TABLE table_name_49 (roll INTEGER, decile VARCHAR, years VARCHAR, name VARCHAR)
What is the largest roll with Years 1–8, a Name of dorie school, and a Decile larger than 9?
SELECT MAX(roll) FROM table_name_49 WHERE years = "1–8" AND name = "dorie school" AND decile > 9
CREATE TABLE table_name_22 (year INTEGER, opponent VARCHAR)
what year was the opponent caroline garcia?
SELECT SUM(year) FROM table_name_22 WHERE opponent = "caroline garcia"
CREATE TABLE table_name_50 (year INTEGER, event VARCHAR, opponent VARCHAR)
what's the earliest year that the wimbledon opponent was zheng jie?
SELECT MIN(year) FROM table_name_50 WHERE event = "wimbledon" AND opponent = "zheng jie"
CREATE TABLE table_name_26 (season VARCHAR, school_club_team VARCHAR, number VARCHAR)
What season did the player who had the number 26 play on who came from far eastern?
SELECT season FROM table_name_26 WHERE school_club_team = "far eastern" AND number = 26
CREATE TABLE table_name_19 (the_prize VARCHAR, launch_date VARCHAR, tv_channel VARCHAR, the_presenter VARCHAR)
What was the prize when the show was aired on Ant1, was presented by Andreas Mikroutsikos, and was launched on March 10, 2003?
SELECT the_prize FROM table_name_19 WHERE tv_channel = "ant1" AND the_presenter = "andreas mikroutsikos" AND launch_date = "march 10, 2003"
CREATE TABLE table_name_9 (construction_completed VARCHAR, listed VARCHAR, deleted VARCHAR)
When was construction completed that was listed on 09/21/1984 and a Deleted of 11/04/1999?
SELECT construction_completed FROM table_name_9 WHERE listed = "09/21/1984" AND deleted = "11/04/1999"
CREATE TABLE table_name_13 (transfer_fee___ VARCHAR, player VARCHAR, year VARCHAR)
How many transfer fees did Afonso Alves have after 2008?
SELECT COUNT(transfer_fee___) AS €_million_ FROM table_name_13 WHERE player = "afonso alves" AND year > 2008
CREATE TABLE table_name_78 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
Which runner(s)-up had a Winning score of –13 (68-70-66-71=275) and a Margin of victory of 3 strokes?
SELECT runner_s__up FROM table_name_78 WHERE margin_of_victory = "3 strokes" AND winning_score = –13(68 - 70 - 66 - 71 = 275)
CREATE TABLE table_name_66 (margin_of_victory VARCHAR, winning_score VARCHAR)
When the Winning score was –9 (69-72-68-70=279), what was the Margin of victory?
SELECT margin_of_victory FROM table_name_66 WHERE winning_score = –9(69 - 72 - 68 - 70 = 279)
CREATE TABLE table_name_2 (height VARCHAR, floor_count INTEGER)
What height has a floor count less than 25?
SELECT height FROM table_name_2 WHERE floor_count < 25
CREATE TABLE table_name_90 (year VARCHAR, engine VARCHAR, points VARCHAR, entrant VARCHAR)
What year were there less than 1.5 points and an Entrant of escuderia bandeirantes, and a maserati straight-4 engine?
SELECT year FROM table_name_90 WHERE points < 1.5 AND entrant = "escuderia bandeirantes" AND engine = "maserati straight-4"
CREATE TABLE table_name_40 (losses VARCHAR, matches VARCHAR)
What is the losses for the 5 matches?
SELECT losses FROM table_name_40 WHERE matches = "5"
CREATE TABLE table_name_30 (moroccan_population VARCHAR, name VARCHAR, population__2004_ VARCHAR)
What is the number for the Moroccan population when the name is Sebt Saiss and the 2004 population is more than 11212?
SELECT COUNT(moroccan_population) FROM table_name_30 WHERE name = "sebt saiss" AND population__2004_ > 11212
CREATE TABLE table_name_18 (brazil_scorers VARCHAR, competition VARCHAR, score VARCHAR)
Who were the Brazil scorers for the World Cup Competition with a 1-2 score?
SELECT brazil_scorers FROM table_name_18 WHERE competition = "world cup" AND score = "1-2"
CREATE TABLE table_name_72 (original_title VARCHAR, director VARCHAR)
What was the original title of the film directed by Lene Grønlykke and Sven Grønlykke?
SELECT original_title FROM table_name_72 WHERE director = "lene grønlykke and sven grønlykke"
CREATE TABLE table_name_26 (film_title_used_in_nomination VARCHAR, country VARCHAR)
What is the film title used in nomination for the film from South Korea?
SELECT film_title_used_in_nomination FROM table_name_26 WHERE country = "south korea"
CREATE TABLE table_name_89 (film_title_used_in_nomination VARCHAR, director VARCHAR)
What was the film title used in nomination for the film directed by Gheorghe Vitanidis?
SELECT film_title_used_in_nomination FROM table_name_89 WHERE director = "gheorghe vitanidis"
CREATE TABLE table_name_57 (seats__acs_ INTEGER, election_winner VARCHAR, incumbent VARCHAR)
What is the smallest number of seats with INC as an election winner and BJP incumbent?
SELECT MIN(seats__acs_) FROM table_name_57 WHERE election_winner = "inc" AND incumbent = "bjp"
CREATE TABLE table_name_65 (career_win_loss VARCHAR, tournament VARCHAR)
What is the win-loss when 2008 has a value of Q1 at Australian Open?
SELECT career_win_loss FROM table_name_65 WHERE 2008 = "q1" AND tournament = "australian open"
CREATE TABLE table_name_77 (tournament VARCHAR)
what is the tournament when the performance in 2012 is 3r and 2011 is qf?
SELECT tournament FROM table_name_77 WHERE 2012 = "3r" AND 2011 = "qf"
CREATE TABLE table_name_70 (year INTEGER, entrant VARCHAR, points VARCHAR)
What is the year when Spirit Tom's Racing had more than 3 points?
SELECT SUM(year) FROM table_name_70 WHERE entrant = "spirit tom's racing" AND points > 3
CREATE TABLE table_name_17 (week INTEGER, attendance VARCHAR)
Name the average week for attendance of 75,111
SELECT AVG(week) FROM table_name_17 WHERE attendance = 75 OFFSET 111
CREATE TABLE table_name_53 (points INTEGER, year VARCHAR, entrant VARCHAR)
For the Entrant of Sasol Jordan, add up all the points with a Year larger than 1993.
SELECT SUM(points) FROM table_name_53 WHERE year > 1993 AND entrant = "sasol jordan"
CREATE TABLE table_name_64 (points INTEGER, chassis VARCHAR)
Give the most points that features jordan 194 in the Chassis column.
SELECT MAX(points) FROM table_name_64 WHERE chassis = "jordan 194"
CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCHAR)
In the 2012 (85th) Ceremony, what was the Original title of the film not nominated?
SELECT original_title FROM table_name_66 WHERE result = "not nominated" AND year__ceremony_ = "2012 (85th)"
CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, score VARCHAR)
What day did the Diamondbacks go 2-7?
SELECT date FROM table_name_92 WHERE opponent = "diamondbacks" AND score = "2-7"
CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR)
What is the total number of picks for PBA team san miguel beermen who picked rommel daep?
SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = "san miguel beermen" AND player = "rommel daep"
CREATE TABLE table_name_39 (result VARCHAR, champions VARCHAR, year VARCHAR, runners_up VARCHAR)
What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007?
SELECT result FROM table_name_39 WHERE year > 2007 AND runners_up = "seoul samsung thunders" AND champions = "jeonju kcc egis"
CREATE TABLE table_name_93 (year INTEGER, winning_team VARCHAR, usa_captain VARCHAR)
What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth?
SELECT MAX(year) FROM table_name_93 WHERE winning_team = "europe" AND usa_captain = "kathy whitworth"
CREATE TABLE table_name_97 (division_iII VARCHAR, division_v VARCHAR, division_iV VARCHAR, hanover VARCHAR)
What Division III has Bishop Brady in Division V and Hanover in Division IV?
SELECT division_iII FROM table_name_97 WHERE division_v = "bishop brady" AND division_iV = hanover
CREATE TABLE table_name_86 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR)
Name the total number of points for beta team march 1975 and chassis of march 751
SELECT COUNT(points) FROM table_name_86 WHERE entrant = "beta team march" AND year = 1975 AND chassis = "march 751"
CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
What score in the final has hard as the surface, and june 13, 2011 as the date?
SELECT score_in_the_final FROM table_name_57 WHERE surface = "hard" AND date = "june 13, 2011"
CREATE TABLE table_name_53 (surface VARCHAR, opponents VARCHAR)
Which type of surface do Amer Delic Robert Kendrick's opponents have?
SELECT surface FROM table_name_53 WHERE opponents = "amer delic robert kendrick"
CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR)
What is Diego Junqueira Gabriel Trujillo-Soler's opponent's score?
SELECT score FROM table_name_35 WHERE opponents = "diego junqueira gabriel trujillo-soler"
CREATE TABLE table_name_18 (surface VARCHAR, opponents VARCHAR)
Which surface do opponents of Thomas Oger Nicolas Tourte have?
SELECT surface FROM table_name_18 WHERE opponents = "thomas oger nicolas tourte"
CREATE TABLE table_name_18 (year INTEGER, role VARCHAR, title VARCHAR)
What's the earliest year with a role of alvin seville simon seville david 'dave' seville, and a Title of alvin and the chipmunks meet the wolfman?
SELECT MIN(year) FROM table_name_18 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "alvin and the chipmunks meet the wolfman"
CREATE TABLE table_name_30 (year INTEGER, role VARCHAR, title VARCHAR)
What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure?
SELECT AVG(year) FROM table_name_30 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "the chipmunk adventure"
CREATE TABLE table_name_14 (result VARCHAR, h___a VARCHAR, kick_off VARCHAR)
What is the result of the match with a H/A of A and a kick off at 1992-10-31 16:00?
SELECT result FROM table_name_14 WHERE h___a = "a" AND kick_off = "1992-10-31 16:00"
CREATE TABLE table_name_58 (attendance INTEGER, game VARCHAR, score VARCHAR)
Which Attendance has a Game score less than 3, and a Score of 2 – 5?
SELECT AVG(attendance) FROM table_name_58 WHERE game < 3 AND score = "2 – 5"
CREATE TABLE table_name_55 (presentation_of_credentials VARCHAR, appointed_by VARCHAR)
Which Presentation of Credentials is listed for the Appointed by Benjamin Harrison?
SELECT presentation_of_credentials FROM table_name_55 WHERE appointed_by = "benjamin harrison"
CREATE TABLE table_name_37 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR)
What is the Termination of Mission with a Title of Ambassador Extraordinary and Plenipotentiary with a Representative of Reynold E. Carlson?
SELECT termination_of_mission FROM table_name_37 WHERE title = "ambassador extraordinary and plenipotentiary" AND representative = "reynold e. carlson"
CREATE TABLE table_name_86 (avg_g INTEGER, effic VARCHAR, name VARCHAR)
What is the lowest avg/g that has an effic greater than 34.36, with wesley carroll as the name?
SELECT MIN(avg_g) FROM table_name_86 WHERE effic > 34.36 AND name = "wesley carroll"
CREATE TABLE table_name_5 (course VARCHAR, stage VARCHAR)
What course are they running on stage 1?
SELECT course FROM table_name_5 WHERE stage = "1"
CREATE TABLE table_name_42 (year INTEGER, _aramac_ VARCHAR, population__total_ VARCHAR)
What Year has an (Aramac) of 832 and a Population (Total) less than 3,762?
SELECT SUM(year) FROM table_name_42 WHERE _aramac_ = 832 AND population__total_ < 3 OFFSET 762
CREATE TABLE table_name_37 (year VARCHAR, title VARCHAR, result VARCHAR, genre VARCHAR, label VARCHAR)
Which year's genre was jazz under the columbia label when it was nominated for the title Trio jeepy?
SELECT year FROM table_name_37 WHERE genre = "jazz" AND label = "columbia" AND result = "nominated" AND title = "trio jeepy"
CREATE TABLE table_name_7 (company VARCHAR, principal_activities VARCHAR)
What company focuses on Engine Overhaul for their principal activity?
SELECT company FROM table_name_7 WHERE principal_activities = "engine overhaul"
CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR, game VARCHAR, team VARCHAR)
When Date has a Game larger than 4 and a Team of san antonio, and a Record of 4-3?
SELECT date FROM table_name_86 WHERE game > 4 AND team = "san antonio" AND record = "4-3"
CREATE TABLE table_name_59 (winner VARCHAR, runner_up VARCHAR, country VARCHAR)
Who was the winner from the United States the year Kimberly Kim was runner-up?
SELECT winner FROM table_name_59 WHERE runner_up = "kimberly kim" AND country = "united states"
CREATE TABLE table_name_67 (opponent VARCHAR, date VARCHAR, type VARCHAR, round VARCHAR)
Which Opponent has a Type of tko, and a Round of 2 (6) on 2006-09-20?
SELECT opponent FROM table_name_67 WHERE type = "tko" AND round = "2 (6)" AND date = "2006-09-20"
CREATE TABLE table_name_30 (perigee__km_ INTEGER, launch_date VARCHAR)
What is the lowest Perigee with a Launch date of 1970-08-26?
SELECT MIN(perigee__km_) FROM table_name_30 WHERE launch_date = "1970-08-26"
CREATE TABLE table_name_73 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
What is the Score when the opponent in the final is alicia pillay on a hard surface?
SELECT score FROM table_name_73 WHERE surface = "hard" AND opponent_in_the_final = "alicia pillay"
CREATE TABLE table_name_18 (data_limit__gb VARCHAR, company VARCHAR, plan_name VARCHAR)
What is the data limit for a T-Mobile internet basic plan?
SELECT data_limit__gb FROM table_name_18 WHERE company = "t-mobile" AND plan_name = "internet basic"
CREATE TABLE table_name_92 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
What is the Opponent in the final with an outcome of winner on 14-may-2007?
SELECT opponent_in_the_final FROM table_name_92 WHERE outcome = "winner" AND date = "14-may-2007"
CREATE TABLE table_name_5 (maximum_download_speed__kbps VARCHAR, technology VARCHAR, plan_name VARCHAR)
What is the maximum download speed for the Internet premium 3G plan?
SELECT maximum_download_speed__kbps FROM table_name_5 WHERE technology = "3g" AND plan_name = "internet premium"
CREATE TABLE table_name_42 (to_par VARCHAR, player VARCHAR)
What is the to par for Gene Littler?
SELECT to_par FROM table_name_42 WHERE player = "gene littler"
CREATE TABLE table_name_65 (set_5 VARCHAR, date VARCHAR, set_4 VARCHAR)
What is the set 5 if the Date is jun 7, and a Set 4 is 21-25?
SELECT set_5 FROM table_name_65 WHERE date = "jun 7" AND set_4 = "21-25"
CREATE TABLE table_name_24 (nation VARCHAR, sport VARCHAR, pinyin VARCHAR)
What nation has a sport of weightlifting and a pinyin of kùkè qúndǎo?
SELECT nation FROM table_name_24 WHERE sport = "weightlifting" AND pinyin = "kùkè qúndǎo"
CREATE TABLE table_name_34 (date VARCHAR, team VARCHAR, venue VARCHAR)
What day did Glentoran play at Windsor Park, Belfast?
SELECT date FROM table_name_34 WHERE team = "glentoran" AND venue = "windsor park, belfast"
CREATE TABLE table_name_72 (round INTEGER, position VARCHAR)
In what round was the first outside linebacker picked?
SELECT MIN(round) FROM table_name_72 WHERE position = "outside linebacker"
CREATE TABLE table_name_25 (home_captain VARCHAR, result VARCHAR)
Who was the Home Captain and the Result for AUS by 4 wkts?
SELECT home_captain FROM table_name_25 WHERE result = "aus by 4 wkts"
CREATE TABLE table_name_53 (match INTEGER, opponent_team VARCHAR, home_away VARCHAR)
What was the highest match when the away opponent was Dalian Shide Siwu?
SELECT MAX(match) FROM table_name_53 WHERE opponent_team = "dalian shide siwu" AND home_away = "away"
CREATE TABLE table_name_73 (revenue__ INTEGER, rank VARCHAR, country VARCHAR, team VARCHAR)
Name the least revenue for chelsea of england with rank less than 7
SELECT MIN(revenue__) AS $m_ FROM table_name_73 WHERE country = "england" AND team = "chelsea" AND rank < 7
CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR, score VARCHAR)
What is the Venue with a Result that is win, and a Score that is 5-0?
SELECT venue FROM table_name_35 WHERE result = "win" AND score = "5-0"
CREATE TABLE table_name_91 (competition VARCHAR, result VARCHAR, score VARCHAR)
What is the Competition with a Result of win with a Score that is 1-0?
SELECT competition FROM table_name_91 WHERE result = "win" AND score = "1-0"
CREATE TABLE table_name_63 (date VARCHAR, decision VARCHAR, score VARCHAR)
What date has a Decision of osgood, and a Score of 3 – 4?
SELECT date FROM table_name_63 WHERE decision = "osgood" AND score = "3 – 4"
CREATE TABLE table_name_31 (ship_size VARCHAR)
What was the cargo value in 2005 with a ship size of all product carriers?
SELECT 2005 FROM table_name_31 WHERE ship_size = "all product carriers"
CREATE TABLE table_name_66 (games VARCHAR, goals INTEGER, name VARCHAR)
What is the average Goals/Games for Rummenigge, Karl-Heinz, with Goals less than 162?
SELECT AVG(goals) / games FROM table_name_66 WHERE name = "rummenigge, karl-heinz" AND goals < 162
CREATE TABLE table_name_53 (games INTEGER, name VARCHAR, goals VARCHAR)
What is the sum of Games for Allofs, Klaus, with Goals less than 177?
SELECT SUM(games) FROM table_name_53 WHERE name = "allofs, klaus" AND goals < 177
CREATE TABLE table_name_41 (initial_release_date VARCHAR, publisher VARCHAR, japanese_title VARCHAR)
When was Ranma ½: netsuretsu kakutouhen first release by Banpresto?
SELECT initial_release_date FROM table_name_41 WHERE publisher = "banpresto" AND japanese_title = "ranma ½: netsuretsu kakutouhen"
CREATE TABLE table_name_34 (genre VARCHAR, developer VARCHAR, japanese_title VARCHAR)
What genre is the Banpresto game tittled Ranma ½: netsuretsu kakutouhen?
SELECT genre FROM table_name_34 WHERE developer = "banpresto" AND japanese_title = "ranma ½: netsuretsu kakutouhen"
CREATE TABLE table_name_92 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
Who is the director of Cannibal vegetarian, which is the film title used in nomination?
SELECT director_s_ FROM table_name_92 WHERE film_title_used_in_nomination = "cannibal vegetarian"
CREATE TABLE table_name_60 (first_game INTEGER, played VARCHAR, lost VARCHAR)
When was the earliest first game with 11 played and 12 games lost?
SELECT MIN(first_game) FROM table_name_60 WHERE played > 11 AND lost = 12