answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = "6 (4 in 34.49s)"
What is the position of the player who got 6 (4 in 34.49s) in the 6 atlas stones event?
CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR)
SELECT COUNT(runs_conceded) FROM table_15700367_2 WHERE overs_bowled = "53"
Name the runs conceded where overs bowled is 53
CREATE TABLE table_15700367_2 (runs_conceded VARCHAR, overs_bowled VARCHAR)
SELECT player FROM table_name_93 WHERE date = "july 6, 1949"
Which player is associated with the date July 6, 1949?
CREATE TABLE table_name_93 (player VARCHAR, date VARCHAR)
SELECT type FROM table_name_92 WHERE length_overall = "1.605 m"
What type has an overall length of 1.605 m?
CREATE TABLE table_name_92 (type VARCHAR, length_overall VARCHAR)
SELECT high_rebounds FROM table_name_34 WHERE date = "march 31"
What is listed for the High rebounds on the Date of March 31?
CREATE TABLE table_name_34 (high_rebounds VARCHAR, date VARCHAR)
SELECT 2010 FROM table_name_33 WHERE tournament = "australian open"
What is the info for the year 2010, for the Australian Open tournament?
CREATE TABLE table_name_33 (tournament VARCHAR)
SELECT call_sign FROM table_name_35 WHERE frequency_mhz < 94.9 AND erp_w = 170
What is the call sign of the MHz Frequency less than 94.9 and an ERP W of 170?
CREATE TABLE table_name_35 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT mon_22_aug FROM table_30058355_2 WHERE wed_24_aug = "19' 56.16 113.553mph"
What shows for mon 22 aug whenwed 24 aug is 19' 56.16 113.553mph?
CREATE TABLE table_30058355_2 (mon_22_aug VARCHAR, wed_24_aug VARCHAR)
SELECT soccer FROM table_name_34 WHERE school = "detroit"
Does Detroit have a soccer team?
CREATE TABLE table_name_34 (soccer VARCHAR, school VARCHAR)
SELECT id FROM trip WHERE duration >= (SELECT AVG(duration) FROM trip WHERE zip_code = 94103)
Find the id for the trips that lasted at least as long as the average duration of trips in zip code 94103.
CREATE TABLE trip (id VARCHAR, duration INTEGER, zip_code VARCHAR)
SELECT semifinalists FROM table_name_86 WHERE champions = "michael chang 6-0 6-4"
Which Semifinalists has a Champions of michael chang 6-0 6-4?
CREATE TABLE table_name_86 (semifinalists VARCHAR, champions VARCHAR)
SELECT position FROM table_1473672_5 WHERE player = "Marty Gateman"
What position did Marty Gateman play?
CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)
SELECT high_points FROM table_name_17 WHERE high_rebounds = "rafer alston (9)"
Can you tell me the High points that has the High rebounds of rafer alston (9)?
CREATE TABLE table_name_17 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT college FROM table_name_77 WHERE name = "pat thomas"
What college is Pat Thomas from?
CREATE TABLE table_name_77 (college VARCHAR, name VARCHAR)
SELECT points_classification_navy_blue_jersey FROM table_name_8 WHERE general_classification_yellow_jersey = "graeme brown"
Which Points Classification Navy Blue Jersey that has a Jersey of Graeme Brown
CREATE TABLE table_name_8 (points_classification_navy_blue_jersey VARCHAR, general_classification_yellow_jersey VARCHAR)
SELECT AVG(year) FROM table_name_50 WHERE type = "ep" AND title = "die shaolin affen ep"
What year had a title of Die Shaolin Affen EP and EP as the type?
CREATE TABLE table_name_50 (year INTEGER, type VARCHAR, title VARCHAR)
SELECT nuskhuri FROM table_name_80 WHERE asomtavruli = "β΄‹"
What is teh Nuskhuri symbol for β΄‹ in Asomtavruli?
CREATE TABLE table_name_80 (nuskhuri VARCHAR, asomtavruli VARCHAR)
SELECT SUM(round) FROM table_name_13 WHERE position = "kicker"
How many rounds had a position of kicker?
CREATE TABLE table_name_13 (round INTEGER, position VARCHAR)
SELECT at_opponents_venue FROM table_16201038_4 WHERE last_5_meetings = "MU, 4-1" AND at_neutral_site = "Tied, 0-0"
What is the record at the opponent's venue against the team for which the record for the last 5 meetings is mu, 4-1 and the record at the neutral site is tied, 0-0?
CREATE TABLE table_16201038_4 (at_opponents_venue VARCHAR, last_5_meetings VARCHAR, at_neutral_site VARCHAR)
SELECT winner FROM table_name_44 WHERE race_title = "lakeside"
What was the name of the driver that won the Lakeside race?
CREATE TABLE table_name_44 (winner VARCHAR, race_title VARCHAR)
SELECT fastest_lap FROM table_29162856_1 WHERE round = 1
Who had the fastest lap in round 1?
CREATE TABLE table_29162856_1 (fastest_lap VARCHAR, round VARCHAR)
SELECT MAX(round) FROM table_name_67 WHERE name = "roy hall"
What is Roy Hall's highest round?
CREATE TABLE table_name_67 (round INTEGER, name VARCHAR)
SELECT chart_peak FROM table_name_30 WHERE time = "3:11"
Which Chart peak has a Time of 3:11?
CREATE TABLE table_name_30 (chart_peak VARCHAR, time VARCHAR)
SELECT institution FROM table_12434380_1 WHERE main_campus_location = "Overland Park"
What is the instition where the main campus location is overland park?
CREATE TABLE table_12434380_1 (institution VARCHAR, main_campus_location VARCHAR)
SELECT 2008 FROM table_name_22 WHERE tournament = "shanghai"
What shows for 2008 at the Shanghai tournament?
CREATE TABLE table_name_22 (tournament VARCHAR)
SELECT phone_number FROM customers UNION SELECT phone_number FROM staff
Find the phone number of all the customers and staff.
CREATE TABLE staff (phone_number VARCHAR); CREATE TABLE customers (phone_number VARCHAR)
SELECT song_title FROM table_name_19 WHERE release_date = "12/8/70" AND time = "2:54"
Which song was released 12/8/70 with a time of 2:54?
CREATE TABLE table_name_19 (song_title VARCHAR, release_date VARCHAR, time VARCHAR)
SELECT driver FROM table_name_94 WHERE points < 17
What driver has points less than 17?
CREATE TABLE table_name_94 (driver VARCHAR, points INTEGER)
SELECT name FROM table_name_15 WHERE bodyweight = 73.6
Which person has a bodyweight of 73.6?
CREATE TABLE table_name_15 (name VARCHAR, bodyweight VARCHAR)
SELECT COUNT(ends) FROM table_name_67 WHERE name = "filip Ε‘ebo" AND goals > 2
I want the total number of ends for filip Ε‘ebo and Goals more than 2
CREATE TABLE table_name_67 (ends VARCHAR, name VARCHAR, goals VARCHAR)
SELECT COUNT(game) FROM table_27721131_6 WHERE team = "Houston"
How many games are shown against Houston?
CREATE TABLE table_27721131_6 (game VARCHAR, team VARCHAR)
SELECT MAX(total_medals) FROM table_name_27 WHERE gold_medals = 0 AND ensemble = "east 80 indoor percussion"
What is the highest Total Medals that has 0 Gold Medal and a Ensemble of east 80 indoor percussion?
CREATE TABLE table_name_27 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)
SELECT main_services FROM table_18118221_1 WHERE total_passengers__millions__2011_12 = "14.849"
What is the main service for the station with 14.849 million passengers 2011-12?
CREATE TABLE table_18118221_1 (main_services VARCHAR, total_passengers__millions__2011_12 VARCHAR)
SELECT class FROM table_1745843_8 WHERE part_4 = "giheizan"
What class in the word with part 4 "giheizan"?
CREATE TABLE table_1745843_8 (class VARCHAR, part_4 VARCHAR)
SELECT MIN(commenced_operations) FROM table_name_90 WHERE callsign = "nouvelair"
What is the lowest commenced operations that has a nouvelair callsign?
CREATE TABLE table_name_90 (commenced_operations INTEGER, callsign VARCHAR)
SELECT crowd FROM table_name_23 WHERE away_team = "richmond"
When Richmond is the away team, what is the crowd size?
CREATE TABLE table_name_23 (crowd VARCHAR, away_team VARCHAR)
SELECT visitor FROM table_name_34 WHERE home = "chicago" AND score = "3 – 2"
What is the Visitor with a Home with chicago, and a Score of 3 – 2?
CREATE TABLE table_name_34 (visitor VARCHAR, home VARCHAR, score VARCHAR)
SELECT name FROM table_name_1 WHERE avg_g = 13.7
what is the name when avg/g is 13.7?
CREATE TABLE table_name_1 (name VARCHAR, avg_g VARCHAR)
SELECT length_fuel FROM table_name_91 WHERE floor_styling = "high" AND year_built = "2000-2003"
What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling?
CREATE TABLE table_name_91 (length_fuel VARCHAR, floor_styling VARCHAR, year_built VARCHAR)
SELECT name FROM table_name_2 WHERE winning_driver = "nello pagani"
Which Grand Prix did Nello Pagani win?
CREATE TABLE table_name_2 (name VARCHAR, winning_driver VARCHAR)
SELECT member FROM table_name_7 WHERE state = "nt"
Which memeber has nt as the state?
CREATE TABLE table_name_7 (member VARCHAR, state VARCHAR)
SELECT cast FROM table_name_75 WHERE director = "colbert clark and armand schaefer" AND serial_title = "burn 'em up barnes"
I want the cast for director of colbert clark and armand schaefer for burn 'em up barnes
CREATE TABLE table_name_75 (cast VARCHAR, director VARCHAR, serial_title VARCHAR)
SELECT score FROM table_13557843_3 WHERE record = "1-2"
What was the score of the game when the team was 1-2?
CREATE TABLE table_13557843_3 (score VARCHAR, record VARCHAR)
SELECT points_against FROM table_name_34 WHERE points_difference = "points difference"
What are the points against with a points difference?
CREATE TABLE table_name_34 (points_against VARCHAR, points_difference VARCHAR)
SELECT attendance FROM table_name_14 WHERE opponent = "detroit lions"
What attendance has detroit lions as the opponent?
CREATE TABLE table_name_14 (attendance VARCHAR, opponent VARCHAR)
SELECT finalists FROM table_name_53 WHERE season = "1972–73"
Who were the finalists in the 1972–73 season?
CREATE TABLE table_name_53 (finalists VARCHAR, season VARCHAR)
SELECT AVG(first_elected) FROM table_name_49 WHERE district = "massachusetts 3"
What is the average First Elected, when District is "Massachusetts 3"?
CREATE TABLE table_name_49 (first_elected INTEGER, district VARCHAR)
SELECT play FROM table_name_96 WHERE base = "aosta"
Which play had a base of Aosta?
CREATE TABLE table_name_96 (play VARCHAR, base VARCHAR)
SELECT torque FROM table_20007413_6 WHERE year = "1996"
What are the torque characteristics of the model made in 1996?
CREATE TABLE table_20007413_6 (torque VARCHAR, year VARCHAR)
SELECT COUNT(field_goals) FROM table_25711913_8 WHERE player = "Weeks"
How many figures are provided for Weeks' field goals?
CREATE TABLE table_25711913_8 (field_goals VARCHAR, player VARCHAR)
SELECT opposing_teams FROM table_name_26 WHERE date = "24/11/1979"
On 24/11/1979, what is the opposing teams?
CREATE TABLE table_name_26 (opposing_teams VARCHAR, date VARCHAR)
SELECT constructor FROM table_name_25 WHERE laps = 53 AND time_retired = "1:17:09.672"
Who built the car that went 53 laps with a Time/Retired of 1:17:09.672?
CREATE TABLE table_name_25 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT surface FROM table_name_44 WHERE opponents = "iryna bremond valeria savinykh"
What is the surface of the match when the opponent was iryna bremond valeria savinykh?
CREATE TABLE table_name_44 (surface VARCHAR, opponents VARCHAR)
SELECT MIN(viewers__in_households_) FROM table_name_54 WHERE finale = "may 23, 1995" AND episodes > 22
What is the minimum number of views that watched the show when there was more than 22 episodes and the finale was on May 23, 1995?
CREATE TABLE table_name_54 (viewers__in_households_ INTEGER, finale VARCHAR, episodes VARCHAR)
SELECT run_2 FROM table_name_18 WHERE final = "5:24.47"
Which run 2 with final of 5:24.47?
CREATE TABLE table_name_18 (run_2 VARCHAR, final VARCHAR)
SELECT run_time FROM table_1723080_1 WHERE viewers__in_millions_ = "7.4"
What is run time when there were 7.4 million viewers?
CREATE TABLE table_1723080_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)
SELECT SUM(gold) FROM table_name_84 WHERE nation = "norway" AND bronze > 1
What is the total gold in Norway with more than 1 bronze?
CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT captain FROM table_name_49 WHERE manager = "joe royle"
Which captain's manager is Joe Royle?
CREATE TABLE table_name_49 (captain VARCHAR, manager VARCHAR)
SELECT MAX(season) FROM table_name_2 WHERE third_driver = "jimmy davies"
What is the largest season with a Third Driver of jimmy davies?
CREATE TABLE table_name_2 (season INTEGER, third_driver VARCHAR)
SELECT MAX(round) FROM table_name_46 WHERE draft > 1980 AND player = "shane doan category:articles with hcards"
What is the highest Round, when Draft is greater than 1980, and when Player is "Shane Doan Category:Articles with hCards"?
CREATE TABLE table_name_46 (round INTEGER, draft VARCHAR, player VARCHAR)
SELECT place FROM table_name_43 WHERE country = "united states" AND to_par = "+2" AND score = 73 - 74 - 71 - 72 = 290
What place did the golfer from the United States come in with a To Par of +2, and a score of 73-74-71-72=290?
CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT COUNT(year) FROM table_name_21 WHERE opponent = "petr korda"
How many years was the opponent petr korda?
CREATE TABLE table_name_21 (year VARCHAR, opponent VARCHAR)
SELECT COUNT(lost) FROM table_name_73 WHERE drawn = 1 AND played < 12
What is the total number of losses of the player that has drawn 1 and played smaller than 12?
CREATE TABLE table_name_73 (lost VARCHAR, drawn VARCHAR, played VARCHAR)
SELECT AVG(attendance) FROM table_name_10 WHERE record = "11–12"
Record of 11–12 involved what average attendance figures?
CREATE TABLE table_name_10 (attendance INTEGER, record VARCHAR)
SELECT ipv6_address FROM table_name_65 WHERE operator = "wide project"
Which IPv6 address has an operator of Wide project?
CREATE TABLE table_name_65 (ipv6_address VARCHAR, operator VARCHAR)
SELECT height__m_ft_ FROM table_name_47 WHERE city = "bucharest" AND built = 2009 AND rank = 13
What is the Height (m/ft) for bucharest Built in 2009, and a Rank of 13?
CREATE TABLE table_name_47 (height__m_ft_ VARCHAR, rank VARCHAR, city VARCHAR, built VARCHAR)
SELECT SUM(poles) FROM table_name_39 WHERE class = "125cc" AND team = "matteoni racing team" AND points > 3
How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3?
CREATE TABLE table_name_39 (poles INTEGER, points VARCHAR, class VARCHAR, team VARCHAR)
SELECT gtu_winning_team FROM table_13642023_2 WHERE to_winning_team = "Steve Ross"
Who was the GTU winning team when the TO winning team was Steve Ross?
CREATE TABLE table_13642023_2 (gtu_winning_team VARCHAR, to_winning_team VARCHAR)
SELECT COUNT(year_opened) FROM table_name_47 WHERE ride = "flight deck" AND rating < 5
What year has the ride flight deck and a rating of less than 5?
CREATE TABLE table_name_47 (year_opened VARCHAR, ride VARCHAR, rating VARCHAR)
SELECT MAX(week) FROM table_name_96 WHERE attendance = "84,856"
What was the highest week with 84,856 in attendance?
CREATE TABLE table_name_96 (week INTEGER, attendance VARCHAR)
SELECT wins FROM table_name_84 WHERE year = 1989
What is listed for the Wins with a Year of 1989?
CREATE TABLE table_name_84 (wins VARCHAR, year VARCHAR)
SELECT MIN(yards) FROM table_name_5 WHERE carries < 23 AND team = "at chi" AND average < 8.5
Which Yards have Carries smaller than 23, and a Team of at chi, and an Average smaller than 8.5?
CREATE TABLE table_name_5 (yards INTEGER, average VARCHAR, carries VARCHAR, team VARCHAR)
SELECT SUM(core__number) FROM table_name_62 WHERE tdp__w_ < 85.3
What is the sum of core# with a TDP less than 85.3?
CREATE TABLE table_name_62 (core__number INTEGER, tdp__w_ INTEGER)
SELECT year FROM table_2490289_1 WHERE pc_intro = "FR-08: The Product ( Farbrausch )"
What year did fr-08: the product ( farbrausch ) win best pc intro?
CREATE TABLE table_2490289_1 (year VARCHAR, pc_intro VARCHAR)
SELECT notes FROM table_name_56 WHERE time = "6:34.51"
What were the notes for the time of 6:34.51?
CREATE TABLE table_name_56 (notes VARCHAR, time VARCHAR)
SELECT mountains_classification FROM table_25055040_22 WHERE most_courageous = "Yaroslav Popovych"
When Yaroslav Popovych won most corageous, who won the mountains classification?
CREATE TABLE table_25055040_22 (mountains_classification VARCHAR, most_courageous VARCHAR)
SELECT COUNT(*) FROM Projects
Show the number of projects.
CREATE TABLE Projects (Id VARCHAR)
SELECT set_1 FROM table_name_92 WHERE total = "85–101"
What is the set 1 score when the total is 85–101?
CREATE TABLE table_name_92 (set_1 VARCHAR, total VARCHAR)
SELECT attendance FROM table_name_37 WHERE away_team = "oadby town"
What is the attendance when oadby town is away?
CREATE TABLE table_name_37 (attendance VARCHAR, away_team VARCHAR)
SELECT year FROM table_name_65 WHERE outcome = "runner-up" AND score = "4–6, 6–4, [8–10]"
In what year was Xavier Malisse the runner-up with scores of 4–6, 6–4, [8–10]?
CREATE TABLE table_name_65 (year VARCHAR, outcome VARCHAR, score VARCHAR)
SELECT COUNT(results) FROM table_13643320_2 WHERE gtu_winning_team = "#98 All American Racers"
How many different results came out of the round in which #98 All American Racers became the GTU winning team?
CREATE TABLE table_13643320_2 (results VARCHAR, gtu_winning_team VARCHAR)
SELECT principal_activities FROM table_name_76 WHERE incorporated_in = "france"
Which Principal activities have an Incorporated in of france?
CREATE TABLE table_name_76 (principal_activities VARCHAR, incorporated_in VARCHAR)
SELECT combined_consumption FROM table_name_60 WHERE name = "1.6 16v"
What is the combined consumption of 1.6 16v?
CREATE TABLE table_name_60 (combined_consumption VARCHAR, name VARCHAR)
SELECT pick__number FROM table_2850912_1 WHERE college_junior_club_team = "Regina Pats (WHL)"
What daft pick number is the player coming from Regina Pats (WHL)?
CREATE TABLE table_2850912_1 (pick__number VARCHAR, college_junior_club_team VARCHAR)
SELECT MAX(year) FROM table_name_72 WHERE category = "best performance by a leading actress in a musical"
Which Year has a Category of best performance by a leading actress in a musical?
CREATE TABLE table_name_72 (year INTEGER, category VARCHAR)
SELECT visitor FROM table_name_62 WHERE date = "march 24"
Who is the visitor on March 24?
CREATE TABLE table_name_62 (visitor VARCHAR, date VARCHAR)
SELECT player FROM table_name_70 WHERE place = "t3"
Which player is T3?
CREATE TABLE table_name_70 (player VARCHAR, place VARCHAR)
SELECT time FROM table_name_27 WHERE rider = "steve plater"
What time did rider steve plater have?
CREATE TABLE table_name_27 (time VARCHAR, rider VARCHAR)
SELECT dvd_set_release_date FROM table_name_76 WHERE network = "cbs"
When dis cbs release the DVD set?
CREATE TABLE table_name_76 (dvd_set_release_date VARCHAR, network VARCHAR)
SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = "alessandria" AND density__inhabitants_km_2__ < 461.8
What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?
CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR)
SELECT high_points FROM table_27755603_10 WHERE team = "Washington"
What was the high points when the team was Washington?
CREATE TABLE table_27755603_10 (high_points VARCHAR, team VARCHAR)
SELECT song_title FROM table_name_7 WHERE length = "2:50"
What Song has a Length of 2:50?
CREATE TABLE table_name_7 (song_title VARCHAR, length VARCHAR)
SELECT MIN(podiums) FROM table_20398823_1 WHERE wins = 0 AND season = 2005 AND points = "321"
Name the least podiums for 0 wins and 2005 season for 321 points
CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR, wins VARCHAR, season VARCHAR)
SELECT theme FROM table_27616663_1 WHERE original_artist = "Rosana"
What was the theme when original artist Rosana's song was performed?
CREATE TABLE table_27616663_1 (theme VARCHAR, original_artist VARCHAR)
SELECT written_by FROM table_27905664_1 WHERE us_viewers__million_ = "3.74"
Who wrote the episode having a US viewership of 3.74 million?
CREATE TABLE table_27905664_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT rnd FROM table_10707176_2 WHERE circuit = "Phoenix International Raceway"
What rnds were there for the phoenix international raceway?
CREATE TABLE table_10707176_2 (rnd VARCHAR, circuit VARCHAR)
SELECT april_28 FROM table_name_91 WHERE final = "20" AND mar_17 = "22"
What is the April 28th rank when the Final is 20, and Mar 17 is 22?
CREATE TABLE table_name_91 (april_28 VARCHAR, final VARCHAR, mar_17 VARCHAR)
SELECT text FROM table_name_13 WHERE date__ce_ = "c. 1180"
Which text has a date of c. 1180?
CREATE TABLE table_name_13 (text VARCHAR, date__ce_ VARCHAR)
SELECT womens_doubles FROM table_14903841_1 WHERE year = "2008/2009"
Who are all the womens doubles for the year 2008/2009?
CREATE TABLE table_14903841_1 (womens_doubles VARCHAR, year VARCHAR)
SELECT fastest_time__s_ FROM table_name_40 WHERE athlete = "jason smyth"
What is the fastest time for athlete Jason Smyth?
CREATE TABLE table_name_40 (fastest_time__s_ VARCHAR, athlete VARCHAR)