context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_24 (result VARCHAR, home_captain VARCHAR, date VARCHAR)
For the matches with home captain Graham Gooch played on the dates 3,4,5,6,7 June 1993, what was the result?
SELECT result FROM table_name_24 WHERE home_captain = "graham gooch" AND date = "3,4,5,6,7 june 1993"
CREATE TABLE table_name_21 (crowd VARCHAR, venue VARCHAR)
How many people at Arden Street Oval?
SELECT COUNT(crowd) FROM table_name_21 WHERE venue = "arden street oval"
CREATE TABLE table_name_58 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR)
Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2
SELECT SUM(place) FROM table_name_58 WHERE ties > 0 AND points = "7 qc" AND losses > 2
CREATE TABLE table_name_86 (name VARCHAR, bullet VARCHAR, base VARCHAR)
Which Name has a Bullett of 10.57 (.416) and a Base of 14.96 (.589)?
SELECT name FROM table_name_86 WHERE bullet = "10.57 (.416)" AND base = "14.96 (.589)"
CREATE TABLE table_name_47 (score VARCHAR, outcome VARCHAR, surface VARCHAR, opponent VARCHAR)
What was the final score for Aguilar when he played Hans Podlipnik on clay and was runner-up?
SELECT score FROM table_name_47 WHERE surface = "clay" AND opponent = "hans podlipnik" AND outcome = "runner-up"
CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR)
Tell me the call sign for frequency of 0 97.3 fm
SELECT call_sign FROM table_name_67 WHERE frequency = "0 97.3 fm"
CREATE TABLE table_name_46 (no4 VARCHAR, no5 VARCHAR)
Who is the no. 4 team that has the no. 5 player Susana Telmo?
SELECT no4 FROM table_name_46 WHERE no5 = "susana telmo"
CREATE TABLE table_name_83 (played INTEGER, city VARCHAR, average_attendance VARCHAR)
What is the average played value in Belgrade with attendance greater than 26,222?
SELECT AVG(played) FROM table_name_83 WHERE city = "belgrade" AND average_attendance > 26 OFFSET 222
CREATE TABLE table_name_96 (nationality VARCHAR, player VARCHAR, position VARCHAR)
What was the nationality of five-eighth player Darren Lockyer?
SELECT nationality FROM table_name_96 WHERE player = "darren lockyer" AND position = "five-eighth"
CREATE TABLE table_name_51 (year VARCHAR, role VARCHAR, theatre VARCHAR)
Tell me the total number of years for lady cecily waynflete and opera house, kennedy center
SELECT COUNT(year) FROM table_name_51 WHERE role = "lady cecily waynflete" AND theatre = "opera house, kennedy center"
CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR)
When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred?
SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = "laurent-marie-joseph imbert / st. imbert" AND canonised > 1984
CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR)
Who directed the film that Avie Luthra received an award for?
SELECT director_s_ FROM table_name_63 WHERE recipient = "avie luthra"
CREATE TABLE table_name_70 (construction_completed VARCHAR, county VARCHAR)
What is the date construction is completed in Jo Daviess county?
SELECT construction_completed FROM table_name_70 WHERE county = "jo daviess"
CREATE TABLE table_name_96 (year INTEGER, release_air_date VARCHAR, role VARCHAR, radio_station_production_company VARCHAR)
Role of narrator, and a Radio Station/Production Company of bbc audiobooks, and a Release/Air Date of 13 november 2008 is what sum of the year?
SELECT SUM(year) FROM table_name_96 WHERE role = "narrator" AND radio_station_production_company = "bbc audiobooks" AND release_air_date = "13 november 2008"
CREATE TABLE table_name_84 (winning_driver VARCHAR, winning_car VARCHAR, winning_team VARCHAR)
Who was the winning driver driving the winning car March - Honda 86j, with the winning team Team Nova?
SELECT winning_driver FROM table_name_84 WHERE winning_car = "march - honda 86j" AND winning_team = "team nova"
CREATE TABLE table_name_73 (radio_station_production_company VARCHAR, role VARCHAR)
Radio Station/Production Company that has a Role of interviewee & monologues is what radio station?
SELECT radio_station_production_company FROM table_name_73 WHERE role = "interviewee & monologues"
CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)
What is the smallest crowd with fitzroy as the home team?
SELECT MIN(crowd) FROM table_name_8 WHERE away_team = "fitzroy"
CREATE TABLE table_name_36 (school_club_team VARCHAR, round VARCHAR, position VARCHAR)
What school did the linebacker who was drafted after round 8 come from?
SELECT school_club_team FROM table_name_36 WHERE round > 8 AND position = "linebacker"
CREATE TABLE table_name_17 (pens VARCHAR, draw VARCHAR, player VARCHAR)
What pens have a draw of 0 when the player is sione mafi pahulu?
SELECT pens FROM table_name_17 WHERE draw = "0" AND player = "sione mafi pahulu"
CREATE TABLE table_name_5 (attendance INTEGER, week VARCHAR, opponent VARCHAR)
Name the least attendance for opponent of new orleans saints and week more than 2
SELECT MIN(attendance) FROM table_name_5 WHERE week > 2 AND opponent = "new orleans saints"
CREATE TABLE table_name_89 (match_report VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR)
What was the Match Report for the Euro2008q at the Athens Olympic Stadium on November 17, 2007?
SELECT match_report FROM table_name_89 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND date = "november 17, 2007"
CREATE TABLE table_name_44 (match_report VARCHAR, score VARCHAR, competition VARCHAR, venue VARCHAR)
What was the Match Report for the Euro2008q at the Athens Olympic Stadium and a score of 1-2?
SELECT match_report FROM table_name_44 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND score = "1-2"
CREATE TABLE table_name_83 (date VARCHAR, result VARCHAR, venue VARCHAR)
On what date was there a draw at Sydney Cricket Ground?
SELECT date FROM table_name_83 WHERE result = "draw" AND venue = "sydney cricket ground"
CREATE TABLE table_name_12 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)
In what City/State did John Bowe win at Phillip Island Grand Prix Circuit?
SELECT city___state FROM table_name_12 WHERE winner = "john bowe" AND circuit = "phillip island grand prix circuit"
CREATE TABLE table_name_28 (venue VARCHAR, competition VARCHAR, position VARCHAR, year VARCHAR, notes VARCHAR)
Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes?
SELECT venue FROM table_name_28 WHERE year > 2006 AND notes = "3000 m s'chase" AND position = "2nd" AND competition = "african championships"
CREATE TABLE table_name_20 (date VARCHAR, distance VARCHAR, course VARCHAR)
What is the date with the distance of km (mi) at the course of roccaraso to san giorgio del sannio?
SELECT date FROM table_name_20 WHERE distance = "km (mi)" AND course = "roccaraso to san giorgio del sannio"
CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER)
Tell me the catalog for date larger than 2004
SELECT catalog FROM table_name_72 WHERE date > 2004
CREATE TABLE table_name_51 (avg_g VARCHAR, gain VARCHAR, long VARCHAR, loss VARCHAR)
How much Avg/G has a Long of 51, and a Loss of 333, and a Gain larger than 2013?
SELECT COUNT(avg_g) FROM table_name_51 WHERE long = 51 AND loss = 333 AND gain > 2013
CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR)
What is the highest scored in the 2010 east asian football championship?
SELECT MAX(scored) FROM table_name_66 WHERE competition = "2010 east asian football championship"
CREATE TABLE table_name_61 (result VARCHAR, location VARCHAR, odds VARCHAR)
What was the score for an n/a location with the odds of p + 1?
SELECT result FROM table_name_61 WHERE location = "n/a" AND odds = "p + 1"
CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)
What label is in download format in the United States?
SELECT label FROM table_name_88 WHERE region = "united states" AND format = "download"
CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR)
What is the average round when there is a defensive back and an overall smaller than 199?
SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199
CREATE TABLE table_name_76 (finish VARCHAR, start VARCHAR)
Name the finish for start of 28
SELECT finish FROM table_name_76 WHERE start = "28"
CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR)
What city has a Result of brisbane broncos def. halifax blue sox?
SELECT city FROM table_name_22 WHERE result = "brisbane broncos def. halifax blue sox"
CREATE TABLE table_name_28 (overall VARCHAR, position VARCHAR, player VARCHAR)
What was the overall draft number of Tom Fleming, a wide receiver?
SELECT COUNT(overall) FROM table_name_28 WHERE position = "wide receiver" AND player = "tom fleming"
CREATE TABLE table_name_2 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR)
yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland?
SELECT gold_coast FROM table_name_2 WHERE melbourne = "yes" AND adelaide = "yes" AND auckland = "yes"
CREATE TABLE table_name_96 (losses INTEGER, wins VARCHAR, rank VARCHAR, team VARCHAR)
What is the lowest amount of losses the United States, ranked higher than 3 with more than 6 wins, have?
SELECT MIN(losses) FROM table_name_96 WHERE rank < 3 AND team = "united states" AND wins > 6
CREATE TABLE table_name_87 (wins VARCHAR, losses VARCHAR, rank VARCHAR, run_ratio VARCHAR)
How many total wins did the team ranked lower than 1 with a run ratio less than 5.85 and more than 4 losses have?
SELECT COUNT(wins) FROM table_name_87 WHERE rank > 1 AND run_ratio < 5.85 AND losses > 4
CREATE TABLE table_name_22 (round INTEGER, player VARCHAR, overall VARCHAR)
In which round did Paul McDonald have an overall greater than 109?
SELECT MAX(round) FROM table_name_22 WHERE player = "paul mcdonald" AND overall > 109
CREATE TABLE table_name_52 (year INTEGER, album VARCHAR)
What is the total number of Year that has an Album of Remixes?
SELECT SUM(year) FROM table_name_52 WHERE album = "remixes"
CREATE TABLE table_name_97 (events INTEGER, rank INTEGER)
the sum of Events that has a Rank larger than 5 is 3
SELECT SUM(events) FROM table_name_97 WHERE rank > 5
CREATE TABLE table_name_21 (females VARCHAR, males VARCHAR)
What females have males of 1 234?
SELECT females FROM table_name_21 WHERE males = "1 234"
CREATE TABLE table_name_81 (touchdowns INTEGER, field_goals INTEGER)
How many touchdowns were made where field goals were less than 0?
SELECT SUM(touchdowns) FROM table_name_81 WHERE field_goals < 0
CREATE TABLE table_name_87 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR)
When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points?
SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = "herb graver" AND touchdowns < 15
CREATE TABLE table_name_90 (open_source_movie VARCHAR, cc_license VARCHAR)
What open source movie has a CC License of by-nc-sa 1.0?
SELECT open_source_movie FROM table_name_90 WHERE cc_license = "by-nc-sa 1.0"
CREATE TABLE table_name_52 (displacement__tons_ VARCHAR, armament VARCHAR)
How much Displacement (tons) has an Armament of 2 x -inch (mm), 16 x -inch (mm)?
SELECT COUNT(displacement__tons_) FROM table_name_52 WHERE armament = "2 x -inch (mm), 16 x -inch (mm)"
CREATE TABLE table_name_16 (location VARCHAR, event VARCHAR)
Which Location has an Event of king of the cage: flash point?
SELECT location FROM table_name_16 WHERE event = "king of the cage: flash point"
CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR)
What venue had south melbourne as the home team?
SELECT venue FROM table_name_90 WHERE home_team = "south melbourne"
CREATE TABLE table_name_88 (tournament VARCHAR)
What is the 2006 result of the Canada Masters tournament that is A in 2009 and A in 2010?
SELECT 2006 FROM table_name_88 WHERE 2010 = "a" AND 2009 = "a" AND tournament = "canada masters"
CREATE TABLE table_name_29 (Id VARCHAR)
What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009?
SELECT 2012 FROM table_name_29 WHERE 2009 = "1r" AND 2008 = "1r" AND 2007 = "2r"
CREATE TABLE table_name_26 (Id VARCHAR)
What is the 2007 value at the 2012 Grand Slam Tournaments?
SELECT 2007 FROM table_name_26 WHERE 2012 = "grand slam tournaments"
CREATE TABLE table_name_23 (worst_score INTEGER, best_dancer VARCHAR, best_score VARCHAR)
What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?
SELECT SUM(worst_score) FROM table_name_23 WHERE best_dancer = "apolo anton ohno" AND best_score > 30
CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)
What is the date they played against fitzroy?
SELECT date FROM table_name_10 WHERE away_team = "fitzroy"
CREATE TABLE table_name_89 (total INTEGER, losses VARCHAR, goal_difference VARCHAR, draws VARCHAR, wins VARCHAR)
What is the lowest total that has draws less than 2 and wins less than 1, losses bigger than 1 with a goal difference of 1:2
SELECT MIN(total) FROM table_name_89 WHERE draws < 2 AND wins < 1 AND goal_difference = "1:2" AND losses > 1
CREATE TABLE table_name_79 (fatalities VARCHAR, epicenter VARCHAR)
What number of Fatalities did the Epicenter Māzandarān have?
SELECT fatalities FROM table_name_79 WHERE epicenter = "māzandarān"
CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)
What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?
SELECT loss FROM table_name_57 WHERE opponent = "rangers" AND attendance > 43 OFFSET 211
CREATE TABLE table_name_36 (Id VARCHAR)
What was the 2008 result associated with a 2009 of A and a 2011 of 2R?
SELECT 2008 FROM table_name_36 WHERE 2009 = "a" AND 2011 = "2r"
CREATE TABLE table_name_6 (position VARCHAR, goals VARCHAR, country VARCHAR, period VARCHAR)
Name the position for brazil 2008 with goals of 0 1
SELECT position FROM table_name_6 WHERE country = "brazil" AND period = "2008" AND goals = "0 1"
CREATE TABLE table_name_60 (events INTEGER, player VARCHAR, earnings___$__ VARCHAR)
Which Events have a Player of tom kite, and Earnings ($) smaller than 760,405?
SELECT AVG(events) FROM table_name_60 WHERE player = "tom kite" AND earnings___$__ < 760 OFFSET 405
CREATE TABLE table_name_66 (round VARCHAR, overall VARCHAR, position VARCHAR)
How many rounds have an Overall larger than 17, and a Position of quarterback?
SELECT COUNT(round) FROM table_name_66 WHERE overall > 17 AND position = "quarterback"
CREATE TABLE table_name_58 (storm VARCHAR, dance VARCHAR, clash VARCHAR)
Which storm has a clash of 3 and a dance of 4?
SELECT storm FROM table_name_58 WHERE dance = "4" AND clash = "3"
CREATE TABLE table_name_53 (sydney VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, perth VARCHAR, adelaide VARCHAR)
Name the sydney with perth of no, adelaide of no with melbourne of yes and gold coast of yes
SELECT sydney FROM table_name_53 WHERE perth = "no" AND adelaide = "no" AND melbourne = "yes" AND gold_coast = "yes"
CREATE TABLE table_name_49 (melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR, auckland VARCHAR)
Name the melbourne for adelaide of no with auckland of yes and gold coast of yes
SELECT melbourne FROM table_name_49 WHERE adelaide = "no" AND auckland = "yes" AND gold_coast = "no"
CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR)
What is the date with geelong as Away team?
SELECT date FROM table_name_63 WHERE away_team = "geelong"
CREATE TABLE table_name_1 (away_team VARCHAR)
What is essendon's away team score?
SELECT away_team AS score FROM table_name_1 WHERE away_team = "essendon"
CREATE TABLE table_name_35 (position INTEGER, against VARCHAR, drawn VARCHAR)
Which Position has an Against of 5, and a Drawn larger than 0?
SELECT SUM(position) FROM table_name_35 WHERE against = 5 AND drawn > 0
CREATE TABLE table_name_66 (played INTEGER, against VARCHAR, lost VARCHAR, difference VARCHAR)
Which Played is the highest one that has a Lost smaller than 1, and a Difference of 6, and an Against larger than 2?
SELECT MAX(played) FROM table_name_66 WHERE lost < 1 AND difference = "6" AND against > 2
CREATE TABLE table_name_60 (city_location VARCHAR, pole_position VARCHAR)
Where is Emerson Fittipaldi starting in Pole position?
SELECT city_location FROM table_name_60 WHERE pole_position = "emerson fittipaldi"
CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, player VARCHAR)
Name the average round where Dave Stachelski was picked smaller than 187.
SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = "dave stachelski"
CREATE TABLE table_name_56 (prize_money VARCHAR, commercial_name VARCHAR)
What prize money has michelob light challenge of champions as the commercial name?
SELECT prize_money FROM table_name_56 WHERE commercial_name = "michelob light challenge of champions"
CREATE TABLE table_name_9 (points INTEGER, year VARCHAR, engine VARCHAR, entrant VARCHAR)
What is the greatest point of an Entrant of connaught engineering alta straight-4 engine before 1957
SELECT MAX(points) FROM table_name_9 WHERE engine = "alta straight-4" AND entrant = "connaught engineering" AND year < 1957
CREATE TABLE table_name_92 (date VARCHAR, city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
What date has friendly as the type of game, france as an opponent, and paris, france as the city?
SELECT date FROM table_name_92 WHERE type_of_game = "friendly" AND opponent = "france" AND city = "paris, france"
CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)
What is the score of the team that plays in lake oval?
SELECT away_team AS score FROM table_name_85 WHERE venue = "lake oval"
CREATE TABLE table_name_24 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
What was the date of the Ace Group Classic tournament with a 1 stroke margin of victory?
SELECT date FROM table_name_24 WHERE margin_of_victory = "1 stroke" AND tournament = "the ace group classic"
CREATE TABLE table_name_60 (home_team VARCHAR)
What was the score of the home team of carlton?
SELECT home_team AS score FROM table_name_60 WHERE home_team = "carlton"
CREATE TABLE table_name_88 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR)
What is the largest number of households with median family income of $52,106 with less than 21,403 in population?
SELECT MAX(number_of_households) FROM table_name_88 WHERE median_family_income = "$52,106" AND population < 21 OFFSET 403
CREATE TABLE table_name_2 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR)
What is the most households with a median household income of $54,086 with less than 231,236 in population?
SELECT MAX(number_of_households) FROM table_name_2 WHERE median_household_income = "$54,086" AND population < 231 OFFSET 236
CREATE TABLE table_name_1 (auckland VARCHAR, sydney VARCHAR, adelaide VARCHAR, melbourne VARCHAR)
Which Auckland has an Adelaide of no, a Melbourne of yes, and a Sydney of yes?
SELECT auckland FROM table_name_1 WHERE adelaide = "no" AND melbourne = "yes" AND sydney = "yes"
CREATE TABLE table_name_38 (venue VARCHAR, host VARCHAR)
What is the venue that Saint Joseph's University hosted at?
SELECT venue FROM table_name_38 WHERE host = "saint joseph's university"
CREATE TABLE table_name_3 (name VARCHAR, overall VARCHAR, team VARCHAR)
What is the Name with an overall of less than 123 for the Detroit Lions?
SELECT name FROM table_name_3 WHERE overall < 123 AND team = "detroit lions"
CREATE TABLE table_name_88 (date VARCHAR, team VARCHAR, player VARCHAR)
On which date did Ger Loughnane from Team Clare have a match?
SELECT date FROM table_name_88 WHERE team = "clare" AND player = "ger loughnane"
CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR, event VARCHAR)
Which opponent had a round of more than 1 and an even of PFP: ring of fire?
SELECT opponent FROM table_name_45 WHERE round > 1 AND event = "pfp: ring of fire"
CREATE TABLE table_name_39 (division_record VARCHAR, team VARCHAR)
What is the Senators' division record?
SELECT division_record FROM table_name_39 WHERE team = "senators"
CREATE TABLE table_name_66 (nhl_team VARCHAR, position VARCHAR)
Which NHL team has left wing listed as the position?
SELECT nhl_team FROM table_name_66 WHERE position = "left wing"
CREATE TABLE table_name_23 (points INTEGER, opponent VARCHAR, january VARCHAR)
What is the average number of points of the game after January 3 against the Cleveland Barons?
SELECT AVG(points) FROM table_name_23 WHERE opponent = "cleveland barons" AND january > 3
CREATE TABLE table_name_63 (roll INTEGER, decile VARCHAR, area VARCHAR, name VARCHAR)
What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?
SELECT SUM(roll) FROM table_name_63 WHERE area = "raetihi" AND name = "orautoha school" AND decile < 8
CREATE TABLE table_name_5 (score VARCHAR, location VARCHAR)
Location of brendan byrne arena had what score?
SELECT score FROM table_name_5 WHERE location = "brendan byrne arena"
CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR)
Opponent of chicago bulls had what location?
SELECT location FROM table_name_83 WHERE opponent = "chicago bulls"
CREATE TABLE table_name_36 (name VARCHAR, winning_driver VARCHAR, circuit VARCHAR)
What race did Meo Constantini win at the circuit of monza ?
SELECT name FROM table_name_36 WHERE winning_driver = "meo constantini" AND circuit = "monza"
CREATE TABLE table_name_7 (_number_of_bids INTEGER, win__percentage VARCHAR, conference VARCHAR)
How many bids were there for the .500 win percentage in the Ohio Valley conference?
SELECT SUM(_number_of_bids) FROM table_name_7 WHERE win__percentage = ".500" AND conference = "ohio valley"
CREATE TABLE table_name_24 (visiting_team VARCHAR, week VARCHAR, stadium VARCHAR)
Who was the visiting team on weeks under 12 and at Sports Authority Field at Mile High?
SELECT visiting_team FROM table_name_24 WHERE week < 12 AND stadium = "sports authority field at mile high"
CREATE TABLE table_name_36 (visiting_team VARCHAR, stadium VARCHAR)
Who was the visiting team at Raymond James Stadium?
SELECT visiting_team FROM table_name_36 WHERE stadium = "raymond james stadium"
CREATE TABLE table_name_62 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)
What is the To par and holds the t8 place of the United States player Tiger Woods?
SELECT to_par FROM table_name_62 WHERE country = "united states" AND place = "t8" AND player = "tiger woods"
CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)
Result of w 16-10* o.t. had what attendance?
SELECT attendance FROM table_name_27 WHERE result = "w 16-10* o.t."
CREATE TABLE table_name_65 (club_career VARCHAR, league_goals VARCHAR, league_apps VARCHAR, position VARCHAR, total_goals VARCHAR)
What was the club career for players in positions of DF, fewer than 18 total goals, fewer than 129 league appearances, and more than 7 league goals?
SELECT club_career FROM table_name_65 WHERE position = "df" AND total_goals < 18 AND league_apps < 129 AND league_goals > 7
CREATE TABLE table_name_45 (year VARCHAR, group VARCHAR)
What is the total number of Years that has the Group, Method Fest Independent Film Festival?
SELECT COUNT(year) FROM table_name_45 WHERE group = "method fest independent film festival"
CREATE TABLE table_name_79 (year INTEGER, result VARCHAR, group VARCHAR, award VARCHAR)
What is the average Year that has the Group, Logie Award, the Award, Most Outstanding Actor, and the Result, nominated?
SELECT AVG(year) FROM table_name_79 WHERE group = "logie award" AND award = "most outstanding actor" AND result = "nominated"
CREATE TABLE table_name_31 (group VARCHAR, award VARCHAR, film_show VARCHAR, result VARCHAR, year VARCHAR)
Before 2012, which Group has the Result, nominated, the Film/Show, East West 101, and the Award, Best Lead Actor in A Television Drama?
SELECT group FROM table_name_31 WHERE result = "nominated" AND year < 2012 AND film_show = "east west 101" AND award = "best lead actor in a television drama"
CREATE TABLE table_name_96 (award VARCHAR, group VARCHAR, film_show VARCHAR, year VARCHAR)
What is the Award, when the Film/Show is East West 101, and when the year is before 2009, and when the Group is Logie Award?
SELECT award FROM table_name_96 WHERE film_show = "east west 101" AND year < 2009 AND group = "logie award"
CREATE TABLE table_name_14 (current_version VARCHAR, rtm_build VARCHAR, name VARCHAR)
What is the current version of windows 8 with an RTM build of 9200?
SELECT current_version FROM table_name_14 WHERE rtm_build = "9200" AND name = "windows 8"