question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What Elimination Move is listed against Wrestler Henry, Eliminated by Batista? | CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR) | SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = "batista" AND wrestler = "henry" |
What club did Cyril Christiani play for? | CREATE TABLE table_27771406_1 (club VARCHAR, player VARCHAR) | SELECT club FROM table_27771406_1 WHERE player = "Cyril Christiani" |
Name the record for black knights points 54 | CREATE TABLE table_21092444_1 (record VARCHAR, black_knights_points VARCHAR) | SELECT record FROM table_21092444_1 WHERE black_knights_points = 54 |
What tournament was Laura Davies the runner-up? | CREATE TABLE table_name_50 (tournament VARCHAR, runner_s__up VARCHAR) | SELECT tournament FROM table_name_50 WHERE runner_s__up = "laura davies" |
What Colors has a School of sesser high school? | CREATE TABLE table_name_61 (colors VARCHAR, school VARCHAR) | SELECT colors FROM table_name_61 WHERE school = "sesser high school" |
What is the game that has the phoenix suns as the opponent played against? | CREATE TABLE table_name_72 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_72 WHERE opponent = "phoenix suns" |
What is the highest round number for the player who came from team Missouri? | CREATE TABLE table_name_38 (round INTEGER, school_club_team VARCHAR) | SELECT MAX(round) FROM table_name_38 WHERE school_club_team = "missouri" |
What was his result against dan bobish? | CREATE TABLE table_name_80 (res VARCHAR, opponent VARCHAR) | SELECT res FROM table_name_80 WHERE opponent = "dan bobish" |
What was the outcome for Jan Pisecky and his partner? | CREATE TABLE table_name_32 (outcome VARCHAR, partner VARCHAR) | SELECT outcome FROM table_name_32 WHERE partner = "jan pisecky" |
What is the average number of participants in 2012 when there were less than 8 in 2013 and 7 in 2011? | CREATE TABLE table_name_19 (Id VARCHAR) | SELECT AVG(2012) FROM table_name_19 WHERE 2013 < 8 AND 2011 = 7 |
What is Tournament, when Result is 2nd, and when Year is 2009? | CREATE TABLE table_name_74 (tournament VARCHAR, result VARCHAR, year VARCHAR) | SELECT tournament FROM table_name_74 WHERE result = "2nd" AND year = 2009 |
How many values for a win by 2 or more goals correspond to a difference of 2, more than 9 points, and the America-RJ team when more than 7 are played? | CREATE TABLE table_name_3 (won_by_2_or_more_goals_difference VARCHAR, played VARCHAR, team VARCHAR, difference VARCHAR, points VARCHAR) | SELECT COUNT(won_by_2_or_more_goals_difference) FROM table_name_3 WHERE difference = "2" AND points > 9 AND team = "america-rj" AND played > 7 |
What is the winning score when 5 strokes is the margin of victory? | CREATE TABLE table_2167226_3 (winning_score VARCHAR, margin_of_victory VARCHAR) | SELECT winning_score FROM table_2167226_3 WHERE margin_of_victory = "5 strokes" |
Which Score in the final has a Surface of clay, and a Partner of martin emmrich? | CREATE TABLE table_name_62 (score_in_the_final VARCHAR, surface VARCHAR, partner VARCHAR) | SELECT score_in_the_final FROM table_name_62 WHERE surface = "clay" AND partner = "martin emmrich" |
What was Great Britain's Round 1 score? | CREATE TABLE table_16815824_1 (round1 VARCHAR, team VARCHAR) | SELECT round1 FROM table_16815824_1 WHERE team = "Great Britain" |
List the most common type of competition. | CREATE TABLE competition (Competition_type VARCHAR) | SELECT Competition_type FROM competition GROUP BY Competition_type ORDER BY COUNT(*) DESC LIMIT 1 |
How big was the crowd of away team Richmond? | CREATE TABLE table_name_34 (crowd VARCHAR, away_team VARCHAR) | SELECT crowd FROM table_name_34 WHERE away_team = "richmond" |
Who holds the record time of 24.521 and where was it made? | CREATE TABLE table_name_12 (record VARCHAR, time VARCHAR) | SELECT record FROM table_name_12 WHERE time = "24.521" |
What was the highest season number? | CREATE TABLE table_19632728_1 (season__number INTEGER) | SELECT MAX(season__number) FROM table_19632728_1 |
What is Television Service, when Content is Calcio, and when Package/Option is Option? | CREATE TABLE table_name_5 (television_service VARCHAR, content VARCHAR, package_option VARCHAR) | SELECT television_service FROM table_name_5 WHERE content = "calcio" AND package_option = "option" |
What was the average scoring the the top 10s is 4? | CREATE TABLE table_name_51 (scoring_average INTEGER, top_10s VARCHAR) | SELECT AVG(scoring_average) FROM table_name_51 WHERE top_10s = 4 |
In what event was the technical decision (split) method used? | CREATE TABLE table_name_8 (event VARCHAR, method VARCHAR) | SELECT event FROM table_name_8 WHERE method = "technical decision (split)" |
tell the score when the times gone was 75 | CREATE TABLE table_14070062_4 (points_against VARCHAR, tries_against VARCHAR) | SELECT points_against FROM table_14070062_4 WHERE tries_against = "75" |
When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory? | CREATE TABLE table_1889619_5 (country_territory VARCHAR, story_no VARCHAR, missing_episodes_with_recovered_footage VARCHAR) | SELECT country_territory FROM table_1889619_5 WHERE story_no = "032" AND missing_episodes_with_recovered_footage = "Episode 4" |
What was the listed crowd at junction oval? | CREATE TABLE table_name_28 (crowd VARCHAR, venue VARCHAR) | SELECT crowd FROM table_name_28 WHERE venue = "junction oval" |
What opponent has December 6, 1964 as the date? | CREATE TABLE table_name_40 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_40 WHERE date = "december 6, 1964" |
Which lead had a season of 2007-08? | CREATE TABLE table_name_18 (lead VARCHAR, season VARCHAR) | SELECT lead FROM table_name_18 WHERE season = "2007-08" |
List the id of students who attended statistics courses in the order of attendance date. | CREATE TABLE student_course_attendance (student_id VARCHAR, course_id VARCHAR, date_of_attendance VARCHAR); CREATE TABLE courses (course_id VARCHAR, course_name VARCHAR) | SELECT T2.student_id FROM courses AS T1 JOIN student_course_attendance AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = "statistics" ORDER BY T2.date_of_attendance |
Who did the play-by-play before 1992 with the Ice level reporter Mike Emrick? | CREATE TABLE table_name_15 (play_by_play VARCHAR, year VARCHAR, ice_level_reporters VARCHAR) | SELECT play_by_play FROM table_name_15 WHERE year < 1992 AND ice_level_reporters = "mike emrick" |
What is the common name for the creature with darker colors? | CREATE TABLE table_name_18 (common_name VARCHAR, color VARCHAR) | SELECT common_name FROM table_name_18 WHERE color = "darker colors" |
Name the record for verizon center 20,173 | CREATE TABLE table_17288845_8 (record VARCHAR, location_attendance VARCHAR) | SELECT record FROM table_17288845_8 WHERE location_attendance = "Verizon Center 20,173" |
Which club was originally named hapoel katamon jerusalem f.c.? | CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR) | SELECT original_club FROM table_26218124_1 WHERE name = "Hapoel Katamon Jerusalem F.C." |
Who directed an episode that had 2.81 million U.S. viewers? | CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = "2.81" |
What's the lowest number of draws when the wins are less than 15, and against is 1228? | CREATE TABLE table_name_98 (draws INTEGER, wins VARCHAR, against VARCHAR) | SELECT MIN(draws) FROM table_name_98 WHERE wins < 15 AND against = 1228 |
Name the sum of round for pick of 169 | CREATE TABLE table_name_41 (round INTEGER, pick VARCHAR) | SELECT SUM(round) FROM table_name_41 WHERE pick = 169 |
What's the sum of draw for artist hari mata hari with less than 70 points? | CREATE TABLE table_name_27 (draw INTEGER, artist VARCHAR, points VARCHAR) | SELECT SUM(draw) FROM table_name_27 WHERE artist = "hari mata hari" AND points < 70 |
What was the aggregate for a team #2 of Okk Beograd? | CREATE TABLE table_name_45 (agg VARCHAR, team__number2 VARCHAR) | SELECT agg FROM table_name_45 WHERE team__number2 = "okk beograd" |
What scores did grand finalist hawthorn have? | CREATE TABLE table_name_63 (scores VARCHAR, grand_finalist VARCHAR) | SELECT scores FROM table_name_63 WHERE grand_finalist = "hawthorn" |
Who is the opponent of player phil graham? | CREATE TABLE table_name_72 (opponent VARCHAR, player VARCHAR) | SELECT opponent FROM table_name_72 WHERE player = "phil graham" |
List the first and last name of all players who are left / L hand in the order of birth date. | CREATE TABLE players (first_name VARCHAR, last_name VARCHAR, hand VARCHAR, birth_date VARCHAR) | SELECT first_name, last_name FROM players WHERE hand = 'L' ORDER BY birth_date |
How many dates did the episode with a production code of 804 originally air on? | CREATE TABLE table_27988559_1 (original_air_date VARCHAR, production_code VARCHAR) | SELECT COUNT(original_air_date) FROM table_27988559_1 WHERE production_code = 804 |
Name the nickname with age of 4.9 | CREATE TABLE table_name_73 (nickname VARCHAR, age___ma__ VARCHAR) | SELECT nickname FROM table_name_73 WHERE age___ma__ = "4.9" |
What was the result for week 16? | CREATE TABLE table_name_36 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_36 WHERE week = 16 |
Name the least ansi code for 609 population 2010 | CREATE TABLE table_18600760_1 (ansi_code INTEGER, pop__2010_ VARCHAR) | SELECT MIN(ansi_code) FROM table_18600760_1 WHERE pop__2010_ = 609 |
Who is the Pick 7 player? | CREATE TABLE table_name_59 (player VARCHAR, pick VARCHAR) | SELECT player FROM table_name_59 WHERE pick = "7" |
Which Appointed has a Presentation of Credentials on November 22, 1990 | CREATE TABLE table_name_45 (appointed_by VARCHAR, presentation_of_credentials VARCHAR) | SELECT appointed_by FROM table_name_45 WHERE presentation_of_credentials = "november 22, 1990" |
What is the lowest evening score of the contestant with an evening gown less than 8.938, from Texas, and with an average less than 8.846 has? | CREATE TABLE table_name_3 (interview INTEGER, average VARCHAR, evening_gown VARCHAR, state VARCHAR) | SELECT MIN(interview) FROM table_name_3 WHERE evening_gown < 8.938 AND state = "texas" AND average < 8.846 |
Who plays for Zimbabwe? | CREATE TABLE table_name_7 (player VARCHAR, country VARCHAR) | SELECT player FROM table_name_7 WHERE country = "zimbabwe" |
what are all the open 1st viii with u15 6th iv being bgs | CREATE TABLE table_11318462_5 (open_1st_viii VARCHAR, u15_6th_iv VARCHAR) | SELECT open_1st_viii FROM table_11318462_5 WHERE u15_6th_iv = "BGS" |
What are the names of circuits that belong to UK or Malaysia? | CREATE TABLE circuits (name VARCHAR, country VARCHAR) | SELECT name FROM circuits WHERE country = "UK" OR country = "Malaysia" |
What is hte nuumber of employees that has a revenue of 104.000? | CREATE TABLE table_name_60 (employees__world_ VARCHAR, revenue__mil€_ VARCHAR) | SELECT employees__world_ FROM table_name_60 WHERE revenue__mil€_ = "104.000" |
How many silvers for nations with over 3 golds and under 6 bronzes? | CREATE TABLE table_name_60 (silver VARCHAR, bronze VARCHAR, gold VARCHAR) | SELECT COUNT(silver) FROM table_name_60 WHERE bronze < 6 AND gold > 3 |
Which date had a Japan region? | CREATE TABLE table_name_76 (date VARCHAR, region VARCHAR) | SELECT date FROM table_name_76 WHERE region = "japan" |
Which year has a fleet number of 603? | CREATE TABLE table_name_22 (year VARCHAR, fleet_number VARCHAR) | SELECT year FROM table_name_22 WHERE fleet_number = "603" |
Which Game is the highest one that has High rebounds of pau gasol (11)? | CREATE TABLE table_name_12 (game INTEGER, high_rebounds VARCHAR) | SELECT MAX(game) FROM table_name_12 WHERE high_rebounds = "pau gasol (11)" |
What is the region for Chepén with 3 districts? | CREATE TABLE table_name_63 (region VARCHAR, districts VARCHAR, capital VARCHAR) | SELECT region FROM table_name_63 WHERE districts = 3 AND capital = "chepén" |
What is the city/state of the circuit where Russell Ingall Larry Perkins was the winner? | CREATE TABLE table_name_87 (city___state VARCHAR, winner VARCHAR) | SELECT city___state FROM table_name_87 WHERE winner = "russell ingall larry perkins" |
Who was the opponent in Game 27? | CREATE TABLE table_name_94 (opponent VARCHAR, game VARCHAR) | SELECT opponent FROM table_name_94 WHERE game = 27 |
Which country has a total less than 289 and finished t2? | CREATE TABLE table_name_22 (country VARCHAR, total VARCHAR, finish VARCHAR) | SELECT country FROM table_name_22 WHERE total < 289 AND finish = "t2" |
Which Crude death rate (per 1000) has Deaths of 768, and a Crude birth rate (per 1000) smaller than 29.7? | CREATE TABLE table_name_51 (crude_death_rate__per_1000_ INTEGER, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR) | SELECT MIN(crude_death_rate__per_1000_) FROM table_name_51 WHERE deaths = "768" AND crude_birth_rate__per_1000_ < 29.7 |
What was the vote for Alvin Green when other was 9%? | CREATE TABLE table_name_22 (alvin_greene__d_ VARCHAR, other VARCHAR) | SELECT alvin_greene__d_ FROM table_name_22 WHERE other = "9%" |
Show all document ids, names and the number of paragraphs in each document. | CREATE TABLE Documents (document_name VARCHAR, document_id VARCHAR); CREATE TABLE Paragraphs (document_id VARCHAR) | SELECT T1.document_id, T2.document_name, COUNT(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id |
What is the Team with a Score that is w 101–97 (2ot)? | CREATE TABLE table_name_17 (team VARCHAR, score VARCHAR) | SELECT team FROM table_name_17 WHERE score = "w 101–97 (2ot)" |
What is the Surface of indoor/carpet Outcome on 13 October 1996 | CREATE TABLE table_name_33 (outcome VARCHAR, surface VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_33 WHERE surface = "indoor/carpet" AND date = "13 october 1996" |
How many free throws did Charles Pearman score? | CREATE TABLE table_28693349_2 (free_throws INTEGER, player VARCHAR) | SELECT MAX(free_throws) FROM table_28693349_2 WHERE player = "Charles Pearman" |
What was the title of series number 56? | CREATE TABLE table_2468961_4 (title VARCHAR, no_in_series VARCHAR) | SELECT title FROM table_2468961_4 WHERE no_in_series = 56 |
When was the Hon Ian Causley first elected? | CREATE TABLE table_name_66 (first_elected VARCHAR, member VARCHAR) | SELECT first_elected FROM table_name_66 WHERE member = "hon ian causley" |
What party was Dewey Short associated with? | CREATE TABLE table_1342198_25 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342198_25 WHERE incumbent = "Dewey Short" |
What is the average points on November 6? | CREATE TABLE table_name_8 (points INTEGER, november VARCHAR) | SELECT AVG(points) FROM table_name_8 WHERE november = 6 |
Which player won in 1993? | CREATE TABLE table_name_21 (player VARCHAR, year_s__won VARCHAR) | SELECT player FROM table_name_21 WHERE year_s__won = "1993" |
What is the average number of goals for entries with more than 12 losses, more than 10 wins, more than 3 draws, and fewer than 29 points? | CREATE TABLE table_name_99 (goals_for INTEGER, draws VARCHAR, points VARCHAR, losses VARCHAR, wins VARCHAR) | SELECT AVG(goals_for) FROM table_name_99 WHERE losses > 12 AND wins > 10 AND points < 29 AND draws > 3 |
How many settlements are named ђурђин (croatian: đurđin)? | CREATE TABLE table_2562572_26 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT COUNT(settlement) FROM table_2562572_26 WHERE cyrillic_name_other_names = "Ђурђин (Croatian: Đurđin)" |
Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio. | CREATE TABLE table_name_53 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR) | SELECT website FROM table_name_53 WHERE city_of_license = "san antonio" AND webcast = "listen live" AND frequency = 680 |
What is the composition of the coin that was issued after 2008, had a mintage larger than 999, and was designed by Jody Broomfield? | CREATE TABLE table_name_76 (composition VARCHAR, year VARCHAR, mintage VARCHAR, artist VARCHAR) | SELECT composition FROM table_name_76 WHERE mintage > 999 AND artist = "jody broomfield" AND year > 2008 |
What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa? | CREATE TABLE table_name_95 (year INTEGER, state VARCHAR, name VARCHAR) | SELECT SUM(year) FROM table_name_95 WHERE state = "orissa" AND name = "prof. priyambada mohanty hejmadi" |
List the number of assists for the DF. | CREATE TABLE table_28068645_8 (total INTEGER, position VARCHAR) | SELECT MAX(total) FROM table_28068645_8 WHERE position = "DF" |
what was the name of the episode that got 3.3 (millions) of u.s viewers? | CREATE TABLE table_21313327_1 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_21313327_1 WHERE us_viewers__millions_ = "3.3" |
What is the Date of the Tournament with a Winning score of −9 (65-71-68-67=271)? | CREATE TABLE table_name_55 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_55 WHERE winning_score = −9(65 - 71 - 68 - 67 = 271) |
Total frequency with ERP W of 62? | CREATE TABLE table_name_40 (frequency_mhz VARCHAR, erp_w VARCHAR) | SELECT COUNT(frequency_mhz) FROM table_name_40 WHERE erp_w = "62" |
The episode which originally aired on December 17, 2004 was written by whom? | CREATE TABLE table_228973_11 (written_by VARCHAR, original_air_date VARCHAR) | SELECT written_by FROM table_228973_11 WHERE original_air_date = "December 17, 2004" |
What is the batting style of the person who has a right arm medium pace bowling style and a birth date of 10 February 1910 (aged 29)? | CREATE TABLE table_name_75 (batting_style VARCHAR, bowling_style VARCHAR, birth_date VARCHAR) | SELECT batting_style FROM table_name_75 WHERE bowling_style = "right arm medium pace" AND birth_date = "10 february 1910 (aged 29)" |
What is the total number on roll for Shelly Park school? | CREATE TABLE table_name_7 (roll VARCHAR, name VARCHAR) | SELECT COUNT(roll) FROM table_name_7 WHERE name = "shelly park school" |
What round had a home of FC augsburg with the result of 3-0? | CREATE TABLE table_name_9 (round VARCHAR, home VARCHAR, result VARCHAR) | SELECT round FROM table_name_9 WHERE home = "fc augsburg" AND result = "3-0" |
On what date was the total 60–77? | CREATE TABLE table_name_88 (date VARCHAR, total VARCHAR) | SELECT date FROM table_name_88 WHERE total = "60–77" |
What is the final score of the game home team Bolton Wanderers played? | CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_66 WHERE home_team = "bolton wanderers" |
What is the place of player jim thorpe? | CREATE TABLE table_name_60 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_60 WHERE player = "jim thorpe" |
What is the time for 18 laps and 5 grids? | CREATE TABLE table_name_52 (time VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT time FROM table_name_52 WHERE laps = 18 AND grid = 5 |
what is the location when the school is muncie burris? | CREATE TABLE table_name_71 (location VARCHAR, school VARCHAR) | SELECT location FROM table_name_71 WHERE school = "muncie burris" |
What was the final score for the match where Hereford United was the home team? | CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_57 WHERE home_team = "hereford united" |
How many years have an Original title of иваново детство? | CREATE TABLE table_name_87 (year VARCHAR, original_title VARCHAR) | SELECT COUNT(year) FROM table_name_87 WHERE original_title = "иваново детство" |
What were the Lyrics (l) and Music (m) for the Artist who was in a Position higher than 3 and who earned 1st Place? | CREATE TABLE table_name_16 (lyrics__l____music__m_ VARCHAR, position VARCHAR, place VARCHAR) | SELECT lyrics__l____music__m_ FROM table_name_16 WHERE position > 3 AND place = "1st" |
what is the result of the competition in 2006 world cup qualification? | CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR) | SELECT result FROM table_name_49 WHERE competition = "2006 world cup qualification" |
What is the Highest Points for Team Adet where the Draw is less than 6? | CREATE TABLE table_name_85 (points INTEGER, team VARCHAR, draw VARCHAR) | SELECT MAX(points) FROM table_name_85 WHERE team = "adet" AND draw < 6 |
Which opponent has September 14, 2003 as the date? | CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_14 WHERE date = "september 14, 2003" |
What is the Trofeo Fast Team with a point classification of Silvio Martinello and stage 6? | CREATE TABLE table_name_67 (trofeo_fast_team VARCHAR, points_classification VARCHAR, stage VARCHAR) | SELECT trofeo_fast_team FROM table_name_67 WHERE points_classification = "silvio martinello" AND stage = "6" |
What is the Unanimous of the Minnesota Southern California School? | CREATE TABLE table_name_93 (unanimous VARCHAR, school VARCHAR) | SELECT unanimous FROM table_name_93 WHERE school = "minnesota southern california" |
What position does the player play with an overall of 304? | CREATE TABLE table_name_76 (position VARCHAR, overall VARCHAR) | SELECT position FROM table_name_76 WHERE overall = 304 |
At what stadium was the game with the final score of 9-23 played? | CREATE TABLE table_name_55 (stadium VARCHAR, final_score VARCHAR) | SELECT stadium FROM table_name_55 WHERE final_score = "9-23" |
reginald hudlin directed how many written by. | CREATE TABLE table_21994729_3 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_21994729_3 WHERE directed_by = "Reginald Hudlin" |
what is the country when the score is 71-65-69=205? | CREATE TABLE table_name_47 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_47 WHERE score = 71 - 65 - 69 = 205 |