text
stringlengths
114
1.06k
### 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" ### context: CREATE TABLE table_name_1 (res 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" ### context: CREATE TABLE table_name_19 (location VARCHAR, record 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" ### context: CREATE TABLE table_name_90 (discs VARCHAR, region_1_release VARCHAR)
### question: What is the lowest rank of Citigroup? ### answer: SELECT MIN(rank) FROM table_name_67 WHERE name = "citigroup" ### context: CREATE TABLE table_name_67 (rank INTEGER, name 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" ### context: CREATE TABLE table_name_10 (market_value___usd_million_ VARCHAR, industry VARCHAR)
### question: Name the attendance with result of t 14-14 ### answer: SELECT attendance FROM table_name_92 WHERE result = "t 14-14" ### context: CREATE TABLE table_name_92 (attendance VARCHAR, result 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 ### context: CREATE TABLE table_name_43 (attendance VARCHAR, 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 ### context: CREATE TABLE table_name_21 (attendance INTEGER, date VARCHAR, week 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" ### context: CREATE TABLE table_name_92 (points INTEGER, rank VARCHAR)
### question: Who is the player who had more than 1,052 points? ### answer: SELECT player FROM table_name_87 WHERE points > 1 OFFSET 052 ### context: CREATE TABLE table_name_87 (player VARCHAR, points INTEGER)
### question: What are the highest points that Emmitt Smith had? ### answer: SELECT MAX(points) FROM table_name_96 WHERE player = "emmitt smith" ### context: CREATE TABLE table_name_96 (points INTEGER, player VARCHAR)
### question: Record of 6–8 had what attendance? ### answer: SELECT attendance FROM table_name_33 WHERE record = "6–8" ### context: CREATE TABLE table_name_33 (attendance VARCHAR, record VARCHAR)
### question: Result of l 17–20 had what attendance? ### answer: SELECT attendance FROM table_name_31 WHERE result = "l 17–20" ### context: CREATE TABLE table_name_31 (attendance 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" ### context: CREATE TABLE table_name_29 (attendance VARCHAR, game_site VARCHAR, result 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" ### context: CREATE TABLE table_name_48 (year INTEGER, venue VARCHAR, score 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" ### context: CREATE TABLE table_name_35 (champion VARCHAR, venue 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 ### context: CREATE TABLE table_name_80 (world_ranking INTEGER, date VARCHAR, year 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" ### context: CREATE TABLE table_name_9 (date VARCHAR, performance VARCHAR)
### question: The venue of Rome has which date? ### answer: SELECT date FROM table_name_84 WHERE venue = "rome" ### context: CREATE TABLE table_name_84 (date VARCHAR, venue 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" ### context: CREATE TABLE table_name_11 (agg 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" ### context: CREATE TABLE table_name_49 (last_final_lost VARCHAR, wins 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" ### context: CREATE TABLE table_name_39 (runners_up VARCHAR, last_final_lost 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" ### context: CREATE TABLE table_name_70 (last_final_lost VARCHAR, last_win VARCHAR)
### question: When was the last win of Celtic? ### answer: SELECT last_win FROM table_name_89 WHERE club = "celtic" ### context: CREATE TABLE table_name_89 (last_win VARCHAR, club VARCHAR)
### question: Which club had 13 runners-up? ### answer: SELECT club FROM table_name_27 WHERE runners_up = "13" ### context: CREATE TABLE table_name_27 (club VARCHAR, runners_up 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" ### context: CREATE TABLE table_name_41 (visitor VARCHAR, home VARCHAR, date VARCHAR)
### question: what date were they playing in hawthorn ### answer: SELECT date FROM table_name_17 WHERE away_team = "hawthorn" ### context: CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)
### question: what report was in geelong ### answer: SELECT report FROM table_name_48 WHERE home_team = "geelong" ### context: CREATE TABLE table_name_48 (report VARCHAR, home_team 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" ### context: CREATE TABLE table_name_45 (town_city VARCHAR, name 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" ### context: CREATE TABLE table_name_54 (name VARCHAR, town_city 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" ### context: CREATE TABLE table_name_31 (name VARCHAR, borough VARCHAR, type 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" ### context: CREATE TABLE table_name_8 (region VARCHAR, type VARCHAR, town_city VARCHAR)
### question: What Type of museum is the Valdez museum? ### answer: SELECT type FROM table_name_73 WHERE name = "valdez museum" ### context: CREATE TABLE table_name_73 (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" ### context: CREATE TABLE table_name_82 (borough VARCHAR, type VARCHAR, name VARCHAR)
### question: what is the zip code of boonville ### answer: 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: Which tournament was held on 9 Jun 2002? ### answer: SELECT tournament FROM table_name_57 WHERE date = "9 jun 2002" ### context: CREATE TABLE table_name_57 (tournament VARCHAR, date 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" ### context: CREATE TABLE table_name_93 (winning_score VARCHAR, margin_of_victo...
### 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) ### context: CREATE TABLE table_name_45 (runner_s__up VARCHAR, winning_score 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" ### context: CREATE TABLE table_name_67 (winning_score VARCHAR, margin_of_...
### 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) ### context: CREATE TABLE table_name_19 (runner_s__up VARCHAR, m...
### 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" ### context: CREATE TABLE table_name_27 (winning_score VARCHAR, margin...
### question: What are the high rebounds of team @ Charlotte? ### answer: SELECT high_rebounds FROM table_name_17 WHERE team = "@ charlotte" ### context: CREATE TABLE table_name_17 (high_rebounds VARCHAR, team VARCHAR)
### question: What is the high rebounds of game 68? ### answer: 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 score of New York team before game 61? ### answer: 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: 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" ### context: CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final 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" ### context: CREATE TABLE table_name_6 (international_tourist_arrivals__2011_ VARCH...
### 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" ### context: CREATE TABLE table_name_38 (international_tourist_arrivals__2012_ VARCHAR, inter...
### question: How far Venue of seoul, south korea is? ### answer: SELECT distance FROM table_name_6 WHERE venue = "seoul, south korea" ### context: CREATE TABLE table_name_6 (distance VARCHAR, venue 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" ### context: CREATE TABLE table_name_33 (venue VARCHAR, tournament VARCHAR, result VARCHAR)
### question: What is the Result of Venue of edmonton, canada? ### answer: SELECT result FROM table_name_54 WHERE venue = "edmonton, canada" ### context: CREATE TABLE table_name_54 (result VARCHAR, venue 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" ### context: CREATE TABLE table_name_21 (team_2 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 ### context: CREATE TABLE table_name_76 (opponent VARCHAR, game_site VARCHAR, week VARCHAR)
### question: Which opponent was played on week 9? ### answer: SELECT opponent FROM table_name_46 WHERE week = 9 ### context: CREATE TABLE table_name_46 (opponent VARCHAR, week 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" ### context: CREATE TABLE table_name_28 (date VARCHAR, game_site 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" ### context: CREATE TABLE table_name_23 (opponents VARCHAR, year VARCHAR, team 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" ### context: CREATE TABLE table_name_21 (score VARCHAR, opponents 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" ### context: CREATE TABLE table_name_49 (opponents VARCHAR, team VARCHAR, year 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" ### context: CREATE TABLE table_name_78 (opponents VARCHAR, year 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" ### context: CREATE TABLE table_name_82 (opponents VARCHAR, progress VARCHAR, score VARCHAR, team V...
### question: How much Rank has Points larger than 282.5? ### answer: SELECT COUNT(rank) FROM table_name_11 WHERE points > 282.5 ### context: CREATE TABLE table_name_11 (rank VARCHAR, 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 ### context: CREATE TABLE table_name_98 (rank INTEGER, points INTEGER)
### 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 ### context: CREATE TABLE table_name_78 (nationality VARCHAR, rank 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" ### context: CREATE TABLE table_name_72 (uk_broadcast_date 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" ### context: CREATE TABLE table_name_74 (episode_title VARCHAR, presenter 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" ### context: CREATE TABLE table_name_45 (presenter VARCHAR, uk_broadcast_date 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" ### context: CREATE TABLE table_name_87 (uk_broadcast_date VARCHAR, presenter VARCHAR)
### question: What was the score when the team played at the bobcats? ### answer: 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 Spurs' record was 43-13? ### answer: SELECT score FROM table_name_72 WHERE record = "43-13" ### context: CREATE TABLE table_name_72 (score VARCHAR, record 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" ### context: CREATE TABLE table_name_63 (country_name VARCHAR, numeric_code VARCHAR, latin_3_letter_cod...
### 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" ### context: CREATE TABLE table_name_86 (russian_name VARCHAR, latin_3_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" ### context: CREATE TABLE table_name_4 (country_name VARCHAR, numeric_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" ### context: CREATE TABLE table_name_68 (cyrillic_code VARCHAR, latin_2_letter_code 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 ### context: CREATE TABLE table_name_47 (place INTEGER, draw VARCHAR, points 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 ### context: CREATE TABLE table_name_99 (song VARCHAR, points VARCHAR, draw VARCHAR)
### question: what is the single of the queen ### answer: SELECT single FROM table_name_67 WHERE artist = "queen" ### context: CREATE TABLE table_name_67 (single VARCHAR, artist VARCHAR)
### question: what artist won in 1953 ### answer: SELECT artist FROM table_name_41 WHERE year = "1953" ### context: CREATE TABLE table_name_41 (artist VARCHAR, year VARCHAR)
### question: what year did david whitfield win ### answer: SELECT year FROM table_name_14 WHERE artist = "david whitfield" ### context: CREATE TABLE table_name_14 (year VARCHAR, artist 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" ### context: CREATE TABLE table_name_41 (rank INTEGER, points VARCHAR, name VARCHAR)
### question: How many points was before game 14? ### answer: SELECT SUM(points) FROM table_name_82 WHERE game < 14 ### context: CREATE TABLE table_name_82 (points INTEGER, game INTEGER)
### question: What is the average points on November 6? ### answer: SELECT AVG(points) FROM table_name_8 WHERE november = 6 ### context: CREATE TABLE table_name_8 (points INTEGER, november 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 ### context: CREATE TABLE table_name_34 (against INTEGER, difference VARCHAR, lost 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 ### context: CREATE TABLE table_name_75 (position VARCHAR, difference VARCHAR, against 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 ### context: CREATE TABLE table_name_85 (lost INTEGER, points VARCHAR, position VARCHAR, drawn 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 ### context: CREATE TABLE table_name_42 (played INTEGER, difference VARCHAR, position 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 ### context: CREATE TABLE table_name_34 (drawn INTEGER, difference VARCHAR, against VARCHAR)
### question: what is the winner of meridiana ### answer: SELECT owner FROM table_name_35 WHERE winner = "meridiana" ### context: CREATE TABLE table_name_35 (owner VARCHAR, winner VARCHAR)
### question: Number of 13 that has what highest weight? ### answer: SELECT MAX(weight) FROM table_name_44 WHERE number = 13 ### context: CREATE TABLE table_name_44 (weight INTEGER, number VARCHAR)
### question: Weight of 220 has what class? ### answer: SELECT class FROM table_name_5 WHERE weight = 220 ### context: CREATE TABLE table_name_5 (class 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 ### context: CREATE TABLE table_name_63 (number INTEGER, name VARCHAR, weight VARCHAR)
### question: What was the record on March 22? ### answer: SELECT record FROM table_name_58 WHERE date = "march 22" ### context: CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR)
### question: What day in february was game 53? ### answer: SELECT AVG(february) FROM table_name_96 WHERE game = 53 ### context: CREATE TABLE table_name_96 (february INTEGER, game VARCHAR)
### question: What is the team's record on februrary 23? ### answer: SELECT record FROM table_name_29 WHERE february = 23 ### context: CREATE TABLE table_name_29 (record VARCHAR, february 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 ### context: CREATE TABLE table_name_94 (place INTEGER, total VARCHAR, draw 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" ### context: CREATE TABLE table_name_87 (entrant VARCHAR, points VARCHAR, chassis 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 ### context: CREATE TABLE table_name_69 (points INTEGER, entrant VARCHAR, year VARCHAR)
### question: with year greater than 1988 what is the total number of points? ### answer: SELECT COUNT(points) FROM table_name_62 WHERE year > 1988 ### context: CREATE TABLE table_name_62 (points VARCHAR, year INTEGER)
### question: what is the points total for forti corse? ### answer: 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 Parts-per example of 2Γ—10 βˆ’6? ### answer: 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 Coefficient of 2 ppt? ### answer: 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 format of catalog 865 821-1? ### answer: SELECT format FROM table_name_25 WHERE catalog = "865 821-1" ### context: CREATE TABLE table_name_25 (format VARCHAR, catalog VARCHAR)