question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the nationality of Stromile Swift?
CREATE TABLE table_name_48 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_48 WHERE player = "stromile swift"
### Context: CREATE TABLE table_name_48 (nationality VARCHAR, player VARCHAR) ### Question: What is the nationality of Stromile Swift? ### Answer: SELECT nationality FROM table_name_48 WHERE player = "stromile swift"
Which years did the player from Providence play for Memphis?
CREATE TABLE table_name_62 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)
SELECT years_for_grizzlies FROM table_name_62 WHERE school_club_team = "providence"
### Context: CREATE TABLE table_name_62 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) ### Question: Which years did the player from Providence play for Memphis? ### Answer: SELECT years_for_grizzlies FROM table_name_62 WHERE school_club_team = "providence"
Which team has a record of 7-1?
CREATE TABLE table_name_99 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_99 WHERE record = "7-1"
### Context: CREATE TABLE table_name_99 (opponent VARCHAR, record VARCHAR) ### Question: Which team has a record of 7-1? ### Answer: SELECT opponent FROM table_name_99 WHERE record = "7-1"
What game number was the first game played at the Summit this season?
CREATE TABLE table_name_25 (game INTEGER, location VARCHAR)
SELECT MIN(game) FROM table_name_25 WHERE location = "the summit"
### Context: CREATE TABLE table_name_25 (game INTEGER, location VARCHAR) ### Question: What game number was the first game played at the Summit this season? ### Answer: SELECT MIN(game) FROM table_name_25 WHERE location = "the summit"
What was the final score for the game played against the New York Knicks?
CREATE TABLE table_name_11 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_11 WHERE opponent = "new york knicks"
### Context: CREATE TABLE table_name_11 (score VARCHAR, opponent VARCHAR) ### Question: What was the final score for the game played against the New York Knicks? ### Answer: SELECT score FROM table_name_11 WHERE opponent = "new york knicks"
For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record?
CREATE TABLE table_name_68 (record VARCHAR, location VARCHAR, score VARCHAR)
SELECT record FROM table_name_68 WHERE location = "boston garden" AND score = "118-110"
### Context: CREATE TABLE table_name_68 (record VARCHAR, location VARCHAR, score VARCHAR) ### Question: For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record? ### Answer: SELECT record FROM table_name_68 WHERE location = "boston garden" AND score = "118-110"
What is Finish, when Year(s) Won is "1962 , 1967"?
CREATE TABLE table_name_58 (finish VARCHAR, year_s__won VARCHAR)
SELECT finish FROM table_name_58 WHERE year_s__won = "1962 , 1967"
### Context: CREATE TABLE table_name_58 (finish VARCHAR, year_s__won VARCHAR) ### Question: What is Finish, when Year(s) Won is "1962 , 1967"? ### Answer: SELECT finish FROM table_name_58 WHERE year_s__won = "1962 , 1967"
What is Player, when To Par is greater than 6, and when Year(s) Won is "1962 , 1967"?
CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
SELECT player FROM table_name_41 WHERE to_par > 6 AND year_s__won = "1962 , 1967"
### Context: CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR) ### Question: What is Player, when To Par is greater than 6, and when Year(s) Won is "1962 , 1967"? ### Answer: SELECT player FROM table_name_41 WHERE to_par > 6 AND year_s__won = "1962 , 1967"
What is Finish, when To Par is less than 14, and when Year(s) Won is "1952 , 1963"?
CREATE TABLE table_name_85 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
SELECT finish FROM table_name_85 WHERE to_par < 14 AND year_s__won = "1952 , 1963"
### Context: CREATE TABLE table_name_85 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR) ### Question: What is Finish, when To Par is less than 14, and when Year(s) Won is "1952 , 1963"? ### Answer: SELECT finish FROM table_name_85 WHERE to_par < 14 AND year_s__won = "1952 , 1963"
What is the highest To Par, when Year(s) Won is "1962 , 1967"?
CREATE TABLE table_name_66 (to_par INTEGER, year_s__won VARCHAR)
SELECT MAX(to_par) FROM table_name_66 WHERE year_s__won = "1962 , 1967"
### Context: CREATE TABLE table_name_66 (to_par INTEGER, year_s__won VARCHAR) ### Question: What is the highest To Par, when Year(s) Won is "1962 , 1967"? ### Answer: SELECT MAX(to_par) FROM table_name_66 WHERE year_s__won = "1962 , 1967"
What is the Total, when To Par is less than 14, when Finish is T12, and when Player is "Julius Boros"?
CREATE TABLE table_name_13 (total VARCHAR, player VARCHAR, to_par VARCHAR, finish VARCHAR)
SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = "t12" AND player = "julius boros"
### Context: CREATE TABLE table_name_13 (total VARCHAR, player VARCHAR, to_par VARCHAR, finish VARCHAR) ### Question: What is the Total, when To Par is less than 14, when Finish is T12, and when Player is "Julius Boros"? ### Answer: SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = "t12" AND player = "julius boros"
What is the highest number of artists on Scarface?
CREATE TABLE table_name_67 (number INTEGER, artist VARCHAR)
SELECT MAX(number) FROM table_name_67 WHERE artist = "scarface"
### Context: CREATE TABLE table_name_67 (number INTEGER, artist VARCHAR) ### Question: What is the highest number of artists on Scarface? ### Answer: SELECT MAX(number) FROM table_name_67 WHERE artist = "scarface"
What is the average number for Black Milk?
CREATE TABLE table_name_18 (number INTEGER, artist VARCHAR)
SELECT AVG(number) FROM table_name_18 WHERE artist = "black milk"
### Context: CREATE TABLE table_name_18 (number INTEGER, artist VARCHAR) ### Question: What is the average number for Black Milk? ### Answer: SELECT AVG(number) FROM table_name_18 WHERE artist = "black milk"
What is the lowest average for number 2?
CREATE TABLE table_name_12 (average_score INTEGER, number VARCHAR)
SELECT MIN(average_score) FROM table_name_12 WHERE number = 2
### Context: CREATE TABLE table_name_12 (average_score INTEGER, number VARCHAR) ### Question: What is the lowest average for number 2? ### Answer: SELECT MIN(average_score) FROM table_name_12 WHERE number = 2
What is the highest score for Black Milk?
CREATE TABLE table_name_29 (average_score INTEGER, artist VARCHAR)
SELECT MAX(average_score) FROM table_name_29 WHERE artist = "black milk"
### Context: CREATE TABLE table_name_29 (average_score INTEGER, artist VARCHAR) ### Question: What is the highest score for Black Milk? ### Answer: SELECT MAX(average_score) FROM table_name_29 WHERE artist = "black milk"
What surface was played on when Piet Norval was a partner?
CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR)
SELECT surface FROM table_name_24 WHERE partner = "piet norval"
### Context: CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR) ### Question: What surface was played on when Piet Norval was a partner? ### Answer: SELECT surface FROM table_name_24 WHERE partner = "piet norval"
What was the surface played on when they were a runner-up in 2007?
CREATE TABLE table_name_5 (surface VARCHAR, outcome VARCHAR, year VARCHAR)
SELECT surface FROM table_name_5 WHERE outcome = "runner-up" AND year = 2007
### Context: CREATE TABLE table_name_5 (surface VARCHAR, outcome VARCHAR, year VARCHAR) ### Question: What was the surface played on when they were a runner-up in 2007? ### Answer: SELECT surface FROM table_name_5 WHERE outcome = "runner-up" AND year = 2007
What is Goals, when Assists is greater than 28, and when Player is Steve Walker?
CREATE TABLE table_name_89 (goals VARCHAR, assists VARCHAR, player VARCHAR)
SELECT goals FROM table_name_89 WHERE assists > 28 AND player = "steve walker"
### Context: CREATE TABLE table_name_89 (goals VARCHAR, assists VARCHAR, player VARCHAR) ### Question: What is Goals, when Assists is greater than 28, and when Player is Steve Walker? ### Answer: SELECT goals FROM table_name_89 WHERE assists > 28 AND player = "steve walker"
What is the average Games, when Player is Robert Hock, and when Goals is less than 24?
CREATE TABLE table_name_19 (games INTEGER, player VARCHAR, goals VARCHAR)
SELECT AVG(games) FROM table_name_19 WHERE player = "robert hock" AND goals < 24
### Context: CREATE TABLE table_name_19 (games INTEGER, player VARCHAR, goals VARCHAR) ### Question: What is the average Games, when Player is Robert Hock, and when Goals is less than 24? ### Answer: SELECT AVG(games) FROM table_name_19 WHERE player = "robert hock" AND goals < 24
What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44?
CREATE TABLE table_name_18 (assists INTEGER, goals VARCHAR, club VARCHAR, points VARCHAR)
SELECT AVG(assists) FROM table_name_18 WHERE club = "iserlohn roosters" AND points = 71 AND goals > 44
### Context: CREATE TABLE table_name_18 (assists INTEGER, goals VARCHAR, club VARCHAR, points VARCHAR) ### Question: What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44? ### Answer: SELECT AVG(assists) FROM table_name_18 WHERE club = "iserlohn roosters" AND points = 71 AND goals > 44
What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56?
CREATE TABLE table_name_45 (goals INTEGER, club VARCHAR, games VARCHAR)
SELECT AVG(goals) FROM table_name_45 WHERE club = "iserlohn roosters" AND games < 56
### Context: CREATE TABLE table_name_45 (goals INTEGER, club VARCHAR, games VARCHAR) ### Question: What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56? ### Answer: SELECT AVG(goals) FROM table_name_45 WHERE club = "iserlohn roosters" AND games < 56
What is the location of the game with a 115-105 score?
CREATE TABLE table_name_35 (location VARCHAR, score VARCHAR)
SELECT location FROM table_name_35 WHERE score = "115-105"
### Context: CREATE TABLE table_name_35 (location VARCHAR, score VARCHAR) ### Question: What is the location of the game with a 115-105 score? ### Answer: SELECT location FROM table_name_35 WHERE score = "115-105"
What is the record of the game with a 110-106 score?
CREATE TABLE table_name_89 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_89 WHERE score = "110-106"
### Context: CREATE TABLE table_name_89 (record VARCHAR, score VARCHAR) ### Question: What is the record of the game with a 110-106 score? ### Answer: SELECT record FROM table_name_89 WHERE score = "110-106"
What is the record of game 48?
CREATE TABLE table_name_40 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_40 WHERE game = 48
### Context: CREATE TABLE table_name_40 (record VARCHAR, game VARCHAR) ### Question: What is the record of game 48? ### Answer: SELECT record FROM table_name_40 WHERE game = 48
What is the record of the game with a 110-106 score?
CREATE TABLE table_name_1 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_1 WHERE score = "110-106"
### Context: CREATE TABLE table_name_1 (record VARCHAR, score VARCHAR) ### Question: What is the record of the game with a 110-106 score? ### Answer: SELECT record FROM table_name_1 WHERE score = "110-106"
What is the score at the forum location?
CREATE TABLE table_name_23 (score VARCHAR, location VARCHAR)
SELECT score FROM table_name_23 WHERE location = "the forum"
### Context: CREATE TABLE table_name_23 (score VARCHAR, location VARCHAR) ### Question: What is the score at the forum location? ### Answer: SELECT score FROM table_name_23 WHERE location = "the forum"
What is Method, when Location is "Tokyo , Japan", and when Event is "Rings: Millennium Combine 2"?
CREATE TABLE table_name_38 (method VARCHAR, location VARCHAR, event VARCHAR)
SELECT method FROM table_name_38 WHERE location = "tokyo , japan" AND event = "rings: millennium combine 2"
### Context: CREATE TABLE table_name_38 (method VARCHAR, location VARCHAR, event VARCHAR) ### Question: What is Method, when Location is "Tokyo , Japan", and when Event is "Rings: Millennium Combine 2"? ### Answer: SELECT method FROM table_name_38 WHERE location = "tokyo , japan" AND event = "rings: millennium combine 2"
What is Method, when Opponent is "Chalid Arrab"?
CREATE TABLE table_name_4 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_4 WHERE opponent = "chalid arrab"
### Context: CREATE TABLE table_name_4 (method VARCHAR, opponent VARCHAR) ### Question: What is Method, when Opponent is "Chalid Arrab"? ### Answer: SELECT method FROM table_name_4 WHERE opponent = "chalid arrab"
What is the sum of Round, when Record is "19-25-5"?
CREATE TABLE table_name_70 (round INTEGER, record VARCHAR)
SELECT SUM(round) FROM table_name_70 WHERE record = "19-25-5"
### Context: CREATE TABLE table_name_70 (round INTEGER, record VARCHAR) ### Question: What is the sum of Round, when Record is "19-25-5"? ### Answer: SELECT SUM(round) FROM table_name_70 WHERE record = "19-25-5"
Which region has Stanford University as host?
CREATE TABLE table_name_12 (region VARCHAR, host VARCHAR)
SELECT region FROM table_name_12 WHERE host = "stanford university"
### Context: CREATE TABLE table_name_12 (region VARCHAR, host VARCHAR) ### Question: Which region has Stanford University as host? ### Answer: SELECT region FROM table_name_12 WHERE host = "stanford university"
Which state contains the University of Iowa in the mideast region?
CREATE TABLE table_name_67 (state VARCHAR, region VARCHAR, host VARCHAR)
SELECT state FROM table_name_67 WHERE region = "mideast" AND host = "university of iowa"
### Context: CREATE TABLE table_name_67 (state VARCHAR, region VARCHAR, host VARCHAR) ### Question: Which state contains the University of Iowa in the mideast region? ### Answer: SELECT state FROM table_name_67 WHERE region = "mideast" AND host = "university of iowa"
Which state includes the city of Storrs?
CREATE TABLE table_name_25 (state VARCHAR, city VARCHAR)
SELECT state FROM table_name_25 WHERE city = "storrs"
### Context: CREATE TABLE table_name_25 (state VARCHAR, city VARCHAR) ### Question: Which state includes the city of Storrs? ### Answer: SELECT state FROM table_name_25 WHERE city = "storrs"
Which state includes the Harry A. Gampel Pavilion venue?
CREATE TABLE table_name_10 (state VARCHAR, venue VARCHAR)
SELECT state FROM table_name_10 WHERE venue = "harry a. gampel pavilion"
### Context: CREATE TABLE table_name_10 (state VARCHAR, venue VARCHAR) ### Question: Which state includes the Harry A. Gampel Pavilion venue? ### Answer: SELECT state FROM table_name_10 WHERE venue = "harry a. gampel pavilion"
Which city is in Georgia?
CREATE TABLE table_name_55 (city VARCHAR, state VARCHAR)
SELECT city FROM table_name_55 WHERE state = "georgia"
### Context: CREATE TABLE table_name_55 (city VARCHAR, state VARCHAR) ### Question: Which city is in Georgia? ### Answer: SELECT city FROM table_name_55 WHERE state = "georgia"
What is the total number of rounds that had Jason Missiaen?
CREATE TABLE table_name_75 (round VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_75 WHERE player = "jason missiaen"
### Context: CREATE TABLE table_name_75 (round VARCHAR, player VARCHAR) ### Question: What is the total number of rounds that had Jason Missiaen? ### Answer: SELECT COUNT(round) FROM table_name_75 WHERE player = "jason missiaen"
What player is from Russia?
CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR)
SELECT player FROM table_name_8 WHERE nationality = "russia"
### Context: CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR) ### Question: What player is from Russia? ### Answer: SELECT player FROM table_name_8 WHERE nationality = "russia"
What nationality is the pick from round 7?
CREATE TABLE table_name_9 (nationality VARCHAR, round VARCHAR)
SELECT nationality FROM table_name_9 WHERE round = 7
### Context: CREATE TABLE table_name_9 (nationality VARCHAR, round VARCHAR) ### Question: What nationality is the pick from round 7? ### Answer: SELECT nationality FROM table_name_9 WHERE round = 7
what is the album when the year is later than 2008?
CREATE TABLE table_name_77 (album VARCHAR, year INTEGER)
SELECT album FROM table_name_77 WHERE year > 2008
### Context: CREATE TABLE table_name_77 (album VARCHAR, year INTEGER) ### Question: what is the album when the year is later than 2008? ### Answer: SELECT album FROM table_name_77 WHERE year > 2008
What is the Championship Game that has 4 Bids and a .600 Win %?
CREATE TABLE table_name_40 (championship_game VARCHAR, _number_of_bids VARCHAR, win__percentage VARCHAR)
SELECT championship_game FROM table_name_40 WHERE _number_of_bids = 4 AND win__percentage = ".600"
### Context: CREATE TABLE table_name_40 (championship_game VARCHAR, _number_of_bids VARCHAR, win__percentage VARCHAR) ### Question: What is the Championship Game that has 4 Bids and a .600 Win %? ### Answer: SELECT championship_game FROM table_name_40 WHERE _number_of_bids = 4 AND win__percentage = ".600"
What is the team 2 with cobreloa as team 1?
CREATE TABLE table_name_2 (team_2 VARCHAR, team_1 VARCHAR)
SELECT team_2 FROM table_name_2 WHERE team_1 = "cobreloa"
### Context: CREATE TABLE table_name_2 (team_2 VARCHAR, team_1 VARCHAR) ### Question: What is the team 2 with cobreloa as team 1? ### Answer: SELECT team_2 FROM table_name_2 WHERE team_1 = "cobreloa"
How many picks had a round smaller than 6 and an overall bigger than 153?
CREATE TABLE table_name_47 (pick INTEGER, round VARCHAR, overall VARCHAR)
SELECT SUM(pick) FROM table_name_47 WHERE round < 6 AND overall > 153
### Context: CREATE TABLE table_name_47 (pick INTEGER, round VARCHAR, overall VARCHAR) ### Question: How many picks had a round smaller than 6 and an overall bigger than 153? ### Answer: SELECT SUM(pick) FROM table_name_47 WHERE round < 6 AND overall > 153
What was the attendance on 31 January 2009 when the opponent was Airdrie United?
CREATE TABLE table_name_33 (attendance INTEGER, opponent VARCHAR, date VARCHAR)
SELECT AVG(attendance) FROM table_name_33 WHERE opponent = "airdrie united" AND date = "31 january 2009"
### Context: CREATE TABLE table_name_33 (attendance INTEGER, opponent VARCHAR, date VARCHAR) ### Question: What was the attendance on 31 January 2009 when the opponent was Airdrie United? ### Answer: SELECT AVG(attendance) FROM table_name_33 WHERE opponent = "airdrie united" AND date = "31 january 2009"
In what venue was the event held on 14 February 2009?
CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_95 WHERE date = "14 february 2009"
### Context: CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR) ### Question: In what venue was the event held on 14 February 2009? ### Answer: SELECT venue FROM table_name_95 WHERE date = "14 february 2009"
What is the average attendance for all events held at Palmerston Park venue?
CREATE TABLE table_name_24 (attendance INTEGER, venue VARCHAR)
SELECT AVG(attendance) FROM table_name_24 WHERE venue = "palmerston park"
### Context: CREATE TABLE table_name_24 (attendance INTEGER, venue VARCHAR) ### Question: What is the average attendance for all events held at Palmerston Park venue? ### Answer: SELECT AVG(attendance) FROM table_name_24 WHERE venue = "palmerston park"
What is the total number of t (µm), when Technology is u c-si?
CREATE TABLE table_name_67 (t__µm_ VARCHAR, technology VARCHAR)
SELECT COUNT(t__µm_) FROM table_name_67 WHERE technology = "u c-si"
### Context: CREATE TABLE table_name_67 (t__µm_ VARCHAR, technology VARCHAR) ### Question: What is the total number of t (µm), when Technology is u c-si? ### Answer: SELECT COUNT(t__µm_) FROM table_name_67 WHERE technology = "u c-si"
What is the V OC (V), when t (µm) is greater than 5, and when I SC (A) is 0.8?
CREATE TABLE table_name_46 (v_oc__v_ VARCHAR, t__µm_ VARCHAR, i_sc__a_ VARCHAR)
SELECT v_oc__v_ FROM table_name_46 WHERE t__µm_ > 5 AND i_sc__a_ = "0.8"
### Context: CREATE TABLE table_name_46 (v_oc__v_ VARCHAR, t__µm_ VARCHAR, i_sc__a_ VARCHAR) ### Question: What is the V OC (V), when t (µm) is greater than 5, and when I SC (A) is 0.8? ### Answer: SELECT v_oc__v_ FROM table_name_46 WHERE t__µm_ > 5 AND i_sc__a_ = "0.8"
What is the sum of t (µm), when Technology is MJ?
CREATE TABLE table_name_26 (t__µm_ INTEGER, technology VARCHAR)
SELECT SUM(t__µm_) FROM table_name_26 WHERE technology = "mj"
### Context: CREATE TABLE table_name_26 (t__µm_ INTEGER, technology VARCHAR) ### Question: What is the sum of t (µm), when Technology is MJ? ### Answer: SELECT SUM(t__µm_) FROM table_name_26 WHERE technology = "mj"
What is W/m², when η (%) is greater than 16.5, and when Technology is MJ?
CREATE TABLE table_name_60 (w_m² VARCHAR, η___percentage_ VARCHAR, technology VARCHAR)
SELECT w_m² FROM table_name_60 WHERE η___percentage_ > 16.5 AND technology = "mj"
### Context: CREATE TABLE table_name_60 (w_m² VARCHAR, η___percentage_ VARCHAR, technology VARCHAR) ### Question: What is W/m², when η (%) is greater than 16.5, and when Technology is MJ? ### Answer: SELECT w_m² FROM table_name_60 WHERE η___percentage_ > 16.5 AND technology = "mj"
What type of Bridge is in Stanley?
CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR)
SELECT type FROM table_name_87 WHERE location = "stanley"
### Context: CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR) ### Question: What type of Bridge is in Stanley? ### Answer: SELECT type FROM table_name_87 WHERE location = "stanley"
What type of bridge is Colton's Crossing Bridge?
CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR)
SELECT type FROM table_name_46 WHERE name = "colton's crossing bridge"
### Context: CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) ### Question: What type of bridge is Colton's Crossing Bridge? ### Answer: SELECT type FROM table_name_46 WHERE name = "colton's crossing bridge"
What bridge is a pratt pony through truss tyoe bridge?
CREATE TABLE table_name_4 (name VARCHAR, type VARCHAR)
SELECT name FROM table_name_4 WHERE type = "pratt pony through truss"
### Context: CREATE TABLE table_name_4 (name VARCHAR, type VARCHAR) ### Question: What bridge is a pratt pony through truss tyoe bridge? ### Answer: SELECT name FROM table_name_4 WHERE type = "pratt pony through truss"
What type of bridge is in Cooperstown?
CREATE TABLE table_name_8 (type VARCHAR, location VARCHAR)
SELECT type FROM table_name_8 WHERE location = "cooperstown"
### Context: CREATE TABLE table_name_8 (type VARCHAR, location VARCHAR) ### Question: What type of bridge is in Cooperstown? ### Answer: SELECT type FROM table_name_8 WHERE location = "cooperstown"
What bridge is in Mcville?
CREATE TABLE table_name_69 (name VARCHAR, location VARCHAR)
SELECT name FROM table_name_69 WHERE location = "mcville"
### Context: CREATE TABLE table_name_69 (name VARCHAR, location VARCHAR) ### Question: What bridge is in Mcville? ### Answer: SELECT name FROM table_name_69 WHERE location = "mcville"
Which tracking method supports MySQL databases and is named Open Web Analytics?
CREATE TABLE table_name_62 (tracking_method VARCHAR, supported_databases VARCHAR, name VARCHAR)
SELECT tracking_method FROM table_name_62 WHERE supported_databases = "mysql" AND name = "open web analytics"
### Context: CREATE TABLE table_name_62 (tracking_method VARCHAR, supported_databases VARCHAR, name VARCHAR) ### Question: Which tracking method supports MySQL databases and is named Open Web Analytics? ### Answer: SELECT tracking_method FROM table_name_62 WHERE supported_databases = "mysql" AND name = "open web analytics"
Which tracking method has a latest stable release of 2.23-05?
CREATE TABLE table_name_14 (tracking_method VARCHAR, latest_stable_release VARCHAR)
SELECT tracking_method FROM table_name_14 WHERE latest_stable_release = "2.23-05"
### Context: CREATE TABLE table_name_14 (tracking_method VARCHAR, latest_stable_release VARCHAR) ### Question: Which tracking method has a latest stable release of 2.23-05? ### Answer: SELECT tracking_method FROM table_name_14 WHERE latest_stable_release = "2.23-05"
What is the latest stable release date for Crawltrack?
CREATE TABLE table_name_83 (latest_stable_release VARCHAR, name VARCHAR)
SELECT latest_stable_release FROM table_name_83 WHERE name = "crawltrack"
### Context: CREATE TABLE table_name_83 (latest_stable_release VARCHAR, name VARCHAR) ### Question: What is the latest stable release date for Crawltrack? ### Answer: SELECT latest_stable_release FROM table_name_83 WHERE name = "crawltrack"
Which tracking method has a latest stable release of 6.0?
CREATE TABLE table_name_23 (tracking_method VARCHAR, latest_stable_release VARCHAR)
SELECT tracking_method FROM table_name_23 WHERE latest_stable_release = "6.0"
### Context: CREATE TABLE table_name_23 (tracking_method VARCHAR, latest_stable_release VARCHAR) ### Question: Which tracking method has a latest stable release of 6.0? ### Answer: SELECT tracking_method FROM table_name_23 WHERE latest_stable_release = "6.0"
What is the least passengers from the Dallas/Fort Worth International (DFW) airport?
CREATE TABLE table_name_75 (passengers INTEGER, airport VARCHAR)
SELECT MIN(passengers) FROM table_name_75 WHERE airport = "dallas/fort worth international (dfw)"
### Context: CREATE TABLE table_name_75 (passengers INTEGER, airport VARCHAR) ### Question: What is the least passengers from the Dallas/Fort Worth International (DFW) airport? ### Answer: SELECT MIN(passengers) FROM table_name_75 WHERE airport = "dallas/fort worth international (dfw)"
What city is ranked greater than 6, and the airport is St. Petersburg/Clearwater (PIE)
CREATE TABLE table_name_79 (city VARCHAR, rank VARCHAR, airport VARCHAR)
SELECT city FROM table_name_79 WHERE rank > 6 AND airport = "st. petersburg/clearwater (pie)"
### Context: CREATE TABLE table_name_79 (city VARCHAR, rank VARCHAR, airport VARCHAR) ### Question: What city is ranked greater than 6, and the airport is St. Petersburg/Clearwater (PIE) ### Answer: SELECT city FROM table_name_79 WHERE rank > 6 AND airport = "st. petersburg/clearwater (pie)"
What is the total rank of the airport that has 79,290 passengers?
CREATE TABLE table_name_63 (rank VARCHAR, passengers VARCHAR)
SELECT COUNT(rank) FROM table_name_63 WHERE passengers = 79 OFFSET 290
### Context: CREATE TABLE table_name_63 (rank VARCHAR, passengers VARCHAR) ### Question: What is the total rank of the airport that has 79,290 passengers? ### Answer: SELECT COUNT(rank) FROM table_name_63 WHERE passengers = 79 OFFSET 290
Which Winner has a Country of norway, and a FIS Nordic World Ski Championships of 1924?
CREATE TABLE table_name_97 (winner VARCHAR, country VARCHAR, fis_nordic_world_ski_championships VARCHAR)
SELECT winner FROM table_name_97 WHERE country = "norway" AND fis_nordic_world_ski_championships = "1924"
### Context: CREATE TABLE table_name_97 (winner VARCHAR, country VARCHAR, fis_nordic_world_ski_championships VARCHAR) ### Question: Which Winner has a Country of norway, and a FIS Nordic World Ski Championships of 1924? ### Answer: SELECT winner FROM table_name_97 WHERE country = "norway" AND fis_nordic_world_ski_championships = "1924"
Which Country has a FIS Nordic World Ski Championships of 1948, 1950?
CREATE TABLE table_name_96 (country VARCHAR, fis_nordic_world_ski_championships VARCHAR)
SELECT country FROM table_name_96 WHERE fis_nordic_world_ski_championships = "1948, 1950"
### Context: CREATE TABLE table_name_96 (country VARCHAR, fis_nordic_world_ski_championships VARCHAR) ### Question: Which Country has a FIS Nordic World Ski Championships of 1948, 1950? ### Answer: SELECT country FROM table_name_96 WHERE fis_nordic_world_ski_championships = "1948, 1950"
Which Holmenkollen has a Country of norway, and a Winner of tom sandberg?
CREATE TABLE table_name_22 (holmenkollen VARCHAR, country VARCHAR, winner VARCHAR)
SELECT holmenkollen FROM table_name_22 WHERE country = "norway" AND winner = "tom sandberg"
### Context: CREATE TABLE table_name_22 (holmenkollen VARCHAR, country VARCHAR, winner VARCHAR) ### Question: Which Holmenkollen has a Country of norway, and a Winner of tom sandberg? ### Answer: SELECT holmenkollen FROM table_name_22 WHERE country = "norway" AND winner = "tom sandberg"
Which FIS Nordic World Ski Championships has Winter Olympics of 1960?
CREATE TABLE table_name_44 (fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)
SELECT fis_nordic_world_ski_championships FROM table_name_44 WHERE winter_olympics = "1960"
### Context: CREATE TABLE table_name_44 (fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR) ### Question: Which FIS Nordic World Ski Championships has Winter Olympics of 1960? ### Answer: SELECT fis_nordic_world_ski_championships FROM table_name_44 WHERE winter_olympics = "1960"
Which Country has a Winter Olympics of 1948?
CREATE TABLE table_name_28 (country VARCHAR, winter_olympics VARCHAR)
SELECT country FROM table_name_28 WHERE winter_olympics = "1948"
### Context: CREATE TABLE table_name_28 (country VARCHAR, winter_olympics VARCHAR) ### Question: Which Country has a Winter Olympics of 1948? ### Answer: SELECT country FROM table_name_28 WHERE winter_olympics = "1948"
Which Winner has a Winter Olympics of 1968?
CREATE TABLE table_name_31 (winner VARCHAR, winter_olympics VARCHAR)
SELECT winner FROM table_name_31 WHERE winter_olympics = "1968"
### Context: CREATE TABLE table_name_31 (winner VARCHAR, winter_olympics VARCHAR) ### Question: Which Winner has a Winter Olympics of 1968? ### Answer: SELECT winner FROM table_name_31 WHERE winter_olympics = "1968"
What was the result of the game when the attendance was 43,279?
CREATE TABLE table_name_8 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_8 WHERE attendance = "43,279"
### Context: CREATE TABLE table_name_8 (result VARCHAR, attendance VARCHAR) ### Question: What was the result of the game when the attendance was 43,279? ### Answer: SELECT result FROM table_name_8 WHERE attendance = "43,279"
What is the average Attendance, when Date is 1 October 1998?
CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_28 WHERE date = "1 october 1998"
### Context: CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR) ### Question: What is the average Attendance, when Date is 1 October 1998? ### Answer: SELECT AVG(attendance) FROM table_name_28 WHERE date = "1 october 1998"
What is Opponent, when Date is 17 September 1998?
CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_76 WHERE date = "17 september 1998"
### Context: CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR) ### Question: What is Opponent, when Date is 17 September 1998? ### Answer: SELECT opponent FROM table_name_76 WHERE date = "17 september 1998"
What is Opponent, when Date is 8 April 1999?
CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_18 WHERE date = "8 april 1999"
### Context: CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR) ### Question: What is Opponent, when Date is 8 April 1999? ### Answer: SELECT opponent FROM table_name_18 WHERE date = "8 april 1999"
WHAT IS THE HIGHEST POINTS FOR LOS ANGELES?
CREATE TABLE table_name_89 (high_points VARCHAR, opponent VARCHAR)
SELECT high_points FROM table_name_89 WHERE opponent = "los angeles"
### Context: CREATE TABLE table_name_89 (high_points VARCHAR, opponent VARCHAR) ### Question: WHAT IS THE HIGHEST POINTS FOR LOS ANGELES? ### Answer: SELECT high_points FROM table_name_89 WHERE opponent = "los angeles"
What was the Score F-A when the result was D?
CREATE TABLE table_name_39 (score_f_a VARCHAR, result VARCHAR)
SELECT score_f_a FROM table_name_39 WHERE result = "d"
### Context: CREATE TABLE table_name_39 (score_f_a VARCHAR, result VARCHAR) ### Question: What was the Score F-A when the result was D? ### Answer: SELECT score_f_a FROM table_name_39 WHERE result = "d"
On which date did they play Leicester City in Venue A?
CREATE TABLE table_name_38 (date VARCHAR, venue VARCHAR, opponents VARCHAR)
SELECT date FROM table_name_38 WHERE venue = "a" AND opponents = "leicester city"
### Context: CREATE TABLE table_name_38 (date VARCHAR, venue VARCHAR, opponents VARCHAR) ### Question: On which date did they play Leicester City in Venue A? ### Answer: SELECT date FROM table_name_38 WHERE venue = "a" AND opponents = "leicester city"
What was the result of the game played in Venue H?
CREATE TABLE table_name_27 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_27 WHERE venue = "h"
### Context: CREATE TABLE table_name_27 (result VARCHAR, venue VARCHAR) ### Question: What was the result of the game played in Venue H? ### Answer: SELECT result FROM table_name_27 WHERE venue = "h"
What was the result of the game played on 17 July 2008?
CREATE TABLE table_name_42 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_42 WHERE date = "17 july 2008"
### Context: CREATE TABLE table_name_42 (result VARCHAR, date VARCHAR) ### Question: What was the result of the game played on 17 July 2008? ### Answer: SELECT result FROM table_name_42 WHERE date = "17 july 2008"
What Passenger has 16 Wins?
CREATE TABLE table_name_94 (passenger VARCHAR, wins VARCHAR)
SELECT passenger FROM table_name_94 WHERE wins = "16"
### Context: CREATE TABLE table_name_94 (passenger VARCHAR, wins VARCHAR) ### Question: What Passenger has 16 Wins? ### Answer: SELECT passenger FROM table_name_94 WHERE wins = "16"
Name the Time of broadcast has a Picture format of 4:3, and Hours of 20:30, and Days of the week of monday, wednesday, friday?
CREATE TABLE table_name_23 (time_of_broadcast VARCHAR, days_of_the_week VARCHAR, picture_format VARCHAR, hours VARCHAR)
SELECT time_of_broadcast FROM table_name_23 WHERE picture_format = "4:3" AND hours = "20:30" AND days_of_the_week = "monday, wednesday, friday"
### Context: CREATE TABLE table_name_23 (time_of_broadcast VARCHAR, days_of_the_week VARCHAR, picture_format VARCHAR, hours VARCHAR) ### Question: Name the Time of broadcast has a Picture format of 4:3, and Hours of 20:30, and Days of the week of monday, wednesday, friday? ### Answer: SELECT time_of_broadcast FROM table_name_23 WHERE picture_format = "4:3" AND hours = "20:30" AND days_of_the_week = "monday, wednesday, friday"
Which Days of the week has a Time of broadcast in january–february, june 2002?
CREATE TABLE table_name_31 (days_of_the_week VARCHAR, time_of_broadcast VARCHAR)
SELECT days_of_the_week FROM table_name_31 WHERE time_of_broadcast = "january–february, june 2002"
### Context: CREATE TABLE table_name_31 (days_of_the_week VARCHAR, time_of_broadcast VARCHAR) ### Question: Which Days of the week has a Time of broadcast in january–february, june 2002? ### Answer: SELECT days_of_the_week FROM table_name_31 WHERE time_of_broadcast = "january–february, june 2002"
Which Outcome has a Championship of us championships, and a Score in the final of 5–7, 6–1, 6–3, 6–3?
CREATE TABLE table_name_61 (outcome VARCHAR, championship VARCHAR, score_in_the_final VARCHAR)
SELECT outcome FROM table_name_61 WHERE championship = "us championships" AND score_in_the_final = "5–7, 6–1, 6–3, 6–3"
### Context: CREATE TABLE table_name_61 (outcome VARCHAR, championship VARCHAR, score_in_the_final VARCHAR) ### Question: Which Outcome has a Championship of us championships, and a Score in the final of 5–7, 6–1, 6–3, 6–3? ### Answer: SELECT outcome FROM table_name_61 WHERE championship = "us championships" AND score_in_the_final = "5–7, 6–1, 6–3, 6–3"
Which Outcome has a Year larger than 1939, and an Opponent in the final of frank kovacs?
CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_the_final VARCHAR)
SELECT outcome FROM table_name_44 WHERE year > 1939 AND opponent_in_the_final = "frank kovacs"
### Context: CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_the_final VARCHAR) ### Question: Which Outcome has a Year larger than 1939, and an Opponent in the final of frank kovacs? ### Answer: SELECT outcome FROM table_name_44 WHERE year > 1939 AND opponent_in_the_final = "frank kovacs"
Which Surface has an Opponent in the final of don mcneill, and a Year of 1940?
CREATE TABLE table_name_52 (surface VARCHAR, opponent_in_the_final VARCHAR, year VARCHAR)
SELECT surface FROM table_name_52 WHERE opponent_in_the_final = "don mcneill" AND year = 1940
### Context: CREATE TABLE table_name_52 (surface VARCHAR, opponent_in_the_final VARCHAR, year VARCHAR) ### Question: Which Surface has an Opponent in the final of don mcneill, and a Year of 1940? ### Answer: SELECT surface FROM table_name_52 WHERE opponent_in_the_final = "don mcneill" AND year = 1940
How many years have an Opponent in the final of welby van horn?
CREATE TABLE table_name_74 (year INTEGER, opponent_in_the_final VARCHAR)
SELECT SUM(year) FROM table_name_74 WHERE opponent_in_the_final = "welby van horn"
### Context: CREATE TABLE table_name_74 (year INTEGER, opponent_in_the_final VARCHAR) ### Question: How many years have an Opponent in the final of welby van horn? ### Answer: SELECT SUM(year) FROM table_name_74 WHERE opponent_in_the_final = "welby van horn"
What is the score of player dick metz?
CREATE TABLE table_name_74 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_74 WHERE player = "dick metz"
### Context: CREATE TABLE table_name_74 (score VARCHAR, player VARCHAR) ### Question: What is the score of player dick metz? ### Answer: SELECT score FROM table_name_74 WHERE player = "dick metz"
Which season had EV Bad Wörishofen in the West?
CREATE TABLE table_name_60 (season VARCHAR, west VARCHAR)
SELECT season FROM table_name_60 WHERE west = "ev bad wörishofen"
### Context: CREATE TABLE table_name_60 (season VARCHAR, west VARCHAR) ### Question: Which season had EV Bad Wörishofen in the West? ### Answer: SELECT season FROM table_name_60 WHERE west = "ev bad wörishofen"
Who was in the South in the 2004-05 season?
CREATE TABLE table_name_92 (south VARCHAR, season VARCHAR)
SELECT south FROM table_name_92 WHERE season = "2004-05"
### Context: CREATE TABLE table_name_92 (south VARCHAR, season VARCHAR) ### Question: Who was in the South in the 2004-05 season? ### Answer: SELECT south FROM table_name_92 WHERE season = "2004-05"
Who was in the South when EV Bad Wörishofen was in the West?
CREATE TABLE table_name_10 (south VARCHAR, west VARCHAR)
SELECT south FROM table_name_10 WHERE west = "ev bad wörishofen"
### Context: CREATE TABLE table_name_10 (south VARCHAR, west VARCHAR) ### Question: Who was in the South when EV Bad Wörishofen was in the West? ### Answer: SELECT south FROM table_name_10 WHERE west = "ev bad wörishofen"
Who was in the South when TSV Kottern was in the West and EHF Passau was in the East?
CREATE TABLE table_name_40 (south VARCHAR, west VARCHAR, east VARCHAR)
SELECT south FROM table_name_40 WHERE west = "tsv kottern" AND east = "ehf passau"
### Context: CREATE TABLE table_name_40 (south VARCHAR, west VARCHAR, east VARCHAR) ### Question: Who was in the South when TSV Kottern was in the West and EHF Passau was in the East? ### Answer: SELECT south FROM table_name_40 WHERE west = "tsv kottern" AND east = "ehf passau"
Who was in the East when TUS Geretsried II was in the South?
CREATE TABLE table_name_9 (east VARCHAR, south VARCHAR)
SELECT east FROM table_name_9 WHERE south = "tus geretsried ii"
### Context: CREATE TABLE table_name_9 (east VARCHAR, south VARCHAR) ### Question: Who was in the East when TUS Geretsried II was in the South? ### Answer: SELECT east FROM table_name_9 WHERE south = "tus geretsried ii"
Who was in the West when ESV Gebensbach was in the East?
CREATE TABLE table_name_32 (west VARCHAR, east VARCHAR)
SELECT west FROM table_name_32 WHERE east = "esv gebensbach"
### Context: CREATE TABLE table_name_32 (west VARCHAR, east VARCHAR) ### Question: Who was in the West when ESV Gebensbach was in the East? ### Answer: SELECT west FROM table_name_32 WHERE east = "esv gebensbach"
What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1?
CREATE TABLE table_name_2 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT AVG(gold) FROM table_name_2 WHERE nation = "hungary" AND bronze > 1
### Context: CREATE TABLE table_name_2 (gold INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1? ### Answer: SELECT AVG(gold) FROM table_name_2 WHERE nation = "hungary" AND bronze > 1
What is the average Total, when Nation is Soviet Union, and when Gold is greater than 9?
CREATE TABLE table_name_33 (total INTEGER, nation VARCHAR, gold VARCHAR)
SELECT AVG(total) FROM table_name_33 WHERE nation = "soviet union" AND gold > 9
### Context: CREATE TABLE table_name_33 (total INTEGER, nation VARCHAR, gold VARCHAR) ### Question: What is the average Total, when Nation is Soviet Union, and when Gold is greater than 9? ### Answer: SELECT AVG(total) FROM table_name_33 WHERE nation = "soviet union" AND gold > 9
What is the total number of Bronze, when Silver is greater than 0, when Gold is greater than 3, and when Rank is 1?
CREATE TABLE table_name_75 (bronze VARCHAR, rank VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT COUNT(bronze) FROM table_name_75 WHERE silver > 0 AND gold > 3 AND rank = "1"
### Context: CREATE TABLE table_name_75 (bronze VARCHAR, rank VARCHAR, silver VARCHAR, gold VARCHAR) ### Question: What is the total number of Bronze, when Silver is greater than 0, when Gold is greater than 3, and when Rank is 1? ### Answer: SELECT COUNT(bronze) FROM table_name_75 WHERE silver > 0 AND gold > 3 AND rank = "1"
What is the highest Bronze, when Total is less than 3, and when Silver is less than 0?
CREATE TABLE table_name_86 (bronze INTEGER, total VARCHAR, silver VARCHAR)
SELECT MAX(bronze) FROM table_name_86 WHERE total < 3 AND silver < 0
### Context: CREATE TABLE table_name_86 (bronze INTEGER, total VARCHAR, silver VARCHAR) ### Question: What is the highest Bronze, when Total is less than 3, and when Silver is less than 0? ### Answer: SELECT MAX(bronze) FROM table_name_86 WHERE total < 3 AND silver < 0
What is the average Total, when Silver is greater than 4, and when Gold is greater than 16?
CREATE TABLE table_name_2 (total INTEGER, silver VARCHAR, gold VARCHAR)
SELECT AVG(total) FROM table_name_2 WHERE silver > 4 AND gold > 16
### Context: CREATE TABLE table_name_2 (total INTEGER, silver VARCHAR, gold VARCHAR) ### Question: What is the average Total, when Silver is greater than 4, and when Gold is greater than 16? ### Answer: SELECT AVG(total) FROM table_name_2 WHERE silver > 4 AND gold > 16
What is the sum of Silver, when Total is less than 1?
CREATE TABLE table_name_84 (silver INTEGER, total INTEGER)
SELECT SUM(silver) FROM table_name_84 WHERE total < 1
### Context: CREATE TABLE table_name_84 (silver INTEGER, total INTEGER) ### Question: What is the sum of Silver, when Total is less than 1? ### Answer: SELECT SUM(silver) FROM table_name_84 WHERE total < 1
What is day 4 when day 2 is PAAQ?
CREATE TABLE table_name_3 (day_4 VARCHAR, day_2 VARCHAR)
SELECT day_4 FROM table_name_3 WHERE day_2 = "paaq"
### Context: CREATE TABLE table_name_3 (day_4 VARCHAR, day_2 VARCHAR) ### Question: What is day 4 when day 2 is PAAQ? ### Answer: SELECT day_4 FROM table_name_3 WHERE day_2 = "paaq"
What is the other value associated with a Christianity value of 10.24%?
CREATE TABLE table_name_21 (other VARCHAR, christianity VARCHAR)
SELECT other FROM table_name_21 WHERE christianity = "10.24%"
### Context: CREATE TABLE table_name_21 (other VARCHAR, christianity VARCHAR) ### Question: What is the other value associated with a Christianity value of 10.24%? ### Answer: SELECT other FROM table_name_21 WHERE christianity = "10.24%"
What is the Judaism percentage associated with Buddhism at 0.01% and Other at 0.13%?
CREATE TABLE table_name_15 (judaism VARCHAR, other VARCHAR, buddhism VARCHAR)
SELECT judaism FROM table_name_15 WHERE other = "0.13%" AND buddhism = "0.01%"
### Context: CREATE TABLE table_name_15 (judaism VARCHAR, other VARCHAR, buddhism VARCHAR) ### Question: What is the Judaism percentage associated with Buddhism at 0.01% and Other at 0.13%? ### Answer: SELECT judaism FROM table_name_15 WHERE other = "0.13%" AND buddhism = "0.01%"
What is the percentage of Atheism associated with an other percentage of 0.08%?
CREATE TABLE table_name_90 (atheism VARCHAR, other VARCHAR)
SELECT atheism FROM table_name_90 WHERE other = "0.08%"
### Context: CREATE TABLE table_name_90 (atheism VARCHAR, other VARCHAR) ### Question: What is the percentage of Atheism associated with an other percentage of 0.08%? ### Answer: SELECT atheism FROM table_name_90 WHERE other = "0.08%"
What is the percentage of Buddhists associated with a Christianity percentage of 52.32%?
CREATE TABLE table_name_6 (buddhism VARCHAR, christianity VARCHAR)
SELECT buddhism FROM table_name_6 WHERE christianity = "52.32%"
### Context: CREATE TABLE table_name_6 (buddhism VARCHAR, christianity VARCHAR) ### Question: What is the percentage of Buddhists associated with a Christianity percentage of 52.32%? ### Answer: SELECT buddhism FROM table_name_6 WHERE christianity = "52.32%"