answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = "Piret Hamer Helen Reino"
WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?
CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)
SELECT original_airdate FROM table_name_23 WHERE identity_ies_ = "mr. buckston"
Name the original airdate for mr. buckston
CREATE TABLE table_name_23 (original_airdate VARCHAR, identity_ies_ VARCHAR)
SELECT local_networked FROM table_name_38 WHERE ad_freq = "n/a"
What is the local/networked value for the show with an ad frequency of N/A?
CREATE TABLE table_name_38 (local_networked VARCHAR, ad_freq VARCHAR)
SELECT prime_mover FROM table_name_61 WHERE model = "rs-18"
Which prime mover had a Model of rs-18?
CREATE TABLE table_name_61 (prime_mover VARCHAR, model VARCHAR)
SELECT elector FROM table_name_31 WHERE elevated = "december 18, 1182"
What Elector was Elevated on December 18, 1182?
CREATE TABLE table_name_31 (elector VARCHAR, elevated VARCHAR)
SELECT MAX(against) FROM table_name_18 WHERE lost > 0 AND played < 6
What is the maximum number of points against when the team has more than 0 losses and plays fewer than 6 games?
CREATE TABLE table_name_18 (against INTEGER, lost VARCHAR, played VARCHAR)
SELECT T1.Official_native_language FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.College = "Maryland" OR T2.College = "Duke"
What are the official languages of the countries of players from Maryland or Duke college?
CREATE TABLE country (Official_native_language VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, College VARCHAR)
SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id WHERE T2.Mar < T2.Dec EXCEPT SELECT T3.city FROM city AS T3 JOIN hosting_city AS T4 ON T3.city_id = T4.host_city
Give me a list of cities whose temperature in Mar is lower than that in Dec and which have never been host cities.
CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Mar INTEGER, Dec VARCHAR)
SELECT MIN(laps) FROM table_name_10 WHERE rider = "andrew pitt" AND grid < 18
What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha
CREATE TABLE table_name_10 (laps INTEGER, rider VARCHAR, grid VARCHAR)
SELECT seating FROM table_name_53 WHERE diagram_no > 516 AND type = "driving motor brake second (dmbs)"
Which vehicle has a Diagram of 516 or smaller, and a driving motor brake second (dmbs) type.
CREATE TABLE table_name_53 (seating VARCHAR, diagram_no VARCHAR, type VARCHAR)
SELECT mark FROM table_name_59 WHERE react < 0.148
What is Mark, when React is less than 0.148?
CREATE TABLE table_name_59 (mark VARCHAR, react INTEGER)
SELECT index_weighting___percentage__at_17_january_2013 FROM table_168274_1 WHERE ticker_symbol = "RNO"
Name the index weighting % for 17 januaary 2013 for rno
CREATE TABLE table_168274_1 (index_weighting___percentage__at_17_january_2013 VARCHAR, ticker_symbol VARCHAR)
SELECT guest_s_ FROM table_29135051_3 WHERE ratings = "1.44m"
who guest starred on the episode with a 1.44m rating
CREATE TABLE table_29135051_3 (guest_s_ VARCHAR, ratings VARCHAR)
SELECT record FROM table_22871316_6 WHERE high_points = "Carlos Delfino (17)"
What's the record of the game in which Carlos Delfino (17) did the most high points?
CREATE TABLE table_22871316_6 (record VARCHAR, high_points VARCHAR)
SELECT p_max___bar__ FROM table_26967904_1 WHERE p1_diameter__mm_ = "12.09"
What is the P max (bar) of the pistol with a P1 diameter of 12.09 mm?
CREATE TABLE table_26967904_1 (p_max___bar__ VARCHAR, p1_diameter__mm_ VARCHAR)
SELECT part_1 FROM table_1745843_9 WHERE verb_meaning = "to give"
Name the part one for to give
CREATE TABLE table_1745843_9 (part_1 VARCHAR, verb_meaning VARCHAR)
SELECT start FROM table_name_8 WHERE stage = 11
What is the start of stage 11?
CREATE TABLE table_name_8 (start VARCHAR, stage VARCHAR)
SELECT years_of_participation FROM table_17429402_7 WHERE school = "Pickerington North"
What are the years of participation for pickerington north?
CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)
SELECT AVG(week) FROM table_name_8 WHERE date = "october 8, 1950"
What average week has october 8, 1950 as the date?
CREATE TABLE table_name_8 (week INTEGER, date VARCHAR)
SELECT date FROM table_name_63 WHERE crowd > 23 OFFSET 000
When was there a crowd larger than 23,000?
CREATE TABLE table_name_63 (date VARCHAR, crowd INTEGER)
SELECT COUNT(no_in_season) FROM table_2226817_6 WHERE written_by = "Art Everett"
How many season numbers are there for the episodes written by Art Everett?
CREATE TABLE table_2226817_6 (no_in_season VARCHAR, written_by VARCHAR)
SELECT player FROM table_name_76 WHERE country = "south africa"
Which player(s) is from South Africa?
CREATE TABLE table_name_76 (player VARCHAR, country VARCHAR)
SELECT report FROM table_name_54 WHERE home_team = "townsville crocodiles"
What was the report for the game with the home team of the Townsville Crocodiles?
CREATE TABLE table_name_54 (report VARCHAR, home_team VARCHAR)
SELECT martin_mcguinness FROM table_name_3 WHERE seΓ‘n_gallagher = "29.6%"
What is the Martin mcGuinness with a Sean Gallagher that is 29.6%?
CREATE TABLE table_name_3 (martin_mcguinness VARCHAR, seΓ‘n_gallagher VARCHAR)
SELECT zan_1 FROM table_name_34 WHERE nor_1 = "11"
What is the zan 1 that has 11 as the nor 1?
CREATE TABLE table_name_34 (zan_1 VARCHAR, nor_1 VARCHAR)
SELECT high_points FROM table_27712180_7 WHERE score = "W 90–77 (OT)"
Name the high points for w 90–77 (ot)
CREATE TABLE table_27712180_7 (high_points VARCHAR, score VARCHAR)
SELECT COUNT(record) FROM table_24126518_2 WHERE week = 11
Name the number of record for week 11
CREATE TABLE table_24126518_2 (record VARCHAR, week VARCHAR)
SELECT displacement FROM table_name_22 WHERE code = "yd22ddt"
What displacement has the code yd22ddt?
CREATE TABLE table_name_22 (displacement VARCHAR, code VARCHAR)
SELECT tournament FROM table_name_92 WHERE opponent = "meike babel"
Which Tournament has an Opponent of meike babel?
CREATE TABLE table_name_92 (tournament VARCHAR, opponent VARCHAR)
SELECT r_51_o FROM table_name_8 WHERE d_42_o = "r 19"
Which R 51 O value corresponds to a D 42 O value of r 19?
CREATE TABLE table_name_8 (r_51_o VARCHAR, d_42_o VARCHAR)
SELECT no_vote FROM table_name_48 WHERE state = "north dakota"
How many no votes did North Dakota have?
CREATE TABLE table_name_48 (no_vote VARCHAR, state VARCHAR)
SELECT MIN(games_played) FROM table_name_40 WHERE goals_conceded > 25 AND goals_scored > 17 AND position = 7
What is the lowest number of games played of the club with more than 25 goals conceded, more than 17 goals scored, and a position of 7?
CREATE TABLE table_name_40 (games_played INTEGER, position VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR)
SELECT attendance FROM table_name_84 WHERE date = "november 2, 2003"
What was the attendance on november 2, 2003?
CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR)
SELECT state FROM table_name_8 WHERE name = "li"
What was the state that had the vassal name of li?
CREATE TABLE table_name_8 (state VARCHAR, name VARCHAR)
SELECT country FROM table_name_76 WHERE opened = 2002 AND model = "spinning coaster" AND park = "disney's animal kingdom"
Which country has a rollercoaster that opened in 2002, is a spinning coaster, and is located in Disney's Animal Kingdom?
CREATE TABLE table_name_76 (country VARCHAR, park VARCHAR, opened VARCHAR, model VARCHAR)
SELECT firefox FROM table_name_95 WHERE chrome = "23.90%"
What was the percentage of firefox was chrome was 23.90%
CREATE TABLE table_name_95 (firefox VARCHAR, chrome VARCHAR)
SELECT score FROM table_name_23 WHERE tie_no = "65"
What is the score of the game with tie number 65?
CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR)
SELECT venue FROM table_name_55 WHERE tournament = "asian games"
What's the venue for the asian games tournament?
CREATE TABLE table_name_55 (venue VARCHAR, tournament VARCHAR)
SELECT district FROM table_name_41 WHERE party = "republican" AND results = "retired to run for governor democratic gain"
What district is the incumbent Republican and the incumbent retired to run for governor democratic gain?
CREATE TABLE table_name_41 (district VARCHAR, party VARCHAR, results VARCHAR)
SELECT rank FROM table_name_74 WHERE run_2 = "2:06.62"
What is Rank, when Run 2 is 2:06.62?
CREATE TABLE table_name_74 (rank VARCHAR, run_2 VARCHAR)
SELECT written_by FROM table_23918997_1 WHERE us_viewers__million_ = "0.97"
Who were all the writers whose episodes had 0.97 million viewers?
CREATE TABLE table_23918997_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT to_par FROM table_name_28 WHERE finish = "t31"
When the finish was t31 what was the To par?
CREATE TABLE table_name_28 (to_par VARCHAR, finish VARCHAR)
SELECT location_attendance FROM table_28768469_2 WHERE date = "October 20"
What is the location for the game on October 20 with it's corresponding attendance?
CREATE TABLE table_28768469_2 (location_attendance VARCHAR, date VARCHAR)
SELECT name FROM table_name_51 WHERE group_s_ = 0 AND area = "bl4"
Which name has group 0 in Bl4 area?
CREATE TABLE table_name_51 (name VARCHAR, group_s_ VARCHAR, area VARCHAR)
SELECT version FROM table_name_82 WHERE format = "cd" AND date = "june 12, 2008" AND region = "cyprus"
What is the Version of the CD release on June 12, 2008 in Cyprus?
CREATE TABLE table_name_82 (version VARCHAR, region VARCHAR, format VARCHAR, date VARCHAR)
SELECT release_date FROM table_name_36 WHERE version = "1.0" AND category = "utilities" AND developer = "microsoft" AND title = "msn money"
What Release date has a Version of 1.0, a Category of utilities, a Developer of microsoft, and a Title of msn money?
CREATE TABLE table_name_36 (release_date VARCHAR, title VARCHAR, developer VARCHAR, version VARCHAR, category VARCHAR)
SELECT season FROM table_name_15 WHERE opponent = "roma"
What season has roma as the opponent?
CREATE TABLE table_name_15 (season VARCHAR, opponent VARCHAR)
SELECT born_died FROM table_name_16 WHERE country = "italy"
What is the Born-Died date for the Representative of Italy?
CREATE TABLE table_name_16 (born_died VARCHAR, country VARCHAR)
SELECT MAX(channel_number) FROM table_27871460_2
What is the highest channel number?
CREATE TABLE table_27871460_2 (channel_number INTEGER)
SELECT d_41 FROM table_name_63 WHERE d_43 = "d 18"
Tell me the D 41 for D 43 of d 18
CREATE TABLE table_name_63 (d_41 VARCHAR, d_43 VARCHAR)
SELECT first_elected FROM table_1342370_39 WHERE incumbent = "William Francis Stevenson"
what year was william francis stevenson first elected?
CREATE TABLE table_1342370_39 (first_elected VARCHAR, incumbent VARCHAR)
SELECT SUM(wins) FROM table_name_13 WHERE year = 1989 AND points > 110
How many wins did the team, which had more than 110 points, have in 1989?
CREATE TABLE table_name_13 (wins INTEGER, year VARCHAR, points VARCHAR)
SELECT MAX(wins) FROM table_name_85 WHERE goals_for = 18 AND losses < 5
What team has the most wins with at least 18 goals and less than 5 losses?
CREATE TABLE table_name_85 (wins INTEGER, goals_for VARCHAR, losses VARCHAR)
SELECT dadar_xi_β€˜b’ FROM table_28759261_5 WHERE good_shepherd = "Sea Liner FC"
what is the dadar xi b where the good shepherd is sea liner fc?
CREATE TABLE table_28759261_5 (dadar_xi_β€˜b’ VARCHAR, good_shepherd VARCHAR)
SELECT result FROM table_name_56 WHERE round = "qf"
What was the result in round qf?
CREATE TABLE table_name_56 (result VARCHAR, round VARCHAR)
SELECT date FROM table_name_73 WHERE callback_venue = "total tickets to hollywood"
What day has a callback Venue of total tickets to hollywood? Question
CREATE TABLE table_name_73 (date VARCHAR, callback_venue VARCHAR)
SELECT region FROM table_name_37 WHERE state = "california" AND host = "university of california, los angeles"
What region does the University of California, Los Angeles play in?
CREATE TABLE table_name_37 (region VARCHAR, state VARCHAR, host VARCHAR)
SELECT director FROM table_name_29 WHERE serial_title = "heroes of the wild"
I want the director for heroes of the wild
CREATE TABLE table_name_29 (director VARCHAR, serial_title VARCHAR)
SELECT MIN(pick__number) FROM table_name_7 WHERE position = "defensive back" AND overall < 69
Position of defensive back, and an Overall smaller than 69 is what lowest pick #?
CREATE TABLE table_name_7 (pick__number INTEGER, position VARCHAR, overall VARCHAR)
SELECT title FROM table_name_26 WHERE year = "1996"
What was the title in 1996?
CREATE TABLE table_name_26 (title VARCHAR, year VARCHAR)
SELECT COUNT(time) FROM table_name_68 WHERE swimmer = "luke hall" AND overall_rank > 105
Tell me the total number of time for luke hall overall rank being larger than 105
CREATE TABLE table_name_68 (time VARCHAR, swimmer VARCHAR, overall_rank VARCHAR)
SELECT name FROM table_name_56 WHERE district = "nagpur" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "59"
What is the name for Nagpur district, with a reserved for ( SC / ST /None) of none, and a Constituency number of 59?
CREATE TABLE table_name_56 (name VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
SELECT last FROM table_name_95 WHERE year < 2000 AND sport = "softball"
Name the last for softball before 2000
CREATE TABLE table_name_95 (last VARCHAR, year VARCHAR, sport VARCHAR)
SELECT date FROM table_name_98 WHERE winning_score = βˆ’15(71 - 69 - 68 - 65 = 273)
Which Date has a Winning score of βˆ’15 (71-69-68-65=273)?
CREATE TABLE table_name_98 (date VARCHAR, winning_score VARCHAR)
SELECT fastest_lap FROM table_1140073_2 WHERE pole_position = "Patrick Tambay"
Who had the fastest lap in the race where Patrick Tambay was on the pole?
CREATE TABLE table_1140073_2 (fastest_lap VARCHAR, pole_position VARCHAR)
SELECT score FROM table_name_77 WHERE record = "11-16"
What was the score that led to an 11-16 record?
CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)
SELECT team FROM table_30083499_1 WHERE tournament = "2012 Clausura"
Which team was in the 2012 clausura tournament?
CREATE TABLE table_30083499_1 (team VARCHAR, tournament VARCHAR)
SELECT ergative FROM table_name_48 WHERE nominative = "mis-i"
Mis-i is the nominative of what ergative?
CREATE TABLE table_name_48 (ergative VARCHAR, nominative VARCHAR)
SELECT _percentage_of_popular_vote FROM table_name_53 WHERE _number_of_seats_available = 90
What is the percentage of the popular vote when there were 90 seats available?
CREATE TABLE table_name_53 (_percentage_of_popular_vote VARCHAR, _number_of_seats_available VARCHAR)
SELECT COUNT(railroad) FROM table_2351952_1 WHERE numbers = "864-873"
How many railroads have the numbers 864-873?
CREATE TABLE table_2351952_1 (railroad VARCHAR, numbers VARCHAR)
SELECT MIN(production_code) FROM table_23793770_1 WHERE directed_by = "Michael Morris"
What was the production code for the episode directed by Michael Morris?
CREATE TABLE table_23793770_1 (production_code INTEGER, directed_by VARCHAR)
SELECT drivetrain FROM table_21530474_1 WHERE engine_code = "1UR-FSE" AND chassis_code = "USF41"
Name the drivetrain for 1ur-fse for usf41
CREATE TABLE table_21530474_1 (drivetrain VARCHAR, engine_code VARCHAR, chassis_code VARCHAR)
SELECT result FROM table_16254861_1 WHERE year__ceremony_ = "2009 (82nd)"
What was the result for the 2009 (82nd) awards?
CREATE TABLE table_16254861_1 (result VARCHAR, year__ceremony_ VARCHAR)
SELECT MAX(wins) FROM table_name_95 WHERE cuts_made > 17 AND starts > 25 AND top_10 < 8
What is the highest number of wins when more than 17 cuts and more than 25 starts were made, and the top 10 ranking is less than 8?
CREATE TABLE table_name_95 (wins INTEGER, top_10 VARCHAR, cuts_made VARCHAR, starts VARCHAR)
SELECT AVG(gold) FROM table_name_25 WHERE bronze = 1 AND nation = "syria" AND total < 1
What is the gold for the nation with a record of bronze 1, Syria nation with a grand total less than 1?
CREATE TABLE table_name_25 (gold INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT MAX(laps) FROM table_name_21 WHERE grid = 10
Who scored with a grid of 10 and the highest amount of laps?
CREATE TABLE table_name_21 (laps INTEGER, grid VARCHAR)
SELECT MIN(rank) FROM table_name_50 WHERE event = "2012"
What's the lowest rank of a player who played in 2012?
CREATE TABLE table_name_50 (rank INTEGER, event VARCHAR)
SELECT home_team AS score FROM table_name_49 WHERE away_team = "hawthorn"
Which home team played against Hawthorn?
CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR)
SELECT MIN(qualifying_rank) FROM table_13114949_3
what is the lowest qualifying rank?
CREATE TABLE table_13114949_3 (qualifying_rank INTEGER)
SELECT AVG(laps) FROM table_name_76 WHERE driver = "andrea de cesaris"
What is the average Laps for andrea de cesaris?
CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR)
SELECT score FROM table_name_88 WHERE away_team = "dartford"
What was the score fore the away team Dartford?
CREATE TABLE table_name_88 (score VARCHAR, away_team VARCHAR)
SELECT format FROM table_name_40 WHERE catalogue__number = "gad 2014 cd" AND date = "july 6, 1998"
What is the format for the catalogue number GAD 2014 CD on July 6, 1998?
CREATE TABLE table_name_40 (format VARCHAR, catalogue__number VARCHAR, date VARCHAR)
SELECT COUNT(opponent) FROM table_16710971_2 WHERE record = "1-3"
What is the total number of opponents for the game recorded as 1-3?
CREATE TABLE table_16710971_2 (opponent VARCHAR, record VARCHAR)
SELECT score FROM table_name_7 WHERE tournament = "belgrade"
The tournament in Belgrade had what as a score?
CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR)
SELECT enrollment FROM table_14754471_1 WHERE hispanic___percentage_ = "3.6"
What is the enrollment amount where Hispanic (%) is 3.6?
CREATE TABLE table_14754471_1 (enrollment VARCHAR, hispanic___percentage_ VARCHAR)
SELECT un_region FROM table_16278349_1 WHERE population = 3314000
Name the un region for 3314000 population
CREATE TABLE table_16278349_1 (un_region VARCHAR, population VARCHAR)
SELECT open_2nd_viii FROM table_name_5 WHERE u15_6th_quad = "bgs" AND u16_1st_viii = "tss"
Which Open 2nd VIII had a U15 6th Quad of BGS and a U16 1st VII of TSS?
CREATE TABLE table_name_5 (open_2nd_viii VARCHAR, u15_6th_quad VARCHAR, u16_1st_viii VARCHAR)
SELECT win__percentage FROM table_name_95 WHERE 2011 = "1r" AND tournament = "paris"
What is the win percentage when 2011 shows 1r in the Paris tournament?
CREATE TABLE table_name_95 (win__percentage VARCHAR, tournament VARCHAR)
SELECT city_of_license FROM table_name_28 WHERE frequency_mhz > 102.3 AND call_sign = "k292eu"
In which city is the station licensed whose frequency MHz is higher than 102.3 and whose call sign is K292EU?
CREATE TABLE table_name_28 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT d_42_√ FROM table_name_47 WHERE d_45_o = "d 32 √"
What is the value of D 42 √, when the value of D 45 O is d 32 √?
CREATE TABLE table_name_47 (d_42_√ VARCHAR, d_45_o VARCHAR)
SELECT COUNT(house_colour) FROM table_1942683_1 WHERE house_name = "Hillary"
How many house colours are associated with house names of Hillary?
CREATE TABLE table_1942683_1 (house_colour VARCHAR, house_name VARCHAR)
SELECT AVG(draw) FROM table_name_92 WHERE points > 44 AND place > 1
What is the Draw that has Points larger than 44 and a Place larger than 1?
CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, place VARCHAR)
SELECT record FROM table_name_19 WHERE location = "mississippi, united states" AND opponent = "anthony macias"
What was Gassaway's record at the fight in mississippi, united states against anthony macias?
CREATE TABLE table_name_19 (record VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT board__cm_ FROM table_name_14 WHERE start = "1940" AND type = "theater" AND release > 2010
What is the dimensions in centimeters of a theater board who started in 1940, who was released after 2010?
CREATE TABLE table_name_14 (board__cm_ VARCHAR, release VARCHAR, start VARCHAR, type VARCHAR)
SELECT SUM(laps) FROM table_name_29 WHERE qual = "122.951"
How many laps did Duke Nelson complete when his qualifying time was 122.951?
CREATE TABLE table_name_29 (laps INTEGER, qual VARCHAR)
SELECT home_team FROM table_name_51 WHERE away_team = "north melbourne"
Who is the home side when north melbourne is the away side?
CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)
SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2008 = "1.7%"
What's the percentage of all immigrants in 2007 in the country with 1.7% of all immigrants in 2008?
CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2008 VARCHAR)
SELECT opponent FROM table_name_86 WHERE score = "7–1"
What team was the opponent when the score was 7–1?
CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR)
SELECT grid FROM table_name_61 WHERE laps > 8 AND manufacturer = "honda" AND time_retired = "retirement"
Which Grid has more than 8 Laps, and a Manufacturer of honda, and a Time/Retired of retirement?
CREATE TABLE table_name_61 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)
SELECT MAX(byes) FROM table_name_93 WHERE losses = 9 AND draws < 0
What is the highest number of byes where the losses were 9 and the draws were less than 0?
CREATE TABLE table_name_93 (byes INTEGER, losses VARCHAR, draws VARCHAR)