answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT score FROM table_name_43 WHERE game = 35
|
CREATE TABLE table_name_43 (score VARCHAR, game VARCHAR)
|
What is the Score of game 35?
|
SELECT AVG(overall) FROM table_name_69 WHERE college = "miami (fl)"
|
CREATE TABLE table_name_69 (overall INTEGER, college VARCHAR)
|
What is the average oveall pick for players from the college of Miami (FL)?
|
SELECT name FROM table_name_19 WHERE overall < 224 AND round < 6 AND pick = 15 AND college = "nebraska"
|
CREATE TABLE table_name_19 (name VARCHAR, college VARCHAR, pick VARCHAR, overall VARCHAR, round VARCHAR)
|
Which player was drafted overall from the college of Nebraska in a round under 6, pick of 15, and overall under 224?
|
SELECT MIN(overall) FROM table_name_17 WHERE round = 10 AND name = "terry daniels"
|
CREATE TABLE table_name_17 (overall INTEGER, round VARCHAR, name VARCHAR)
|
What is the lowest overall draft pick number for terry daniels who was picked in round 10?
|
SELECT SUM(round) FROM table_name_11 WHERE college = "tennessee" AND overall > 153 AND pick < 14
|
CREATE TABLE table_name_11 (round INTEGER, pick VARCHAR, college VARCHAR, overall VARCHAR)
|
What is the sum of the rounds where the draft pick came from the college of tennessee and had an overall pick number bigger than 153 and a pick less than 14?
|
SELECT position FROM table_name_20 WHERE overall = 133
|
CREATE TABLE table_name_20 (position VARCHAR, overall VARCHAR)
|
What position did the draft pick number play that was overall pick number 133?
|
SELECT MIN(overall) FROM table_name_91 WHERE round = 8
|
CREATE TABLE table_name_91 (overall INTEGER, round VARCHAR)
|
What is the overall pick number for the player who was picked on round 8?
|
SELECT college FROM table_name_87 WHERE overall > 226 AND pick < 12 AND position = "ot"
|
CREATE TABLE table_name_87 (college VARCHAR, position VARCHAR, overall VARCHAR, pick VARCHAR)
|
What college did the player who had the position of OT come from who was pick number less than 12 and a overall pick number bigger than 226?
|
SELECT date_of_appointment FROM table_name_3 WHERE position_in_table = "pre-season" AND replaced_by = "thomas thomasberg"
|
CREATE TABLE table_name_3 (date_of_appointment VARCHAR, position_in_table VARCHAR, replaced_by VARCHAR)
|
WHAT IS THE APPOINTMENT DATE WITH A PRE-SEASON POSITION, AND REPLACED BY THOMAS THOMASBERG?
|
SELECT date_of_appointment FROM table_name_33 WHERE team = "ac horsens"
|
CREATE TABLE table_name_33 (date_of_appointment VARCHAR, team VARCHAR)
|
WHAT IS THE APPOINTMENT DATE FOR AC HORSENS?
|
SELECT team FROM table_name_98 WHERE position_in_table = "12th" AND replaced_by = "ove pedersen"
|
CREATE TABLE table_name_98 (team VARCHAR, position_in_table VARCHAR, replaced_by VARCHAR)
|
WHAT TEAM HAS 12TH TABLE POSITION AND REPLACED BY OVE PEDERSEN?
|
SELECT score FROM table_name_78 WHERE decision = "niittymaki" AND visitor = "calgary"
|
CREATE TABLE table_name_78 (score VARCHAR, decision VARCHAR, visitor VARCHAR)
|
What was the score when Calgary was visiting team and Niittymaki had the decision?
|
SELECT score FROM table_name_38 WHERE decision = "biron" AND visitor = "philadelphia" AND date = "march 1"
|
CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR)
|
What is the score when Biron got the decision and Philadelphia was the visitor on March 1?
|
SELECT AVG(attendance) FROM table_name_78 WHERE home = "pittsburgh"
|
CREATE TABLE table_name_78 (attendance INTEGER, home VARCHAR)
|
What is the attendance when Pittsburgh is the home team?
|
SELECT AVG(attendance) FROM table_name_35 WHERE date = "october 10, 1971" AND week > 4
|
CREATE TABLE table_name_35 (attendance INTEGER, date VARCHAR, week VARCHAR)
|
What was the Attendance after Week 4 on October 10, 1971?
|
SELECT COUNT(attendance) FROM table_name_29 WHERE opponent = "new orleans saints"
|
CREATE TABLE table_name_29 (attendance VARCHAR, opponent VARCHAR)
|
What was the Attendance in the game against the New Orleans Saints?
|
SELECT eagle_riders FROM table_name_27 WHERE japanese_voice_actor = "katsuji mori"
|
CREATE TABLE table_name_27 (eagle_riders VARCHAR, japanese_voice_actor VARCHAR)
|
What is the Eagle Riders character voiced by Japanese voice actor Katsuji Mori?
|
SELECT weapon FROM table_name_48 WHERE battle_of_the_planets = "jason"
|
CREATE TABLE table_name_48 (weapon VARCHAR, battle_of_the_planets VARCHAR)
|
Which weapon was used when the Battle of the Planets was Jason?
|
SELECT voice_actor__adv_tv_sentai_ova_dub_ FROM table_name_22 WHERE gatchaman = "jun"
|
CREATE TABLE table_name_22 (voice_actor__adv_tv_sentai_ova_dub_ VARCHAR, gatchaman VARCHAR)
|
Who was the voice actor (ADV TV/Sentai OVA dub) for the Gatchaman, jun?
|
SELECT japanese_voice_actor FROM table_name_28 WHERE mecha = "airplane"
|
CREATE TABLE table_name_28 (japanese_voice_actor VARCHAR, mecha VARCHAR)
|
Which Japanese voice actor had the Mecha of airplane?
|
SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = "drita"
|
CREATE TABLE table_name_3 (team_1 VARCHAR)
|
Which 1st leg has a Team 1 of drita?
|
SELECT team_2 FROM table_name_76 WHERE team_1 = "vardar"
|
CREATE TABLE table_name_76 (team_2 VARCHAR, team_1 VARCHAR)
|
Which Team 2 has a Team 1 of vardar?
|
SELECT years FROM table_name_1 WHERE jersey_number_s_ < 3
|
CREATE TABLE table_name_1 (years VARCHAR, jersey_number_s_ INTEGER)
|
What years was the jersey number(s) smaller than 3?
|
SELECT position FROM table_name_23 WHERE jersey_number_s_ = 40
|
CREATE TABLE table_name_23 (position VARCHAR, jersey_number_s_ VARCHAR)
|
Which position was played by the player wearing jersey number 40?
|
SELECT MIN(pick) FROM table_name_42 WHERE position = "rhp" AND hometown_school = "university of hawaii"
|
CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, hometown_school VARCHAR)
|
What pick number was the rhp with a hometown/school of university of hawaii?
|
SELECT player FROM table_name_75 WHERE pick = 10
|
CREATE TABLE table_name_75 (player VARCHAR, pick VARCHAR)
|
What player was drafted number 10?
|
SELECT pick FROM table_name_96 WHERE hometown_school = "concordia college"
|
CREATE TABLE table_name_96 (pick VARCHAR, hometown_school VARCHAR)
|
What number pick was the player with the hometown school of concordia college?
|
SELECT date FROM table_name_34 WHERE game = 66
|
CREATE TABLE table_name_34 (date VARCHAR, game VARCHAR)
|
What is the date of game 66?
|
SELECT game FROM table_name_34 WHERE date = "february 21"
|
CREATE TABLE table_name_34 (game VARCHAR, date VARCHAR)
|
What is the game on February 21?
|
SELECT AVG(draws) FROM table_name_9 WHERE goal_difference > 2 AND played < 30
|
CREATE TABLE table_name_9 (draws INTEGER, goal_difference VARCHAR, played VARCHAR)
|
What is the average number of draws that has a played entry of less than 30 and a goal difference greater than 2?
|
SELECT AVG(played) FROM table_name_91 WHERE wins < 11 AND goals_for > 42 AND points > 22 AND losses = 11
|
CREATE TABLE table_name_91 (played INTEGER, losses VARCHAR, points VARCHAR, wins VARCHAR, goals_for VARCHAR)
|
What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses?
|
SELECT COUNT(goal_difference) FROM table_name_9 WHERE goals_for < 49 AND position < 8
|
CREATE TABLE table_name_9 (goal_difference VARCHAR, goals_for VARCHAR, position VARCHAR)
|
What is the total of the goal difference entries for entries with fewer than 49 goals and position smaller than 8?
|
SELECT MIN(played) FROM table_name_61 WHERE position = 2 AND losses < 9
|
CREATE TABLE table_name_61 (played INTEGER, position VARCHAR, losses VARCHAR)
|
What is the lowest played for the entry with position of 2 and fewer than 9 losses?
|
SELECT COUNT(losses) FROM table_name_37 WHERE wins = 12 AND goal_difference < -14
|
CREATE TABLE table_name_37 (losses VARCHAR, wins VARCHAR, goal_difference VARCHAR)
|
What is the total number of losses for entries that have 12 wins and a goal difference smaller than -14?
|
SELECT goals_l_c_e_ FROM table_name_18 WHERE nat = "arg" AND name = "pelletieri"
|
CREATE TABLE table_name_18 (goals_l_c_e_ VARCHAR, nat VARCHAR, name VARCHAR)
|
What are the goals for Pelletieri in ARG?
|
SELECT MIN(ends) FROM table_name_3 WHERE app_l_c_e_ = "51 (44/6/1)"
|
CREATE TABLE table_name_3 (ends INTEGER, app_l_c_e_ VARCHAR)
|
What are the fewest ends with an App(L/C/E) of 51 (44/6/1)?
|
SELECT name FROM table_name_98 WHERE nat = "gre" AND app_l_c_e_ = "49 (40/8/1)"
|
CREATE TABLE table_name_98 (name VARCHAR, nat VARCHAR, app_l_c_e_ VARCHAR)
|
Who has a nationality of GRE and an App(L/C/E) of 49 (40/8/1)?
|
SELECT goals_l_c_e_ FROM table_name_50 WHERE app_l_c_e_ = "55 (47/5/3)"
|
CREATE TABLE table_name_50 (goals_l_c_e_ VARCHAR, app_l_c_e_ VARCHAR)
|
What are the gaols(L/C/E) with an App(L/C/E) of 55 (47/5/3)?
|
SELECT lifetime_achievement FROM table_name_39 WHERE year = 1998
|
CREATE TABLE table_name_39 (lifetime_achievement VARCHAR, year VARCHAR)
|
who won the lifetime achievement in the year 1998?
|
SELECT constructor FROM table_name_72 WHERE q1 + q2_time = "2:45.416"
|
CREATE TABLE table_name_72 (constructor VARCHAR, q1 VARCHAR, q2_time VARCHAR)
|
Constructor with total time of 2:45.416
|
SELECT driver FROM table_name_28 WHERE q1_order > 10 AND q1_pos = 18
|
CREATE TABLE table_name_28 (driver VARCHAR, q1_order VARCHAR, q1_pos VARCHAR)
|
Driver at larger than 10 with a Q1 of 18.
|
SELECT opponent FROM table_name_52 WHERE record = "55-14"
|
CREATE TABLE table_name_52 (opponent VARCHAR, record VARCHAR)
|
Who was the opponent when the record was 55-14?
|
SELECT MIN(game) FROM table_name_71 WHERE record = "59-15"
|
CREATE TABLE table_name_71 (game INTEGER, record VARCHAR)
|
What was the game number when record is 59-15?
|
SELECT date FROM table_name_62 WHERE record = "51-14"
|
CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)
|
What is the date that the record was 51-14?
|
SELECT SUM(pick__number) FROM table_name_79 WHERE college = "laurier"
|
CREATE TABLE table_name_79 (pick__number INTEGER, college VARCHAR)
|
What is the sum of Pick #, when College is Laurier?
|
SELECT cfl_team FROM table_name_86 WHERE pick__number > 34 AND college = "boise state"
|
CREATE TABLE table_name_86 (cfl_team VARCHAR, pick__number VARCHAR, college VARCHAR)
|
What is CFL Team, when Pick # is greater than 34, and when College is Boise State?
|
SELECT MIN(pick__number) FROM table_name_62 WHERE position = "rec" AND cfl_team = "hamilton tiger-cats"
|
CREATE TABLE table_name_62 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR)
|
What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats?
|
SELECT player FROM table_name_71 WHERE position = "db" AND college = "saint mary's"
|
CREATE TABLE table_name_71 (player VARCHAR, position VARCHAR, college VARCHAR)
|
What is Player, when Position is DB, and when College is Saint Mary's?
|
SELECT position FROM table_name_40 WHERE pick__number < 40 AND college = "western"
|
CREATE TABLE table_name_40 (position VARCHAR, pick__number VARCHAR, college VARCHAR)
|
What is Position, when Pick # is less than 40, and when College is Western?
|
SELECT date FROM table_name_80 WHERE time = "12:00"
|
CREATE TABLE table_name_80 (date VARCHAR, time VARCHAR)
|
Which Date has a Time of 12:00?
|
SELECT set_2 FROM table_name_38 WHERE set_1 = "25–20"
|
CREATE TABLE table_name_38 (set_2 VARCHAR, set_1 VARCHAR)
|
Set 1 of 25–20, what was Set 2?
|
SELECT royal_house FROM table_name_94 WHERE name = "shaokang"
|
CREATE TABLE table_name_94 (royal_house VARCHAR, name VARCHAR)
|
What royal house did Shaokang belong to?
|
SELECT MAX(rank) FROM table_name_60 WHERE year = 1976 AND floors < 21
|
CREATE TABLE table_name_60 (rank INTEGER, year VARCHAR, floors VARCHAR)
|
What is the highest rank of a building erected in 1976 with fewer than 21 floors?
|
SELECT opponent FROM table_name_92 WHERE february > 2 AND game < 55
|
CREATE TABLE table_name_92 (opponent VARCHAR, february VARCHAR, game VARCHAR)
|
What team was the opponent when February shows more than 2, with a game number less than 55?
|
SELECT AVG(game) FROM table_name_49 WHERE opponent = "toronto maple leafs" AND february < 17
|
CREATE TABLE table_name_49 (game INTEGER, opponent VARCHAR, february VARCHAR)
|
What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17?
|
SELECT SUM(game) FROM table_name_62 WHERE opponent = "new york islanders" AND february < 24
|
CREATE TABLE table_name_62 (game INTEGER, opponent VARCHAR, february VARCHAR)
|
What is the number of the game when the opponent was the New York Islanders, and a February less than 24?
|
SELECT MIN(game) FROM table_name_58 WHERE record = "26-24-9"
|
CREATE TABLE table_name_58 (game INTEGER, record VARCHAR)
|
What is the lowest game number when the record was 26-24-9?
|
SELECT rank FROM table_name_44 WHERE gold < 16 AND bronze > 2 AND silver > 2 AND total = 14
|
CREATE TABLE table_name_44 (rank VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)
|
What rank has less than 16 gold, more than 2 bronze and silver, and a total of 14?
|
SELECT MIN(silver) FROM table_name_92 WHERE rank = "1" AND bronze < 2
|
CREATE TABLE table_name_92 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
|
What's the silver for rank 1 with less than 2 bronze?
|
SELECT MIN(total) FROM table_name_13 WHERE bronze < 16 AND silver > 6
|
CREATE TABLE table_name_13 (total INTEGER, bronze VARCHAR, silver VARCHAR)
|
What's the lowest total when there's less than 16 bronze and more than 6 silver?
|
SELECT MIN(gold) FROM table_name_98 WHERE total > 15 AND silver < 16
|
CREATE TABLE table_name_98 (gold INTEGER, total VARCHAR, silver VARCHAR)
|
What's the lowest gold with a total over 15 and less than 16 silver?
|
SELECT COUNT(gold) FROM table_name_40 WHERE rank = "7" AND nation = "italy" AND silver < 0
|
CREATE TABLE table_name_40 (gold VARCHAR, silver VARCHAR, rank VARCHAR, nation VARCHAR)
|
Which Gold has a Rank of 7, a Nation of italy, and a Silver smaller than 0?
|
SELECT AVG(gold) FROM table_name_60 WHERE "total" > 3 AND rank = "total" AND silver > 8
|
CREATE TABLE table_name_60 (gold INTEGER, silver VARCHAR, rank VARCHAR)
|
Which Gold has a Total larger than 3, a Rank of total, and a Silver larger than 8?
|
SELECT club_team FROM table_name_55 WHERE pick > 139
|
CREATE TABLE table_name_55 (club_team VARCHAR, pick INTEGER)
|
Which Club team has a Pick larger than 139?
|
SELECT nationality FROM table_name_9 WHERE pick > 109 AND round < 5
|
CREATE TABLE table_name_9 (nationality VARCHAR, pick VARCHAR, round VARCHAR)
|
Which Nationality has a Pick larger than 109, and a Round smaller than 5?
|
SELECT school_club_team FROM table_name_13 WHERE player = "lawrence roberts"
|
CREATE TABLE table_name_13 (school_club_team VARCHAR, player VARCHAR)
|
Which school was Lawrence Roberts from ?
|
SELECT school_club_team FROM table_name_60 WHERE player = "chris robinson"
|
CREATE TABLE table_name_60 (school_club_team VARCHAR, player VARCHAR)
|
Which school was Chris Robinson from?
|
SELECT position FROM table_name_79 WHERE player = "chris robinson"
|
CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR)
|
What was the position that Chris Robinson played?
|
SELECT years_for_grizzlies FROM table_name_27 WHERE player = "zach randolph"
|
CREATE TABLE table_name_27 (years_for_grizzlies VARCHAR, player VARCHAR)
|
In which years did Zach Randolph play for the Grizzlies?
|
SELECT player FROM table_name_61 WHERE school_club_team = "western kentucky"
|
CREATE TABLE table_name_61 (player VARCHAR, school_club_team VARCHAR)
|
Which player played for Western Kentucky?
|
SELECT score FROM table_name_18 WHERE home = "chicago black hawks" AND visitor = "new york rangers" AND date = "january 14"
|
CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)
|
What was the score on January 14 when the Chicago Black Hawks were home against the New York Rangers?
|
SELECT home FROM table_name_56 WHERE visitor = "chicago black hawks" AND date = "february 18"
|
CREATE TABLE table_name_56 (home VARCHAR, visitor VARCHAR, date VARCHAR)
|
Who was the home team on February 18 that had a visitor of the Chicago Black Hawks?
|
SELECT points_diff FROM table_name_73 WHERE points_against = "123"
|
CREATE TABLE table_name_73 (points_diff VARCHAR, points_against VARCHAR)
|
What is points diff when points against is 123?
|
SELECT team FROM table_name_83 WHERE points_against = "123"
|
CREATE TABLE table_name_83 (team VARCHAR, points_against VARCHAR)
|
Which team has 123 points agaibst the other team?
|
SELECT points_against FROM table_name_67 WHERE try_diff = "+23"
|
CREATE TABLE table_name_67 (points_against VARCHAR, try_diff VARCHAR)
|
What is the points against when try diff is +23?
|
SELECT points_for FROM table_name_7 WHERE try_diff = "+23"
|
CREATE TABLE table_name_7 (points_for VARCHAR, try_diff VARCHAR)
|
What is points when try diff is +23?
|
SELECT points_against FROM table_name_70 WHERE points_diff = "+96"
|
CREATE TABLE table_name_70 (points_against VARCHAR, points_diff VARCHAR)
|
What is points sgsinst when points diff is +96?
|
SELECT laps AS Led FROM table_name_29 WHERE grid = "15"
|
CREATE TABLE table_name_29 (laps VARCHAR, grid VARCHAR)
|
How many laps led when the Grid was 15?
|
SELECT time_retired FROM table_name_84 WHERE points = "32"
|
CREATE TABLE table_name_84 (time_retired VARCHAR, points VARCHAR)
|
Name the Time/Retired when the points were 32.
|
SELECT car_no FROM table_name_13 WHERE points = "24"
|
CREATE TABLE table_name_13 (car_no VARCHAR, points VARCHAR)
|
What car number had 24 points?
|
SELECT points FROM table_name_75 WHERE grid = "1"
|
CREATE TABLE table_name_75 (points VARCHAR, grid VARCHAR)
|
How many points when the Grid was 1?
|
SELECT AVG(game) FROM table_name_4 WHERE october = 19
|
CREATE TABLE table_name_4 (game INTEGER, october VARCHAR)
|
What is the average game number that was on october 19?
|
SELECT SUM(october) FROM table_name_19 WHERE opponent = "pittsburgh penguins"
|
CREATE TABLE table_name_19 (october INTEGER, opponent VARCHAR)
|
What is the sum of October, when Opponent is "Pittsburgh Penguins"?
|
SELECT SUM(game) FROM table_name_58 WHERE record = "2-1-1" AND october < 21
|
CREATE TABLE table_name_58 (game INTEGER, record VARCHAR, october VARCHAR)
|
What is the sum of Game, when Record is "2-1-1", and when October is less than 21?
|
SELECT opponent FROM table_name_12 WHERE october < 31 AND game > 7
|
CREATE TABLE table_name_12 (opponent VARCHAR, october VARCHAR, game VARCHAR)
|
What is Opponent, when October is less than 31, and when Game is greater than 7?
|
SELECT tie_no FROM table_name_35 WHERE home_team = "orient"
|
CREATE TABLE table_name_35 (tie_no VARCHAR, home_team VARCHAR)
|
What is the tie number for the home team Orient?
|
SELECT score FROM table_name_35 WHERE away_team = "chelsea"
|
CREATE TABLE table_name_35 (score VARCHAR, away_team VARCHAR)
|
What is the score for the away team Chelsea?
|
SELECT away_team FROM table_name_81 WHERE tie_no = "29"
|
CREATE TABLE table_name_81 (away_team VARCHAR, tie_no VARCHAR)
|
What is the away team for the tie no. 29?
|
SELECT coronie FROM table_name_92 WHERE nickerie = "0.7%"
|
CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR)
|
What is the coronie with a 0.7% nickerie?
|
SELECT marowijne FROM table_name_2 WHERE saramacca = "18.8%"
|
CREATE TABLE table_name_2 (marowijne VARCHAR, saramacca VARCHAR)
|
What is the marowijne with an 18.8% saramacca?
|
SELECT para FROM table_name_70 WHERE sipaliwini = "0.1%"
|
CREATE TABLE table_name_70 (para VARCHAR, sipaliwini VARCHAR)
|
What is the para with a 0.1% sipaliwini?
|
SELECT religion FROM table_name_65 WHERE para = "56.5%"
|
CREATE TABLE table_name_65 (religion VARCHAR, para VARCHAR)
|
What religion has a para of 56.5%?
|
SELECT suriname FROM table_name_62 WHERE brokopondo = "16.8%"
|
CREATE TABLE table_name_62 (suriname VARCHAR, brokopondo VARCHAR)
|
What is the suriname with a 16.8% brokopondo?
|
SELECT AVG(rank) FROM table_name_41 WHERE gold < 0
|
CREATE TABLE table_name_41 (rank INTEGER, gold INTEGER)
|
What's the rank average when the gold medals are less than 0?
|
SELECT SUM(rank) FROM table_name_84 WHERE nation = "hungary (hun)" AND bronze < 0
|
CREATE TABLE table_name_84 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
|
What is the total rank of Hungary (HUN) when the bronze medals were less than 0?
|
SELECT COUNT(total) FROM table_name_54 WHERE silver < 0
|
CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER)
|
What is the sum of the total number of medals when silver is less than 0?
|
SELECT born_died FROM table_name_25 WHERE term_start = "4 december 1941"
|
CREATE TABLE table_name_25 (born_died VARCHAR, term_start VARCHAR)
|
What is Born-Died, when Term Start is 4 December 1941?
|
SELECT term_start FROM table_name_38 WHERE name = "prime ministers 1939 - 1943"
|
CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR)
|
What is Term Start, when Name is Prime Ministers 1939 - 1943?
|
SELECT born_died FROM table_name_27 WHERE name = "maliq bushati"
|
CREATE TABLE table_name_27 (born_died VARCHAR, name VARCHAR)
|
What is Born-Died, when Name is Maliq Bushati?
|
SELECT term_end FROM table_name_78 WHERE political_party = "albanian fascist party" AND term_start = "12 april 1939"
|
CREATE TABLE table_name_78 (term_end VARCHAR, political_party VARCHAR, term_start VARCHAR)
|
What is Term End, when Political Party is Albanian Fascist Party, and when Term Start is 12 April 1939?
|
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.