answer stringlengths 32 484 | context stringlengths 27 489 | question stringlengths 12 244 |
|---|---|---|
SELECT record FROM table_name_41 WHERE date = "april 16" | CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR) | What was the record on April 16? |
SELECT record FROM table_name_53 WHERE date = "april 8" | CREATE TABLE table_name_53 (record VARCHAR, date VARCHAR) | What was the record on April 8? |
SELECT date FROM table_name_12 WHERE visitor = "chicago black hawks" AND record = "1-1" | CREATE TABLE table_name_12 (date VARCHAR, visitor VARCHAR, record VARCHAR) | What date was the visitor chicago black hawks, and a Record of 1-1? |
SELECT play_by_play FROM table_name_80 WHERE studio_host = "jimmy myers" | CREATE TABLE table_name_80 (play_by_play VARCHAR, studio_host VARCHAR) | Studio host of jimmy myers had what play by play? |
SELECT studio_host FROM table_name_47 WHERE play_by_play = "sean grande" AND year = "2004-05" | CREATE TABLE table_name_47 (studio_host VARCHAR, play_by_play VARCHAR, year VARCHAR) | Play-by-play of sean grande, and a Year of 2004-05 had what studio host? |
SELECT studio_host FROM table_name_10 WHERE year = "2006-07" | CREATE TABLE table_name_10 (studio_host VARCHAR, year VARCHAR) | Year of 2006-07 had what studio host? |
SELECT studio_host FROM table_name_1 WHERE play_by_play = "sean grande" AND flagship_station = "wrko" AND year = "2005-06" | CREATE TABLE table_name_1 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR) | Play-by-play of sean grande, and a Flagship Station of wrko, and a Year of 2005-06 had what studio host? |
SELECT play_by_play FROM table_name_38 WHERE studio_host = "john ryder" AND year = "2007-08" | CREATE TABLE table_name_38 (play_by_play VARCHAR, studio_host VARCHAR, year VARCHAR) | Studio host of john ryder, and a Year of 2007-08 had what play by play? |
SELECT color_commentator_s_ FROM table_name_99 WHERE play_by_play = "sean grande" AND flagship_station = "wrko" | CREATE TABLE table_name_99 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR) | Play-by-play of sean grande, and a Flagship Station of wrko involved what color commentator? |
SELECT 2011 FROM table_name_95 WHERE country = "united states" | CREATE TABLE table_name_95 (country VARCHAR) | What was the value in 2011 for United States? |
SELECT 2011 FROM table_name_45 WHERE 2009 = "82,003" | CREATE TABLE table_name_45 (Id VARCHAR) | What was the value in 2011 when value in 2009 was 82,003? |
SELECT country FROM table_name_68 WHERE rank = "1" | CREATE TABLE table_name_68 (country VARCHAR, rank VARCHAR) | What country was rank 1? |
SELECT country FROM table_name_43 WHERE rank = "4" | CREATE TABLE table_name_43 (country VARCHAR, rank VARCHAR) | What country was rank 4? |
SELECT hometown FROM table_name_79 WHERE games_started = "4" | CREATE TABLE table_name_79 (hometown VARCHAR, games_started VARCHAR) | Games started of 4 is in what hometown? |
SELECT previous_experience FROM table_name_41 WHERE weight > 180 AND player = "charles b. carter" | CREATE TABLE table_name_41 (previous_experience VARCHAR, weight VARCHAR, player VARCHAR) | Weight larger than 180, and a Player of charles b. carter is what previous experience? |
SELECT position FROM table_name_24 WHERE player = "herbert s. graver" | CREATE TABLE table_name_24 (position VARCHAR, player VARCHAR) | Player of herbert s. graver has what position? |
SELECT MAX(weight) FROM table_name_33 WHERE position = "fullback" | CREATE TABLE table_name_33 (weight INTEGER, position VARCHAR) | Position of fullback has what highest weight? |
SELECT callsign FROM table_name_9 WHERE on_air_id = "7bu" | CREATE TABLE table_name_9 (callsign VARCHAR, on_air_id VARCHAR) | what is the callsign whtat uses 7bu? |
SELECT MAX(rank) FROM table_name_65 WHERE player = "ben crenshaw" AND wins > 14 | CREATE TABLE table_name_65 (rank INTEGER, player VARCHAR, wins VARCHAR) | What is the highest rank for ben crenshaw after winning more than 14 times? |
SELECT MIN(wins) FROM table_name_87 WHERE player = "ben crenshaw" | CREATE TABLE table_name_87 (wins INTEGER, player VARCHAR) | What is the lowest number of wins for ben crenshaw? |
SELECT player FROM table_name_83 WHERE wins = 14 | CREATE TABLE table_name_83 (player VARCHAR, wins VARCHAR) | What player has 14 wins? |
SELECT 1995 FROM table_name_15 WHERE 1993 = "atp masters series" | CREATE TABLE table_name_15 (Id VARCHAR) | What is the 1995 value with of the 1993 ATP Masters Series? |
SELECT 1993 FROM table_name_49 WHERE 1997 = "grand slams" | CREATE TABLE table_name_49 (Id VARCHAR) | What is the 1993 value of the 1997 Grand Slams? |
SELECT 1998 FROM table_name_4 WHERE 1995 = "a" AND 1993 = "a" AND 1996 = "1r" | CREATE TABLE table_name_4 (Id VARCHAR) | What is the 1998 value with A in 1995, A in 1993, and 1r in 1996? |
SELECT MAX(games) FROM table_name_18 WHERE team = "czechoslovakia" AND drawn > 0 | CREATE TABLE table_name_18 (games INTEGER, team VARCHAR, drawn VARCHAR) | How many games does team Czechoslovakia have that had a drawn greater than 0? |
SELECT Prime AS minister FROM table_name_68 WHERE term_in_office = "344 days" | CREATE TABLE table_name_68 (Prime VARCHAR, term_in_office VARCHAR) | Which Prime Minister's served a term of 344 days? |
SELECT minister FROM table_name_46 WHERE term_in_office = "307 days" | CREATE TABLE table_name_46 (minister VARCHAR, term_in_office VARCHAR) | Who was the Minister that served for 307 days? |
SELECT ceremony FROM table_name_35 WHERE work = "big titty milfs" | CREATE TABLE table_name_35 (ceremony VARCHAR, work VARCHAR) | what ceremony did big titty milfs work in |
SELECT result FROM table_name_52 WHERE date = "28 february 2001" | CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR) | What was the end result for 28 February 2001? |
SELECT SUM(yards) FROM table_name_62 WHERE player = "davin meggett" AND rec > 9 | CREATE TABLE table_name_62 (yards INTEGER, player VARCHAR, rec VARCHAR) | How many yards did Davin Meggett have with more than 9 Rec.? |
SELECT COUNT(avg) FROM table_name_89 WHERE yards > 20 AND player = "darrius heyward-bey" AND long < 80 | CREATE TABLE table_name_89 (avg VARCHAR, long VARCHAR, yards VARCHAR, player VARCHAR) | What is Darrius Heyward-Bey's average with more than 20 yards and less than 80 long? |
SELECT COUNT(points) FROM table_name_77 WHERE time_retired = "+10.131 secs" | CREATE TABLE table_name_77 (points VARCHAR, time_retired VARCHAR) | How many points are associated with a Time/Retired of +10.131 secs? |
SELECT SUM(grid) FROM table_name_80 WHERE time_retired = "+8.180 secs" AND laps < 47 | CREATE TABLE table_name_80 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) | What is the grid associated witha Time/Retired of +8.180 secs, and under 47 laps? |
SELECT MAX(drawn) FROM table_name_81 WHERE points_for > 545 | CREATE TABLE table_name_81 (drawn INTEGER, points_for INTEGER) | What is the highest drawn for points over 545? |
SELECT AVG(lost) FROM table_name_32 WHERE points_for = 545 | CREATE TABLE table_name_32 (lost INTEGER, points_for VARCHAR) | What's the average loss when the points were 545? |
SELECT COUNT(lost) FROM table_name_66 WHERE order = "2nd" AND played > 13 | CREATE TABLE table_name_66 (lost VARCHAR, order VARCHAR, played VARCHAR) | How many games were lost when the order was 2nd and the play was more than 13 |
SELECT MIN(rank) FROM table_name_27 WHERE bronze = 2 AND gold > 0 AND nation = "ynys môn/anglesey" AND total > 8 | CREATE TABLE table_name_27 (rank INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR) | Name the least rank with bronze of 2, gold more than 0 and nation of ynys môn/anglesey with total more than 8 |
SELECT MIN(total) FROM table_name_54 WHERE rank < 7 AND gold > 16 AND bronze < 29 | CREATE TABLE table_name_54 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR) | Name the least total with rank less than 7, gold more than 16 and bronze less than 29 |
SELECT COUNT(total) FROM table_name_57 WHERE silver = 6 AND bronze > 5 AND gold < 4 | CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR) | Name the total number of total with silver of 6, bronze more than 5 and gold less than 4 |
SELECT score FROM table_name_1 WHERE game > 11 AND october = 30 | CREATE TABLE table_name_1 (score VARCHAR, game VARCHAR, october VARCHAR) | What score has a game greater than 11 on October 30? |
SELECT october FROM table_name_13 WHERE record = "0-2-2" | CREATE TABLE table_name_13 (october VARCHAR, record VARCHAR) | What October has 0-2-2 as the record? |
SELECT AVG(game) FROM table_name_17 WHERE opponent = "@ florida panthers" AND record = "0-1-2" AND october > 8 | CREATE TABLE table_name_17 (game INTEGER, october VARCHAR, opponent VARCHAR, record VARCHAR) | What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8? |
SELECT AVG(lost) FROM table_name_99 WHERE games = 64 AND champs < 0 | CREATE TABLE table_name_99 (lost INTEGER, games VARCHAR, champs VARCHAR) | Which Lost has Games of 64, and Champs smaller than 0? |
SELECT MIN(draw) FROM table_name_40 WHERE champs < 0 | CREATE TABLE table_name_40 (draw INTEGER, champs INTEGER) | Which Draw is the lowest one that has Champs smaller than 0? |
SELECT win_lose_percentage FROM table_name_92 WHERE champs > 0 AND draw > 3 | CREATE TABLE table_name_92 (win_lose_percentage VARCHAR, champs VARCHAR, draw VARCHAR) | Which Win/Lose Percentage has Champs larger than 0, and a Draw larger than 3? |
SELECT AVG(champs) FROM table_name_16 WHERE draw > 2 AND games < 60 | CREATE TABLE table_name_16 (champs INTEGER, draw VARCHAR, games VARCHAR) | Which Champs is the average one that has a Draw larger than 2, and Games smaller than 60? |
SELECT launched FROM table_name_55 WHERE name = "ushio dd-54" | CREATE TABLE table_name_55 (launched VARCHAR, name VARCHAR) | What is the launch date for the Ushio dd-54? |
SELECT name FROM table_name_77 WHERE kanji = "朧" | CREATE TABLE table_name_77 (name VARCHAR, kanji VARCHAR) | Which name has a Kanji of 朧? |
SELECT kanji FROM table_name_84 WHERE name = "ayanami dd-45" | CREATE TABLE table_name_84 (kanji VARCHAR, name VARCHAR) | What is the Kanji for the Ayanami dd-45? |
SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = "28:27" AND just__cents_ > 62.96 | CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR) | size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number? |
SELECT MAX(size__cents_) FROM table_name_26 WHERE size__steps_ = 15 AND just__cents_ > 435.08 | CREATE TABLE table_name_26 (size__cents_ INTEGER, size__steps_ VARCHAR, just__cents_ VARCHAR) | size (steps) of 15, and a just (cents) larger than 435.08 is what highest size (cents)? |
SELECT MAX(size__steps_) FROM table_name_38 WHERE just_ratio = "16:13" | CREATE TABLE table_name_38 (size__steps_ INTEGER, just_ratio VARCHAR) | ratio of 16:13 has how many highest size (steps)? |
SELECT AVG(size__cents_) FROM table_name_40 WHERE just_ratio = "15:14" AND just__cents_ > 119.44 | CREATE TABLE table_name_40 (size__cents_ INTEGER, just_ratio VARCHAR, just__cents_ VARCHAR) | ratio of 15:14, and a just (cents) larger than 119.44 is what average size (cents)? |
SELECT home FROM table_name_77 WHERE venue = "stadion pod vrmcem" | CREATE TABLE table_name_77 (home VARCHAR, venue VARCHAR) | Who was the home team for the match at Stadion pod Vrmcem? |
SELECT guest FROM table_name_76 WHERE score__first_match_ = "3:0 (0:2)" | CREATE TABLE table_name_76 (guest VARCHAR, score__first_match_ VARCHAR) | Who were the guest team wehn the match score was 3:0 (0:2)? |
SELECT picture_coding_types FROM table_name_57 WHERE chroma_format = "4:2:2 or 4:2:0" AND name = "4:2:2 profile" | CREATE TABLE table_name_57 (picture_coding_types VARCHAR, chroma_format VARCHAR, name VARCHAR) | What Picture Coding Types have Chroma Format of 4:2:2 or 4:2:0 and the Name of 4:2:2 profile? |
SELECT intra_dc_precision FROM table_name_59 WHERE name = "main profile" | CREATE TABLE table_name_59 (intra_dc_precision VARCHAR, name VARCHAR) | Name the Intra DC Precision that has the Name main profile? |
SELECT chroma_format FROM table_name_69 WHERE picture_coding_types = "i, p, b" AND name = "main profile" | CREATE TABLE table_name_69 (chroma_format VARCHAR, picture_coding_types VARCHAR, name VARCHAR) | What Chroma Format that has both Picture Coding Types of i, p, b, and the Name of main profile? |
SELECT player FROM table_name_21 WHERE division = "west" AND team = "special teams" AND school = "toledo western michigan" | CREATE TABLE table_name_21 (player VARCHAR, school VARCHAR, division VARCHAR, team VARCHAR) | What Player is from the west Division and the Team of special teams and is from the School Toledo Western Michigan? |
SELECT MIN(wins) FROM table_name_45 WHERE country = "australia" | CREATE TABLE table_name_45 (wins INTEGER, country VARCHAR) | What are the lowest wins for Australia? |
SELECT winners FROM table_name_47 WHERE third_place = "0" AND team = "minas" | CREATE TABLE table_name_47 (winners VARCHAR, third_place VARCHAR, team VARCHAR) | How many winners did Minas, which has 0 third places, have? |
SELECT winners FROM table_name_83 WHERE team = "halcones uv xalapa" | CREATE TABLE table_name_83 (winners VARCHAR, team VARCHAR) | How many winners did Halcones uv xalapa have? |
SELECT runners_up FROM table_name_84 WHERE team = "espartanos de margarita" | CREATE TABLE table_name_84 (runners_up VARCHAR, team VARCHAR) | How many runners-up did Espartanos de Margarita have? |
SELECT opponent FROM table_name_34 WHERE attendance = "60,594" | CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR) | Which Opponent has Attendances of 60,594? |
SELECT date FROM table_name_57 WHERE result = "l 27-7" AND opponent = "at minnesota vikings" | CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR, opponent VARCHAR) | When has a Result of l 27-7 and an Opponent of at minnesota vikings? |
SELECT date FROM table_name_60 WHERE week = 9 | CREATE TABLE table_name_60 (date VARCHAR, week VARCHAR) | When has a Week of 9? |
SELECT date FROM table_name_39 WHERE opponent = "new york jets" | CREATE TABLE table_name_39 (date VARCHAR, opponent VARCHAR) | What date did the Steelers play against the New York Jets? |
SELECT time___et__ FROM table_name_9 WHERE week = 1 | CREATE TABLE table_name_9 (time___et__ VARCHAR, week VARCHAR) | What time did the game start during week 1? |
SELECT SUM(laps) FROM table_name_21 WHERE team = "mi-jack conquest racing" AND time_retired = "off course" | CREATE TABLE table_name_21 (laps INTEGER, team VARCHAR, time_retired VARCHAR) | How many laps for mi-jack conquest racing when they went off course? |
SELECT COUNT(laps) FROM table_name_29 WHERE grid > 8 AND points < 11 AND driver = "will power" | CREATE TABLE table_name_29 (laps VARCHAR, driver VARCHAR, grid VARCHAR, points VARCHAR) | How many laps are associated with a grid greater than 8, under 11 points, and will power? |
SELECT AVG(bronze) FROM table_name_52 WHERE gold > 1 AND total = 14 AND silver > 3 | CREATE TABLE table_name_52 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) | Name the average Bronze when silver is more than 3, gold is more than 1 and the total is 14 |
SELECT COUNT(total) FROM table_name_68 WHERE rank = "7" AND bronze < 1 | CREATE TABLE table_name_68 (total VARCHAR, rank VARCHAR, bronze VARCHAR) | Name the total number of total for rank of 7 and bronze less than 1 |
SELECT MAX(silver) FROM table_name_46 WHERE bronze > 1 AND total < 7 AND gold > 1 | CREATE TABLE table_name_46 (silver INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR) | Name the most silver with bronze more than 1 and gold more than 1 with total less than 7 |
SELECT SUM(total) FROM table_name_56 WHERE gold < 1 AND bronze = 3 | CREATE TABLE table_name_56 (total INTEGER, gold VARCHAR, bronze VARCHAR) | Name the sum of total for gold less than 1 and bronze of 3 |
SELECT COUNT(bronze) FROM table_name_39 WHERE rank = "5" AND silver > 1 | CREATE TABLE table_name_39 (bronze VARCHAR, rank VARCHAR, silver VARCHAR) | Name the total number of bronze with rank of 5 and silver more than 1 |
SELECT COUNT(population_2000_census) FROM table_name_58 WHERE area__km²_ = 464.5 AND population_density_2010___km²_ > 1840 | CREATE TABLE table_name_58 (population_2000_census VARCHAR, area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR) | What is the total population from the 2000 census for the municipality that has a 464.5 square km area and a population density in 2010 larger than 1840? |
SELECT SUM(population__2010_census_) FROM table_name_16 WHERE administrative_division = "japeri" AND area__km²_ < 82.9 | CREATE TABLE table_name_16 (population__2010_census_ INTEGER, administrative_division VARCHAR, area__km²_ VARCHAR) | What was the sum of the population in 2010 for the division of japeri with an area of 82.9 squared km? |
SELECT score FROM table_name_6 WHERE visitor = "atlanta" | CREATE TABLE table_name_6 (score VARCHAR, visitor VARCHAR) | What was the score for the game against Atlanta? |
SELECT date FROM table_name_33 WHERE competition = "1936 summer olympics" AND score = "6-1" | CREATE TABLE table_name_33 (date VARCHAR, competition VARCHAR, score VARCHAR) | In the 1936 summer Olympics what was the date of a match that ended with a score of 6-1? |
SELECT score FROM table_name_68 WHERE result = "5-2" | CREATE TABLE table_name_68 (score VARCHAR, result VARCHAR) | What was the score for the game that had an end result of 5-2? |
SELECT COUNT(lost) FROM table_name_31 WHERE drawn = 1 AND games > 7 | CREATE TABLE table_name_31 (lost VARCHAR, drawn VARCHAR, games VARCHAR) | What is the total number of losses that have 1 draw and games over 7? |
SELECT COUNT(round) FROM table_name_73 WHERE pick__number > 10 AND college = "appalachian state" | CREATE TABLE table_name_73 (round VARCHAR, pick__number VARCHAR, college VARCHAR) | How many rounds had a pick number of more than 10 and Appalachian State as a college? |
SELECT MAX(overall) FROM table_name_32 WHERE position = "linebacker" AND pick__number > 9 | CREATE TABLE table_name_32 (overall INTEGER, position VARCHAR, pick__number VARCHAR) | What is the largest overall where the position was linebacker and the pick number was more than 9? |
SELECT score FROM table_name_41 WHERE game < 69 AND record = "4–56" | CREATE TABLE table_name_41 (score VARCHAR, game VARCHAR, record VARCHAR) | What is the Score of the game earlier than 69 with a record of 4–56? |
SELECT COUNT(game) FROM table_name_31 WHERE score = "116–138" | CREATE TABLE table_name_31 (game VARCHAR, score VARCHAR) | What is the game number with a score of 116–138? |
SELECT score FROM table_name_58 WHERE opponent = "boston celtics" | CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR) | What is the Score of the game against the boston celtics? |
SELECT game FROM table_name_17 WHERE date = "february 9" | CREATE TABLE table_name_17 (game VARCHAR, date VARCHAR) | What is the Game held on february 9? |
SELECT score FROM table_name_15 WHERE game > 57 AND record = "4–55" | CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, record VARCHAR) | What is the Score of the game larger than 57 with a Record of 4–55? |
SELECT region FROM table_name_82 WHERE village = "chassagne-montrachet" | CREATE TABLE table_name_82 (region VARCHAR, village VARCHAR) | Which Reigon has a Village of Chassagne-Montrachet? |
SELECT village FROM table_name_57 WHERE region = "côte de nuits" AND wine_style = "red wine" AND grand_cru = "latricières-chambertin" | CREATE TABLE table_name_57 (village VARCHAR, grand_cru VARCHAR, region VARCHAR, wine_style VARCHAR) | Which Village has a Region of Côte De Nuits, Wine Styles of Red Wine, and a Grand Cru of Latricières-Chambertin? |
SELECT vineyard_surface__2010_ FROM table_name_94 WHERE village = "gevrey-chambertin" AND grand_cru = "latricières-chambertin" | CREATE TABLE table_name_94 (vineyard_surface__2010_ VARCHAR, village VARCHAR, grand_cru VARCHAR) | What is the Vineyeard surface (2010) with a Village of Gevrey-Chambertin, and Grand Cru of Latricières-Chambertin? |
SELECT grand_cru FROM table_name_33 WHERE wine_style = "red wine" AND village = "gevrey-chambertin" | CREATE TABLE table_name_33 (grand_cru VARCHAR, wine_style VARCHAR, village VARCHAR) | What is the Grand Cru with a Wine Style of Red Wine and Village of Gevrey-Chambertin? |
SELECT AVG(pick) FROM table_name_97 WHERE school_club_team = "pennsylvania" | CREATE TABLE table_name_97 (pick INTEGER, school_club_team VARCHAR) | What is the average pick number of Pennsylvania? |
SELECT school_club_team FROM table_name_26 WHERE pick > 83 | CREATE TABLE table_name_26 (school_club_team VARCHAR, pick INTEGER) | What is the school/club team of the player with a pick larger than 83? |
SELECT school_club_team FROM table_name_92 WHERE round = 3 | CREATE TABLE table_name_92 (school_club_team VARCHAR, round VARCHAR) | What is the schoo/club team of the player in round 3? |
SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "ucla" | CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR) | What is the lowest round of the player from UCLA? |
SELECT date FROM table_name_20 WHERE winning_score = –16(62 - 71 - 71 - 68 = 272) | CREATE TABLE table_name_20 (date VARCHAR, winning_score VARCHAR) | When was –16 (62-71-71-68=272) the winning score? |
SELECT tournament FROM table_name_3 WHERE date = "jun 17, 1973" | CREATE TABLE table_name_3 (tournament VARCHAR, date VARCHAR) | What was the name of the tournament played on Jun 17, 1973? |
SELECT tournament FROM table_name_14 WHERE runner_s__up = "howard twitty" | CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR) | Howard Twitty was the runner-up of what tournament? |
SELECT college_junior_club_team FROM table_name_58 WHERE position = "defence" AND nationality = "czechoslovakia" | CREATE TABLE table_name_58 (college_junior_club_team VARCHAR, position VARCHAR, nationality VARCHAR) | Can you tell me the College/Junior/Club Team that has the Position of defence, and the Nationality of czechoslovakia? |
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.