question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
what is the number of areas where the townland is brittas? | CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR) | SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Brittas" | ### Context: CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR) ### Question: what is the number of areas where the townland is brittas? ### Answer: SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Brittas" |
What is the Poor Law Union for Coolkirky? | CREATE TABLE table_30120633_1 (poor_law_union VARCHAR, townland VARCHAR) | SELECT poor_law_union FROM table_30120633_1 WHERE townland = "Coolkirky" | ### Context: CREATE TABLE table_30120633_1 (poor_law_union VARCHAR, townland VARCHAR) ### Question: What is the Poor Law Union for Coolkirky? ### Answer: SELECT poor_law_union FROM table_30120633_1 WHERE townland = "Coolkirky" |
How few acres is the area of Clashroe? | CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR) | SELECT MIN(area__acres__) FROM table_30120633_1 WHERE townland = "Clashroe" | ### Context: CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR) ### Question: How few acres is the area of Clashroe? ### Answer: SELECT MIN(area__acres__) FROM table_30120633_1 WHERE townland = "Clashroe" |
Which townland has a 213 acre area? | CREATE TABLE table_30120633_1 (townland VARCHAR, area__acres__ VARCHAR) | SELECT townland FROM table_30120633_1 WHERE area__acres__ = 213 | ### Context: CREATE TABLE table_30120633_1 (townland VARCHAR, area__acres__ VARCHAR) ### Question: Which townland has a 213 acre area? ### Answer: SELECT townland FROM table_30120633_1 WHERE area__acres__ = 213 |
How many acres does the area of Lissagroom with Bandon as its poor law union cover? | CREATE TABLE table_30120633_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR) | SELECT area__acres__ FROM table_30120633_1 WHERE poor_law_union = "Bandon" AND townland = "Lissagroom" | ### Context: CREATE TABLE table_30120633_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR) ### Question: How many acres does the area of Lissagroom with Bandon as its poor law union cover? ### Answer: SELECT area__acres__ FROM table_30120633_1 WHERE poor_law_union = "Bandon" AND townland = "Lissagroom" |
What is Ballymurphy North's civil parish? | CREATE TABLE table_30120633_1 (civil_parish VARCHAR, townland VARCHAR) | SELECT civil_parish FROM table_30120633_1 WHERE townland = "Ballymurphy North" | ### Context: CREATE TABLE table_30120633_1 (civil_parish VARCHAR, townland VARCHAR) ### Question: What is Ballymurphy North's civil parish? ### Answer: SELECT civil_parish FROM table_30120633_1 WHERE townland = "Ballymurphy North" |
How many acres in the townland of Coomroe? | CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, townland VARCHAR) | SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE townland = "Coomroe" | ### Context: CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, townland VARCHAR) ### Question: How many acres in the townland of Coomroe? ### Answer: SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE townland = "Coomroe" |
What are all the acreages of the townlands in the Macroom poor law union and Macroom civil parish? | CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR) | SELECT area__acres__ FROM table_30120761_1 WHERE poor_law_union = "Macroom" AND civil_parish = "Macroom" | ### Context: CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR) ### Question: What are all the acreages of the townlands in the Macroom poor law union and Macroom civil parish? ### Answer: SELECT area__acres__ FROM table_30120761_1 WHERE poor_law_union = "Macroom" AND civil_parish = "Macroom" |
How many baronies is Maulnagrough a part of? | CREATE TABLE table_30120761_1 (barony VARCHAR, townland VARCHAR) | SELECT COUNT(barony) FROM table_30120761_1 WHERE townland = "Maulnagrough" | ### Context: CREATE TABLE table_30120761_1 (barony VARCHAR, townland VARCHAR) ### Question: How many baronies is Maulnagrough a part of? ### Answer: SELECT COUNT(barony) FROM table_30120761_1 WHERE townland = "Maulnagrough" |
What are all of the townlands that have exactly 131 acres. | CREATE TABLE table_30120761_1 (townland VARCHAR, area__acres__ VARCHAR) | SELECT townland FROM table_30120761_1 WHERE area__acres__ = 131 | ### Context: CREATE TABLE table_30120761_1 (townland VARCHAR, area__acres__ VARCHAR) ### Question: What are all of the townlands that have exactly 131 acres. ### Answer: SELECT townland FROM table_30120761_1 WHERE area__acres__ = 131 |
What is the acreage of the Maghereen in the civil parish of Macroom? | CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR) | SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE civil_parish = "Macroom" AND townland = "Maghereen" | ### Context: CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR) ### Question: What is the acreage of the Maghereen in the civil parish of Macroom? ### Answer: SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE civil_parish = "Macroom" AND townland = "Maghereen" |
What is the poor law union when the townland is bohonagh? | CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR) | SELECT poor_law_union FROM table_30121075_1 WHERE townland = "Bohonagh" | ### Context: CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR) ### Question: What is the poor law union when the townland is bohonagh? ### Answer: SELECT poor_law_union FROM table_30121075_1 WHERE townland = "Bohonagh" |
How many entries are in barony when the townland is derrigra? | CREATE TABLE table_30121075_1 (barony VARCHAR, townland VARCHAR) | SELECT COUNT(barony) FROM table_30121075_1 WHERE townland = "Derrigra" | ### Context: CREATE TABLE table_30121075_1 (barony VARCHAR, townland VARCHAR) ### Question: How many entries are in barony when the townland is derrigra? ### Answer: SELECT COUNT(barony) FROM table_30121075_1 WHERE townland = "Derrigra" |
How many entries are listed in poor law union when townland is dromidiclogh? | CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR) | SELECT COUNT(poor_law_union) FROM table_30121075_1 WHERE townland = "Dromidiclogh" | ### Context: CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR) ### Question: How many entries are listed in poor law union when townland is dromidiclogh? ### Answer: SELECT COUNT(poor_law_union) FROM table_30121075_1 WHERE townland = "Dromidiclogh" |
What is the area when the poor law union is skibbereen and the townland is knockmore? | CREATE TABLE table_30121075_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR) | SELECT area__acres__ FROM table_30121075_1 WHERE poor_law_union = "Skibbereen" AND townland = "Knockmore" | ### Context: CREATE TABLE table_30121075_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR) ### Question: What is the area when the poor law union is skibbereen and the townland is knockmore? ### Answer: SELECT area__acres__ FROM table_30121075_1 WHERE poor_law_union = "Skibbereen" AND townland = "Knockmore" |
What is the circuit located in baltimore , maryland? | CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR) | SELECT circuit FROM table_30134667_2 WHERE location = "Baltimore , Maryland" | ### Context: CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR) ### Question: What is the circuit located in baltimore , maryland? ### Answer: SELECT circuit FROM table_30134667_2 WHERE location = "Baltimore , Maryland" |
Which circuit was located in st. petersburg, florida? | CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR) | SELECT circuit FROM table_30134667_2 WHERE location = "St. Petersburg, Florida" | ### Context: CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR) ### Question: Which circuit was located in st. petersburg, florida? ### Answer: SELECT circuit FROM table_30134667_2 WHERE location = "St. Petersburg, Florida" |
Who had the fastest lap in bowmanville, ontario? | CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, location VARCHAR) | SELECT fastest_lap FROM table_30134667_2 WHERE location = "Bowmanville, Ontario" | ### Context: CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, location VARCHAR) ### Question: Who had the fastest lap in bowmanville, ontario? ### Answer: SELECT fastest_lap FROM table_30134667_2 WHERE location = "Bowmanville, Ontario" |
Who had the fastest lap on september 4? | CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, date VARCHAR) | SELECT fastest_lap FROM table_30134667_2 WHERE date = "September 4" | ### Context: CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, date VARCHAR) ### Question: Who had the fastest lap on september 4? ### Answer: SELECT fastest_lap FROM table_30134667_2 WHERE date = "September 4" |
What is the 1985 value for the year when GDP as of 2012 after PPP was 369.38? | CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR) | SELECT 1985 FROM table_30133_3 WHERE gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ = "369.38" | ### Context: CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR) ### Question: What is the 1985 value for the year when GDP as of 2012 after PPP was 369.38? ### Answer: SELECT 1985 FROM table_30133_3 WHERE gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ = "369.38" |
What was the gap from Thailand as of 2012 for China? | CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, economy VARCHAR) | SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE economy = "China" | ### Context: CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, economy VARCHAR) ### Question: What was the gap from Thailand as of 2012 for China? ### Answer: SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE economy = "China" |
What is the maximum 2010 value for China? | CREATE TABLE table_30133_3 (economy VARCHAR) | SELECT MAX(2010) FROM table_30133_3 WHERE economy = "China" | ### Context: CREATE TABLE table_30133_3 (economy VARCHAR) ### Question: What is the maximum 2010 value for China? ### Answer: SELECT MAX(2010) FROM table_30133_3 WHERE economy = "China" |
What is the gap from Thailand as of 2012 for the country whose 1980 gap was 0.29? | CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, gap_from_thailand_as_of_1980__times_ VARCHAR) | SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = "0.29" | ### Context: CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, gap_from_thailand_as_of_1980__times_ VARCHAR) ### Question: What is the gap from Thailand as of 2012 for the country whose 1980 gap was 0.29? ### Answer: SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = "0.29" |
How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113? | CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR) | SELECT COUNT(gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_) FROM table_30133_3 WHERE 2012 = 23113 | ### Context: CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR) ### Question: How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113? ### Answer: SELECT COUNT(gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_) FROM table_30133_3 WHERE 2012 = 23113 |
What is the max 2010 value for a 1980 gap value is 2.43? | CREATE TABLE table_30133_3 (gap_from_thailand_as_of_1980__times_ VARCHAR) | SELECT MAX(2010) FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = "2.43" | ### Context: CREATE TABLE table_30133_3 (gap_from_thailand_as_of_1980__times_ VARCHAR) ### Question: What is the max 2010 value for a 1980 gap value is 2.43? ### Answer: SELECT MAX(2010) FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = "2.43" |
How many viewers in the UK did episode 50 have? | CREATE TABLE table_30139175_3 (uk_total_viewers VARCHAR, episode_no VARCHAR) | SELECT uk_total_viewers FROM table_30139175_3 WHERE episode_no = 50 | ### Context: CREATE TABLE table_30139175_3 (uk_total_viewers VARCHAR, episode_no VARCHAR) ### Question: How many viewers in the UK did episode 50 have? ### Answer: SELECT uk_total_viewers FROM table_30139175_3 WHERE episode_no = 50 |
Tell me the doubles W-L for player of laurynas grigelis | CREATE TABLE table_name_91 (doubles_w_l VARCHAR, player VARCHAR) | SELECT doubles_w_l FROM table_name_91 WHERE player = "laurynas grigelis" | ### Context: CREATE TABLE table_name_91 (doubles_w_l VARCHAR, player VARCHAR) ### Question: Tell me the doubles W-L for player of laurynas grigelis ### Answer: SELECT doubles_w_l FROM table_name_91 WHERE player = "laurynas grigelis" |
What is the newest Cap with a Goals stat larger than 17 and which was done by Brian Turner? | CREATE TABLE table_name_64 (most_recent_cap VARCHAR, goals VARCHAR, name VARCHAR) | SELECT most_recent_cap FROM table_name_64 WHERE goals > 17 AND name = "brian turner" | ### Context: CREATE TABLE table_name_64 (most_recent_cap VARCHAR, goals VARCHAR, name VARCHAR) ### Question: What is the newest Cap with a Goals stat larger than 17 and which was done by Brian Turner? ### Answer: SELECT most_recent_cap FROM table_name_64 WHERE goals > 17 AND name = "brian turner" |
What is the nationality of school/club team of barton cc (ks)? | CREATE TABLE table_name_65 (nationality VARCHAR, school_club_team VARCHAR) | SELECT nationality FROM table_name_65 WHERE school_club_team = "barton cc (ks)" | ### Context: CREATE TABLE table_name_65 (nationality VARCHAR, school_club_team VARCHAR) ### Question: What is the nationality of school/club team of barton cc (ks)? ### Answer: SELECT nationality FROM table_name_65 WHERE school_club_team = "barton cc (ks)" |
Shawn Respert play for what school/club team? | CREATE TABLE table_name_66 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_66 WHERE player = "shawn respert" | ### Context: CREATE TABLE table_name_66 (school_club_team VARCHAR, player VARCHAR) ### Question: Shawn Respert play for what school/club team? ### Answer: SELECT school_club_team FROM table_name_66 WHERE player = "shawn respert" |
Who has position in year 1996-97 in Toronto? | CREATE TABLE table_name_88 (position VARCHAR, years_in_toronto VARCHAR) | SELECT position FROM table_name_88 WHERE years_in_toronto = "1996-97" | ### Context: CREATE TABLE table_name_88 (position VARCHAR, years_in_toronto VARCHAR) ### Question: Who has position in year 1996-97 in Toronto? ### Answer: SELECT position FROM table_name_88 WHERE years_in_toronto = "1996-97" |
Roy Rogers play for what school/club team? | CREATE TABLE table_name_38 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_38 WHERE player = "roy rogers" | ### Context: CREATE TABLE table_name_38 (school_club_team VARCHAR, player VARCHAR) ### Question: Roy Rogers play for what school/club team? ### Answer: SELECT school_club_team FROM table_name_38 WHERE player = "roy rogers" |
What year is United States school/club team from Arkansas play in Toronto | CREATE TABLE table_name_87 (years_in_toronto VARCHAR, nationality VARCHAR, school_club_team VARCHAR) | SELECT years_in_toronto FROM table_name_87 WHERE nationality = "united states" AND school_club_team = "arkansas" | ### Context: CREATE TABLE table_name_87 (years_in_toronto VARCHAR, nationality VARCHAR, school_club_team VARCHAR) ### Question: What year is United States school/club team from Arkansas play in Toronto ### Answer: SELECT years_in_toronto FROM table_name_87 WHERE nationality = "united states" AND school_club_team = "arkansas" |
Who is the player from United States who play in year 2003-06 in Toronto? | CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR, years_in_toronto VARCHAR) | SELECT player FROM table_name_8 WHERE nationality = "united states" AND years_in_toronto = "2003-06" | ### Context: CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR, years_in_toronto VARCHAR) ### Question: Who is the player from United States who play in year 2003-06 in Toronto? ### Answer: SELECT player FROM table_name_8 WHERE nationality = "united states" AND years_in_toronto = "2003-06" |
Tell me the average units sold for square enix | CREATE TABLE table_name_46 (units_sold INTEGER, publisher VARCHAR) | SELECT AVG(units_sold) FROM table_name_46 WHERE publisher = "square enix" | ### Context: CREATE TABLE table_name_46 (units_sold INTEGER, publisher VARCHAR) ### Question: Tell me the average units sold for square enix ### Answer: SELECT AVG(units_sold) FROM table_name_46 WHERE publisher = "square enix" |
Tell me the date for nicolas pereira | CREATE TABLE table_name_60 (date VARCHAR, partnering VARCHAR) | SELECT date FROM table_name_60 WHERE partnering = "nicolas pereira" | ### Context: CREATE TABLE table_name_60 (date VARCHAR, partnering VARCHAR) ### Question: Tell me the date for nicolas pereira ### Answer: SELECT date FROM table_name_60 WHERE partnering = "nicolas pereira" |
what is the date in 1986? | CREATE TABLE table_name_14 (date VARCHAR, year VARCHAR) | SELECT date FROM table_name_14 WHERE year = 1986 | ### Context: CREATE TABLE table_name_14 (date VARCHAR, year VARCHAR) ### Question: what is the date in 1986? ### Answer: SELECT date FROM table_name_14 WHERE year = 1986 |
What is the average year for Ponce, Puerto Rico events? | CREATE TABLE table_name_15 (year INTEGER, venue VARCHAR) | SELECT AVG(year) FROM table_name_15 WHERE venue = "ponce, puerto rico" | ### Context: CREATE TABLE table_name_15 (year INTEGER, venue VARCHAR) ### Question: What is the average year for Ponce, Puerto Rico events? ### Answer: SELECT AVG(year) FROM table_name_15 WHERE venue = "ponce, puerto rico" |
What year did she place 8th in the junior race? | CREATE TABLE table_name_9 (year VARCHAR, event VARCHAR, position VARCHAR) | SELECT year FROM table_name_9 WHERE event = "junior race" AND position = "8th" | ### Context: CREATE TABLE table_name_9 (year VARCHAR, event VARCHAR, position VARCHAR) ### Question: What year did she place 8th in the junior race? ### Answer: SELECT year FROM table_name_9 WHERE event = "junior race" AND position = "8th" |
Tell me the NHL team for ryan johnson | CREATE TABLE table_name_69 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_name_69 WHERE player = "ryan johnson" | ### Context: CREATE TABLE table_name_69 (nhl_team VARCHAR, player VARCHAR) ### Question: Tell me the NHL team for ryan johnson ### Answer: SELECT nhl_team FROM table_name_69 WHERE player = "ryan johnson" |
Tell me the position for pick of 47 | CREATE TABLE table_name_68 (position VARCHAR, pick VARCHAR) | SELECT position FROM table_name_68 WHERE pick = "47" | ### Context: CREATE TABLE table_name_68 (position VARCHAR, pick VARCHAR) ### Question: Tell me the position for pick of 47 ### Answer: SELECT position FROM table_name_68 WHERE pick = "47" |
Tell me the pick for pittsburgh penguins | CREATE TABLE table_name_12 (pick VARCHAR, nhl_team VARCHAR) | SELECT pick FROM table_name_12 WHERE nhl_team = "pittsburgh penguins" | ### Context: CREATE TABLE table_name_12 (pick VARCHAR, nhl_team VARCHAR) ### Question: Tell me the pick for pittsburgh penguins ### Answer: SELECT pick FROM table_name_12 WHERE nhl_team = "pittsburgh penguins" |
Tell me the nationality for rudolf vercik | CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_51 WHERE player = "rudolf vercik" | ### Context: CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR) ### Question: Tell me the nationality for rudolf vercik ### Answer: SELECT nationality FROM table_name_51 WHERE player = "rudolf vercik" |
Tell me the player for nationality of canada for pick of 43 | CREATE TABLE table_name_85 (player VARCHAR, nationality VARCHAR, pick VARCHAR) | SELECT player FROM table_name_85 WHERE nationality = "canada" AND pick = "43" | ### Context: CREATE TABLE table_name_85 (player VARCHAR, nationality VARCHAR, pick VARCHAR) ### Question: Tell me the player for nationality of canada for pick of 43 ### Answer: SELECT player FROM table_name_85 WHERE nationality = "canada" AND pick = "43" |
Tell me the college for jason holland | CREATE TABLE table_name_2 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_name_2 WHERE player = "jason holland" | ### Context: CREATE TABLE table_name_2 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: Tell me the college for jason holland ### Answer: SELECT college_junior_club_team FROM table_name_2 WHERE player = "jason holland" |
Tell me the date for rudolf caracciola for avusrennen | CREATE TABLE table_name_91 (date VARCHAR, winning_driver VARCHAR, name VARCHAR) | SELECT date FROM table_name_91 WHERE winning_driver = "rudolf caracciola" AND name = "avusrennen" | ### Context: CREATE TABLE table_name_91 (date VARCHAR, winning_driver VARCHAR, name VARCHAR) ### Question: Tell me the date for rudolf caracciola for avusrennen ### Answer: SELECT date FROM table_name_91 WHERE winning_driver = "rudolf caracciola" AND name = "avusrennen" |
Tell me the circuit for 10 may for targa florio | CREATE TABLE table_name_79 (circuit VARCHAR, date VARCHAR, name VARCHAR) | SELECT circuit FROM table_name_79 WHERE date = "10 may" AND name = "targa florio" | ### Context: CREATE TABLE table_name_79 (circuit VARCHAR, date VARCHAR, name VARCHAR) ### Question: Tell me the circuit for 10 may for targa florio ### Answer: SELECT circuit FROM table_name_79 WHERE date = "10 may" AND name = "targa florio" |
What was the score of the Washington tournament? | CREATE TABLE table_name_20 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_20 WHERE tournament = "washington" | ### Context: CREATE TABLE table_name_20 (score VARCHAR, tournament VARCHAR) ### Question: What was the score of the Washington tournament? ### Answer: SELECT score FROM table_name_20 WHERE tournament = "washington" |
On what date was Patty Fendick an opponent? | CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_95 WHERE opponent = "patty fendick" | ### Context: CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR) ### Question: On what date was Patty Fendick an opponent? ### Answer: SELECT date FROM table_name_95 WHERE opponent = "patty fendick" |
What score does Vasil Levski National Stadium, Sofia earn? | CREATE TABLE table_name_62 (score VARCHAR, venue VARCHAR) | SELECT score FROM table_name_62 WHERE venue = "vasil levski national stadium, sofia" | ### Context: CREATE TABLE table_name_62 (score VARCHAR, venue VARCHAR) ### Question: What score does Vasil Levski National Stadium, Sofia earn? ### Answer: SELECT score FROM table_name_62 WHERE venue = "vasil levski national stadium, sofia" |
What score did vasil levski national stadium, sofia, which was friendly during competition, earn? | CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR, venue VARCHAR) | SELECT score FROM table_name_96 WHERE competition = "friendly" AND venue = "vasil levski national stadium, sofia" | ### Context: CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: What score did vasil levski national stadium, sofia, which was friendly during competition, earn? ### Answer: SELECT score FROM table_name_96 WHERE competition = "friendly" AND venue = "vasil levski national stadium, sofia" |
What is the nationality of the Washington Capitals? | CREATE TABLE table_name_68 (nationality VARCHAR, nhl_team VARCHAR) | SELECT nationality FROM table_name_68 WHERE nhl_team = "washington capitals" | ### Context: CREATE TABLE table_name_68 (nationality VARCHAR, nhl_team VARCHAR) ### Question: What is the nationality of the Washington Capitals? ### Answer: SELECT nationality FROM table_name_68 WHERE nhl_team = "washington capitals" |
On what NHL team does Roman Vopat play for? | CREATE TABLE table_name_57 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_name_57 WHERE player = "roman vopat" | ### Context: CREATE TABLE table_name_57 (nhl_team VARCHAR, player VARCHAR) ### Question: On what NHL team does Roman Vopat play for? ### Answer: SELECT nhl_team FROM table_name_57 WHERE player = "roman vopat" |
What is the position of the player from the Ukraine? | CREATE TABLE table_name_1 (position VARCHAR, nationality VARCHAR) | SELECT position FROM table_name_1 WHERE nationality = "ukraine" | ### Context: CREATE TABLE table_name_1 (position VARCHAR, nationality VARCHAR) ### Question: What is the position of the player from the Ukraine? ### Answer: SELECT position FROM table_name_1 WHERE nationality = "ukraine" |
What Tournament did he place 12th in? | CREATE TABLE table_name_58 (tournament VARCHAR, result VARCHAR) | SELECT tournament FROM table_name_58 WHERE result = "12th" | ### Context: CREATE TABLE table_name_58 (tournament VARCHAR, result VARCHAR) ### Question: What Tournament did he place 12th in? ### Answer: SELECT tournament FROM table_name_58 WHERE result = "12th" |
What was the first year he placed 12th | CREATE TABLE table_name_9 (year INTEGER, result VARCHAR) | SELECT MIN(year) FROM table_name_9 WHERE result = "12th" | ### Context: CREATE TABLE table_name_9 (year INTEGER, result VARCHAR) ### Question: What was the first year he placed 12th ### Answer: SELECT MIN(year) FROM table_name_9 WHERE result = "12th" |
Tell me the circuit for alfa romeo swedish ice race | CREATE TABLE table_name_5 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR) | SELECT circuit FROM table_name_5 WHERE winning_constructor = "alfa romeo" AND name = "swedish ice race" | ### Context: CREATE TABLE table_name_5 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR) ### Question: Tell me the circuit for alfa romeo swedish ice race ### Answer: SELECT circuit FROM table_name_5 WHERE winning_constructor = "alfa romeo" AND name = "swedish ice race" |
Tell me the date for bugatti fpr stanislas czaykowski | CREATE TABLE table_name_60 (date VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR) | SELECT date FROM table_name_60 WHERE winning_constructor = "bugatti" AND winning_driver = "stanislas czaykowski" | ### Context: CREATE TABLE table_name_60 (date VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR) ### Question: Tell me the date for bugatti fpr stanislas czaykowski ### Answer: SELECT date FROM table_name_60 WHERE winning_constructor = "bugatti" AND winning_driver = "stanislas czaykowski" |
Tell me the circuit for 20 august | CREATE TABLE table_name_99 (circuit VARCHAR, date VARCHAR) | SELECT circuit FROM table_name_99 WHERE date = "20 august" | ### Context: CREATE TABLE table_name_99 (circuit VARCHAR, date VARCHAR) ### Question: Tell me the circuit for 20 august ### Answer: SELECT circuit FROM table_name_99 WHERE date = "20 august" |
Tell me the winning driver for avusrennen | CREATE TABLE table_name_70 (winning_driver VARCHAR, name VARCHAR) | SELECT winning_driver FROM table_name_70 WHERE name = "avusrennen" | ### Context: CREATE TABLE table_name_70 (winning_driver VARCHAR, name VARCHAR) ### Question: Tell me the winning driver for avusrennen ### Answer: SELECT winning_driver FROM table_name_70 WHERE name = "avusrennen" |
Tell me the report for bugatti and brooklands | CREATE TABLE table_name_96 (report VARCHAR, winning_constructor VARCHAR, circuit VARCHAR) | SELECT report FROM table_name_96 WHERE winning_constructor = "bugatti" AND circuit = "brooklands" | ### Context: CREATE TABLE table_name_96 (report VARCHAR, winning_constructor VARCHAR, circuit VARCHAR) ### Question: Tell me the report for bugatti and brooklands ### Answer: SELECT report FROM table_name_96 WHERE winning_constructor = "bugatti" AND circuit = "brooklands" |
How many years has there been a competition in Helsinki? | CREATE TABLE table_name_78 (year VARCHAR, location VARCHAR) | SELECT COUNT(year) FROM table_name_78 WHERE location = "helsinki" | ### Context: CREATE TABLE table_name_78 (year VARCHAR, location VARCHAR) ### Question: How many years has there been a competition in Helsinki? ### Answer: SELECT COUNT(year) FROM table_name_78 WHERE location = "helsinki" |
Which competition before 1982 had a score of 2:3? | CREATE TABLE table_name_96 (competition VARCHAR, year VARCHAR, score VARCHAR) | SELECT competition FROM table_name_96 WHERE year < 1982 AND score = "2:3" | ### Context: CREATE TABLE table_name_96 (competition VARCHAR, year VARCHAR, score VARCHAR) ### Question: Which competition before 1982 had a score of 2:3? ### Answer: SELECT competition FROM table_name_96 WHERE year < 1982 AND score = "2:3" |
Which competition occurred after 1980 with a score of 0:5 in Jerusalem? | CREATE TABLE table_name_51 (competition VARCHAR, location VARCHAR, year VARCHAR, score VARCHAR) | SELECT competition FROM table_name_51 WHERE year > 1980 AND score = "0:5" AND location = "jerusalem" | ### Context: CREATE TABLE table_name_51 (competition VARCHAR, location VARCHAR, year VARCHAR, score VARCHAR) ### Question: Which competition occurred after 1980 with a score of 0:5 in Jerusalem? ### Answer: SELECT competition FROM table_name_51 WHERE year > 1980 AND score = "0:5" AND location = "jerusalem" |
When was there an attendance of 51,342? | CREATE TABLE table_name_6 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_6 WHERE attendance = "51,342" | ### Context: CREATE TABLE table_name_6 (date VARCHAR, attendance VARCHAR) ### Question: When was there an attendance of 51,342? ### Answer: SELECT date FROM table_name_6 WHERE attendance = "51,342" |
What was the attendance during week 7? | CREATE TABLE table_name_88 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_88 WHERE week = 7 | ### Context: CREATE TABLE table_name_88 (attendance VARCHAR, week VARCHAR) ### Question: What was the attendance during week 7? ### Answer: SELECT attendance FROM table_name_88 WHERE week = 7 |
What was the score during week 16? | CREATE TABLE table_name_12 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_12 WHERE week = 16 | ### Context: CREATE TABLE table_name_12 (result VARCHAR, week VARCHAR) ### Question: What was the score during week 16? ### Answer: SELECT result FROM table_name_12 WHERE week = 16 |
Who is the mInister who left office during 1960? | CREATE TABLE table_name_58 (minister VARCHAR, left_office VARCHAR) | SELECT minister FROM table_name_58 WHERE left_office = "1960" | ### Context: CREATE TABLE table_name_58 (minister VARCHAR, left_office VARCHAR) ### Question: Who is the mInister who left office during 1960? ### Answer: SELECT minister FROM table_name_58 WHERE left_office = "1960" |
Which government is number 6? | CREATE TABLE table_name_63 (government VARCHAR, number VARCHAR) | SELECT government FROM table_name_63 WHERE number = 6 | ### Context: CREATE TABLE table_name_63 (government VARCHAR, number VARCHAR) ### Question: Which government is number 6? ### Answer: SELECT government FROM table_name_63 WHERE number = 6 |
Which rider had a speed of 90.57mph? | CREATE TABLE table_name_59 (rider VARCHAR, speed VARCHAR) | SELECT rider FROM table_name_59 WHERE speed = "90.57mph" | ### Context: CREATE TABLE table_name_59 (rider VARCHAR, speed VARCHAR) ### Question: Which rider had a speed of 90.57mph? ### Answer: SELECT rider FROM table_name_59 WHERE speed = "90.57mph" |
Which country has a place smaller than 8 and points smaller than 5? | CREATE TABLE table_name_63 (country VARCHAR, place VARCHAR, points VARCHAR) | SELECT country FROM table_name_63 WHERE place < 8 AND points < 5 | ### Context: CREATE TABLE table_name_63 (country VARCHAR, place VARCHAR, points VARCHAR) ### Question: Which country has a place smaller than 8 and points smaller than 5? ### Answer: SELECT country FROM table_name_63 WHERE place < 8 AND points < 5 |
What is the lowest number of Losses when the number of Wins is less than 4, the number of Tie is 2, and the Place is 5? | CREATE TABLE table_name_38 (losses INTEGER, place VARCHAR, wins VARCHAR, ties VARCHAR) | SELECT MIN(losses) FROM table_name_38 WHERE wins < 4 AND ties = 2 AND place = 5 | ### Context: CREATE TABLE table_name_38 (losses INTEGER, place VARCHAR, wins VARCHAR, ties VARCHAR) ### Question: What is the lowest number of Losses when the number of Wins is less than 4, the number of Tie is 2, and the Place is 5? ### Answer: SELECT MIN(losses) FROM table_name_38 WHERE wins < 4 AND ties = 2 AND place = 5 |
Tell me the post-season record for kansas city | CREATE TABLE table_name_55 (post_season_record_ VARCHAR, e_ VARCHAR, mlb_affiliate VARCHAR) | SELECT post_season_record_[e_] FROM table_name_55 WHERE mlb_affiliate = "kansas city" | ### Context: CREATE TABLE table_name_55 (post_season_record_ VARCHAR, e_ VARCHAR, mlb_affiliate VARCHAR) ### Question: Tell me the post-season record for kansas city ### Answer: SELECT post_season_record_[e_] FROM table_name_55 WHERE mlb_affiliate = "kansas city" |
Tell me the venue of 29 april 2007 | CREATE TABLE table_name_14 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_14 WHERE date = "29 april 2007" | ### Context: CREATE TABLE table_name_14 (venue VARCHAR, date VARCHAR) ### Question: Tell me the venue of 29 april 2007 ### Answer: SELECT venue FROM table_name_14 WHERE date = "29 april 2007" |
Tell me the competition of 20 august 2008 | CREATE TABLE table_name_87 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_87 WHERE date = "20 august 2008" | ### Context: CREATE TABLE table_name_87 (competition VARCHAR, date VARCHAR) ### Question: Tell me the competition of 20 august 2008 ### Answer: SELECT competition FROM table_name_87 WHERE date = "20 august 2008" |
Tell me the date of stade des martyrs, dr congo | CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_89 WHERE venue = "stade des martyrs, dr congo" | ### Context: CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR) ### Question: Tell me the date of stade des martyrs, dr congo ### Answer: SELECT date FROM table_name_89 WHERE venue = "stade des martyrs, dr congo" |
How much money, in millions, is paid to Infotalent? | CREATE TABLE table_name_92 (amount__millions_ VARCHAR, payee VARCHAR) | SELECT amount__millions_ FROM table_name_92 WHERE payee = "infotalent" | ### Context: CREATE TABLE table_name_92 (amount__millions_ VARCHAR, payee VARCHAR) ### Question: How much money, in millions, is paid to Infotalent? ### Answer: SELECT amount__millions_ FROM table_name_92 WHERE payee = "infotalent" |
What is the purpose of Euromarine? | CREATE TABLE table_name_52 (purpose VARCHAR, payee VARCHAR) | SELECT purpose FROM table_name_52 WHERE payee = "euromarine" | ### Context: CREATE TABLE table_name_52 (purpose VARCHAR, payee VARCHAR) ### Question: What is the purpose of Euromarine? ### Answer: SELECT purpose FROM table_name_52 WHERE payee = "euromarine" |
What signatory has a purpose of police security and Infotalent payee? | CREATE TABLE table_name_71 (signatories VARCHAR, purpose VARCHAR, payee VARCHAR) | SELECT signatories FROM table_name_71 WHERE purpose = "police security" AND payee = "infotalent" | ### Context: CREATE TABLE table_name_71 (signatories VARCHAR, purpose VARCHAR, payee VARCHAR) ### Question: What signatory has a purpose of police security and Infotalent payee? ### Answer: SELECT signatories FROM table_name_71 WHERE purpose = "police security" AND payee = "infotalent" |
Tell me the highest launced for trn | CREATE TABLE table_name_1 (launched INTEGER, name VARCHAR) | SELECT MAX(launched) FROM table_name_1 WHERE name = "trn" | ### Context: CREATE TABLE table_name_1 (launched INTEGER, name VARCHAR) ### Question: Tell me the highest launced for trn ### Answer: SELECT MAX(launched) FROM table_name_1 WHERE name = "trn" |
Tell me the period for red rock | CREATE TABLE table_name_25 (period VARCHAR, place VARCHAR) | SELECT period FROM table_name_25 WHERE place = "red rock" | ### Context: CREATE TABLE table_name_25 (period VARCHAR, place VARCHAR) ### Question: Tell me the period for red rock ### Answer: SELECT period FROM table_name_25 WHERE place = "red rock" |
Tell me the province for 260km ese of calgary | CREATE TABLE table_name_15 (province VARCHAR, location VARCHAR) | SELECT province FROM table_name_15 WHERE location = "260km ese of calgary" | ### Context: CREATE TABLE table_name_15 (province VARCHAR, location VARCHAR) ### Question: Tell me the province for 260km ese of calgary ### Answer: SELECT province FROM table_name_15 WHERE location = "260km ese of calgary" |
Tell me the province of 1941-1946 | CREATE TABLE table_name_49 (province VARCHAR, period VARCHAR) | SELECT province FROM table_name_49 WHERE period = "1941-1946" | ### Context: CREATE TABLE table_name_49 (province VARCHAR, period VARCHAR) ### Question: Tell me the province of 1941-1946 ### Answer: SELECT province FROM table_name_49 WHERE period = "1941-1946" |
Tell me the degree for chemistry 1965 | CREATE TABLE table_name_90 (degree VARCHAR, award_year VARCHAR, award VARCHAR) | SELECT degree FROM table_name_90 WHERE award_year = 1965 AND award = "chemistry" | ### Context: CREATE TABLE table_name_90 (degree VARCHAR, award_year VARCHAR, award VARCHAR) ### Question: Tell me the degree for chemistry 1965 ### Answer: SELECT degree FROM table_name_90 WHERE award_year = 1965 AND award = "chemistry" |
What is the Election date for Member william richmond category:articles with hcards? | CREATE TABLE table_name_49 (election_date VARCHAR, member VARCHAR) | SELECT election_date FROM table_name_49 WHERE member = "william richmond category:articles with hcards" | ### Context: CREATE TABLE table_name_49 (election_date VARCHAR, member VARCHAR) ### Question: What is the Election date for Member william richmond category:articles with hcards? ### Answer: SELECT election_date FROM table_name_49 WHERE member = "william richmond category:articles with hcards" |
What is the election date for the city of auckland category:articles with hcards? | CREATE TABLE table_name_16 (election_date VARCHAR, electorate VARCHAR) | SELECT election_date FROM table_name_16 WHERE electorate = "city of auckland category:articles with hcards" | ### Context: CREATE TABLE table_name_16 (election_date VARCHAR, electorate VARCHAR) ### Question: What is the election date for the city of auckland category:articles with hcards? ### Answer: SELECT election_date FROM table_name_16 WHERE electorate = "city of auckland category:articles with hcards" |
What electorate does Member dingley brittin category:articles with hcards represent? | CREATE TABLE table_name_37 (electorate VARCHAR, member VARCHAR) | SELECT electorate FROM table_name_37 WHERE member = "dingley brittin category:articles with hcards" | ### Context: CREATE TABLE table_name_37 (electorate VARCHAR, member VARCHAR) ### Question: What electorate does Member dingley brittin category:articles with hcards represent? ### Answer: SELECT electorate FROM table_name_37 WHERE member = "dingley brittin category:articles with hcards" |
What is the election date for the electorate of member charles brown category:articles with hcards? | CREATE TABLE table_name_94 (election_date VARCHAR, member VARCHAR) | SELECT election_date FROM table_name_94 WHERE member = "charles brown category:articles with hcards" | ### Context: CREATE TABLE table_name_94 (election_date VARCHAR, member VARCHAR) ### Question: What is the election date for the electorate of member charles brown category:articles with hcards? ### Answer: SELECT election_date FROM table_name_94 WHERE member = "charles brown category:articles with hcards" |
Tell me the date for acts of 6 bands and year larger than 1981 for monsters of rock | CREATE TABLE table_name_4 (date VARCHAR, event VARCHAR, acts VARCHAR, year VARCHAR) | SELECT date FROM table_name_4 WHERE acts = "6 bands" AND year > 1981 AND event = "monsters of rock" | ### Context: CREATE TABLE table_name_4 (date VARCHAR, event VARCHAR, acts VARCHAR, year VARCHAR) ### Question: Tell me the date for acts of 6 bands and year larger than 1981 for monsters of rock ### Answer: SELECT date FROM table_name_4 WHERE acts = "6 bands" AND year > 1981 AND event = "monsters of rock" |
Tell me the stages for 1981 | CREATE TABLE table_name_42 (stages VARCHAR, year VARCHAR) | SELECT stages FROM table_name_42 WHERE year = 1981 | ### Context: CREATE TABLE table_name_42 (stages VARCHAR, year VARCHAR) ### Question: Tell me the stages for 1981 ### Answer: SELECT stages FROM table_name_42 WHERE year = 1981 |
Tell me the event for 6 bands | CREATE TABLE table_name_74 (event VARCHAR, acts VARCHAR) | SELECT event FROM table_name_74 WHERE acts = "6 bands" | ### Context: CREATE TABLE table_name_74 (event VARCHAR, acts VARCHAR) ### Question: Tell me the event for 6 bands ### Answer: SELECT event FROM table_name_74 WHERE acts = "6 bands" |
What is the lightweight value with no information model and the flexible value is unknown? | CREATE TABLE table_name_79 (lightweight VARCHAR, information_model VARCHAR, flexible VARCHAR) | SELECT lightweight FROM table_name_79 WHERE information_model = "no" AND flexible = "unknown" | ### Context: CREATE TABLE table_name_79 (lightweight VARCHAR, information_model VARCHAR, flexible VARCHAR) ### Question: What is the lightweight value with no information model and the flexible value is unknown? ### Answer: SELECT lightweight FROM table_name_79 WHERE information_model = "no" AND flexible = "unknown" |
What is the bore for a 9-cyl radial on a 9 AD? | CREATE TABLE table_name_8 (bore VARCHAR, cyl VARCHAR, name VARCHAR) | SELECT bore FROM table_name_8 WHERE cyl = "9-cyl radial" AND name = "9 ad" | ### Context: CREATE TABLE table_name_8 (bore VARCHAR, cyl VARCHAR, name VARCHAR) ### Question: What is the bore for a 9-cyl radial on a 9 AD? ### Answer: SELECT bore FROM table_name_8 WHERE cyl = "9-cyl radial" AND name = "9 ad" |
What bore goes with an 18 AB? | CREATE TABLE table_name_9 (bore VARCHAR, name VARCHAR) | SELECT bore FROM table_name_9 WHERE name = "18 ab" | ### Context: CREATE TABLE table_name_9 (bore VARCHAR, name VARCHAR) ### Question: What bore goes with an 18 AB? ### Answer: SELECT bore FROM table_name_9 WHERE name = "18 ab" |
Tell me the venue for notes of 10.93 secs | CREATE TABLE table_name_45 (venue VARCHAR, notes VARCHAR) | SELECT venue FROM table_name_45 WHERE notes = "10.93 secs" | ### Context: CREATE TABLE table_name_45 (venue VARCHAR, notes VARCHAR) ### Question: Tell me the venue for notes of 10.93 secs ### Answer: SELECT venue FROM table_name_45 WHERE notes = "10.93 secs" |
Tell me the venue for year less than 2003 | CREATE TABLE table_name_81 (venue VARCHAR, year INTEGER) | SELECT venue FROM table_name_81 WHERE year < 2003 | ### Context: CREATE TABLE table_name_81 (venue VARCHAR, year INTEGER) ### Question: Tell me the venue for year less than 2003 ### Answer: SELECT venue FROM table_name_81 WHERE year < 2003 |
What is the total number of points team Alfa Romeo 184T won? | CREATE TABLE table_name_56 (points INTEGER, team_chassis VARCHAR) | SELECT SUM(points) FROM table_name_56 WHERE team_chassis = "alfa romeo 184t" | ### Context: CREATE TABLE table_name_56 (points INTEGER, team_chassis VARCHAR) ### Question: What is the total number of points team Alfa Romeo 184T won? ### Answer: SELECT SUM(points) FROM table_name_56 WHERE team_chassis = "alfa romeo 184t" |
What engine was used after 1984? | CREATE TABLE table_name_87 (engine VARCHAR, year INTEGER) | SELECT engine FROM table_name_87 WHERE year > 1984 | ### Context: CREATE TABLE table_name_87 (engine VARCHAR, year INTEGER) ### Question: What engine was used after 1984? ### Answer: SELECT engine FROM table_name_87 WHERE year > 1984 |
In which year were the points more than 0? | CREATE TABLE table_name_72 (year VARCHAR, points INTEGER) | SELECT year FROM table_name_72 WHERE points > 0 | ### Context: CREATE TABLE table_name_72 (year VARCHAR, points INTEGER) ### Question: In which year were the points more than 0? ### Answer: SELECT year FROM table_name_72 WHERE points > 0 |
What were the Tyres after 1984? | CREATE TABLE table_name_22 (tyres VARCHAR, year INTEGER) | SELECT tyres FROM table_name_22 WHERE year > 1984 | ### Context: CREATE TABLE table_name_22 (tyres VARCHAR, year INTEGER) ### Question: What were the Tyres after 1984? ### Answer: SELECT tyres FROM table_name_22 WHERE year > 1984 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.