question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What was the result of the bout that led to a 4-4 record? | CREATE TABLE table_name_1 (res VARCHAR, record VARCHAR) | SELECT res FROM table_name_1 WHERE record = "4-4" | ### Context: CREATE TABLE table_name_1 (res VARCHAR, record VARCHAR) ### Question: What was the result of the bout that led to a 4-4 record? ### Answer: SELECT res FROM table_name_1 WHERE record = "4-4" |
Which location held the bout that led to a 4-3 record? | CREATE TABLE table_name_19 (location VARCHAR, record VARCHAR) | SELECT location FROM table_name_19 WHERE record = "4-3" | ### Context: CREATE TABLE table_name_19 (location VARCHAR, record VARCHAR) ### Question: Which location held the bout that led to a 4-3 record? ### Answer: SELECT location FROM table_name_19 WHERE record = "4-3" |
What discs has a region 1 release date of January 22, 2008? | CREATE TABLE table_name_90 (discs VARCHAR, region_1_release VARCHAR) | SELECT discs FROM table_name_90 WHERE region_1_release = "january 22, 2008" | ### Context: CREATE TABLE table_name_90 (discs VARCHAR, region_1_release VARCHAR) ### Question: What discs has a region 1 release date of January 22, 2008? ### Answer: SELECT discs FROM table_name_90 WHERE region_1_release = "january 22, 2008" |
What is the lowest rank of Citigroup? | CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR) | SELECT MIN(rank) FROM table_name_67 WHERE name = "citigroup" | ### Context: CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR) ### Question: What is the lowest rank of Citigroup? ### Answer: SELECT MIN(rank) FROM table_name_67 WHERE name = "citigroup" |
What is the market value of the automotive industry? | CREATE TABLE table_name_10 (market_value___usd_million_ VARCHAR, industry VARCHAR) | SELECT COUNT(market_value___usd_million_) FROM table_name_10 WHERE industry = "automotive" | ### Context: CREATE TABLE table_name_10 (market_value___usd_million_ VARCHAR, industry VARCHAR) ### Question: What is the market value of the automotive industry? ### Answer: SELECT COUNT(market_value___usd_million_) FROM table_name_10 WHERE industry = "automotive" |
Name the attendance with result of t 14-14 | CREATE TABLE table_name_92 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_92 WHERE result = "t 14-14" | ### Context: CREATE TABLE table_name_92 (attendance VARCHAR, result VARCHAR) ### Question: Name the attendance with result of t 14-14 ### Answer: SELECT attendance FROM table_name_92 WHERE result = "t 14-14" |
Name the total number of attendance for october 20, 1946 with week less than 4 | CREATE TABLE table_name_43 (attendance VARCHAR, date VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_43 WHERE date = "october 20, 1946" AND week < 4 | ### Context: CREATE TABLE table_name_43 (attendance VARCHAR, date VARCHAR, week VARCHAR) ### Question: Name the total number of attendance for october 20, 1946 with week less than 4 ### Answer: SELECT COUNT(attendance) FROM table_name_43 WHERE date = "october 20, 1946" AND week < 4 |
Name the most attendance for november 17, 1946 and week more than 8 | CREATE TABLE table_name_21 (attendance INTEGER, date VARCHAR, week VARCHAR) | SELECT MAX(attendance) FROM table_name_21 WHERE date = "november 17, 1946" AND week > 8 | ### Context: CREATE TABLE table_name_21 (attendance INTEGER, date VARCHAR, week VARCHAR) ### Question: Name the most attendance for november 17, 1946 and week more than 8 ### Answer: SELECT MAX(attendance) FROM table_name_21 WHERE date = "november 17, 1946" AND week > 8 |
What is the sum of the points for the player who was a rank of 61t? | CREATE TABLE table_name_92 (points INTEGER, rank VARCHAR) | SELECT SUM(points) FROM table_name_92 WHERE rank = "61t" | ### Context: CREATE TABLE table_name_92 (points INTEGER, rank VARCHAR) ### Question: What is the sum of the points for the player who was a rank of 61t? ### Answer: SELECT SUM(points) FROM table_name_92 WHERE rank = "61t" |
Who is the player who had more than 1,052 points? | CREATE TABLE table_name_87 (player VARCHAR, points INTEGER) | SELECT player FROM table_name_87 WHERE points > 1 OFFSET 052 | ### Context: CREATE TABLE table_name_87 (player VARCHAR, points INTEGER) ### Question: Who is the player who had more than 1,052 points? ### Answer: SELECT player FROM table_name_87 WHERE points > 1 OFFSET 052 |
What are the highest points that Emmitt Smith had? | CREATE TABLE table_name_96 (points INTEGER, player VARCHAR) | SELECT MAX(points) FROM table_name_96 WHERE player = "emmitt smith" | ### Context: CREATE TABLE table_name_96 (points INTEGER, player VARCHAR) ### Question: What are the highest points that Emmitt Smith had? ### Answer: SELECT MAX(points) FROM table_name_96 WHERE player = "emmitt smith" |
Record of 6β8 had what attendance? | CREATE TABLE table_name_33 (attendance VARCHAR, record VARCHAR) | SELECT attendance FROM table_name_33 WHERE record = "6β8" | ### Context: CREATE TABLE table_name_33 (attendance VARCHAR, record VARCHAR) ### Question: Record of 6β8 had what attendance? ### Answer: SELECT attendance FROM table_name_33 WHERE record = "6β8" |
Result of l 17β20 had what attendance? | CREATE TABLE table_name_31 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_31 WHERE result = "l 17β20" | ### Context: CREATE TABLE table_name_31 (attendance VARCHAR, result VARCHAR) ### Question: Result of l 17β20 had what attendance? ### Answer: SELECT attendance FROM table_name_31 WHERE result = "l 17β20" |
Game Site of hoosier dome, and a Result of l 7β31 involved what attendance? | CREATE TABLE table_name_29 (attendance VARCHAR, game_site VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_29 WHERE game_site = "hoosier dome" AND result = "l 7β31" | ### Context: CREATE TABLE table_name_29 (attendance VARCHAR, game_site VARCHAR, result VARCHAR) ### Question: Game Site of hoosier dome, and a Result of l 7β31 involved what attendance? ### Answer: SELECT attendance FROM table_name_29 WHERE game_site = "hoosier dome" AND result = "l 7β31" |
Which Year is the highest one that has a Venue of blackwolf run, composite course, and a Score of 281? | CREATE TABLE table_name_48 (year INTEGER, venue VARCHAR, score VARCHAR) | SELECT MAX(year) FROM table_name_48 WHERE venue = "blackwolf run, composite course" AND score = "281" | ### Context: CREATE TABLE table_name_48 (year INTEGER, venue VARCHAR, score VARCHAR) ### Question: Which Year is the highest one that has a Venue of blackwolf run, composite course, and a Score of 281? ### Answer: SELECT MAX(year) FROM table_name_48 WHERE venue = "blackwolf run, composite course" AND score = "281" |
Which Champion has a Venue of old waverly golf club? | CREATE TABLE table_name_35 (champion VARCHAR, venue VARCHAR) | SELECT champion FROM table_name_35 WHERE venue = "old waverly golf club" | ### Context: CREATE TABLE table_name_35 (champion VARCHAR, venue VARCHAR) ### Question: Which Champion has a Venue of old waverly golf club? ### Answer: SELECT champion FROM table_name_35 WHERE venue = "old waverly golf club" |
How many world rankings are after Aug 5, 1980 ? | CREATE TABLE table_name_80 (world_ranking INTEGER, date VARCHAR, year VARCHAR) | SELECT SUM(world_ranking) FROM table_name_80 WHERE date = "aug 5" AND year > 1980 | ### Context: CREATE TABLE table_name_80 (world_ranking INTEGER, date VARCHAR, year VARCHAR) ### Question: How many world rankings are after Aug 5, 1980 ? ### Answer: SELECT SUM(world_ranking) FROM table_name_80 WHERE date = "aug 5" AND year > 1980 |
On which date is there a performance of more than 8.22.72? | CREATE TABLE table_name_9 (date VARCHAR, performance VARCHAR) | SELECT date FROM table_name_9 WHERE performance = "8.22.72" | ### Context: CREATE TABLE table_name_9 (date VARCHAR, performance VARCHAR) ### Question: On which date is there a performance of more than 8.22.72? ### Answer: SELECT date FROM table_name_9 WHERE performance = "8.22.72" |
The venue of Rome has which date? | CREATE TABLE table_name_84 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_84 WHERE venue = "rome" | ### Context: CREATE TABLE table_name_84 (date VARCHAR, venue VARCHAR) ### Question: The venue of Rome has which date? ### Answer: SELECT date FROM table_name_84 WHERE venue = "rome" |
What was the 1st leg of the match that had an aggregate of 4-3? | CREATE TABLE table_name_11 (agg VARCHAR) | SELECT 1 AS st_leg FROM table_name_11 WHERE agg = "4-3" | ### Context: CREATE TABLE table_name_11 (agg VARCHAR) ### Question: What was the 1st leg of the match that had an aggregate of 4-3? ### Answer: SELECT 1 AS st_leg FROM table_name_11 WHERE agg = "4-3" |
When was the last final lost of the club with 7 wins? | CREATE TABLE table_name_49 (last_final_lost VARCHAR, wins VARCHAR) | SELECT last_final_lost FROM table_name_49 WHERE wins = "7" | ### Context: CREATE TABLE table_name_49 (last_final_lost VARCHAR, wins VARCHAR) ### Question: When was the last final lost of the club with 7 wins? ### Answer: SELECT last_final_lost FROM table_name_49 WHERE wins = "7" |
How many runners-up did the club with the last final lost in 1985 have? | CREATE TABLE table_name_39 (runners_up VARCHAR, last_final_lost VARCHAR) | SELECT runners_up FROM table_name_39 WHERE last_final_lost = "1985" | ### Context: CREATE TABLE table_name_39 (runners_up VARCHAR, last_final_lost VARCHAR) ### Question: How many runners-up did the club with the last final lost in 1985 have? ### Answer: SELECT runners_up FROM table_name_39 WHERE last_final_lost = "1985" |
When was the last final lost of the club with a last win in 1959? | CREATE TABLE table_name_70 (last_final_lost VARCHAR, last_win VARCHAR) | SELECT last_final_lost FROM table_name_70 WHERE last_win = "1959" | ### Context: CREATE TABLE table_name_70 (last_final_lost VARCHAR, last_win VARCHAR) ### Question: When was the last final lost of the club with a last win in 1959? ### Answer: SELECT last_final_lost FROM table_name_70 WHERE last_win = "1959" |
When was the last win of Celtic? | CREATE TABLE table_name_89 (last_win VARCHAR, club VARCHAR) | SELECT last_win FROM table_name_89 WHERE club = "celtic" | ### Context: CREATE TABLE table_name_89 (last_win VARCHAR, club VARCHAR) ### Question: When was the last win of Celtic? ### Answer: SELECT last_win FROM table_name_89 WHERE club = "celtic" |
Which club had 13 runners-up? | CREATE TABLE table_name_27 (club VARCHAR, runners_up VARCHAR) | SELECT club FROM table_name_27 WHERE runners_up = "13" | ### Context: CREATE TABLE table_name_27 (club VARCHAR, runners_up VARCHAR) ### Question: Which club had 13 runners-up? ### Answer: SELECT club FROM table_name_27 WHERE runners_up = "13" |
Who is the visitor in Philadelphia on March 6? | CREATE TABLE table_name_41 (visitor VARCHAR, home VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_41 WHERE home = "philadelphia" AND date = "march 6" | ### Context: CREATE TABLE table_name_41 (visitor VARCHAR, home VARCHAR, date VARCHAR) ### Question: Who is the visitor in Philadelphia on March 6? ### Answer: SELECT visitor FROM table_name_41 WHERE home = "philadelphia" AND date = "march 6" |
what date were they playing in hawthorn | CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_17 WHERE away_team = "hawthorn" | ### Context: CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR) ### Question: what date were they playing in hawthorn ### Answer: SELECT date FROM table_name_17 WHERE away_team = "hawthorn" |
what report was in geelong | CREATE TABLE table_name_48 (report VARCHAR, home_team VARCHAR) | SELECT report FROM table_name_48 WHERE home_team = "geelong" | ### Context: CREATE TABLE table_name_48 (report VARCHAR, home_team VARCHAR) ### Question: what report was in geelong ### Answer: SELECT report FROM table_name_48 WHERE home_team = "geelong" |
In what Town/City is Nana Museum of The Arctic located? | CREATE TABLE table_name_45 (town_city VARCHAR, name VARCHAR) | SELECT town_city FROM table_name_45 WHERE name = "nana museum of the arctic" | ### Context: CREATE TABLE table_name_45 (town_city VARCHAR, name VARCHAR) ### Question: In what Town/City is Nana Museum of The Arctic located? ### Answer: SELECT town_city FROM table_name_45 WHERE name = "nana museum of the arctic" |
What is the Name of the Multiple Type museum in Anchorage? | CREATE TABLE table_name_54 (name VARCHAR, town_city VARCHAR, type VARCHAR) | SELECT name FROM table_name_54 WHERE town_city = "anchorage" AND type = "multiple" | ### Context: CREATE TABLE table_name_54 (name VARCHAR, town_city VARCHAR, type VARCHAR) ### Question: What is the Name of the Multiple Type museum in Anchorage? ### Answer: SELECT name FROM table_name_54 WHERE town_city = "anchorage" AND type = "multiple" |
In what Borough is the Anchorage museum of Natural History? | CREATE TABLE table_name_31 (name VARCHAR, borough VARCHAR, type VARCHAR) | SELECT name FROM table_name_31 WHERE borough = "anchorage" AND type = "natural history" | ### Context: CREATE TABLE table_name_31 (name VARCHAR, borough VARCHAR, type VARCHAR) ### Question: In what Borough is the Anchorage museum of Natural History? ### Answer: SELECT name FROM table_name_31 WHERE borough = "anchorage" AND type = "natural history" |
In what Region is the Native American museum in Anchorage? | CREATE TABLE table_name_8 (region VARCHAR, type VARCHAR, town_city VARCHAR) | SELECT region FROM table_name_8 WHERE type = "native american" AND town_city = "anchorage" | ### Context: CREATE TABLE table_name_8 (region VARCHAR, type VARCHAR, town_city VARCHAR) ### Question: In what Region is the Native American museum in Anchorage? ### Answer: SELECT region FROM table_name_8 WHERE type = "native american" AND town_city = "anchorage" |
What Type of museum is the Valdez museum? | CREATE TABLE table_name_73 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_73 WHERE name = "valdez museum" | ### Context: CREATE TABLE table_name_73 (type VARCHAR, name VARCHAR) ### Question: What Type of museum is the Valdez museum? ### Answer: SELECT type FROM table_name_73 WHERE name = "valdez museum" |
In what Borough is the History Type Fairbanks Community Museum? | CREATE TABLE table_name_82 (borough VARCHAR, type VARCHAR, name VARCHAR) | SELECT borough FROM table_name_82 WHERE type = "history" AND name = "fairbanks community museum" | ### Context: CREATE TABLE table_name_82 (borough VARCHAR, type VARCHAR, name VARCHAR) ### Question: In what Borough is the History Type Fairbanks Community Museum? ### Answer: SELECT borough FROM table_name_82 WHERE type = "history" AND name = "fairbanks community museum" |
what is the zip code of boonville | CREATE TABLE table_name_39 (zip_code_prefix_es_ VARCHAR, county_seat VARCHAR) | SELECT zip_code_prefix_es_ FROM table_name_39 WHERE county_seat = "boonville" | ### Context: CREATE TABLE table_name_39 (zip_code_prefix_es_ VARCHAR, county_seat VARCHAR) ### Question: what is the zip code of boonville ### Answer: SELECT zip_code_prefix_es_ FROM table_name_39 WHERE county_seat = "boonville" |
Which tournament was held on 9 Jun 2002? | CREATE TABLE table_name_57 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_57 WHERE date = "9 jun 2002" | ### Context: CREATE TABLE table_name_57 (tournament VARCHAR, date VARCHAR) ### Question: Which tournament was held on 9 Jun 2002? ### Answer: SELECT tournament FROM table_name_57 WHERE date = "9 jun 2002" |
What is the winning score with a margin of victory of 4 strokes for the NEC Invitational tournament? | CREATE TABLE table_name_93 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) | SELECT winning_score FROM table_name_93 WHERE margin_of_victory = "4 strokes" AND tournament = "nec invitational" | ### Context: CREATE TABLE table_name_93 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What is the winning score with a margin of victory of 4 strokes for the NEC Invitational tournament? ### Answer: SELECT winning_score FROM table_name_93 WHERE margin_of_victory = "4 strokes" AND tournament = "nec invitational" |
Who is the runner-up where the winning score is β8 (71-69-67-73=280)? | CREATE TABLE table_name_45 (runner_s__up VARCHAR, winning_score VARCHAR) | SELECT runner_s__up FROM table_name_45 WHERE winning_score = β8(71 - 69 - 67 - 73 = 280) | ### Context: CREATE TABLE table_name_45 (runner_s__up VARCHAR, winning_score VARCHAR) ### Question: Who is the runner-up where the winning score is β8 (71-69-67-73=280)? ### Answer: SELECT runner_s__up FROM table_name_45 WHERE winning_score = β8(71 - 69 - 67 - 73 = 280) |
What is the winning score for Tournament of linde german masters with a margin of victory of 1 stroke? | CREATE TABLE table_name_67 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) | SELECT winning_score FROM table_name_67 WHERE margin_of_victory = "1 stroke" AND tournament = "linde german masters" | ### Context: CREATE TABLE table_name_67 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What is the winning score for Tournament of linde german masters with a margin of victory of 1 stroke? ### Answer: SELECT winning_score FROM table_name_67 WHERE margin_of_victory = "1 stroke" AND tournament = "linde german masters" |
Who is runner-up where the winning score is β6 (65-70-70-69=274) and the margin of victory is 3 strokes? | CREATE TABLE table_name_19 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR) | SELECT runner_s__up FROM table_name_19 WHERE margin_of_victory = "3 strokes" AND winning_score = β6(65 - 70 - 70 - 69 = 274) | ### Context: CREATE TABLE table_name_19 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: Who is runner-up where the winning score is β6 (65-70-70-69=274) and the margin of victory is 3 strokes? ### Answer: SELECT runner_s__up FROM table_name_19 WHERE margin_of_victory = "3 strokes" AND winning_score = β6(65 - 70 - 70 - 69 = 274) |
What is the winning score where the runner-up is Robert-Jan Derksen and the margin of victory is 1 stroke? | CREATE TABLE table_name_27 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_27 WHERE margin_of_victory = "1 stroke" AND runner_s__up = "robert-jan derksen" | ### Context: CREATE TABLE table_name_27 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: What is the winning score where the runner-up is Robert-Jan Derksen and the margin of victory is 1 stroke? ### Answer: SELECT winning_score FROM table_name_27 WHERE margin_of_victory = "1 stroke" AND runner_s__up = "robert-jan derksen" |
What are the high rebounds of team @ Charlotte? | CREATE TABLE table_name_17 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_name_17 WHERE team = "@ charlotte" | ### Context: CREATE TABLE table_name_17 (high_rebounds VARCHAR, team VARCHAR) ### Question: What are the high rebounds of team @ Charlotte? ### Answer: SELECT high_rebounds FROM table_name_17 WHERE team = "@ charlotte" |
What is the high rebounds of game 68? | CREATE TABLE table_name_46 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_name_46 WHERE game = 68 | ### Context: CREATE TABLE table_name_46 (high_rebounds VARCHAR, game VARCHAR) ### Question: What is the high rebounds of game 68? ### Answer: SELECT high_rebounds FROM table_name_46 WHERE game = 68 |
What is the score of New York team before game 61? | CREATE TABLE table_name_63 (score VARCHAR, game VARCHAR, team VARCHAR) | SELECT score FROM table_name_63 WHERE game < 61 AND team = "new york" | ### Context: CREATE TABLE table_name_63 (score VARCHAR, game VARCHAR, team VARCHAR) ### Question: What is the score of New York team before game 61? ### Answer: SELECT score FROM table_name_63 WHERE game < 61 AND team = "new york" |
When David McNamara was the opponent in the final, what was the tier? | CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR) | SELECT tier FROM table_name_59 WHERE opponent_in_the_final = "david mcnamara" | ### Context: CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR) ### Question: When David McNamara was the opponent in the final, what was the tier? ### Answer: SELECT tier FROM table_name_59 WHERE opponent_in_the_final = "david mcnamara" |
In 2011, how many tourists visited the country that had 23.4 million tourists in 2012? | CREATE TABLE table_name_6 (international_tourist_arrivals__2011_ VARCHAR, international_tourist_arrivals__2012_ VARCHAR) | SELECT international_tourist_arrivals__2011_ FROM table_name_6 WHERE international_tourist_arrivals__2012_ = "23.4 million" | ### Context: CREATE TABLE table_name_6 (international_tourist_arrivals__2011_ VARCHAR, international_tourist_arrivals__2012_ VARCHAR) ### Question: In 2011, how many tourists visited the country that had 23.4 million tourists in 2012? ### Answer: SELECT international_tourist_arrivals__2011_ FROM table_name_6 WHERE international_tourist_arrivals__2012_ = "23.4 million" |
How many tourists visited the country that had 2.5 million tourists in 2011? | CREATE TABLE table_name_38 (international_tourist_arrivals__2012_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) | SELECT international_tourist_arrivals__2012_ FROM table_name_38 WHERE international_tourist_arrivals__2011_ = "2.5 million" | ### Context: CREATE TABLE table_name_38 (international_tourist_arrivals__2012_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) ### Question: How many tourists visited the country that had 2.5 million tourists in 2011? ### Answer: SELECT international_tourist_arrivals__2012_ FROM table_name_38 WHERE international_tourist_arrivals__2011_ = "2.5 million" |
How far Venue of seoul, south korea is? | CREATE TABLE table_name_6 (distance VARCHAR, venue VARCHAR) | SELECT distance FROM table_name_6 WHERE venue = "seoul, south korea" | ### Context: CREATE TABLE table_name_6 (distance VARCHAR, venue VARCHAR) ### Question: How far Venue of seoul, south korea is? ### Answer: SELECT distance FROM table_name_6 WHERE venue = "seoul, south korea" |
Which Venue has a Tournament of olympic games with a Result of 4th? | CREATE TABLE table_name_33 (venue VARCHAR, tournament VARCHAR, result VARCHAR) | SELECT venue FROM table_name_33 WHERE tournament = "olympic games" AND result = "4th" | ### Context: CREATE TABLE table_name_33 (venue VARCHAR, tournament VARCHAR, result VARCHAR) ### Question: Which Venue has a Tournament of olympic games with a Result of 4th? ### Answer: SELECT venue FROM table_name_33 WHERE tournament = "olympic games" AND result = "4th" |
What is the Result of Venue of edmonton, canada? | CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_54 WHERE venue = "edmonton, canada" | ### Context: CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR) ### Question: What is the Result of Venue of edmonton, canada? ### Answer: SELECT result FROM table_name_54 WHERE venue = "edmonton, canada" |
What is the 1st leg of Team 2 PSV Eindhoven? | CREATE TABLE table_name_21 (team_2 VARCHAR) | SELECT 1 AS st_leg FROM table_name_21 WHERE team_2 = "psv eindhoven" | ### Context: CREATE TABLE table_name_21 (team_2 VARCHAR) ### Question: What is the 1st leg of Team 2 PSV Eindhoven? ### Answer: SELECT 1 AS st_leg FROM table_name_21 WHERE team_2 = "psv eindhoven" |
Which opponent was played at Forbes Field after week 4? | CREATE TABLE table_name_76 (opponent VARCHAR, game_site VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_76 WHERE game_site = "forbes field" AND week > 4 | ### Context: CREATE TABLE table_name_76 (opponent VARCHAR, game_site VARCHAR, week VARCHAR) ### Question: Which opponent was played at Forbes Field after week 4? ### Answer: SELECT opponent FROM table_name_76 WHERE game_site = "forbes field" AND week > 4 |
Which opponent was played on week 9? | CREATE TABLE table_name_46 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_46 WHERE week = 9 | ### Context: CREATE TABLE table_name_46 (opponent VARCHAR, week VARCHAR) ### Question: Which opponent was played on week 9? ### Answer: SELECT opponent FROM table_name_46 WHERE week = 9 |
What was the date of the game played at Fenway Park? | CREATE TABLE table_name_28 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_name_28 WHERE game_site = "fenway park" | ### Context: CREATE TABLE table_name_28 (date VARCHAR, game_site VARCHAR) ### Question: What was the date of the game played at Fenway Park? ### Answer: SELECT date FROM table_name_28 WHERE game_site = "fenway park" |
Which Opponents have a Year of 1998β99, and a Team of aston villa? | CREATE TABLE table_name_23 (opponents VARCHAR, year VARCHAR, team VARCHAR) | SELECT opponents FROM table_name_23 WHERE year = "1998β99" AND team = "aston villa" | ### Context: CREATE TABLE table_name_23 (opponents VARCHAR, year VARCHAR, team VARCHAR) ### Question: Which Opponents have a Year of 1998β99, and a Team of aston villa? ### Answer: SELECT opponents FROM table_name_23 WHERE year = "1998β99" AND team = "aston villa" |
Which Score has Opponents of valencia, and a Year of 2011β12? | CREATE TABLE table_name_21 (score VARCHAR, opponents VARCHAR, year VARCHAR) | SELECT score FROM table_name_21 WHERE opponents = "valencia" AND year = "2011β12" | ### Context: CREATE TABLE table_name_21 (score VARCHAR, opponents VARCHAR, year VARCHAR) ### Question: Which Score has Opponents of valencia, and a Year of 2011β12? ### Answer: SELECT score FROM table_name_21 WHERE opponents = "valencia" AND year = "2011β12" |
Which Opponents have a Team of arsenal, and a Year of 1963β64? | CREATE TABLE table_name_49 (opponents VARCHAR, team VARCHAR, year VARCHAR) | SELECT opponents FROM table_name_49 WHERE team = "arsenal" AND year = "1963β64" | ### Context: CREATE TABLE table_name_49 (opponents VARCHAR, team VARCHAR, year VARCHAR) ### Question: Which Opponents have a Team of arsenal, and a Year of 1963β64? ### Answer: SELECT opponents FROM table_name_49 WHERE team = "arsenal" AND year = "1963β64" |
Which Opponents have a Year of 1999β2000, and a Team of leeds united? | CREATE TABLE table_name_78 (opponents VARCHAR, year VARCHAR, team VARCHAR) | SELECT opponents FROM table_name_78 WHERE year = "1999β2000" AND team = "leeds united" | ### Context: CREATE TABLE table_name_78 (opponents VARCHAR, year VARCHAR, team VARCHAR) ### Question: Which Opponents have a Year of 1999β2000, and a Team of leeds united? ### Answer: SELECT opponents FROM table_name_78 WHERE year = "1999β2000" AND team = "leeds united" |
Which Opponents have a Score of 1β2, and a Team of arsenal, and Progress of first round? | CREATE TABLE table_name_82 (opponents VARCHAR, progress VARCHAR, score VARCHAR, team VARCHAR) | SELECT opponents FROM table_name_82 WHERE score = "1β2" AND team = "arsenal" AND progress = "first round" | ### Context: CREATE TABLE table_name_82 (opponents VARCHAR, progress VARCHAR, score VARCHAR, team VARCHAR) ### Question: Which Opponents have a Score of 1β2, and a Team of arsenal, and Progress of first round? ### Answer: SELECT opponents FROM table_name_82 WHERE score = "1β2" AND team = "arsenal" AND progress = "first round" |
How much Rank has Points larger than 282.5? | CREATE TABLE table_name_11 (rank VARCHAR, points INTEGER) | SELECT COUNT(rank) FROM table_name_11 WHERE points > 282.5 | ### Context: CREATE TABLE table_name_11 (rank VARCHAR, points INTEGER) ### Question: How much Rank has Points larger than 282.5? ### Answer: SELECT COUNT(rank) FROM table_name_11 WHERE points > 282.5 |
Which Rank is the highest one that has Points smaller than 256.6? | CREATE TABLE table_name_98 (rank INTEGER, points INTEGER) | SELECT MAX(rank) FROM table_name_98 WHERE points < 256.6 | ### Context: CREATE TABLE table_name_98 (rank INTEGER, points INTEGER) ### Question: Which Rank is the highest one that has Points smaller than 256.6? ### Answer: SELECT MAX(rank) FROM table_name_98 WHERE points < 256.6 |
Which 2nd (m) is the highest one that has a Nationality of sui, and a Rank smaller than 3? | CREATE TABLE table_name_78 (nationality VARCHAR, rank VARCHAR) | SELECT MAX(2 AS nd__m_) FROM table_name_78 WHERE nationality = "sui" AND rank < 3 | ### Context: CREATE TABLE table_name_78 (nationality VARCHAR, rank VARCHAR) ### Question: Which 2nd (m) is the highest one that has a Nationality of sui, and a Rank smaller than 3? ### Answer: SELECT MAX(2 AS nd__m_) FROM table_name_78 WHERE nationality = "sui" AND rank < 3 |
What is the UK broadcast date of the episode where Chris Bonington was the presenter? | CREATE TABLE table_name_72 (uk_broadcast_date VARCHAR, presenter VARCHAR) | SELECT uk_broadcast_date FROM table_name_72 WHERE presenter = "chris bonington" | ### Context: CREATE TABLE table_name_72 (uk_broadcast_date VARCHAR, presenter VARCHAR) ### Question: What is the UK broadcast date of the episode where Chris Bonington was the presenter? ### Answer: SELECT uk_broadcast_date FROM table_name_72 WHERE presenter = "chris bonington" |
What is the episode title of the episode with Ben Okri as the presenter? | CREATE TABLE table_name_74 (episode_title VARCHAR, presenter VARCHAR) | SELECT episode_title FROM table_name_74 WHERE presenter = "ben okri" | ### Context: CREATE TABLE table_name_74 (episode_title VARCHAR, presenter VARCHAR) ### Question: What is the episode title of the episode with Ben Okri as the presenter? ### Answer: SELECT episode_title FROM table_name_74 WHERE presenter = "ben okri" |
Who is the presenter of the episode broadcast in the UK on 1996-09-25? | CREATE TABLE table_name_45 (presenter VARCHAR, uk_broadcast_date VARCHAR) | SELECT presenter FROM table_name_45 WHERE uk_broadcast_date = "1996-09-25" | ### Context: CREATE TABLE table_name_45 (presenter VARCHAR, uk_broadcast_date VARCHAR) ### Question: Who is the presenter of the episode broadcast in the UK on 1996-09-25? ### Answer: SELECT presenter FROM table_name_45 WHERE uk_broadcast_date = "1996-09-25" |
What is the UK broadcast date of the episode with Ben Okri as the presenter? | CREATE TABLE table_name_87 (uk_broadcast_date VARCHAR, presenter VARCHAR) | SELECT uk_broadcast_date FROM table_name_87 WHERE presenter = "ben okri" | ### Context: CREATE TABLE table_name_87 (uk_broadcast_date VARCHAR, presenter VARCHAR) ### Question: What is the UK broadcast date of the episode with Ben Okri as the presenter? ### Answer: SELECT uk_broadcast_date FROM table_name_87 WHERE presenter = "ben okri" |
What was the score when the team played at the bobcats? | CREATE TABLE table_name_92 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_92 WHERE home = "bobcats" | ### Context: CREATE TABLE table_name_92 (score VARCHAR, home VARCHAR) ### Question: What was the score when the team played at the bobcats? ### Answer: SELECT score FROM table_name_92 WHERE home = "bobcats" |
What was the score when the Spurs' record was 43-13? | CREATE TABLE table_name_72 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_72 WHERE record = "43-13" | ### Context: CREATE TABLE table_name_72 (score VARCHAR, record VARCHAR) ### Question: What was the score when the Spurs' record was 43-13? ### Answer: SELECT score FROM table_name_72 WHERE record = "43-13" |
What is the country's name with a numeric code less than 246 and a Latin 3-letter code of slv? | CREATE TABLE table_name_63 (country_name VARCHAR, numeric_code VARCHAR, latin_3_letter_code VARCHAR) | SELECT country_name FROM table_name_63 WHERE numeric_code < 246 AND latin_3_letter_code = "slv" | ### Context: CREATE TABLE table_name_63 (country_name VARCHAR, numeric_code VARCHAR, latin_3_letter_code VARCHAR) ### Question: What is the country's name with a numeric code less than 246 and a Latin 3-letter code of slv? ### Answer: SELECT country_name FROM table_name_63 WHERE numeric_code < 246 AND latin_3_letter_code = "slv" |
What is the Russian name with lbr as the Latin 3-letter code? | CREATE TABLE table_name_86 (russian_name VARCHAR, latin_3_letter_code VARCHAR) | SELECT russian_name FROM table_name_86 WHERE latin_3_letter_code = "lbr" | ### Context: CREATE TABLE table_name_86 (russian_name VARCHAR, latin_3_letter_code VARCHAR) ### Question: What is the Russian name with lbr as the Latin 3-letter code? ### Answer: SELECT russian_name FROM table_name_86 WHERE latin_3_letter_code = "lbr" |
What is the country name with a numeric code less than 580 and a dk Latin 2-letter code? | CREATE TABLE table_name_4 (country_name VARCHAR, numeric_code VARCHAR, latin_2_letter_code VARCHAR) | SELECT country_name FROM table_name_4 WHERE numeric_code < 580 AND latin_2_letter_code = "dk" | ### Context: CREATE TABLE table_name_4 (country_name VARCHAR, numeric_code VARCHAR, latin_2_letter_code VARCHAR) ### Question: What is the country name with a numeric code less than 580 and a dk Latin 2-letter code? ### Answer: SELECT country_name FROM table_name_4 WHERE numeric_code < 580 AND latin_2_letter_code = "dk" |
What is the Cyrillic code with a cu Latin 2-letter code? | CREATE TABLE table_name_68 (cyrillic_code VARCHAR, latin_2_letter_code VARCHAR) | SELECT cyrillic_code FROM table_name_68 WHERE latin_2_letter_code = "cu" | ### Context: CREATE TABLE table_name_68 (cyrillic_code VARCHAR, latin_2_letter_code VARCHAR) ### Question: What is the Cyrillic code with a cu Latin 2-letter code? ### Answer: SELECT cyrillic_code FROM table_name_68 WHERE latin_2_letter_code = "cu" |
Name the least place for draw more than 3 and points of 8 | CREATE TABLE table_name_47 (place INTEGER, draw VARCHAR, points VARCHAR) | SELECT MIN(place) FROM table_name_47 WHERE draw > 3 AND points = 8 | ### Context: CREATE TABLE table_name_47 (place INTEGER, draw VARCHAR, points VARCHAR) ### Question: Name the least place for draw more than 3 and points of 8 ### Answer: SELECT MIN(place) FROM table_name_47 WHERE draw > 3 AND points = 8 |
Name the song for points less than 16 and draw less than 3 | CREATE TABLE table_name_99 (song VARCHAR, points VARCHAR, draw VARCHAR) | SELECT song FROM table_name_99 WHERE points < 16 AND draw < 3 | ### Context: CREATE TABLE table_name_99 (song VARCHAR, points VARCHAR, draw VARCHAR) ### Question: Name the song for points less than 16 and draw less than 3 ### Answer: SELECT song FROM table_name_99 WHERE points < 16 AND draw < 3 |
what is the single of the queen | CREATE TABLE table_name_67 (single VARCHAR, artist VARCHAR) | SELECT single FROM table_name_67 WHERE artist = "queen" | ### Context: CREATE TABLE table_name_67 (single VARCHAR, artist VARCHAR) ### Question: what is the single of the queen ### Answer: SELECT single FROM table_name_67 WHERE artist = "queen" |
what artist won in 1953 | CREATE TABLE table_name_41 (artist VARCHAR, year VARCHAR) | SELECT artist FROM table_name_41 WHERE year = "1953" | ### Context: CREATE TABLE table_name_41 (artist VARCHAR, year VARCHAR) ### Question: what artist won in 1953 ### Answer: SELECT artist FROM table_name_41 WHERE year = "1953" |
what year did david whitfield win | CREATE TABLE table_name_14 (year VARCHAR, artist VARCHAR) | SELECT year FROM table_name_14 WHERE artist = "david whitfield" | ### Context: CREATE TABLE table_name_14 (year VARCHAR, artist VARCHAR) ### Question: what year did david whitfield win ### Answer: SELECT year FROM table_name_14 WHERE artist = "david whitfield" |
What is the average rank of Roman Koudelka, who has less than 274.4 points? | CREATE TABLE table_name_41 (rank INTEGER, points VARCHAR, name VARCHAR) | SELECT AVG(rank) FROM table_name_41 WHERE points < 274.4 AND name = "roman koudelka" | ### Context: CREATE TABLE table_name_41 (rank INTEGER, points VARCHAR, name VARCHAR) ### Question: What is the average rank of Roman Koudelka, who has less than 274.4 points? ### Answer: SELECT AVG(rank) FROM table_name_41 WHERE points < 274.4 AND name = "roman koudelka" |
How many points was before game 14? | CREATE TABLE table_name_82 (points INTEGER, game INTEGER) | SELECT SUM(points) FROM table_name_82 WHERE game < 14 | ### Context: CREATE TABLE table_name_82 (points INTEGER, game INTEGER) ### Question: How many points was before game 14? ### Answer: SELECT SUM(points) FROM table_name_82 WHERE game < 14 |
What is the average points on November 6? | CREATE TABLE table_name_8 (points INTEGER, november VARCHAR) | SELECT AVG(points) FROM table_name_8 WHERE november = 6 | ### Context: CREATE TABLE table_name_8 (points INTEGER, november VARCHAR) ### Question: What is the average points on November 6? ### Answer: SELECT AVG(points) FROM table_name_8 WHERE november = 6 |
Which average's against score has 2 as a difference and a lost of 5? | CREATE TABLE table_name_34 (against INTEGER, difference VARCHAR, lost VARCHAR) | SELECT AVG(against) FROM table_name_34 WHERE difference = "2" AND lost = 5 | ### Context: CREATE TABLE table_name_34 (against INTEGER, difference VARCHAR, lost VARCHAR) ### Question: Which average's against score has 2 as a difference and a lost of 5? ### Answer: SELECT AVG(against) FROM table_name_34 WHERE difference = "2" AND lost = 5 |
How many positions had a difference of - 4 and an against of less than 24? | CREATE TABLE table_name_75 (position VARCHAR, difference VARCHAR, against VARCHAR) | SELECT COUNT(position) FROM table_name_75 WHERE difference = "- 4" AND against < 24 | ### Context: CREATE TABLE table_name_75 (position VARCHAR, difference VARCHAR, against VARCHAR) ### Question: How many positions had a difference of - 4 and an against of less than 24? ### Answer: SELECT COUNT(position) FROM table_name_75 WHERE difference = "- 4" AND against < 24 |
What is the smallest lost when position is larger than 6, drawn is 7, and the points stat is less than 15? | CREATE TABLE table_name_85 (lost INTEGER, points VARCHAR, position VARCHAR, drawn VARCHAR) | SELECT MIN(lost) FROM table_name_85 WHERE position > 6 AND drawn = 7 AND points < 15 | ### Context: CREATE TABLE table_name_85 (lost INTEGER, points VARCHAR, position VARCHAR, drawn VARCHAR) ### Question: What is the smallest lost when position is larger than 6, drawn is 7, and the points stat is less than 15? ### Answer: SELECT MIN(lost) FROM table_name_85 WHERE position > 6 AND drawn = 7 AND points < 15 |
What is the largest played number when the difference is - 8 and position is more than 8? | CREATE TABLE table_name_42 (played INTEGER, difference VARCHAR, position VARCHAR) | SELECT MAX(played) FROM table_name_42 WHERE difference = "- 8" AND position > 8 | ### Context: CREATE TABLE table_name_42 (played INTEGER, difference VARCHAR, position VARCHAR) ### Question: What is the largest played number when the difference is - 8 and position is more than 8? ### Answer: SELECT MAX(played) FROM table_name_42 WHERE difference = "- 8" AND position > 8 |
What is the mean drawn when the difference is 0 and the against stat is more than 31? | CREATE TABLE table_name_34 (drawn INTEGER, difference VARCHAR, against VARCHAR) | SELECT AVG(drawn) FROM table_name_34 WHERE difference = "0" AND against > 31 | ### Context: CREATE TABLE table_name_34 (drawn INTEGER, difference VARCHAR, against VARCHAR) ### Question: What is the mean drawn when the difference is 0 and the against stat is more than 31? ### Answer: SELECT AVG(drawn) FROM table_name_34 WHERE difference = "0" AND against > 31 |
what is the winner of meridiana | CREATE TABLE table_name_35 (owner VARCHAR, winner VARCHAR) | SELECT owner FROM table_name_35 WHERE winner = "meridiana" | ### Context: CREATE TABLE table_name_35 (owner VARCHAR, winner VARCHAR) ### Question: what is the winner of meridiana ### Answer: SELECT owner FROM table_name_35 WHERE winner = "meridiana" |
Number of 13 that has what highest weight? | CREATE TABLE table_name_44 (weight INTEGER, number VARCHAR) | SELECT MAX(weight) FROM table_name_44 WHERE number = 13 | ### Context: CREATE TABLE table_name_44 (weight INTEGER, number VARCHAR) ### Question: Number of 13 that has what highest weight? ### Answer: SELECT MAX(weight) FROM table_name_44 WHERE number = 13 |
Weight of 220 has what class? | CREATE TABLE table_name_5 (class VARCHAR, weight VARCHAR) | SELECT class FROM table_name_5 WHERE weight = 220 | ### Context: CREATE TABLE table_name_5 (class VARCHAR, weight VARCHAR) ### Question: Weight of 220 has what class? ### Answer: SELECT class FROM table_name_5 WHERE weight = 220 |
Name of byron geis, and a Weight smaller than 195 involves what average number? | CREATE TABLE table_name_63 (number INTEGER, name VARCHAR, weight VARCHAR) | SELECT AVG(number) FROM table_name_63 WHERE name = "byron geis" AND weight < 195 | ### Context: CREATE TABLE table_name_63 (number INTEGER, name VARCHAR, weight VARCHAR) ### Question: Name of byron geis, and a Weight smaller than 195 involves what average number? ### Answer: SELECT AVG(number) FROM table_name_63 WHERE name = "byron geis" AND weight < 195 |
What was the record on March 22? | CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_58 WHERE date = "march 22" | ### Context: CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR) ### Question: What was the record on March 22? ### Answer: SELECT record FROM table_name_58 WHERE date = "march 22" |
What day in february was game 53? | CREATE TABLE table_name_96 (february INTEGER, game VARCHAR) | SELECT AVG(february) FROM table_name_96 WHERE game = 53 | ### Context: CREATE TABLE table_name_96 (february INTEGER, game VARCHAR) ### Question: What day in february was game 53? ### Answer: SELECT AVG(february) FROM table_name_96 WHERE game = 53 |
What is the team's record on februrary 23? | CREATE TABLE table_name_29 (record VARCHAR, february VARCHAR) | SELECT record FROM table_name_29 WHERE february = 23 | ### Context: CREATE TABLE table_name_29 (record VARCHAR, february VARCHAR) ### Question: What is the team's record on februrary 23? ### Answer: SELECT record FROM table_name_29 WHERE february = 23 |
Which Place is the lowest one that has a Total smaller than 24, and a Draw larger than 7? | CREATE TABLE table_name_94 (place INTEGER, total VARCHAR, draw VARCHAR) | SELECT MIN(place) FROM table_name_94 WHERE total < 24 AND draw > 7 | ### Context: CREATE TABLE table_name_94 (place INTEGER, total VARCHAR, draw VARCHAR) ### Question: Which Place is the lowest one that has a Total smaller than 24, and a Draw larger than 7? ### Answer: SELECT MIN(place) FROM table_name_94 WHERE total < 24 AND draw > 7 |
with lola t86/50 chassis and less than 7 points what is the entrant? | CREATE TABLE table_name_87 (entrant VARCHAR, points VARCHAR, chassis VARCHAR) | SELECT entrant FROM table_name_87 WHERE points < 7 AND chassis = "lola t86/50" | ### Context: CREATE TABLE table_name_87 (entrant VARCHAR, points VARCHAR, chassis VARCHAR) ### Question: with lola t86/50 chassis and less than 7 points what is the entrant? ### Answer: SELECT entrant FROM table_name_87 WHERE points < 7 AND chassis = "lola t86/50" |
after 1987 and entrant of first racing what is the highest points? | CREATE TABLE table_name_69 (points INTEGER, entrant VARCHAR, year VARCHAR) | SELECT MAX(points) FROM table_name_69 WHERE entrant = "first racing" AND year > 1987 | ### Context: CREATE TABLE table_name_69 (points INTEGER, entrant VARCHAR, year VARCHAR) ### Question: after 1987 and entrant of first racing what is the highest points? ### Answer: SELECT MAX(points) FROM table_name_69 WHERE entrant = "first racing" AND year > 1987 |
with year greater than 1988 what is the total number of points? | CREATE TABLE table_name_62 (points VARCHAR, year INTEGER) | SELECT COUNT(points) FROM table_name_62 WHERE year > 1988 | ### Context: CREATE TABLE table_name_62 (points VARCHAR, year INTEGER) ### Question: with year greater than 1988 what is the total number of points? ### Answer: SELECT COUNT(points) FROM table_name_62 WHERE year > 1988 |
what is the points total for forti corse? | CREATE TABLE table_name_49 (points INTEGER, entrant VARCHAR) | SELECT SUM(points) FROM table_name_49 WHERE entrant = "forti corse" | ### Context: CREATE TABLE table_name_49 (points INTEGER, entrant VARCHAR) ### Question: what is the points total for forti corse? ### Answer: SELECT SUM(points) FROM table_name_49 WHERE entrant = "forti corse" |
What is the Parts-per example of 2Γ10 β6? | CREATE TABLE table_name_75 (parts_per_example VARCHAR, value_of_quantity VARCHAR) | SELECT parts_per_example FROM table_name_75 WHERE value_of_quantity = "2Γ10 β6" | ### Context: CREATE TABLE table_name_75 (parts_per_example VARCHAR, value_of_quantity VARCHAR) ### Question: What is the Parts-per example of 2Γ10 β6? ### Answer: SELECT parts_per_example FROM table_name_75 WHERE value_of_quantity = "2Γ10 β6" |
What is the Coefficient of 2 ppt? | CREATE TABLE table_name_16 (coefficient VARCHAR, parts_per_example VARCHAR) | SELECT coefficient FROM table_name_16 WHERE parts_per_example = "2 ppt" | ### Context: CREATE TABLE table_name_16 (coefficient VARCHAR, parts_per_example VARCHAR) ### Question: What is the Coefficient of 2 ppt? ### Answer: SELECT coefficient FROM table_name_16 WHERE parts_per_example = "2 ppt" |
what is the format of catalog 865 821-1? | CREATE TABLE table_name_25 (format VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_25 WHERE catalog = "865 821-1" | ### Context: CREATE TABLE table_name_25 (format VARCHAR, catalog VARCHAR) ### Question: what is the format of catalog 865 821-1? ### Answer: SELECT format FROM table_name_25 WHERE catalog = "865 821-1" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.