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