question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Name the high assists for 29 game
CREATE TABLE table_17355408_5 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_17355408_5 WHERE game = 29
How much does Point Barrow weight?
CREATE TABLE table_20095300_1 (weight__st VARCHAR, _lb_ VARCHAR, name VARCHAR)
SELECT weight__st, _lb_ FROM table_20095300_1 WHERE name = "Point Barrow"
Provide me with the name of the writer with the production code 210.
CREATE TABLE table_12451376_2 (writer_s_ VARCHAR, production_code VARCHAR)
SELECT writer_s_ FROM table_12451376_2 WHERE production_code = 210
Can you tell me the Losing BP that has Played of 22, and the Lost of 5?
CREATE TABLE table_name_38 (losing_bp VARCHAR, played VARCHAR, lost VARCHAR)
SELECT losing_bp FROM table_name_38 WHERE played = "22" AND lost = "5"
Who had the most assists in the game against Atlanta?
CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_name_13 WHERE team = "atlanta"
What is the league of the third baseman player before 1973?
CREATE TABLE table_name_79 (league VARCHAR, year VARCHAR, position VARCHAR)
SELECT league FROM table_name_79 WHERE year < 1973 AND position = "third baseman"
What's the total when the gold is less than 0 and silver is less than 1?
CREATE TABLE table_name_95 (total INTEGER, silver VARCHAR, gold VARCHAR)
SELECT AVG(total) FROM table_name_95 WHERE silver = 1 AND gold < 0
Which band has a current freq of 8tab (hpon)?
CREATE TABLE table_name_80 (band VARCHAR, freq_currently VARCHAR)
SELECT band FROM table_name_80 WHERE freq_currently = "8tab (hpon)"
What is the Born-Died dates of Xhafer Bej Ypi?
CREATE TABLE table_name_39 (born_died VARCHAR, name VARCHAR)
SELECT born_died FROM table_name_39 WHERE name = "xhafer bej ypi"
What was the position of the player picked after 94, by the Boston Patriots?
CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR, team VARCHAR)
SELECT position FROM table_name_96 WHERE pick > 94 AND team = "boston patriots"
Who was the winner of fc grün-weiß wolfen?
CREATE TABLE table_name_58 (winner VARCHAR, finalist VARCHAR)
SELECT winner FROM table_name_58 WHERE finalist = "fc grün-weiß wolfen"
What is the Class AA of the school year 2009-10 with a class AAA of Giddings?
CREATE TABLE table_name_95 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR)
SELECT class_aA FROM table_name_95 WHERE class_aAA = giddings AND school_year = "2009-10"
Who was the away team on sunday, 13 february?
CREATE TABLE table_name_40 (away_team VARCHAR, date VARCHAR)
SELECT away_team FROM table_name_40 WHERE date = "sunday, 13 february"
Name the minimum for 2500-3000 ft for scotland
CREATE TABLE table_1456056_1 (country VARCHAR)
SELECT MIN(2500 AS _3000ft) FROM table_1456056_1 WHERE country = "Scotland"
What event was in a year later than 2007 and in the 88th position?
CREATE TABLE table_name_66 (event VARCHAR, year VARCHAR, position VARCHAR)
SELECT event FROM table_name_66 WHERE year > 2007 AND position = "88th"
List the number of locations for the team known as the billikens.
CREATE TABLE table_2419754_1 (location VARCHAR, nickname VARCHAR)
SELECT COUNT(location) FROM table_2419754_1 WHERE nickname = "Billikens"
Name the episode number for tasers and mind erasers
CREATE TABLE table_24222929_4 (episode_number_production_number VARCHAR, title VARCHAR)
SELECT episode_number_production_number FROM table_24222929_4 WHERE title = "Tasers and Mind Erasers"
What is the to par of player peter senior?
CREATE TABLE table_name_91 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_91 WHERE player = "peter senior"
In what year was Lesli Margherita nominated?
CREATE TABLE table_name_90 (year INTEGER, nominee VARCHAR)
SELECT SUM(year) FROM table_name_90 WHERE nominee = "lesli margherita"
How many of lost have 11 as the points, and a drawn greater than 1?
CREATE TABLE table_name_81 (lost VARCHAR, points VARCHAR, drawn VARCHAR)
SELECT COUNT(lost) FROM table_name_81 WHERE points = 11 AND drawn > 1
Who is the player from the United States with a score of 71-72=143?
CREATE TABLE table_name_38 (player VARCHAR, country VARCHAR, score VARCHAR)
SELECT player FROM table_name_38 WHERE country = "united states" AND score = 71 - 72 = 143
Name the result for willis alston
CREATE TABLE table_2668243_18 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_2668243_18 WHERE incumbent = "Willis Alston"
what is the perfect of mass when the molecules is 1.74e14*?
CREATE TABLE table_name_58 (percent_of_mass VARCHAR, molecules VARCHAR)
SELECT percent_of_mass FROM table_name_58 WHERE molecules = "1.74e14*"
What is the home team's score at kardinia park?
CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_85 WHERE venue = "kardinia park"
What are the login names of the students with family name "Ward"?
CREATE TABLE Students (login_name VARCHAR, family_name VARCHAR)
SELECT login_name FROM Students WHERE family_name = "Ward"
Name the number of weeks for san francisco 49ers
CREATE TABLE table_14984103_1 (week VARCHAR, opponent VARCHAR)
SELECT COUNT(week) FROM table_14984103_1 WHERE opponent = "San Francisco 49ers"
What did they do against Memphis?
CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_21058823_1 WHERE opponent = "Memphis"
How many directed by entries have UK viewership over 6.16 million?
CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR)
SELECT COUNT(directed_by) FROM table_29063233_1 WHERE uk_viewers__million_ = "6.16"
What was the music for the modern dance?
CREATE TABLE table_name_64 (music VARCHAR, dance VARCHAR)
SELECT music FROM table_name_64 WHERE dance = "modern"
Who was the winner on a hard surface on the week of November 13?
CREATE TABLE table_name_30 (winner VARCHAR, surface VARCHAR, week VARCHAR)
SELECT winner FROM table_name_30 WHERE surface = "hard" AND week = "november 13"
What happened when the new points was 1705?
CREATE TABLE table_20855452_4 (status VARCHAR, new_points VARCHAR)
SELECT status FROM table_20855452_4 WHERE new_points = 1705
Name the reason for change pennsylvania 13th
CREATE TABLE table_225102_4 (reason_for_change VARCHAR, district VARCHAR)
SELECT reason_for_change FROM table_225102_4 WHERE district = "Pennsylvania 13th"
Which Number has a Year Start smaller than 1874, and a Year End larger than 1873?
CREATE TABLE table_name_13 (number INTEGER, year_start VARCHAR, year_end VARCHAR)
SELECT MAX(number) FROM table_name_13 WHERE year_start < 1874 AND year_end > 1873
Which state did Samuel Thatcher of the Federalist party represent?
CREATE TABLE table_name_27 (state_served VARCHAR, party VARCHAR, representative VARCHAR)
SELECT state_served FROM table_name_27 WHERE party = "federalist" AND representative = "samuel thatcher"
Name the german voice actor for rafael torres
CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, spanish_voice_actor VARCHAR)
SELECT german_voice_actor FROM table_14960574_6 WHERE spanish_voice_actor = "Rafael Torres"
What title has a Label of warp records / paper bag records?
CREATE TABLE table_name_39 (title VARCHAR, label VARCHAR)
SELECT title FROM table_name_39 WHERE label = "warp records / paper bag records"
What is the name of the conference that K. C. Jones was a head coach in?
CREATE TABLE table_name_78 (conf VARCHAR, head_coach VARCHAR)
SELECT conf FROM table_name_78 WHERE head_coach = "k. c. jones"
Which method has the record of 11-1?
CREATE TABLE table_name_4 (method VARCHAR, record VARCHAR)
SELECT method FROM table_name_4 WHERE record = "11-1"
What is the total for the first exercise and has 18 as the second exercise?
CREATE TABLE table_name_2 (first_exercise INTEGER, second_exercise VARCHAR)
SELECT SUM(first_exercise) FROM table_name_2 WHERE second_exercise = 18
at least how many times was Pierre Vermeulen at a game?
CREATE TABLE table_24565004_22 (appearances¹ INTEGER, name VARCHAR)
SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name = "Pierre Vermeulen"
What is the rank of the film directed by danny devito?
CREATE TABLE table_name_32 (rank VARCHAR, director VARCHAR)
SELECT rank FROM table_name_32 WHERE director = "danny devito"
What is the Round when the value for Fixtures is 2?
CREATE TABLE table_name_31 (round VARCHAR, fixtures VARCHAR)
SELECT round FROM table_name_31 WHERE fixtures = 2
If a team had a percentage of games won recorded as .429, what Championship Game was played?
CREATE TABLE table_name_82 (championship_game VARCHAR, win__percentage VARCHAR)
SELECT championship_game FROM table_name_82 WHERE win__percentage = ".429"
Name the fourth district for beverly bodem
CREATE TABLE table_15442974_1 (fourth_district VARCHAR, first_district VARCHAR)
SELECT fourth_district FROM table_15442974_1 WHERE first_district = "Beverly Bodem"
What is the entry for the Australian sound that has an example of illyria, cf. cirrhosis?
CREATE TABLE table_name_79 (australian VARCHAR, examples VARCHAR)
SELECT australian FROM table_name_79 WHERE examples = "illyria, cf. cirrhosis"
Which city has a venue of the Arco Arena?
CREATE TABLE table_name_42 (city VARCHAR, venue VARCHAR)
SELECT city FROM table_name_42 WHERE venue = "arco arena"
What is the High assists when the record was 28–40?
CREATE TABLE table_name_64 (high_assists VARCHAR, record VARCHAR)
SELECT high_assists FROM table_name_64 WHERE record = "28–40"
When was power (hp) less than 93 for the OM324 engine used?
CREATE TABLE table_name_4 (used VARCHAR, power__hp_ VARCHAR, engine VARCHAR)
SELECT used FROM table_name_4 WHERE power__hp_ < 93 AND engine = "om324"
What is the location of the opponent Siarhei Navarka?
CREATE TABLE table_name_79 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_79 WHERE opponent = "siarhei navarka"
How many grids does Ducati have with Casey Stoner as a rider with fewer than 27 laps?
CREATE TABLE table_name_11 (grid VARCHAR, laps VARCHAR, manufacturer VARCHAR, rider VARCHAR)
SELECT COUNT(grid) FROM table_name_11 WHERE manufacturer = "ducati" AND rider = "casey stoner" AND laps < 27
Which government is number 6?
CREATE TABLE table_name_63 (government VARCHAR, number VARCHAR)
SELECT government FROM table_name_63 WHERE number = 6
What was the total number of first down on October 23?
CREATE TABLE table_15847691_2 (first_downs VARCHAR, date VARCHAR)
SELECT COUNT(first_downs) FROM table_15847691_2 WHERE date = "October 23"
What date was the UEFA Cup against Panathinaikos?
CREATE TABLE table_name_29 (date VARCHAR, competition VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_29 WHERE competition = "uefa cup" AND opponent = "panathinaikos"
What is the Brigade, when the Type is Rural, and when the value for Tankers is 1?
CREATE TABLE table_name_10 (brigade VARCHAR, type VARCHAR, tankers VARCHAR)
SELECT brigade FROM table_name_10 WHERE type = "rural" AND tankers = 1
What is the channel number that has a branding of PTV 4 Laoag?
CREATE TABLE table_24673888_1 (ch__number VARCHAR, branding VARCHAR)
SELECT ch__number FROM table_24673888_1 WHERE branding = "PTV 4 Laoag"
What is the score for the game with 213 attending?
CREATE TABLE table_name_3 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_3 WHERE attendance = "213"
Who was the opponent on May 8, 2006?
CREATE TABLE table_name_75 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_75 WHERE date = "may 8, 2006"
What's the capacity that has the highest greater than 1,763 and is at Hampden Park?
CREATE TABLE table_name_37 (capacity INTEGER, stadium VARCHAR, highest VARCHAR)
SELECT MIN(capacity) FROM table_name_37 WHERE stadium = "hampden park" AND highest > 1 OFFSET 763
Which outcome has a Opponent of fernando verdasco?
CREATE TABLE table_name_16 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_16 WHERE opponent = "fernando verdasco"
What body participated in 1973?
CREATE TABLE table_name_43 (body VARCHAR, year VARCHAR)
SELECT body FROM table_name_43 WHERE year = "1973"
What is Series, when Season is 2007?
CREATE TABLE table_name_2 (series VARCHAR, season VARCHAR)
SELECT series FROM table_name_2 WHERE season = 2007
what is the highest lane number for johan wissman when the react is less than 0.242?
CREATE TABLE table_name_48 (lane INTEGER, name VARCHAR, react VARCHAR)
SELECT MAX(lane) FROM table_name_48 WHERE name = "johan wissman" AND react < 0.242
What is the score for the date of December 7?
CREATE TABLE table_23286112_7 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23286112_7 WHERE date = "December 7"
What is the highest Goals Against, when Club is "Pontevedra CF", and when Played is less than 38?
CREATE TABLE table_name_74 (goals_against INTEGER, club VARCHAR, played VARCHAR)
SELECT MAX(goals_against) FROM table_name_74 WHERE club = "pontevedra cf" AND played < 38
What is the position of the race with a point of test driver?
CREATE TABLE table_name_70 (position VARCHAR, points VARCHAR)
SELECT position FROM table_name_70 WHERE points = "test driver"
Who is in February where has September is kristine hanson?
CREATE TABLE table_name_13 (february VARCHAR, september VARCHAR)
SELECT february FROM table_name_13 WHERE september = "kristine hanson"
What car did Tony Trimmer drive at the Oulton Park Circuit?
CREATE TABLE table_name_35 (winning_car VARCHAR, circuit VARCHAR, winning_driver VARCHAR)
SELECT winning_car FROM table_name_35 WHERE circuit = "oulton park" AND winning_driver = "tony trimmer"
What is the average Total, when Bronze is greater than 0, when Silver is greater than 0, when Gold is greater than 2, and when Nation is Soviet Union?
CREATE TABLE table_name_75 (total INTEGER, nation VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT AVG(total) FROM table_name_75 WHERE bronze > 0 AND silver > 0 AND gold > 2 AND nation = "soviet union"
What is the date that 4,286 attended?
CREATE TABLE table_name_15 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_15 WHERE attendance = "4,286"
How many times did the team lose who had 1 of 37 points and less than 60 goals against?
CREATE TABLE table_name_30 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR)
SELECT MIN(lost) FROM table_name_30 WHERE points_1 = "37" AND goals_against < 60
Who was the Republican when the green was Harold Burbank?
CREATE TABLE table_name_27 (republican VARCHAR, green VARCHAR)
SELECT republican FROM table_name_27 WHERE green = "harold burbank"
What is the Musical Guest/Song with a pilot of 3?
CREATE TABLE table_name_99 (musical_guest_song_performed VARCHAR, pilot VARCHAR)
SELECT musical_guest_song_performed FROM table_name_99 WHERE pilot = "3"
What is the maximum number of wins in the season with 22 starts?
CREATE TABLE table_1637041_6 (wins INTEGER, starts VARCHAR)
SELECT MAX(wins) FROM table_1637041_6 WHERE starts = 22
Who is the incumbent from the democratic party in the washington 7 district?
CREATE TABLE table_name_35 (incumbent VARCHAR, party VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_35 WHERE party = "democratic" AND district = "washington 7"
how many pick# does the chivas usa mls team have
CREATE TABLE table_29626583_1 (pick__number INTEGER, mls_team VARCHAR)
SELECT MAX(pick__number) FROM table_29626583_1 WHERE mls_team = "Chivas USA"
For the club Minija Kretinga, what's the lowest number of wins with points smaller than 25, goals at 22 and goals conceded below 39?
CREATE TABLE table_name_60 (wins INTEGER, goals_conceded VARCHAR, club VARCHAR, points VARCHAR, goals_scored VARCHAR)
SELECT MIN(wins) FROM table_name_60 WHERE points < 25 AND goals_scored = 22 AND club = "minija kretinga" AND goals_conceded < 39
what's the cover date where character(s) is x-men ; magneto
CREATE TABLE table_1217448_1 (cover_date VARCHAR, character_s_ VARCHAR)
SELECT cover_date FROM table_1217448_1 WHERE character_s_ = "X-Men ; Magneto"
What is the Result of the dance Choreographed by Kelly Aykers?
CREATE TABLE table_name_44 (results VARCHAR, choreographer VARCHAR)
SELECT results FROM table_name_44 WHERE choreographer = "kelly aykers"
What is the average Laps for the Mexico team with a grid number of more than 1?
CREATE TABLE table_name_76 (laps INTEGER, grid VARCHAR, team VARCHAR)
SELECT AVG(laps) FROM table_name_76 WHERE grid > 1 AND team = "mexico"
What is the smallest Class Position that has drivers Les Palmer, Terry Morris, and a Position larger than 23?
CREATE TABLE table_name_59 (class INTEGER, drivers VARCHAR, position VARCHAR)
SELECT MIN(class) AS position FROM table_name_59 WHERE drivers = "les palmer, terry morris" AND position > 23
What is the Role in the 1st Division Honduras Tournament?
CREATE TABLE table_name_82 (role VARCHAR, tournament VARCHAR)
SELECT role FROM table_name_82 WHERE tournament = "1st division honduras"
What is the GDP per capita (US$) of the country that has a Population of 2,011,473?
CREATE TABLE table_name_54 (gdp_per_capita__us$_ VARCHAR, population VARCHAR)
SELECT gdp_per_capita__us$_ FROM table_name_54 WHERE population = "2,011,473"
Name the most serial number for feb 1994
CREATE TABLE table_29002641_1 (Serial INTEGER, scrapped VARCHAR)
SELECT MAX(Serial) AS number FROM table_29002641_1 WHERE scrapped = "Feb 1994"
Who won the tournament for the Atlantic Sun Conference?
CREATE TABLE table_24248450_3 (tournament_winner VARCHAR, conference VARCHAR)
SELECT tournament_winner FROM table_24248450_3 WHERE conference = "Atlantic Sun conference"
What is the highest rank team akasvayu girona had with less than 311 rebounds?
CREATE TABLE table_name_52 (rank INTEGER, team VARCHAR, rebounds VARCHAR)
SELECT MAX(rank) FROM table_name_52 WHERE team = "akasvayu girona" AND rebounds < 311
Which Opponent has a Round of 4, and a Rules of thai boxing?
CREATE TABLE table_name_16 (opponent VARCHAR, round VARCHAR, rules VARCHAR)
SELECT opponent FROM table_name_16 WHERE round = "4" AND rules = "thai boxing"
what ist he date of game 29?
CREATE TABLE table_22879262_7 (date VARCHAR, game VARCHAR)
SELECT date FROM table_22879262_7 WHERE game = 29
Which ESPN international sports owner speaks English?
CREATE TABLE table_name_26 (owner VARCHAR, language VARCHAR, name VARCHAR)
SELECT owner FROM table_name_26 WHERE language = "english" AND name = "espn international sports"
What was the address in 1974?
CREATE TABLE table_name_42 (address VARCHAR, year VARCHAR)
SELECT address FROM table_name_42 WHERE year = "1974"
What was the attendance of the game in week 6?
CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_9 WHERE week = 6
What is the outcome of the match with opponent Jade Curtis?
CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_55 WHERE opponent = "jade curtis"
What is the D 46 √ when the D 44 √ is ← majority?
CREATE TABLE table_name_3 (d_46_√ VARCHAR, d_44_√ VARCHAR)
SELECT d_46_√ FROM table_name_3 WHERE d_44_√ = "← majority"
What is the lowest numbered episode that had a rating/share of 0.9/4 and more than 3.79 million viewers?
CREATE TABLE table_name_89 (episode__number INTEGER, viewers__millions_ VARCHAR, rating VARCHAR)
SELECT MIN(episode__number) FROM table_name_89 WHERE rating / SHARE(18 AS –49) = 0.9 / 4 AND viewers__millions_ > 3.79
Who is the Cincinnati College player?
CREATE TABLE table_name_71 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_71 WHERE college = "cincinnati"
Total games for smaller than 15 points, date of november 15, and larger that 13,722 in attendance?
CREATE TABLE table_name_2 (game VARCHAR, attendance VARCHAR, points VARCHAR, date VARCHAR)
SELECT COUNT(game) FROM table_name_2 WHERE points < 15 AND date = "november 15" AND attendance > 13 OFFSET 722
How many were in attendance at Griffith Stadium with Philadelphia Eagles as an opponent?
CREATE TABLE table_name_78 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_78 WHERE game_site = "griffith stadium" AND opponent = "philadelphia eagles"
Who are the away teams when subiaco oval was the grounds?
CREATE TABLE table_16388506_1 (away_team VARCHAR, ground VARCHAR)
SELECT away_team FROM table_16388506_1 WHERE ground = "Subiaco Oval"
What was the average money for United States when Lanny Wadkins played?
CREATE TABLE table_name_94 (money___ INTEGER, country VARCHAR, player VARCHAR)
SELECT AVG(money___) AS $__ FROM table_name_94 WHERE country = "united states" AND player = "lanny wadkins"
Tell me the D3 compatible for availability of yes for wode jukebox
CREATE TABLE table_name_76 (d3_compatible VARCHAR, availability VARCHAR, name VARCHAR)
SELECT d3_compatible FROM table_name_76 WHERE availability = "yes" AND name = "wode jukebox"
How many fatalities shows for the lockheed l-1049g?
CREATE TABLE table_name_62 (fatalities INTEGER, aircraft_type VARCHAR)
SELECT SUM(fatalities) FROM table_name_62 WHERE aircraft_type = "lockheed l-1049g"