text stringlengths 114 1.06k |
|---|
### question: What is the average rank of a nation that had 219,721 in 2012? ### answer: SELECT AVG(rank) FROM table_name_6 WHERE 2012 = 219 OFFSET 721 ### context: CREATE TABLE table_name_6 (rank INTEGER) |
### question: In what Round was Pick 138? ### answer: SELECT SUM(round) FROM table_name_93 WHERE pick = 138 ### context: CREATE TABLE table_name_93 (round INTEGER, pick VARCHAR) |
### question: What is John Crawford's Nationality? ### answer: SELECT nationality FROM table_name_47 WHERE player = "john crawford" ### context: CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR) |
### question: What is the ERP W for K236AM? ### answer: SELECT erp_w FROM table_name_22 WHERE call_sign = "k236am" ### context: CREATE TABLE table_name_22 (erp_w VARCHAR, call_sign VARCHAR) |
### question: What is the average frequency in MHz for stations with an ERP W of 170? ### answer: SELECT AVG(frequency_mhz) FROM table_name_54 WHERE erp_w = 170 ### context: CREATE TABLE table_name_54 (frequency_mhz INTEGER, erp_w VARCHAR) |
### question: What is K236AM's lowest frequency in MHz? ### answer: SELECT MIN(frequency_mhz) FROM table_name_51 WHERE call_sign = "k236am" ### context: CREATE TABLE table_name_51 (frequency_mhz INTEGER, call_sign VARCHAR) |
### question: What class is assigned to frequencies lower than 90.5? ### answer: SELECT class FROM table_name_49 WHERE frequency_mhz < 90.5 ### context: CREATE TABLE table_name_49 (class VARCHAR, frequency_mhz INTEGER) |
### question: What class is assigned to frequencies larger than 89.3 with an ERP W of 250? ### answer: SELECT class FROM table_name_60 WHERE frequency_mhz > 89.3 AND erp_w = 250 ### context: CREATE TABLE table_name_60 (class VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) |
### question: What did st. louis score at home? ### answer: SELECT score FROM table_name_11 WHERE home = "st. louis" ### context: CREATE TABLE table_name_11 (score VARCHAR, home VARCHAR) |
### question: What was the result of the game on week 1? ### answer: SELECT result FROM table_name_4 WHERE week = 1 ### context: CREATE TABLE table_name_4 (result VARCHAR, week VARCHAR) |
### question: What is the record of the game on week 13? ### answer: SELECT record FROM table_name_34 WHERE week = 13 ### context: CREATE TABLE table_name_34 (record VARCHAR, week VARCHAR) |
### question: Texas Rate smaller than 32.9, and a U.S. Rate larger than 5.6 is what highest killeen rate? ### answer: SELECT MAX(killeen_rate) FROM table_name_89 WHERE texas_rate < 32.9 AND us_rate > 5.6 ### context: CREATE TABLE table_name_89 (killeen_rate INTEGER, texas_rate VARCHAR, us_rate VARCHAR) |
### question: 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? ### answer: SELECT SUM(killeen_rate) FROM table_name_8 WHERE reported_offenses > 216 AND us_rate < 3274 AND texas_rate < 2688.9 AND crime = "viole... |
### question: Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses? ### answer: SELECT MIN(reported_offenses) FROM table_name_96 WHERE killeen_rate = 511.6 AND texas_rate < 314.4 ### context: CREATE TABLE table_name_96 (reported_offenses INTEGER, killeen_rate VARCHAR, texas_rate VA... |
### question: Tell me the type for category of mouse and attribute of ondblclick ### answer: SELECT type FROM table_name_49 WHERE category = "mouse" AND attribute = "ondblclick" ### context: CREATE TABLE table_name_49 (type VARCHAR, category VARCHAR, attribute VARCHAR) |
### question: Name the type with cancelable of no and attribute of ondragend ### answer: SELECT type FROM table_name_79 WHERE cancelable = "no" AND attribute = "ondragend" ### context: CREATE TABLE table_name_79 (type VARCHAR, cancelable VARCHAR, attribute VARCHAR) |
### question: Name the cancelable for onmouseover ### answer: SELECT cancelable FROM table_name_25 WHERE attribute = "onmouseover" ### context: CREATE TABLE table_name_25 (cancelable VARCHAR, attribute VARCHAR) |
### question: Name the bubbles for onscroll ### answer: SELECT bubbles FROM table_name_12 WHERE attribute = "onscroll" ### context: CREATE TABLE table_name_12 (bubbles VARCHAR, attribute VARCHAR) |
### question: Name the attribute for mutation and domcharacterdatamodified ### answer: SELECT attribute FROM table_name_81 WHERE category = "mutation" AND type = "domcharacterdatamodified" ### context: CREATE TABLE table_name_81 (attribute VARCHAR, category VARCHAR, type VARCHAR) |
### question: Who had high rebounds on May 1? ### answer: SELECT high_rebounds FROM table_name_15 WHERE date = "may 1" ### context: CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR) |
### question: What location attendance had a score of l 92β116? ### answer: SELECT location_attendance FROM table_name_30 WHERE score = "l 92β116" ### context: CREATE TABLE table_name_30 (location_attendance VARCHAR, score VARCHAR) |
### question: What is the gold medal count that has a silver medal count less than 0? ### answer: SELECT MAX(gold) FROM table_name_64 WHERE silver < 0 ### context: CREATE TABLE table_name_64 (gold INTEGER, silver INTEGER) |
### question: What is the average number of students for schools with a pupil to teacher ratio of 25.1? ### answer: SELECT AVG(students) FROM table_name_25 WHERE pupil_teacher_ratio = 25.1 ### context: CREATE TABLE table_name_25 (students INTEGER, pupil_teacher_ratio VARCHAR) |
### question: What is the lowest pupil to teacher ratio for Saratoga schools with smaller than 1213 students? ### answer: SELECT MIN(pupil_teacher_ratio) FROM table_name_13 WHERE city = "saratoga" AND students < 1213 ### context: CREATE TABLE table_name_13 (pupil_teacher_ratio INTEGER, city VARCHAR, students VARCHAR) |
### question: What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25? ### answer: SELECT MAX(students) FROM table_name_13 WHERE city = "campbell" AND pupil_teacher_ratio > 25 ### context: CREATE TABLE table_name_13 (students INTEGER, city VARCHAR, pupil_teacher_ratio VARCHAR... |
### question: Name the most rank for wins outdoor larger than 1 and wins indoor less than 0 ### answer: SELECT MAX(rank) FROM table_name_87 WHERE wins__outdoor_ > 1 AND wins__indoor_ < 0 ### context: CREATE TABLE table_name_87 (rank INTEGER, wins__outdoor_ VARCHAR, wins__indoor_ VARCHAR) |
### question: Name the most rank for uk and wins more than 5 ### answer: SELECT MAX(rank) FROM table_name_1 WHERE country = "uk" AND wins__indoor_ > 5 ### context: CREATE TABLE table_name_1 (rank INTEGER, country VARCHAR, wins__indoor_ VARCHAR) |
### question: Name the average wins outdoor with rank more than 4 and wins less than 3 with outdoor wins more than 0 ### answer: SELECT AVG(wins__outdoor_) FROM table_name_61 WHERE rank > 4 AND wins__total_ < 3 AND wins__indoor_ > 0 ### context: CREATE TABLE table_name_61 (wins__outdoor_ INTEGER, wins__indoor_ VARCHAR,... |
### question: Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7 ### answer: SELECT MAX(wins__total_) FROM table_name_68 WHERE wins__indoor_ = 0 AND wins__outdoor_ = 1 AND rank < 7 ### context: CREATE TABLE table_name_68 (wins__total_ INTEGER, rank VARCHAR, wins__indoor_ VARCHAR,... |
### question: What was the frame size in 08/87? ### answer: SELECT framed_size FROM table_name_22 WHERE date_completed = "08/87" ### context: CREATE TABLE table_name_22 (framed_size VARCHAR, date_completed VARCHAR) |
### question: What was the print name in 07/87? ### answer: SELECT print_name FROM table_name_39 WHERE date_completed = "07/87" ### context: CREATE TABLE table_name_39 (print_name VARCHAR, date_completed VARCHAR) |
### question: What is the frame size that was nicknamed Grand Central? ### answer: SELECT framed_size FROM table_name_10 WHERE nickname = "grand central" ### context: CREATE TABLE table_name_10 (framed_size VARCHAR, nickname VARCHAR) |
### question: When was the Little Tavern completed? ### answer: SELECT date_completed FROM table_name_55 WHERE nickname = "little tavern" ### context: CREATE TABLE table_name_55 (date_completed VARCHAR, nickname VARCHAR) |
### question: Which 1990-1991 is the average one that has Played of 38, and Points of 40? ### answer: SELECT AVG(1990 AS _1991) FROM table_name_26 WHERE played = 38 AND points = 40 ### context: CREATE TABLE table_name_26 (played VARCHAR, points VARCHAR) |
### question: Which College/Junior/Club Team has a Nationality of Canada and Jeff brown? ### answer: SELECT college_junior_club_team__league_ FROM table_name_84 WHERE nationality = "canada" AND player = "jeff brown" ### context: CREATE TABLE table_name_84 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR... |
### question: Which Player has a Hc Cska Moscow (Russia)? ### answer: SELECT player FROM table_name_81 WHERE college_junior_club_team__league_ = "hc cska moscow (russia)" ### context: CREATE TABLE table_name_81 (player VARCHAR, college_junior_club_team__league_ VARCHAR) |
### question: What is Nationality of daniel goneau? ### answer: SELECT nationality FROM table_name_11 WHERE player = "daniel goneau" ### context: CREATE TABLE table_name_11 (nationality VARCHAR, player VARCHAR) |
### question: What points have 500cc as a class, and nsr500 as a machine? ### answer: SELECT points FROM table_name_12 WHERE class = "500cc" AND machine = "nsr500" ### context: CREATE TABLE table_name_12 (points VARCHAR, class VARCHAR, machine VARCHAR) |
### question: How many years have 78 for points? ### answer: SELECT COUNT(year) FROM table_name_24 WHERE points = 78 ### context: CREATE TABLE table_name_24 (year VARCHAR, points VARCHAR) |
### question: What class has nsr250 as the machine, with points greater than 97? ### answer: SELECT class FROM table_name_45 WHERE machine = "nsr250" AND points > 97 ### context: CREATE TABLE table_name_45 (class VARCHAR, machine VARCHAR, points VARCHAR) |
### question: What is the lowest year that have wins greater than 0? ### answer: SELECT MIN(year) FROM table_name_24 WHERE wins > 0 ### context: CREATE TABLE table_name_24 (year INTEGER, wins INTEGER) |
### question: What are the highest points that have a year less than 1992, with wins less than 0? ### answer: SELECT MAX(points) FROM table_name_49 WHERE year < 1992 AND wins < 0 ### context: CREATE TABLE table_name_49 (points INTEGER, year VARCHAR, wins VARCHAR) |
### question: What was the lowest attendance at a game against the St. Louis Cardinals? ### answer: SELECT MIN(attendance) FROM table_name_91 WHERE opponent = "st. louis cardinals" ### context: CREATE TABLE table_name_91 (attendance INTEGER, opponent VARCHAR) |
### question: What district is the parish Milburn in? ### answer: SELECT district FROM table_name_85 WHERE name = "milburn" ### context: CREATE TABLE table_name_85 (district VARCHAR, name VARCHAR) |
### question: What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District? ### answer: SELECT COUNT(population) FROM table_name_5 WHERE former_local_authority = "cockermouth rural district" AND name = "plumbland" ### context: CREATE TABLE table_name_5 (population VAR... |
### question: What is the district for the parish, Brough? ### answer: SELECT district FROM table_name_58 WHERE name = "brough" ### context: CREATE TABLE table_name_58 (district VARCHAR, name VARCHAR) |
### question: What year featured lola motorsport as an entrant with over 0 points? ### answer: SELECT AVG(year) FROM table_name_44 WHERE entrant = "lola motorsport" AND points > 0 ### context: CREATE TABLE table_name_44 (year INTEGER, entrant VARCHAR, points VARCHAR) |
### question: When is the earliest year that there's a judd engine? ### answer: SELECT MIN(year) FROM table_name_40 WHERE engine = "judd" ### context: CREATE TABLE table_name_40 (year INTEGER, engine VARCHAR) |
### question: What chassis is used in 1989 with a cosworth engine? ### answer: SELECT chassis FROM table_name_2 WHERE year = 1989 AND engine = "cosworth" ### context: CREATE TABLE table_name_2 (chassis VARCHAR, year VARCHAR, engine VARCHAR) |
### question: Where was something built earlier than 1858? ### answer: SELECT where_built FROM table_name_79 WHERE year_built < 1858 ### context: CREATE TABLE table_name_79 (where_built VARCHAR, year_built INTEGER) |
### question: What was built in 1857? ### answer: SELECT name FROM table_name_89 WHERE year_built = 1857 ### context: CREATE TABLE table_name_89 (name VARCHAR, year_built VARCHAR) |
### question: Who were the initial owners of Wasco in 1858? ### answer: SELECT initial_owners FROM table_name_57 WHERE year_built = 1858 AND name = "wasco" ### context: CREATE TABLE table_name_57 (initial_owners VARCHAR, year_built VARCHAR, name VARCHAR) |
### question: What was the type of boat built in Port Blakeley ### answer: SELECT type FROM table_name_31 WHERE where_built = "port blakeley" ### context: CREATE TABLE table_name_31 (type VARCHAR, where_built VARCHAR) |
### question: What is the date of the game at Arrowhead Stadium? ### answer: SELECT date FROM table_name_33 WHERE location = "arrowhead stadium" ### context: CREATE TABLE table_name_33 (date VARCHAR, location VARCHAR) |
### question: Who is the opponent of the game after week 4 on Sun. Nov. 17? ### answer: SELECT opponent FROM table_name_70 WHERE week > 4 AND date = "sun. nov. 17" ### context: CREATE TABLE table_name_70 (opponent VARCHAR, week VARCHAR, date VARCHAR) |
### question: What's the median family income with a household income of $25,583? ### answer: SELECT median_family_income FROM table_name_72 WHERE median_household_income = "$25,583" ### context: CREATE TABLE table_name_72 (median_family_income VARCHAR, median_household_income VARCHAR) |
### question: What's the $51,914 median household income per capita? ### answer: SELECT per_capita_income FROM table_name_34 WHERE median_household_income = "$51,914" ### context: CREATE TABLE table_name_34 (per_capita_income VARCHAR, median_household_income VARCHAR) |
### question: What was the winning score when Steve Stricker was runner-up? ### answer: SELECT winning_score FROM table_name_1 WHERE runner_s__up = "steve stricker" ### context: CREATE TABLE table_name_1 (winning_score VARCHAR, runner_s__up VARCHAR) |
### question: What was the margin of victory when the winning score was β14 (63-67-73-67=270)? ### answer: SELECT margin_of_victory FROM table_name_2 WHERE winning_score = β14(63 - 67 - 73 - 67 = 270) ### context: CREATE TABLE table_name_2 (margin_of_victory VARCHAR, winning_score VARCHAR) |
### question: Who was the runnerup when the margin of victory was 1 stroke on jan 30, 2000? ### answer: SELECT runner_s__up FROM table_name_64 WHERE margin_of_victory = "1 stroke" AND date = "jan 30, 2000" ### context: CREATE TABLE table_name_64 (runner_s__up VARCHAR, margin_of_victory VARCHAR, date VARCHAR) |
### question: What was the margin of victory when the winning score was β12 (66-67-64-71=268)? ### answer: SELECT margin_of_victory FROM table_name_67 WHERE winning_score = β12(66 - 67 - 64 - 71 = 268) ### context: CREATE TABLE table_name_67 (margin_of_victory VARCHAR, winning_score VARCHAR) |
### question: What day was the margin of victory 1 stroke when the tournament was colonial national invitation? ### answer: SELECT date FROM table_name_5 WHERE margin_of_victory = "1 stroke" AND tournament = "colonial national invitation" ### context: CREATE TABLE table_name_5 (date VARCHAR, margin_of_victory VARCHAR, ... |
### question: What was the winning score for runnerup Greg Norman ### answer: SELECT winning_score FROM table_name_5 WHERE runner_s__up = "greg norman" ### context: CREATE TABLE table_name_5 (winning_score VARCHAR, runner_s__up VARCHAR) |
### question: Which Builder has a Pennant number of Q149? ### answer: SELECT builder FROM table_name_63 WHERE pennant_number = "q149" ### context: CREATE TABLE table_name_63 (builder VARCHAR, pennant_number VARCHAR) |
### question: On what date was the ship with a Pennant number of Q144 commissioned? ### answer: SELECT commissioned FROM table_name_8 WHERE pennant_number = "q144" ### context: CREATE TABLE table_name_8 (commissioned VARCHAR, pennant_number VARCHAR) |
### question: How many ships are named Monge? ### answer: SELECT COUNT(ordered) FROM table_name_10 WHERE name = "monge" ### context: CREATE TABLE table_name_10 (ordered VARCHAR, name VARCHAR) |
### question: What launched has mariner 4 as the spacecraft? ### answer: SELECT launched FROM table_name_17 WHERE spacecraft = "mariner 4" ### context: CREATE TABLE table_name_17 (launched VARCHAR, spacecraft VARCHAR) |
### question: What launched has 158 days (5 months, 8 days) as the time elapsed? ### answer: SELECT launched FROM table_name_91 WHERE time_elapsed = "158 days (5 months, 8 days)" ### context: CREATE TABLE table_name_91 (launched VARCHAR, time_elapsed VARCHAR) |
### question: When was the song by Andy Gibb issued? ### answer: SELECT issue_date_s_ FROM table_name_44 WHERE artist = "andy gibb" ### context: CREATE TABLE table_name_44 (issue_date_s_ VARCHAR, artist VARCHAR) |
### question: Which Round has a College of stanford, and an Overall smaller than 8? ### answer: SELECT AVG(round) FROM table_name_57 WHERE college = "stanford" AND overall < 8 ### context: CREATE TABLE table_name_57 (round INTEGER, college VARCHAR, overall VARCHAR) |
### question: How many Picks have a College of tennessee, and an Overall smaller than 270? ### answer: SELECT SUM(pick__number) FROM table_name_59 WHERE college = "tennessee" AND overall < 270 ### context: CREATE TABLE table_name_59 (pick__number INTEGER, college VARCHAR, overall VARCHAR) |
### question: Which Pick # is the lowest one that has a College of troy state, and a Name of reggie dwight, and an Overall smaller than 217? ### answer: SELECT MIN(pick__number) FROM table_name_92 WHERE college = "troy state" AND name = "reggie dwight" AND overall < 217 ### context: CREATE TABLE table_name_92 (pick__nu... |
### question: What's the smallest amount of earnings when the wins are less than 72 and the rank is more than 3? ### answer: SELECT MIN(earnings___) AS $__ FROM table_name_87 WHERE wins < 72 AND rank > 3 ### context: CREATE TABLE table_name_87 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR) |
### question: What's the smallest amount of earnings when there are more than 18 wins and the rank is 2? ### answer: SELECT MIN(earnings___) AS $__ FROM table_name_86 WHERE wins > 18 AND rank = 2 ### context: CREATE TABLE table_name_86 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR) |
### question: What is the lowest number of losses for a team with more than 0 wins? ### answer: SELECT MIN(losses) FROM table_name_53 WHERE wins > 0 ### context: CREATE TABLE table_name_53 (losses INTEGER, wins INTEGER) |
### question: What is the average number of losses for teams with fewer than 0 wins? ### answer: SELECT AVG(losses) FROM table_name_23 WHERE wins < 0 ### context: CREATE TABLE table_name_23 (losses INTEGER, wins INTEGER) |
### question: What is the average number of wins for Runcorn Highfield with more than 0 draws? ### answer: SELECT AVG(wins) FROM table_name_55 WHERE team = "runcorn highfield" AND draws > 0 ### context: CREATE TABLE table_name_55 (wins INTEGER, team VARCHAR, draws VARCHAR) |
### question: What is the lowest number of losses for Nottingham City with fewer than 0 wins? ### answer: SELECT MIN(losses) FROM table_name_28 WHERE team = "nottingham city" AND wins < 0 ### context: CREATE TABLE table_name_28 (losses INTEGER, team VARCHAR, wins VARCHAR) |
### question: What is the weight of the player from the Philadelphia 76ers? ### answer: SELECT COUNT(weight) FROM table_name_53 WHERE team = "philadelphia 76ers" ### context: CREATE TABLE table_name_53 (weight VARCHAR, team VARCHAR) |
### question: What is the height of the player, Larry Hughes? ### answer: SELECT height FROM table_name_71 WHERE player = "larry hughes" ### context: CREATE TABLE table_name_71 (height VARCHAR, player VARCHAR) |
### question: What player was moved to Blackpool? ### answer: SELECT player FROM table_name_41 WHERE to_club = "blackpool" ### context: CREATE TABLE table_name_41 (player VARCHAR, to_club VARCHAR) |
### question: A player was moved to celtic had an end of what date? ### answer: SELECT end_date FROM table_name_99 WHERE to_club = "celtic" ### context: CREATE TABLE table_name_99 (end_date VARCHAR, to_club VARCHAR) |
### question: Which Game is the average one that has a February larger than 20, and a Record of 41β17β4, and Points smaller than 86? ### answer: SELECT AVG(game) FROM table_name_23 WHERE february > 20 AND record = "41β17β4" AND points < 86 ### context: CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, february ... |
### question: what country hosted david toms ### answer: SELECT country FROM table_name_94 WHERE player = "david toms" ### context: CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR) |
### question: What was the score for game 18? ### answer: SELECT score FROM table_name_87 WHERE game = 18 ### context: CREATE TABLE table_name_87 (score VARCHAR, game VARCHAR) |
### question: What is the kickoff time for the game that was at Ralph Wilson Stadium? ### answer: SELECT kickoff___et__ FROM table_name_92 WHERE game_site = "ralph wilson stadium" ### context: CREATE TABLE table_name_92 (kickoff___et__ VARCHAR, game_site VARCHAR) |
### question: What is the record for the game against the New England Patriots with a recap? ### answer: SELECT record FROM table_name_90 WHERE nfl_recap = "recap" AND opponent = "new england patriots" ### context: CREATE TABLE table_name_90 (record VARCHAR, nfl_recap VARCHAR, opponent VARCHAR) |
### question: What is the result of the game on week 11? ### answer: SELECT result FROM table_name_52 WHERE week = 11 ### context: CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR) |
### question: Who was the visitor that led to a 3-0-2 record? ### answer: SELECT visitor FROM table_name_15 WHERE record = "3-0-2" ### context: CREATE TABLE table_name_15 (visitor VARCHAR, record VARCHAR) |
### question: What is the original title of the Gypsy Magic film title used in nomination? ### answer: SELECT original_title FROM table_name_67 WHERE film_title_used_in_nomination = "gypsy magic" ### context: CREATE TABLE table_name_67 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) |
### question: Name the builder for number 3 ### answer: SELECT builder FROM table_name_64 WHERE number = 3 ### context: CREATE TABLE table_name_64 (builder VARCHAR, number VARCHAR) |
### question: Name the date with works number less than 1673 and number less than 3 ### answer: SELECT date FROM table_name_42 WHERE works_number < 1673 AND number < 3 ### context: CREATE TABLE table_name_42 (date VARCHAR, works_number VARCHAR, number VARCHAR) |
### question: Name the builder for 4/1906 and works number more than 199 ### answer: SELECT builder FROM table_name_90 WHERE works_number > 199 AND date = "4/1906" ### context: CREATE TABLE table_name_90 (builder VARCHAR, works_number VARCHAR, date VARCHAR) |
### question: What was the largest number of people in attendance of the game with a W 14-3 result after week 10? ### answer: SELECT MAX(attendance) FROM table_name_10 WHERE result = "w 14-3" AND week > 10 ### context: CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, week VARCHAR) |
### question: What is the percentage for Zares on May 21β22? ### answer: SELECT zares FROM table_name_87 WHERE date = "may 21β22" ### context: CREATE TABLE table_name_87 (zares VARCHAR, date VARCHAR) |
### question: What is the source for 7% DeSUS? ### answer: SELECT source FROM table_name_37 WHERE desus = "7%" ### context: CREATE TABLE table_name_37 (source VARCHAR, desus VARCHAR) |
### question: What is the source for Zares at 8.6%? ### answer: SELECT source FROM table_name_12 WHERE zares = "8.6%" ### context: CREATE TABLE table_name_12 (source VARCHAR, zares VARCHAR) |
### question: What is the source corresponding to a date of May 25β27? ### answer: SELECT source FROM table_name_7 WHERE date = "may 25β27" ### context: CREATE TABLE table_name_7 (source VARCHAR, date VARCHAR) |
### question: What song is done by Terence Trent D'Arby? ### answer: SELECT song FROM table_name_24 WHERE artist = "terence trent d'arby" ### context: CREATE TABLE table_name_24 (song VARCHAR, artist VARCHAR) |
### question: What was the Result on October 27, 2002? ### answer: SELECT result FROM table_name_66 WHERE date = "october 27, 2002" ### context: CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.