answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT year FROM table_22654139_3 WHERE reporters = "Lesley Visser and Robin Roberts"
What is every year when the reporters were Lesley Visser and Robin Roberts?
CREATE TABLE table_22654139_3 (year VARCHAR, reporters VARCHAR)
SELECT MIN(total) FROM table_name_17 WHERE nation = "united states" AND rank < 2
What is the lowest total from United States with a Rank smaller than 2?
CREATE TABLE table_name_17 (total INTEGER, nation VARCHAR, rank VARCHAR)
SELECT power_rpm FROM table_name_91 WHERE model_engine = "1.8 duratorq"
Name the power for 1.8 duratorq
CREATE TABLE table_name_91 (power_rpm VARCHAR, model_engine VARCHAR)
SELECT monument_name FROM table_name_95 WHERE year_built > 1887 AND county = "warren"
What Monument was built after 1887 in Warren County?
CREATE TABLE table_name_95 (monument_name VARCHAR, year_built VARCHAR, county VARCHAR)
SELECT record FROM table_name_27 WHERE event = "tko 20: champion vs champion"
What is the record in TKO 20: Champion Vs Champion?
CREATE TABLE table_name_27 (record VARCHAR, event VARCHAR)
SELECT MIN(crowd) FROM table_name_93 WHERE away_team = "collingwood"
What was the lowest amount of people to turn out at a game with the away team as collingwood?
CREATE TABLE table_name_93 (crowd INTEGER, away_team VARCHAR)
SELECT build_date FROM table_name_61 WHERE prr_class = "brs24"
What is the build date of the model with a PRR Class of brs24?
CREATE TABLE table_name_61 (build_date VARCHAR, prr_class VARCHAR)
SELECT character FROM table_name_63 WHERE german_voice_actor = "dirk fenselau"
What character does German voice actor Dirk Fenselau play?
CREATE TABLE table_name_63 (character VARCHAR, german_voice_actor VARCHAR)
SELECT surface FROM table_name_89 WHERE partner = "pemra özgen"
Which Surface has a Partner of pemra özgen?
CREATE TABLE table_name_89 (surface VARCHAR, partner VARCHAR)
SELECT date FROM table_name_49 WHERE opponent = "brother elephants" AND save = "||4,117"
What is the date of the match with Brother Elephants as the opponent and a save of ||4,117?
CREATE TABLE table_name_49 (date VARCHAR, opponent VARCHAR, save VARCHAR)
SELECT player FROM table_name_66 WHERE height = "6-10" AND college = "lsu"
Which Player has a height of 6-10, and went to College at LSU?
CREATE TABLE table_name_66 (player VARCHAR, height VARCHAR, college VARCHAR)
SELECT MIN(black_caribbean_population) FROM table_19149550_7 WHERE black_african_population < 10552.0
What is the black caribbean population when the black African population is less than 10552.0?
CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, black_african_population INTEGER)
SELECT s_host FROM table_22514845_5 WHERE s_analyst = "John Rotz and Howard Cosell"
Name the host for john rotz and howard cosell
CREATE TABLE table_22514845_5 (s_host VARCHAR, s_analyst VARCHAR)
SELECT AVG(draws) FROM table_name_69 WHERE wins < 3 AND points > 5
What is the average draws with less than 3 wins and more than 5 points?
CREATE TABLE table_name_69 (draws INTEGER, wins VARCHAR, points VARCHAR)
SELECT championship FROM table_2362486_1 WHERE score_in_the_final = "6–4, 2–6, 6–4, 7–6(3)"
Which championship had a final score of 6–4, 2–6, 6–4, 7–6(3)?
CREATE TABLE table_2362486_1 (championship VARCHAR, score_in_the_final VARCHAR)
SELECT other_mozilla FROM table_1876262_10 WHERE safari = "3.76%"
If Safari is 3.76%, what is the other Mozilla amount?
CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, safari VARCHAR)
SELECT earned FROM table_name_21 WHERE rank = 5
What earned has 5 for the rank?
CREATE TABLE table_name_21 (earned VARCHAR, rank VARCHAR)
SELECT elevated FROM table_name_7 WHERE elevator = "nicholas iii" AND cardinalatial_order_and_title = "cardinal-deacon of s. eustachio"
What is the date of elevation for the Cardinal elevated by Nicholas III to the title of Cardinal-Deacon of S. Eustachio?
CREATE TABLE table_name_7 (elevated VARCHAR, elevator VARCHAR, cardinalatial_order_and_title VARCHAR)
SELECT COUNT(losses) FROM table_name_81 WHERE ties = 2 AND wins > 8
What is the total number of Losses, when Ties is 2, and when Wins is greater than 8?
CREATE TABLE table_name_81 (losses VARCHAR, ties VARCHAR, wins VARCHAR)
SELECT team FROM table_name_76 WHERE series = "2-1"
What was the team they played when the series was 2-1?
CREATE TABLE table_name_76 (team VARCHAR, series VARCHAR)
SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = "João Pereira"
Who was the outgoing manager when the incoming manager was joão pereira?
CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR)
SELECT MIN(game) FROM table_name_98 WHERE attendance = 56 OFFSET 505
What is the first game number that had attendance of 56,505?
CREATE TABLE table_name_98 (game INTEGER, attendance VARCHAR)
SELECT home_port FROM table_name_15 WHERE ship = "kansas city"
Name the home port for kansas city
CREATE TABLE table_name_15 (home_port VARCHAR, ship VARCHAR)
SELECT MIN(silver) FROM table_name_55 WHERE bronze = 39 AND total < 120
What is the least silvers where there are 39 bronzes and the total is less than 120?
CREATE TABLE table_name_55 (silver INTEGER, bronze VARCHAR, total VARCHAR)
SELECT SUM(year) FROM table_name_39 WHERE location = "saint paul" AND final_score > 14.35 AND event = "all around"
Location of saint paul, and a Final-Score larger than 14.35, and a Event of all around is what sum of year?
CREATE TABLE table_name_39 (year INTEGER, event VARCHAR, location VARCHAR, final_score VARCHAR)
SELECT year__ceremony_ FROM table_21790203_1 WHERE language_s_ = "Japanese"
Name the year for japanese
CREATE TABLE table_21790203_1 (year__ceremony_ VARCHAR, language_s_ VARCHAR)
SELECT score FROM table_1547951_3 WHERE opponents = "Rick Leach Zina Garrison"
Name the score for rick leach zina garrison
CREATE TABLE table_1547951_3 (score VARCHAR, opponents VARCHAR)
SELECT visitor FROM table_name_93 WHERE date = "april 17"
Who was the visitor for the April 17 game?
CREATE TABLE table_name_93 (visitor VARCHAR, date VARCHAR)
SELECT date_valid_from, date_valid_to FROM Customers_cards WHERE card_number = "4560596484842"
Show the date valid from and the date valid to for the card with card number '4560596484842'.
CREATE TABLE Customers_cards (date_valid_from VARCHAR, date_valid_to VARCHAR, card_number VARCHAR)
SELECT state_province_county FROM addresses WHERE line_1_number_building LIKE "%6862 Kaitlyn Knolls%"
Which state can address "6862 Kaitlyn Knolls" possibly be in?
CREATE TABLE addresses (state_province_county VARCHAR, line_1_number_building VARCHAR)
SELECT T1.name, COUNT(*) FROM useracct AS T1 JOIN review AS T2 ON T1.u_id = T2.u_id GROUP BY T2.u_id
For each user, find their name and the number of reviews written by them.
CREATE TABLE useracct (name VARCHAR, u_id VARCHAR); CREATE TABLE review (u_id VARCHAR)
SELECT exit_date FROM table_name_58 WHERE to_club = "portsmouth"
What is the exit date of the player who transferred to Portsmouth?
CREATE TABLE table_name_58 (exit_date VARCHAR, to_club VARCHAR)
SELECT record FROM table_name_4 WHERE method = "technical submission (rear naked choke)"
What is Record, when Method is "Technical Submission (Rear Naked Choke)"?
CREATE TABLE table_name_4 (record VARCHAR, method VARCHAR)
SELECT COUNT(round) FROM table_27948565_1 WHERE circuit = "Brno"
Name the number of rounds for brno
CREATE TABLE table_27948565_1 (round VARCHAR, circuit VARCHAR)
SELECT MAX(podiums) FROM table_name_31 WHERE wins = 0 AND season > 1985
What is the highest Podiums with 0 as wins, and a season later than 1985?
CREATE TABLE table_name_31 (podiums INTEGER, wins VARCHAR, season VARCHAR)
SELECT COUNT(to_par) FROM table_name_86 WHERE year_s__won = "1993"
How many to pars were won in 1993?
CREATE TABLE table_name_86 (to_par VARCHAR, year_s__won VARCHAR)
SELECT peak_date FROM table_name_1 WHERE main_artist = "kelis"
What was the peak date of Kelis's song?
CREATE TABLE table_name_1 (peak_date VARCHAR, main_artist VARCHAR)
SELECT COUNT(speed_rank) FROM table_181892_4 WHERE car_number = 92
How many years was he car number 92?
CREATE TABLE table_181892_4 (speed_rank VARCHAR, car_number VARCHAR)
SELECT points_difference FROM table_name_34 WHERE points_against = "767"
When there were 767 points, what was the point difference?
CREATE TABLE table_name_34 (points_difference VARCHAR, points_against VARCHAR)
SELECT MIN(ofsted_number) FROM table_name_62 WHERE intake = 60 AND type = "junior" AND dcsf_number < 3386
What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number?
CREATE TABLE table_name_62 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR)
SELECT date FROM table_name_53 WHERE home = "hornets"
Which date had the Hornets as the home team?
CREATE TABLE table_name_53 (date VARCHAR, home VARCHAR)
SELECT province FROM table_name_12 WHERE iata = "uyn"
WHich province has an IATA of UYN?
CREATE TABLE table_name_12 (province VARCHAR, iata VARCHAR)
SELECT miss_maja_pilipinas FROM table_name_30 WHERE binibining_pilipinas_tourism = "not awarded" AND binibining_pilipinas_universe = "anjanette abayari"
What Miss Maja Pilipinas has a Binibining Pilipinas-Tourism of not awarded, and a Binibining Pilipinas-Universe of anjanette abayari?
CREATE TABLE table_name_30 (miss_maja_pilipinas VARCHAR, binibining_pilipinas_tourism VARCHAR, binibining_pilipinas_universe VARCHAR)
SELECT rank FROM table_name_94 WHERE total > 17 AND silver < 13
Which Rank has a Total larger than 17, and a Silver smaller than 13?
CREATE TABLE table_name_94 (rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT home_team FROM table_name_9 WHERE away_team = "telford united"
In the match played against Telford United, who was the home team?
CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)
SELECT points_for FROM table_name_26 WHERE try_bonus = "140"
What Points for has a Try bonus of 140?
CREATE TABLE table_name_26 (points_for VARCHAR, try_bonus VARCHAR)
SELECT game FROM table_name_28 WHERE record = "9-7"
Which game had a 9-7 record?
CREATE TABLE table_name_28 (game VARCHAR, record VARCHAR)
SELECT total FROM table_name_86 WHERE set_2 = "24:22"
What is the Total of Set 2 of 24:22?
CREATE TABLE table_name_86 (total VARCHAR, set_2 VARCHAR)
SELECT MIN(wins) FROM table_name_5 WHERE rank < 3 AND events > 10
Who has the least wins when ranked above 3 with over 10 events?
CREATE TABLE table_name_5 (wins INTEGER, rank VARCHAR, events VARCHAR)
SELECT attendance FROM table_name_34 WHERE loss = "crabtree (0-1)"
What was the attendance at the game that had a loss of Crabtree (0-1)?
CREATE TABLE table_name_34 (attendance VARCHAR, loss VARCHAR)
SELECT district FROM table_name_43 WHERE position = "member" AND first_election = "1985"
What District has a Member with a First Election date of 1985?
CREATE TABLE table_name_43 (district VARCHAR, position VARCHAR, first_election VARCHAR)
SELECT 2013 FROM table_name_49 WHERE 2007 = "a" AND tournament = "french open"
Which 2013 has a 2007 of A, and a Tournament of french open?
CREATE TABLE table_name_49 (tournament VARCHAR)
SELECT AVG(grid) FROM table_name_10 WHERE constructor = "ferrari" AND time_retired = "1:32:35.101"
What is the average grid number with a ferrari and a time or retired time of 1:32:35.101?
CREATE TABLE table_name_10 (grid INTEGER, constructor VARCHAR, time_retired VARCHAR)
SELECT AVG(code) FROM table_name_35 WHERE regional_county_municipality = "matawinie" AND type = "p" AND name = "saint-damien"
What is the code for Saint-Damien in Matawinie with a type p?
CREATE TABLE table_name_35 (code INTEGER, name VARCHAR, regional_county_municipality VARCHAR, type VARCHAR)
SELECT us_viewers__millions_ FROM table_27832075_2 WHERE series__number = 69
How many million U.S. viewers wtched episode 69 of the series?
CREATE TABLE table_27832075_2 (us_viewers__millions_ VARCHAR, series__number VARCHAR)
SELECT winner_season FROM table_name_52 WHERE year = 1998
Who won the season of 1998?
CREATE TABLE table_name_52 (winner_season VARCHAR, year VARCHAR)
SELECT head_of_household FROM table_name_89 WHERE married_filing_separately = "$104,426–$186,475"
Name the head of household that has married filing separately of $104,426–$186,475
CREATE TABLE table_name_89 (head_of_household VARCHAR, married_filing_separately VARCHAR)
SELECT date FROM table_name_92 WHERE opposing_team = "united states"
What day was United States the opposing team?
CREATE TABLE table_name_92 (date VARCHAR, opposing_team VARCHAR)
SELECT SUM(gold) FROM table_name_32 WHERE bronze < 2 AND silver = 1 AND total > 4
What is the total gold that has bronze less than 2, a silver of 1 and total more than 4?
CREATE TABLE table_name_32 (gold INTEGER, total VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT net_profit__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19"
Name the net profit for eps beign 1.19
CREATE TABLE table_20614109_1 (net_profit__€m_ VARCHAR, earnings_per_share__€_ VARCHAR)
SELECT host FROM table_name_61 WHERE city = "philadelphia"
Who is the host in the city of Philadelphia?
CREATE TABLE table_name_61 (host VARCHAR, city VARCHAR)
SELECT track FROM table_name_34 WHERE catalogue = "apbo 0280"
Tell me the track that has the catalogue of apbo 0280
CREATE TABLE table_name_34 (track VARCHAR, catalogue VARCHAR)
SELECT country FROM table_name_32 WHERE to_par = "–2" AND player = "jim thorpe"
Which Country has a To par of –2, and a Player of jim thorpe?
CREATE TABLE table_name_32 (country VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT nationality FROM table_23963781_1 WHERE minutes = 0 AND position = "MF" AND athletica_career = "2009"
What is the nationality associated with 0 minutes, position of MF, and an Athletica career of 2009?
CREATE TABLE table_23963781_1 (nationality VARCHAR, athletica_career VARCHAR, minutes VARCHAR, position VARCHAR)
SELECT d_45_o FROM table_name_67 WHERE d_44_o = "← majority"
What is the value of D 45 O when the value of D 44 O is ← majority?
CREATE TABLE table_name_67 (d_45_o VARCHAR, d_44_o VARCHAR)
SELECT location FROM table_19210115_1 WHERE conference = "American Athletic conference"
Where is the University that plays in the American Athletic Conference?
CREATE TABLE table_19210115_1 (location VARCHAR, conference VARCHAR)
SELECT COUNT(stunts) FROM table_21995420_6 WHERE total = "201.5"
How many stunts have a total of 201.5?
CREATE TABLE table_21995420_6 (stunts VARCHAR, total VARCHAR)
SELECT rookie FROM table_23265433_2 WHERE offensive = "Ryan Powell"
Name the rookie for ryan powell
CREATE TABLE table_23265433_2 (rookie VARCHAR, offensive VARCHAR)
SELECT reign_began FROM table_name_79 WHERE country = "vietnam" AND reign_ended = "october 1005"
Whose reign began in Vietnam and ended in October 1005?
CREATE TABLE table_name_79 (reign_began VARCHAR, country VARCHAR, reign_ended VARCHAR)
SELECT MAX(2011 AS _population) FROM table_282413_3 WHERE ethnic_group = "Asian or Asian British: Asian Other"
What is the highest 2011 population when the ethnic group is asian or asian british: asian other?
CREATE TABLE table_282413_3 (ethnic_group VARCHAR)
SELECT MAX(rank) FROM table_name_98 WHERE react = 0.198 AND time < 46.3
Which Rank has a Reaction of 0.198, and a Time smaller than 46.3?
CREATE TABLE table_name_98 (rank INTEGER, react VARCHAR, time VARCHAR)
SELECT original_us_tour_cast FROM table_name_75 WHERE original_broadway_cast = "kevin chamberlin"
What was the original US Tour cast when the original broadway was Kevin Chamberlin?
CREATE TABLE table_name_75 (original_us_tour_cast VARCHAR, original_broadway_cast VARCHAR)
SELECT method FROM table_name_4 WHERE record = "11-1"
Which method has the record of 11-1?
CREATE TABLE table_name_4 (method VARCHAR, record VARCHAR)
SELECT COUNT(pick) FROM table_name_62 WHERE pba_team = "purefoods tender juicy hotdogs"
What is the total number of picks from the PBA team of purefoods tender juicy hotdogs?
CREATE TABLE table_name_62 (pick VARCHAR, pba_team VARCHAR)
SELECT type FROM table_2273738_1 WHERE city = "Birmingham"
The city of Birmingham is what type of location?
CREATE TABLE table_2273738_1 (type VARCHAR, city VARCHAR)
SELECT home FROM table_name_38 WHERE record = "2-3"
Who was the home team when the record was 2-3?
CREATE TABLE table_name_38 (home VARCHAR, record VARCHAR)
SELECT MAX(capacity) FROM table_name_1 WHERE location = "varna" AND venue = "ticha stadium"
What is the highest capacity for the venue, ticha stadium, located in varna?
CREATE TABLE table_name_1 (capacity INTEGER, location VARCHAR, venue VARCHAR)
SELECT MAX(played) FROM table_name_6 WHERE goals_against > 60 AND losses < 29
When goals against is greater than 60 and losses less than 29, what is the highest played?
CREATE TABLE table_name_6 (played INTEGER, goals_against VARCHAR, losses VARCHAR)
SELECT date FROM table_name_47 WHERE record = "izod indycar series"
When was the race that set the record for the Izod Indycar Series?
CREATE TABLE table_name_47 (date VARCHAR, record VARCHAR)
SELECT _number FROM table_19908313_2 WHERE listed_owner_s_ = "Stephen Germain"
What number truck is owned by Stephen Germain?
CREATE TABLE table_19908313_2 (_number VARCHAR, listed_owner_s_ VARCHAR)
SELECT home_team AS score FROM table_name_4 WHERE venue = "mcg"
What was the score for the home team who plays their matches at the mcg venue?
CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)
SELECT hometown_school FROM table_name_18 WHERE team = "san diego padres" AND player = "bob geren"
What was the home town of Bob Geren, picked by the San Diego Padres?
CREATE TABLE table_name_18 (hometown_school VARCHAR, team VARCHAR, player VARCHAR)
SELECT MIN(f_laps) FROM table_26222468_1
What is the minimum number of f/laps?
CREATE TABLE table_26222468_1 (f_laps INTEGER)
SELECT COUNT(status) FROM table_171356_2 WHERE official_name = "Gagetown"
How many statuses are listed for the parish officially named Gagetown?
CREATE TABLE table_171356_2 (status VARCHAR, official_name VARCHAR)
SELECT league FROM table_name_46 WHERE fa_cup = "qr4" AND fa_trophy = "qf"
what is the league when the fa cup is qr4 and the fa trophy is qf?
CREATE TABLE table_name_46 (league VARCHAR, fa_cup VARCHAR, fa_trophy VARCHAR)
SELECT opponent FROM table_name_79 WHERE score = "84-88 (ot)"
Which opponent has a score of 84-88 (ot)?
CREATE TABLE table_name_79 (opponent VARCHAR, score VARCHAR)
SELECT SUM(rank) FROM table_name_58 WHERE nationality = "australia" AND points < 79
Tell me the sum of rank for australia when points are less than 79
CREATE TABLE table_name_58 (rank INTEGER, nationality VARCHAR, points VARCHAR)
SELECT _percentage_40_59 FROM table_23606500_4 WHERE _percentage_60_74 = "12,40%"
What is every value for % 40-59 if % 60-74 is 12,40%?
CREATE TABLE table_23606500_4 (_percentage_40_59 VARCHAR, _percentage_60_74 VARCHAR)
SELECT T3.service_id, T4.Service_Type_Code FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID JOIN EVENTS AS T3 ON T2.Event_ID = T3.Event_ID JOIN services AS T4 ON T3.service_id = T4.service_id GROUP BY T3.service_id ORDER BY COUNT(*) LIMIT 1
Which service id and type has the least number of participants?
CREATE TABLE Participants_in_Events (Participant_ID VARCHAR, Event_ID VARCHAR); CREATE TABLE services (Service_Type_Code VARCHAR, service_id VARCHAR); CREATE TABLE EVENTS (service_id VARCHAR, Event_ID VARCHAR); CREATE TABLE participants (Participant_ID VARCHAR)
SELECT commander FROM table_name_62 WHERE complement > 240 AND guns = "66" AND ship = "revolutie"
Which commander received complement larger than 240 , guns of 66 and ship of revolutie?
CREATE TABLE table_name_62 (commander VARCHAR, ship VARCHAR, complement VARCHAR, guns VARCHAR)
SELECT team_1 FROM table_name_4 WHERE team_2 = "universidad nacional"
What team 1 has a team 2 of universidad nacional?
CREATE TABLE table_name_4 (team_1 VARCHAR, team_2 VARCHAR)
SELECT COUNT(rank) FROM table_1059743_2 WHERE points = "796.7"
How many countries got 796.7 points?
CREATE TABLE table_1059743_2 (rank VARCHAR, points VARCHAR)
SELECT argon FROM table_name_54 WHERE helium = "1.0000684"
Wha argon has helium of 1.0000684?
CREATE TABLE table_name_54 (argon VARCHAR, helium VARCHAR)
SELECT COUNT(pos) FROM table_1924975_1 WHERE q1 + q2_time = "2.34.736"
when the q1+q2 time was 2.34.736, what was the total pos number?
CREATE TABLE table_1924975_1 (pos VARCHAR, q1 VARCHAR, q2_time VARCHAR)
SELECT website FROM table_11365528_2 WHERE head_coach = "Steve Radoslavic"
The head coach, steve radoslavic, is related to which websites?
CREATE TABLE table_11365528_2 (website VARCHAR, head_coach VARCHAR)
SELECT decile FROM table_name_34 WHERE authority = "state" AND roll < 61 AND area = "kotemaori"
Which Decile has an Authority of state, a Roll smaller than 61, and an Area of kotemaori?
CREATE TABLE table_name_34 (decile VARCHAR, area VARCHAR, authority VARCHAR, roll VARCHAR)
SELECT MIN(points) FROM table_name_22 WHERE engine = "climax v8" AND year < 1963
Before the year 1963 what was the fewest points the climax v8 engine had?
CREATE TABLE table_name_22 (points INTEGER, engine VARCHAR, year VARCHAR)
SELECT winner FROM table_27887723_1 WHERE uci_rating = "CN"
who was the winner of uci rating cn?
CREATE TABLE table_27887723_1 (winner VARCHAR, uci_rating VARCHAR)
SELECT COUNT(starts) FROM table_13026799_3 WHERE year = 1987
What is the number of starts for 1987?
CREATE TABLE table_13026799_3 (starts VARCHAR, year VARCHAR)
SELECT career_win_loss FROM table_name_70 WHERE 2002 = "a" AND 2001 = "4r"
What is Career Win-Loss, when 2002 is "A", and when 2001 is "4R"?
CREATE TABLE table_name_70 (career_win_loss VARCHAR)