question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the Format of the release with Catalog number RTRADLP491?
CREATE TABLE table_name_15 (format VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_15 WHERE catalog = "rtradlp491"
What is the Label of the Release with Catalog number 2508668?
CREATE TABLE table_name_51 (label VARCHAR, catalog VARCHAR)
SELECT label FROM table_name_51 WHERE catalog = "2508668"
What is the Format of the release with Catalog number 2508668?
CREATE TABLE table_name_86 (format VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_86 WHERE catalog = "2508668"
What is the Region of the Warner Music Canada Label release?
CREATE TABLE table_name_29 (region VARCHAR, label VARCHAR)
SELECT region FROM table_name_29 WHERE label = "warner music canada"
Who were the developers for Portal?
CREATE TABLE table_name_68 (developer_s_ VARCHAR, game VARCHAR)
SELECT developer_s_ FROM table_name_68 WHERE game = "portal"
Who were the developers for the Action RPG made after 2010?
CREATE TABLE table_name_71 (developer_s_ VARCHAR, year VARCHAR, genre VARCHAR)
SELECT developer_s_ FROM table_name_71 WHERE year > 2010 AND genre = "action rpg"
Which Callsign has an IATA of tr?
CREATE TABLE table_name_4 (callsign VARCHAR, iata VARCHAR)
SELECT callsign FROM table_name_4 WHERE iata = "tr"
Which Commenced operations have an Airline of valuair?
CREATE TABLE table_name_10 (commenced_operations VARCHAR, airline VARCHAR)
SELECT commenced_operations FROM table_name_10 WHERE airline = "valuair"
Which Commenced operations have an Airline of valuair?
CREATE TABLE table_name_39 (commenced_operations INTEGER, airline VARCHAR)
SELECT MAX(commenced_operations) FROM table_name_39 WHERE airline = "valuair"
Which IATA has a ICAO of slk?
CREATE TABLE table_name_14 (iata VARCHAR, icao VARCHAR)
SELECT iata FROM table_name_14 WHERE icao = "slk"
How many Viewers have a Rank smaller than 2?
CREATE TABLE table_name_71 (viewers INTEGER, rank INTEGER)
SELECT SUM(viewers) FROM table_name_71 WHERE rank < 2
What is the longitude for the Township that has a ANSI code less than 1036534, a water (sqmi) of 0, and a GEO ID greater than 3809959540?
CREATE TABLE table_name_20 (longitude VARCHAR, geo_id VARCHAR, ansi_code VARCHAR, water__sqmi_ VARCHAR)
SELECT COUNT(longitude) FROM table_name_20 WHERE ansi_code < 1036534 AND water__sqmi_ = 0 AND geo_id > 3809959540
What is the population in 2010 for the longitude of -97.578927?
CREATE TABLE table_name_24 (pop__2010_ VARCHAR, longitude VARCHAR)
SELECT COUNT(pop__2010_) FROM table_name_24 WHERE longitude = -97.578927
What is the total population in 2010 for the township located in Mountrail which has land less than 34.424 sq miles and a GEO ID less than 3806159940?
CREATE TABLE table_name_17 (pop__2010_ INTEGER, geo_id VARCHAR, land___sqmi__ VARCHAR, county VARCHAR)
SELECT SUM(pop__2010_) FROM table_name_17 WHERE land___sqmi__ < 34.424 AND county = "mountrail" AND geo_id < 3806159940
What is the highest recorded latitude for the township that has an ANSI code greater than 1759541 and a population in 2010 of 72?
CREATE TABLE table_name_4 (latitude INTEGER, ansi_code VARCHAR, pop__2010_ VARCHAR)
SELECT MAX(latitude) FROM table_name_4 WHERE ansi_code > 1759541 AND pop__2010_ = 72
Which Athlete has a Rank larger than 1, and a Lane larger than 7, and a Nationality of china?
CREATE TABLE table_name_97 (athlete VARCHAR, nationality VARCHAR, rank VARCHAR, lane VARCHAR)
SELECT athlete FROM table_name_97 WHERE rank > 1 AND lane > 7 AND nationality = "china"
How many Lanes have a Time larger than 13.59, and a Rank larger than 8?
CREATE TABLE table_name_36 (lane INTEGER, time VARCHAR, rank VARCHAR)
SELECT SUM(lane) FROM table_name_36 WHERE time > 13.59 AND rank > 8
How many lanes have a Nationality of france, and a Rank larger than 8?
CREATE TABLE table_name_92 (lane INTEGER, nationality VARCHAR, rank VARCHAR)
SELECT SUM(lane) FROM table_name_92 WHERE nationality = "france" AND rank > 8
What game was developed by Nintendo for the Gamecube platform?
CREATE TABLE table_name_92 (game VARCHAR, developer_s_ VARCHAR, platform_s_ VARCHAR)
SELECT game FROM table_name_92 WHERE developer_s_ = "nintendo" AND platform_s_ = "gamecube"
What is the genre of Super Mario Galaxy?
CREATE TABLE table_name_50 (genre VARCHAR, game VARCHAR)
SELECT genre FROM table_name_50 WHERE game = "super mario galaxy"
What is the highest population for the province having a rank under 5?
CREATE TABLE table_name_57 (population INTEGER, rank_among_provinces INTEGER)
SELECT MAX(population) FROM table_name_57 WHERE rank_among_provinces < 5
What's the comp for 1998-04-22?
CREATE TABLE table_name_1 (comp VARCHAR, date VARCHAR)
SELECT comp FROM table_name_1 WHERE date = "1998-04-22"
What's the score at Olympic Stadium Tokyo, Japan?
CREATE TABLE table_name_49 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_49 WHERE venue = "olympic stadium tokyo, japan"
What's the comp in Olympic Stadium Tokyo, Japan?
CREATE TABLE table_name_60 (comp VARCHAR, venue VARCHAR)
SELECT comp FROM table_name_60 WHERE venue = "olympic stadium tokyo, japan"
What's the report in King Baudouin Stadium Brussels, Belgium?
CREATE TABLE table_name_31 (report VARCHAR, venue VARCHAR)
SELECT report FROM table_name_31 WHERE venue = "king baudouin stadium brussels, belgium"
What is the Percentage Lost for the contestant with a starting weight above 102 kg who lost 46.9 kg?
CREATE TABLE table_name_93 (percentage_lost VARCHAR, starting_weight__kg_ VARCHAR, weight_lost__kg_ VARCHAR)
SELECT percentage_lost FROM table_name_93 WHERE starting_weight__kg_ > 102 AND weight_lost__kg_ = 46.9
What lane has a time of 1:57.71?
CREATE TABLE table_name_95 (lane INTEGER, time VARCHAR)
SELECT SUM(lane) FROM table_name_95 WHERE time = "1:57.71"
Who had a larger rank than 3, less than 6 lanes, and a time of 1:58.15?
CREATE TABLE table_name_32 (name VARCHAR, time VARCHAR, rank VARCHAR, lane VARCHAR)
SELECT name FROM table_name_32 WHERE rank > 3 AND lane < 6 AND time = "1:58.15"
Which Crude death rate (per 1000) has Deaths of 768, and a Crude birth rate (per 1000) smaller than 29.7?
CREATE TABLE table_name_51 (crude_death_rate__per_1000_ INTEGER, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR)
SELECT MIN(crude_death_rate__per_1000_) FROM table_name_51 WHERE deaths = "768" AND crude_birth_rate__per_1000_ < 29.7
Which Attendance has an Opponent of perth glory, and a Round of 9?
CREATE TABLE table_name_91 (attendance INTEGER, opponent VARCHAR, round VARCHAR)
SELECT MIN(attendance) FROM table_name_91 WHERE opponent = "perth glory" AND round = "9"
What is the lowest rank of rider darren gilpin?
CREATE TABLE table_name_91 (rank INTEGER, rider VARCHAR)
SELECT MIN(rank) FROM table_name_91 WHERE rider = "darren gilpin"
What is the highest rank of rider colin martin?
CREATE TABLE table_name_66 (rank INTEGER, rider VARCHAR)
SELECT MAX(rank) FROM table_name_66 WHERE rider = "colin martin"
What is shown on Tuesday when Monday is showing Fox Sports Primetime?
CREATE TABLE table_name_77 (tuesday VARCHAR, monday VARCHAR)
SELECT tuesday FROM table_name_77 WHERE monday = "fox sports primetime"
What is shown on Friday when Tuesday is Jay Mohr Sports?
CREATE TABLE table_name_25 (friday VARCHAR, tuesday VARCHAR)
SELECT friday FROM table_name_25 WHERE tuesday = "jay mohr sports"
What is shown on Friday when Monday is Fox Sports Primetime?
CREATE TABLE table_name_36 (friday VARCHAR, monday VARCHAR)
SELECT friday FROM table_name_36 WHERE monday = "fox sports primetime"
What is shown on Tuesday when Thursday shows Fox Sports Tonight (ends 1 am next day)?
CREATE TABLE table_name_71 (tuesday VARCHAR, thursday VARCHAR)
SELECT tuesday FROM table_name_71 WHERE thursday = "fox sports tonight (ends 1 am next day)"
What is shown on Tuesday when Wednesday is Fox Sports Tonight (ends 1 am next day)?
CREATE TABLE table_name_59 (tuesday VARCHAR, wednesday VARCHAR)
SELECT tuesday FROM table_name_59 WHERE wednesday = "fox sports tonight (ends 1 am next day)"
Which capacity has the class 4c3h?
CREATE TABLE table_name_37 (capacity VARCHAR, class VARCHAR)
SELECT capacity FROM table_name_37 WHERE class = "4c3h"
What is the navigator for James?
CREATE TABLE table_name_3 (navigator VARCHAR, driver VARCHAR)
SELECT navigator FROM table_name_3 WHERE driver = "james"
How much time did Coad make when the margin was 04:02?
CREATE TABLE table_name_44 (total_time VARCHAR, margin VARCHAR, driver VARCHAR)
SELECT total_time FROM table_name_44 WHERE margin = "04:02" AND driver = "coad"
What class has a capacity smaller than 3384 for Ferguson?
CREATE TABLE table_name_40 (class VARCHAR, capacity VARCHAR, navigator VARCHAR)
SELECT class FROM table_name_40 WHERE capacity < 3384 AND navigator = "ferguson"
What is the total number of places for a song with a draw of 21 and more than 36 points?
CREATE TABLE table_name_97 (place VARCHAR, draw VARCHAR, points VARCHAR)
SELECT COUNT(place) FROM table_name_97 WHERE draw = 21 AND points > 36
What is the lowest numbered game against Phoenix with a record of 29-17?
CREATE TABLE table_name_61 (game INTEGER, opponent VARCHAR, record VARCHAR)
SELECT MIN(game) FROM table_name_61 WHERE opponent = "phoenix" AND record = "29-17"
what is the soap opera when the duration is 18 years and the character is miley byrne?
CREATE TABLE table_name_4 (soap_opera VARCHAR, duration VARCHAR, character VARCHAR)
SELECT soap_opera FROM table_name_4 WHERE duration = "18 years" AND character = "miley byrne"
what is the years when the duration is 13 years and the character is renee phelan?
CREATE TABLE table_name_17 (years VARCHAR, duration VARCHAR, character VARCHAR)
SELECT years FROM table_name_17 WHERE duration = "13 years" AND character = "renee phelan"
what is the years when the soap opera is glenroe and the actor is mick lally?
CREATE TABLE table_name_21 (years VARCHAR, soap_opera VARCHAR, actor VARCHAR)
SELECT years FROM table_name_21 WHERE soap_opera = "glenroe" AND actor = "mick lally"
who is the actor when the character is dinny byrne?
CREATE TABLE table_name_8 (actor VARCHAR, character VARCHAR)
SELECT actor FROM table_name_8 WHERE character = "dinny byrne"
what is the soap opera when the actor is dave duffy?
CREATE TABLE table_name_11 (soap_opera VARCHAR, actor VARCHAR)
SELECT soap_opera FROM table_name_11 WHERE actor = "dave duffy"
What is the score for the game with an 11 tie number?
CREATE TABLE table_name_50 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_50 WHERE tie_no = "11"
What date was Ipswich Town the away team?
CREATE TABLE table_name_76 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_76 WHERE away_team = "ipswich town"
Who is the owner with a Hot Adult Contemporary format?
CREATE TABLE table_name_29 (owner VARCHAR, format VARCHAR)
SELECT owner FROM table_name_29 WHERE format = "hot adult contemporary"
What's the call sign of The Q?
CREATE TABLE table_name_43 (call_sign VARCHAR, branding VARCHAR)
SELECT call_sign FROM table_name_43 WHERE branding = "the q"
What's the call sign for Jack FM?
CREATE TABLE table_name_60 (call_sign VARCHAR, branding VARCHAR)
SELECT call_sign FROM table_name_60 WHERE branding = "jack fm"
What is the average year for a Saar of FK Pirmasens and Hessen of Wormatia Worms?
CREATE TABLE table_name_47 (year INTEGER, saar VARCHAR, hessen VARCHAR)
SELECT AVG(year) FROM table_name_47 WHERE saar = "fk pirmasens" AND hessen = "wormatia worms"
What is the smallest year for a Main of Eintracht Frankfurt, Rhein of Waldhof Mannheim, Sarr of FK Pirmasens, and Hessen of Wormatia Worms?
CREATE TABLE table_name_96 (year INTEGER, hessen VARCHAR, saar VARCHAR, main VARCHAR, rhein VARCHAR)
SELECT MIN(year) FROM table_name_96 WHERE main = "eintracht frankfurt" AND rhein = "waldhof mannheim" AND saar = "fk pirmasens" AND hessen = "wormatia worms"
Which year has a Main of Eintracht Frankfurt and Hessen of FSV Mainz 05?
CREATE TABLE table_name_3 (year VARCHAR, main VARCHAR, hessen VARCHAR)
SELECT year FROM table_name_3 WHERE main = "eintracht frankfurt" AND hessen = "fsv mainz 05"
Who was the Hessen the year that Saar was FK Pirmasens?
CREATE TABLE table_name_23 (hessen VARCHAR, saar VARCHAR)
SELECT hessen FROM table_name_23 WHERE saar = "fk pirmasens"
What's the series of Buddy The Woodsman by director Jack King?
CREATE TABLE table_name_33 (series VARCHAR, director VARCHAR, title VARCHAR)
SELECT series FROM table_name_33 WHERE director = "jack king" AND title = "buddy the woodsman"
Who was the director of the movie having a release date of 1934-09-15, an MM Series and a production number less than 6494?
CREATE TABLE table_name_12 (director VARCHAR, release_date VARCHAR, series VARCHAR, production_num VARCHAR)
SELECT director FROM table_name_12 WHERE series = "mm" AND production_num < 6494 AND release_date = "1934-09-15"
Who's the director of Buddy of the Apes?
CREATE TABLE table_name_80 (director VARCHAR, title VARCHAR)
SELECT director FROM table_name_80 WHERE title = "buddy of the apes"
What's the title of the film directed by Friz Freleng with an MM Series, production number greater than 6209 and a release date of 1934-11-03?
CREATE TABLE table_name_77 (title VARCHAR, release_date VARCHAR, director VARCHAR, production_num VARCHAR, series VARCHAR)
SELECT title FROM table_name_77 WHERE production_num > 6209 AND series = "mm" AND director = "friz freleng" AND release_date = "1934-11-03"
What is the lowest time for Paulo Villar in lane 9?
CREATE TABLE table_name_85 (time INTEGER, athlete VARCHAR, lane VARCHAR)
SELECT MIN(time) FROM table_name_85 WHERE athlete = "paulo villar" AND lane < 9
What is the nationality of lane 4?
CREATE TABLE table_name_78 (nationality VARCHAR, lane VARCHAR)
SELECT nationality FROM table_name_78 WHERE lane = 4
What is the nationality with a 13.21 time?
CREATE TABLE table_name_55 (nationality VARCHAR, time VARCHAR)
SELECT nationality FROM table_name_55 WHERE time = 13.21
What increase in net assets also has $5,617,236 as the total expenses?
CREATE TABLE table_name_16 (increase_in_net_assets VARCHAR, total_expenses VARCHAR)
SELECT increase_in_net_assets FROM table_name_16 WHERE total_expenses = "$5,617,236"
How many Gold medals did Puerto Rico receive with 1 Silver and a Total of 1 or less?
CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT COUNT(gold) FROM table_name_79 WHERE silver = 1 AND nation = "puerto rico" AND total < 1
What is the Total number of medals for the Nation with 7 or less Bronze medals and 1 Silver medal with a Rank of 9 or larger?
CREATE TABLE table_name_90 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT MIN(total) FROM table_name_90 WHERE bronze < 7 AND silver = 1 AND rank > 9
How many Silver medals did the Nation with 10 or more Bronze receive?
CREATE TABLE table_name_73 (silver INTEGER, bronze INTEGER)
SELECT MIN(silver) FROM table_name_73 WHERE bronze > 10
what is the average wins when draws is less than 0?
CREATE TABLE table_name_72 (wins INTEGER, draws INTEGER)
SELECT AVG(wins) FROM table_name_72 WHERE draws < 0
what is the average losses when the club is warrnambool and wins is less than 12?
CREATE TABLE table_name_58 (losses INTEGER, club VARCHAR, wins VARCHAR)
SELECT AVG(losses) FROM table_name_58 WHERE club = "warrnambool" AND wins < 12
what is the most losses when the club is terang and draws is less than 0?
CREATE TABLE table_name_75 (losses INTEGER, club VARCHAR, draws VARCHAR)
SELECT MAX(losses) FROM table_name_75 WHERE club = "terang" AND draws < 0
What is the sum of losses when wins is more than 6, club is camperdown and against is more than 1238?
CREATE TABLE table_name_6 (losses INTEGER, against VARCHAR, wins VARCHAR, club VARCHAR)
SELECT SUM(losses) FROM table_name_6 WHERE wins > 6 AND club = "camperdown" AND against > 1238
What is the drew for the 1999-2000 season when they were in third place?
CREATE TABLE table_name_52 (drew VARCHAR, round VARCHAR, season VARCHAR)
SELECT drew FROM table_name_52 WHERE round = "third place" AND season = "1999-2000"
What competition did they have 1 lost, 3 draws, and played 9 games?
CREATE TABLE table_name_17 (competition VARCHAR, played VARCHAR, lost VARCHAR, drew VARCHAR)
SELECT competition FROM table_name_17 WHERE lost = "1" AND drew = "3" AND played = "9"
What is the number of draws when the played 9 and lost 3?
CREATE TABLE table_name_23 (drew VARCHAR, played VARCHAR, lost VARCHAR)
SELECT drew FROM table_name_23 WHERE played = "9" AND lost = "3"
How many cable channels have callsign CBFT-DT?
CREATE TABLE table_name_38 (cable_channel VARCHAR, call_sign VARCHAR)
SELECT COUNT(cable_channel) FROM table_name_38 WHERE call_sign = "cbft-dt"
What is the lowest Digital PSIP for channels over 29 with callsign CFTU-DT?
CREATE TABLE table_name_81 (digital_psip INTEGER, call_sign VARCHAR, broadcast_channel VARCHAR)
SELECT MIN(digital_psip) FROM table_name_81 WHERE call_sign = "cftu-dt" AND broadcast_channel > 29
What is the Digital PSIP for channels over 15 with callsign CFTU-DT?
CREATE TABLE table_name_14 (digital_psip VARCHAR, broadcast_channel VARCHAR, call_sign VARCHAR)
SELECT digital_psip FROM table_name_14 WHERE broadcast_channel > 15 AND call_sign = "cftu-dt"
Where was the location of the Mong Kok Stadium?
CREATE TABLE table_name_12 (location VARCHAR, home_ground VARCHAR)
SELECT location FROM table_name_12 WHERE home_ground = "mong kok stadium"
Which club, had a home ground of n/a?
CREATE TABLE table_name_95 (club VARCHAR, home_ground VARCHAR)
SELECT club FROM table_name_95 WHERE home_ground = "n/a"
What is the location for the first division, Sun Pegasus Club?
CREATE TABLE table_name_25 (location VARCHAR, league_division VARCHAR, club VARCHAR)
SELECT location FROM table_name_25 WHERE league_division = "first division" AND club = "sun pegasus"
What division is Sai Kung in?
CREATE TABLE table_name_29 (league_division VARCHAR, club VARCHAR)
SELECT league_division FROM table_name_29 WHERE club = "sai kung"
What league is Sun Source in?
CREATE TABLE table_name_6 (league_division VARCHAR, club VARCHAR)
SELECT league_division FROM table_name_6 WHERE club = "sun source"
What was the model that had years 2004-?
CREATE TABLE table_name_26 (model VARCHAR, years VARCHAR)
SELECT model FROM table_name_26 WHERE years = "2004-"
What was the torque@rpm of the sl 65 amg?
CREATE TABLE table_name_75 (torque VARCHAR, model VARCHAR)
SELECT torque AS @rpm FROM table_name_75 WHERE model = "sl 65 amg"
What was the model that had years 2004-?
CREATE TABLE table_name_67 (model VARCHAR, years VARCHAR)
SELECT model FROM table_name_67 WHERE years = "2004-"
What is the IHSAA Class for football for the team joining in 1968?
CREATE TABLE table_name_15 (ihsaa_class VARCHAR, year_joined VARCHAR)
SELECT ihsaa_class AS Football FROM table_name_15 WHERE year_joined = 1968
What is the IHSAA class for Tipton?
CREATE TABLE table_name_3 (ihsaa_class VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_3 WHERE school = "tipton"
What is the rank for the person with time 11.14?
CREATE TABLE table_name_54 (rank INTEGER, time___sec__ VARCHAR)
SELECT AVG(rank) FROM table_name_54 WHERE time___sec__ = 11.14
What is the rank when time is 11.15 and lane is bigger than 7 with notes Q, PB?
CREATE TABLE table_name_76 (rank INTEGER, lane VARCHAR, notes VARCHAR, time___sec__ VARCHAR)
SELECT SUM(rank) FROM table_name_76 WHERE notes = "q, pb" AND time___sec__ = 11.15 AND lane > 7
What is the lane for notes Q, SB and time less than 11.22?
CREATE TABLE table_name_31 (lane INTEGER, notes VARCHAR, time___sec__ VARCHAR)
SELECT SUM(lane) FROM table_name_31 WHERE notes = "q, sb" AND time___sec__ < 11.22
Which athlete is ranked less than 5 with time over 11.22?
CREATE TABLE table_name_15 (athlete VARCHAR, time___sec__ VARCHAR, rank VARCHAR)
SELECT athlete FROM table_name_15 WHERE time___sec__ > 11.22 AND rank < 5
How many lanes does Australia have with a reaction smaller than 0.138?
CREATE TABLE table_name_55 (lane VARCHAR, nationality VARCHAR, reaction VARCHAR)
SELECT COUNT(lane) FROM table_name_55 WHERE nationality = "australia" AND reaction < 0.138
Who had a reaction larger than 0.17400000000000002 and a lane larger than 6?
CREATE TABLE table_name_80 (name VARCHAR, reaction VARCHAR, lane VARCHAR)
SELECT name FROM table_name_80 WHERE reaction > 0.17400000000000002 AND lane > 6
The ship MS Vistafjord has what in service for NAL?
CREATE TABLE table_name_10 (in_service_for_nal VARCHAR, ship VARCHAR)
SELECT in_service_for_nal FROM table_name_10 WHERE ship = "ms vistafjord"
The ship SSBergensfjord built before 1973 has what tonnage?
CREATE TABLE table_name_90 (tonnage VARCHAR, built VARCHAR, ship VARCHAR)
SELECT tonnage FROM table_name_90 WHERE built < 1973 AND ship = "ssbergensfjord"
Which nationality has a time of 50.92?
CREATE TABLE table_name_52 (nationality VARCHAR, time VARCHAR)
SELECT nationality FROM table_name_52 WHERE time = 50.92
What is the time with fewer than 5 lanes for the United States?
CREATE TABLE table_name_82 (time INTEGER, lane VARCHAR, nationality VARCHAR)
SELECT SUM(time) FROM table_name_82 WHERE lane < 5 AND nationality = "united states"
Which Att-Cmp has a GP-GS of 7-1?
CREATE TABLE table_name_21 (att_cmp VARCHAR, gp_gs VARCHAR)
SELECT att_cmp FROM table_name_21 WHERE gp_gs = "7-1"
Which Att-Cmp has a TD-INT of 7-8?
CREATE TABLE table_name_21 (att_cmp VARCHAR, td_int VARCHAR)
SELECT att_cmp FROM table_name_21 WHERE td_int = "7-8"