context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_47 (date VARCHAR, competition VARCHAR, result VARCHAR)
When is the Competition of friendly match with a Result of 2–1?
SELECT date FROM table_name_47 WHERE competition = "friendly match" AND result = "2–1"
CREATE TABLE table_name_53 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)
Which Constructor has a Grid smaller than 24, more than 77 laps, and a Driver of jean-pierre beltoise?
SELECT constructor FROM table_name_53 WHERE grid < 24 AND laps > 77 AND driver = "jean-pierre beltoise"
CREATE TABLE table_name_34 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR)
Who drove the maserati under 18 laps with an oil leak that had a grid of under 14?
SELECT driver FROM table_name_34 WHERE constructor = "maserati" AND laps < 18 AND grid < 14 AND time_retired = "oil leak"
CREATE TABLE table_name_17 (haat VARCHAR, channels_tv___rf VARCHAR)
Which HAAT has a Channels TV / RF of 31 (psip) 44 (uhf)
SELECT haat FROM table_name_17 WHERE channels_tv___rf = "31 (psip) 44 (uhf)"
CREATE TABLE table_name_81 (winner VARCHAR, type VARCHAR, date VARCHAR)
Who was the winner with a mountain stage type on 22 May?
SELECT winner FROM table_name_81 WHERE type = "mountain stage" AND date = "22 may"
CREATE TABLE table_name_39 (pick__number INTEGER, player VARCHAR)
What is the pick number of Jesse Alexander?
SELECT MIN(pick__number) FROM table_name_39 WHERE player = "jesse alexander"
CREATE TABLE table_name_3 (city_of_license VARCHAR, channels_tv___rf VARCHAR)
Which City of license has a Channels TV / RF of 36 (psip) 36 (uhf)? Question 5
SELECT city_of_license FROM table_name_3 WHERE channels_tv___rf = "36 (psip) 36 (uhf)"
CREATE TABLE table_name_67 (english_title__chinese_title_ VARCHAR, airing_date VARCHAR)
Which title aired on 18 dec 2006- 10 feb 2007?
SELECT english_title__chinese_title_ FROM table_name_67 WHERE airing_date = "18 dec 2006- 10 feb 2007"
CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR, format VARCHAR)
What is the date for Hydra Head Records with a CD format?
SELECT date FROM table_name_21 WHERE label = "hydra head records" AND format = "cd"
CREATE TABLE table_name_28 (displacement VARCHAR, version VARCHAR)
I want the displacement for version of db
SELECT displacement FROM table_name_28 WHERE version = "db"
CREATE TABLE table_name_27 (venue VARCHAR, competition VARCHAR, year VARCHAR)
After 1979, where was the European Indoor Championships held?
SELECT venue FROM table_name_27 WHERE competition = "european indoor championships" AND year > 1979
CREATE TABLE table_name_78 (position VARCHAR, competition VARCHAR, year VARCHAR)
Before 1979, what position was the European Indoor Championships?
SELECT position FROM table_name_78 WHERE competition = "european indoor championships" AND year < 1979
CREATE TABLE table_name_80 (played INTEGER, scored VARCHAR, draws VARCHAR)
What's the highest Played with a Scored of 15, and Draws that's less than 1?
SELECT MAX(played) FROM table_name_80 WHERE scored = 15 AND draws < 1
CREATE TABLE table_name_63 (year VARCHAR, film_name VARCHAR)
Which year was the film Rang Barse introduced?
SELECT COUNT(year) FROM table_name_63 WHERE film_name = "rang barse"
CREATE TABLE table_name_75 (production_code VARCHAR, written_by VARCHAR, season__number VARCHAR, series__number VARCHAR)
What is the production code of the episode written by Gary Sturgis that is bigger than season number 23 and smaller than series number 126?
SELECT production_code FROM table_name_75 WHERE season__number > 23 AND series__number < 126 AND written_by = "gary sturgis"
CREATE TABLE table_name_69 (opponent VARCHAR, surface VARCHAR, score VARCHAR)
With the score of 6–3, 2–6, [10–8] and played on clay who was the opponent?
SELECT opponent FROM table_name_69 WHERE surface = "clay" AND score = "6–3, 2–6, [10–8]"
CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)
Tell me the constructor for Grid more than 4 and drivers being heinz-harald frentzen
SELECT constructor FROM table_name_57 WHERE grid > 4 AND driver = "heinz-harald frentzen"
CREATE TABLE table_name_79 (name VARCHAR, floors VARCHAR, city VARCHAR, completion VARCHAR)
What building is in Shenzhen, have less than 115 floors, and was completed before 2017?
SELECT name FROM table_name_79 WHERE city = "shenzhen" AND completion < 2017 AND floors < 115
CREATE TABLE table_name_35 (code INTEGER, name VARCHAR, regional_county_municipality VARCHAR, type VARCHAR)
What is the code for Saint-Damien in Matawinie with a type p?
SELECT AVG(code) FROM table_name_35 WHERE regional_county_municipality = "matawinie" AND type = "p" AND name = "saint-damien"
CREATE TABLE table_name_37 (purpose VARCHAR, yield VARCHAR, location VARCHAR, elevation_ VARCHAR, _height VARCHAR)
Which Purpose has an Elevation + Height of 0 + metres (ft), a Location of bikini, namu (charlie), and a Yield of 220 kt?
SELECT purpose FROM table_name_37 WHERE elevation_ + _height = "0 + metres (ft)" AND location = "bikini, namu (charlie)" AND yield = "220 kt"
CREATE TABLE table_name_1 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR)
Who was the colour commmentator that broadcasted along with the Play-by-play of bob cole?
SELECT colour_commentator_s_ FROM table_name_1 WHERE play_by_play = "bob cole"
CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, points VARCHAR)
Which Score has a Game larger than 7, and Points smaller than 14?
SELECT score FROM table_name_17 WHERE game > 7 AND points < 14
CREATE TABLE table_name_50 (events INTEGER, rank VARCHAR, wins VARCHAR)
What is the mean number of events where the rank is 1 and there are more than 3 wins?
SELECT AVG(events) FROM table_name_50 WHERE rank = 1 AND wins > 3
CREATE TABLE table_name_54 (recopa_1994 VARCHAR, supercopa_1994 VARCHAR, team VARCHAR)
Which Recopa 1994 has a Supercopa 1994 of 1st round, and a Team of argentinos juniors?
SELECT recopa_1994 FROM table_name_54 WHERE supercopa_1994 = "1st round" AND team = "argentinos juniors"
CREATE TABLE table_name_50 (state VARCHAR, born VARCHAR, name VARCHAR)
What state was maria cantwell born in after 1955?
SELECT state FROM table_name_50 WHERE born > 1955 AND name = "maria cantwell"
CREATE TABLE table_name_8 (name VARCHAR, term_expires VARCHAR, appointing_governor VARCHAR)
Which person has an expiring term of December 31, 2020, and has Terry Branstad as the appointing governor?
SELECT name FROM table_name_8 WHERE term_expires = "december 31, 2020" AND appointing_governor = "terry branstad"
CREATE TABLE table_name_15 (total INTEGER, tournament VARCHAR, regular_season VARCHAR)
Name the highest total for the tournament more than 0 and regular season after 8
SELECT MAX(total) FROM table_name_15 WHERE tournament > 0 AND regular_season > 8
CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, race VARCHAR)
What circuit did Juan Manuel Fangio have the fastest lap at the german grand prix?
SELECT circuit FROM table_name_16 WHERE fastest_lap = "juan manuel fangio" AND race = "german grand prix"
CREATE TABLE table_name_18 (second VARCHAR, third VARCHAR)
Who is the second when Mikkel Krause is the third?
SELECT second FROM table_name_18 WHERE third = "mikkel krause"
CREATE TABLE table_name_83 (skip VARCHAR, third VARCHAR)
Who is the Skip when Alasdair Guthrie is the third?
SELECT skip FROM table_name_83 WHERE third = "alasdair guthrie"
CREATE TABLE table_name_27 (clive_churchill_medal VARCHAR, losingteam VARCHAR, season VARCHAR)
Who wins the clive churchill medal when the losing team is the sydney roosters in 2010?
SELECT clive_churchill_medal FROM table_name_27 WHERE losingteam = "sydney roosters" AND season = 2010
CREATE TABLE table_name_50 (attendance VARCHAR, home VARCHAR, decision VARCHAR)
What is the total attendance for Detroit on hasek?
SELECT COUNT(attendance) FROM table_name_50 WHERE home = "detroit" AND decision = "hasek"
CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, location VARCHAR, year VARCHAR, result VARCHAR)
What is the score of a year less than 2008 with loss as the result, in Antalya and a Competition of europe/africa zone, group i, round robin?
SELECT score FROM table_name_49 WHERE year < 2008 AND result = "loss" AND location = "antalya" AND competition = "europe/africa zone, group i, round robin"
CREATE TABLE table_name_19 (date VARCHAR, score VARCHAR, location VARCHAR, competition VARCHAR, result VARCHAR)
What date was the Competition of europe/africa zone, group i, round robin, with a result of loss, in Antalya, and a Score of 1–2?
SELECT date FROM table_name_19 WHERE competition = "europe/africa zone, group i, round robin" AND result = "loss" AND location = "antalya" AND score = "1–2"
CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR)
Where did Essendon play as the away team?
SELECT venue FROM table_name_69 WHERE away_team = "essendon"
CREATE TABLE table_name_50 (date VARCHAR, visitor VARCHAR)
What date was Montreal the visitor?
SELECT date FROM table_name_50 WHERE visitor = "montreal"
CREATE TABLE table_name_99 (preliminaries VARCHAR, swimsuit VARCHAR, interview VARCHAR)
What is the preliminaries of the contestant with a swimsuit less than 8.948 and an interview of 8.997?
SELECT preliminaries FROM table_name_99 WHERE swimsuit < 8.948 AND interview = 8.997
CREATE TABLE table_name_79 (evening_gown VARCHAR, preliminaries VARCHAR, state VARCHAR)
What is the evening gown score of the contestant from the District of Columbia with preliminaries smaller than 8.647?
SELECT COUNT(evening_gown) FROM table_name_79 WHERE preliminaries < 8.647 AND state = "district of columbia"
CREATE TABLE table_name_97 (record VARCHAR, date VARCHAR)
What is the Record with a Date with december 9?
SELECT record FROM table_name_97 WHERE date = "december 9"
CREATE TABLE table_name_62 (venue VARCHAR, race VARCHAR)
What is the venue of teh carfax 250 race?
SELECT venue FROM table_name_62 WHERE race = "carfax 250"
CREATE TABLE table_name_98 (mac_os_x VARCHAR, haiku VARCHAR, client VARCHAR)
Which Mac OSX had no haiku and a client that was dc++?
SELECT mac_os_x FROM table_name_98 WHERE haiku = "no" AND client = "dc++"
CREATE TABLE table_name_51 (copa_mercosur_1999 VARCHAR, team VARCHAR, copa_libertadores_1999 VARCHAR, copa_conmebol_1999 VARCHAR)
What is the copa mercosur 1999 result for team grêmio, who did not qualify for the Copa Libertadores 1999 and Copa Conmebol 1999?
SELECT copa_mercosur_1999 FROM table_name_51 WHERE copa_libertadores_1999 = "did not qualify" AND copa_conmebol_1999 = "did not qualify" AND team = "grêmio"
CREATE TABLE table_name_60 (gnu_linux VARCHAR, haiku VARCHAR, client VARCHAR)
Which GNU/Linux had no haiku and a client of airdc++?
SELECT gnu_linux FROM table_name_60 WHERE haiku = "no" AND client = "airdc++"
CREATE TABLE table_name_41 (earnings__ INTEGER, player VARCHAR)
How much has dave stockton earned?
SELECT MAX(earnings__) AS $__ FROM table_name_41 WHERE player = "dave stockton"
CREATE TABLE table_name_61 (attendance VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR)
How many people attended the away league competition with a date of 22?
SELECT attendance FROM table_name_61 WHERE competition = "league" AND venue = "away" AND date = 22
CREATE TABLE table_name_30 (game INTEGER, series VARCHAR)
Which Game has a Series of bruins lead 3–1?
SELECT SUM(game) FROM table_name_30 WHERE series = "bruins lead 3–1"
CREATE TABLE table_name_1 (rank VARCHAR, first_quarter VARCHAR)
What is the Rank of industrial and commercial bank of china 277,236?
SELECT rank FROM table_name_1 WHERE first_quarter = "industrial and commercial bank of china 277,236"
CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR)
What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?
SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = "silverstone motorsport academy"
CREATE TABLE table_name_65 (season INTEGER, wins VARCHAR, podiums VARCHAR, races VARCHAR)
What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0?
SELECT MAX(season) FROM table_name_65 WHERE podiums = 0 AND races = 1 AND wins > 0
CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)
If the Home team was st kilda, what was the score of the Away team they played?
SELECT away_team AS score FROM table_name_16 WHERE home_team = "st kilda"
CREATE TABLE table_name_55 (category VARCHAR, result VARCHAR, nominee VARCHAR)
Which category was william ivey long a nominee and nominated in?
SELECT category FROM table_name_55 WHERE result = "nominated" AND nominee = "william ivey long"
CREATE TABLE table_name_28 (points VARCHAR, games INTEGER)
What is the total points with less than 5 games?
SELECT COUNT(points) FROM table_name_28 WHERE games < 5
CREATE TABLE table_name_51 (model VARCHAR, chipset VARCHAR)
What model number had a chipset of intel q43?
SELECT model FROM table_name_51 WHERE chipset = "intel q43"
CREATE TABLE table_name_96 (visitor VARCHAR, leading_scorer VARCHAR)
What is the visitor team of the game with Rudy Gay (18) as the leading scorer?
SELECT visitor FROM table_name_96 WHERE leading_scorer = "rudy gay (18)"
CREATE TABLE table_name_69 (district VARCHAR, party VARCHAR, incumbent VARCHAR)
What district is the democratic Francis C. Le Blond from?
SELECT district FROM table_name_69 WHERE party = "democratic" AND incumbent = "francis c. le blond"
CREATE TABLE table_name_66 (first_elected INTEGER, result VARCHAR, district VARCHAR)
In the Ohio 4 district, that is the first elected date that has a result of re-elected?
SELECT SUM(first_elected) FROM table_name_66 WHERE result = "re-elected" AND district = "ohio 4"
CREATE TABLE table_name_21 (score VARCHAR, visitor VARCHAR, date VARCHAR)
What is the score of the game with Grizzlies as the visitor team on 30 December 2007?
SELECT score FROM table_name_21 WHERE visitor = "grizzlies" AND date = "30 december 2007"
CREATE TABLE table_name_57 (total INTEGER, t_score VARCHAR, e_score VARCHAR)
What is the total of the team with a T score greater than 8 and an E score less than 8.4?
SELECT SUM(total) FROM table_name_57 WHERE t_score > 8 AND e_score < 8.4
CREATE TABLE table_name_97 (total VARCHAR, nation VARCHAR, e_score VARCHAR)
What is the total of Poland, which has an E score greater than 7.725?
SELECT COUNT(total) FROM table_name_97 WHERE nation = "poland" AND e_score > 7.725
CREATE TABLE table_name_56 (date VARCHAR, competition VARCHAR, venue VARCHAR)
What date has a competition of 2012 afc challenge cup, and dasarath rangasala stadium, kathmandu as the venue?
SELECT date FROM table_name_56 WHERE competition = "2012 afc challenge cup" AND venue = "dasarath rangasala stadium, kathmandu"
CREATE TABLE table_name_16 (gender VARCHAR, decile VARCHAR, name VARCHAR)
Which gender had a decile of more than 1 and featured the South Auckland Seventh-Day Adventist School?
SELECT gender FROM table_name_16 WHERE decile > 1 AND name = "south auckland seventh-day adventist school"
CREATE TABLE table_name_20 (round INTEGER, school_club_team VARCHAR)
Which Round is the lowest one that has a School/Club Team of virginia?
SELECT MIN(round) FROM table_name_20 WHERE school_club_team = "virginia"
CREATE TABLE table_name_59 (year VARCHAR, definition VARCHAR, borough VARCHAR, rank VARCHAR)
Which Year has a Borough of harrogate, and a Rank smaller than 6, and a Definition of civil parish?
SELECT year FROM table_name_59 WHERE borough = "harrogate" AND rank < 6 AND definition = "civil parish"
CREATE TABLE table_name_91 (score VARCHAR, date VARCHAR)
Tell me the score on 1978-12-16
SELECT score FROM table_name_91 WHERE date = "1978-12-16"
CREATE TABLE table_name_49 (score VARCHAR, save VARCHAR)
What was the score when a save of ||25,354||63–43 occurred?
SELECT score FROM table_name_49 WHERE save = "||25,354||63–43"
CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)
What is the Time/Retired for a Grid smaller than 10, a Laps larger than 20, and a Constructor of talbot-lago - talbot?
SELECT time_retired FROM table_name_89 WHERE grid < 10 AND laps > 20 AND constructor = "talbot-lago - talbot"
CREATE TABLE table_name_41 (date VARCHAR, tournament VARCHAR)
When is the tournament of konica san jose classic?
SELECT date FROM table_name_41 WHERE tournament = "konica san jose classic"
CREATE TABLE table_name_49 (tournament VARCHAR, margin_of_victory VARCHAR)
Which tournament had a playoff with a margin of victory?
SELECT tournament FROM table_name_49 WHERE margin_of_victory = "playoff"
CREATE TABLE table_name_52 (dance VARCHAR, worst_dancer_s_ VARCHAR)
Which dance has the worst dancer(s) as marissa jaret winokur?
SELECT dance FROM table_name_52 WHERE worst_dancer_s_ = "marissa jaret winokur"
CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)
What was the highest crowd size at the Western Oval?
SELECT MAX(crowd) FROM table_name_48 WHERE venue = "western oval"
CREATE TABLE table_name_23 (date VARCHAR, game INTEGER)
On what date was the game more than 5?
SELECT date FROM table_name_23 WHERE game > 5
CREATE TABLE table_name_29 (highest_average_point_ratings INTEGER, genre VARCHAR, number_of_episodes VARCHAR)
What was the highest average point rating for a modern suspense show with 21 episodes?
SELECT SUM(highest_average_point_ratings) FROM table_name_29 WHERE genre = "modern suspense" AND number_of_episodes = 21
CREATE TABLE table_name_85 (venue VARCHAR, scored INTEGER)
Where was the game with a higher score than 1 played?
SELECT venue FROM table_name_85 WHERE scored > 1
CREATE TABLE table_name_18 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
What is the lowest metal total when the Bronze metals are larger than 0, the Gold medals are smaller than 1, and the nation is Switzerland?
SELECT MIN(total) FROM table_name_18 WHERE bronze > 0 AND nation = "switzerland" AND gold < 1
CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
What is the highest Bronze medal count when the Gold medals are larger than 1 and the silver are smaller than 0?
SELECT MAX(bronze) FROM table_name_71 WHERE gold > 1 AND silver < 0
CREATE TABLE table_name_5 (drawn INTEGER, win__percentage VARCHAR, lost VARCHAR, nationality VARCHAR, matches VARCHAR)
Nationality of england, and a Matches smaller than 510, and a Lost of 4, and a Win % smaller than 28.6 had what lowest drawn?
SELECT MIN(drawn) FROM table_name_5 WHERE nationality = "england" AND matches < 510 AND lost = 4 AND win__percentage < 28.6
CREATE TABLE table_name_49 (team__number1 VARCHAR)
What is the second leg that has kk bosna?
SELECT 2 AS nd_leg FROM table_name_49 WHERE team__number1 = "kk bosna"
CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR)
What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points?
SELECT COUNT(year) FROM table_name_96 WHERE team = "yamaha" AND wins = 0 AND rank = "8th" AND points > 22
CREATE TABLE table_name_51 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)
What is the difference related to 2 losses and fewer than 10 points?
SELECT points_difference FROM table_name_51 WHERE lost = 2 AND points < 10
CREATE TABLE table_name_36 (race VARCHAR, circuit VARCHAR, length VARCHAR)
Which race was on the Las Vegas Motor Speedway for 2 hours?
SELECT race FROM table_name_36 WHERE circuit = "las vegas motor speedway" AND length = "2 hours"
CREATE TABLE table_name_98 (date VARCHAR, class VARCHAR, circuit VARCHAR)
Which date was a GTS class on the Mosport International Raceway?
SELECT date FROM table_name_98 WHERE class = "gts" AND circuit = "mosport international raceway"
CREATE TABLE table_name_12 (Id VARCHAR)
Which 1992 is the lowest one that has a 1977 smaller than 385577, and a 2011 larger than 340310, and a 2002 larger than 300123, and a 1948 larger than 280524?
SELECT MIN(1992) FROM table_name_12 WHERE 1977 < 385577 AND 2011 > 340310 AND 2002 > 300123 AND 1948 > 280524
CREATE TABLE table_name_23 (game_site VARCHAR, attendance VARCHAR)
What is the site of the game that had an attendance of 54,040?
SELECT game_site FROM table_name_23 WHERE attendance = "54,040"
CREATE TABLE table_name_50 (film_name VARCHAR, music_director VARCHAR, lyricist VARCHAR, year VARCHAR, language VARCHAR)
What 1972 Hindi film had Ravindra Jain directing the music?
SELECT film_name FROM table_name_50 WHERE year > 1972 AND language = "hindi" AND lyricist = "ravindra jain" AND music_director = "ravindra jain"
CREATE TABLE table_name_63 (opponents_in_the_final VARCHAR, partner VARCHAR, championship VARCHAR)
Which opponent in the final had a partner of Katarina Srebotnik and a championship of wimbledon (4)?
SELECT opponents_in_the_final FROM table_name_63 WHERE partner = "katarina srebotnik" AND championship = "wimbledon (4)"
CREATE TABLE table_name_30 (partner VARCHAR, surface VARCHAR, championship VARCHAR)
Who was the partner when the championship was us open on a hard surface?
SELECT partner FROM table_name_30 WHERE surface = "hard" AND championship = "us open"
CREATE TABLE table_name_49 (visitor VARCHAR, home VARCHAR, date VARCHAR)
Who was the Visitor when the Home team was Anaheim on the Date of April 12?
SELECT visitor FROM table_name_49 WHERE home = "anaheim" AND date = "april 12"
CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)
Which venue does Fitzroy play as an away team?
SELECT venue FROM table_name_57 WHERE away_team = "fitzroy"
CREATE TABLE table_name_76 (overall INTEGER, college VARCHAR, round VARCHAR)
Which Overall has a College of florida state, and a Round larger than 2?
SELECT SUM(overall) FROM table_name_76 WHERE college = "florida state" AND round > 2
CREATE TABLE table_name_79 (player VARCHAR, nationality VARCHAR, overall VARCHAR)
Which Player has a Nationality of united states, and an Overall of 61 (from boston)?
SELECT player FROM table_name_79 WHERE nationality = "united states" AND overall = "61 (from boston)"
CREATE TABLE table_name_62 (position VARCHAR, round VARCHAR, team VARCHAR)
What was the position of the team Minneapolis Lakers during round T?
SELECT position FROM table_name_62 WHERE round = "t" AND team = "minneapolis lakers"
CREATE TABLE table_name_8 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, role VARCHAR)
What was the theatre where Peter P. Peters is the role?
SELECT theatre, _studio, _or_network FROM table_name_8 WHERE role = "peter p. peters"
CREATE TABLE table_name_84 (constructor VARCHAR, q1_pos VARCHAR, q1_time VARCHAR)
Who was the constructor of the car that had a Q1 pos of less than 8 and a Q1 time of 1:15.038?
SELECT constructor FROM table_name_84 WHERE q1_pos < 8 AND q1_time = "1:15.038"
CREATE TABLE table_name_10 (epicenter VARCHAR, intensity VARCHAR, date VARCHAR)
What is the epicenter of the earthquake on March 2, 1825 with an unknown intensity?
SELECT epicenter FROM table_name_10 WHERE intensity = "unknown" AND date = "march 2, 1825"
CREATE TABLE table_name_6 (rank INTEGER)
What is the average rank of a nation that had 219,721 in 2012?
SELECT AVG(rank) FROM table_name_6 WHERE 2012 = 219 OFFSET 721
CREATE TABLE table_name_77 (attendance INTEGER, opponent VARCHAR, result VARCHAR, venue VARCHAR)
Which Attendance has a Result of 1-0, and a Venue of A, and an Opponent of newcastle united?
SELECT MIN(attendance) FROM table_name_77 WHERE result = "1-0" AND venue = "a" AND opponent = "newcastle united"
CREATE TABLE table_name_24 (byes INTEGER, against VARCHAR, mininera_dfl VARCHAR, wins VARCHAR, losses VARCHAR)
WHAT ARE THE BYES WITH A WIN SMALLER THAN 16, 8 LOSSES, AND AT PENSHURST, WITH AGAINST SMALLER THAN 1405?
SELECT SUM(byes) FROM table_name_24 WHERE wins < 16 AND losses = 8 AND mininera_dfl = "penshurst" AND against < 1405
CREATE TABLE table_name_76 (byes INTEGER, wins VARCHAR, draws VARCHAR, mininera_dfl VARCHAR)
WHAT ARE THE BYES WITH A DRAWS OF 1, SMW ROVERS, AND WINS LARGER THAN 6?
SELECT AVG(byes) FROM table_name_76 WHERE draws = 1 AND mininera_dfl = "smw rovers" AND wins > 6
CREATE TABLE table_name_8 (killeen_rate INTEGER, crime VARCHAR, texas_rate VARCHAR, reported_offenses VARCHAR, us_rate VARCHAR)
Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate?
SELECT SUM(killeen_rate) FROM table_name_8 WHERE reported_offenses > 216 AND us_rate < 3274 AND texas_rate < 2688.9 AND crime = "violent crime"
CREATE TABLE table_name_93 (year_born__age_ VARCHAR, height VARCHAR, current_club VARCHAR)
What is the Year born (Age) for the player who is taller than 2.04 and currently plays for the Los Angeles Clippers?
SELECT year_born__age_ FROM table_name_93 WHERE height > 2.04 AND current_club = "los angeles clippers"