question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Name the speed for andy reynolds
columns: - name: speed type: VARCHAR - name: rider type: VARCHAR table: table_name_41
SELECT speed FROM table_name_41 WHERE rider = "andy reynolds"
What is 2009, when 2011 is "Q2"?
columns: - name: Id type: VARCHAR table: table_name_62
SELECT 2009 FROM table_name_62 WHERE 2011 = "q2"
What is the lowest episode number that had a ratings/share (18-49) of 1.1/3?
columns: - name: episode_number type: INTEGER - name: rating type: VARCHAR table: table_25751274_2
SELECT MIN(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 1.1 / 3
What is the Winners when the United States is the runner-up at st. germain golf club?
columns: - name: winners type: VARCHAR - name: runners_up type: VARCHAR - name: venue type: VARCHAR table: table_name_90
SELECT winners FROM table_name_90 WHERE runners_up = "united states" AND venue = "st. germain golf club"
what was the score when the extras were 6
columns: - name: points type: VARCHAR - name: try_bonus type: VARCHAR table: table_14070062_4
SELECT points FROM table_14070062_4 WHERE try_bonus = "6"
what team scored on december 19
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_65
SELECT record FROM table_name_65 WHERE date = "december 19"
What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3?
columns: - name: lane type: INTEGER - name: heat type: VARCHAR - name: nationality type: VARCHAR - name: time type: VARCHAR table: table_name_78
SELECT AVG(lane) FROM table_name_78 WHERE nationality = "japan" AND time = "4:37.35" AND heat < 3
What mechanical has lpm regulation?
columns: - name: mechanical type: VARCHAR - name: regulating type: VARCHAR table: table_1348246_3
SELECT mechanical FROM table_1348246_3 WHERE regulating = "LPM"
What kind of Launched has a Homeport (as of July 2013) of sold to chile, and a Pennant number of f80?
columns: - name: launched type: VARCHAR - name: homeport__as_of_july_2013_ type: VARCHAR - name: pennant_number type: VARCHAR table: table_name_65
SELECT launched FROM table_name_65 WHERE homeport__as_of_july_2013_ = "sold to chile" AND pennant_number = "f80"
What is the 1994 finish for the Miami tournament?
columns: - name: tournament type: VARCHAR table: table_name_14
SELECT 1994 FROM table_name_14 WHERE tournament = "miami"
What is the Nationality of the Deacon of S. Maria in Via Lata?
columns: - name: nationality type: VARCHAR - name: title type: VARCHAR table: table_name_5
SELECT nationality FROM table_name_5 WHERE title = "deacon of s. maria in via lata"
How many locations had a density (pop/km²) of 91.8 in the 2011 census?
columns: - name: "density__pop_km\xB2_" type: VARCHAR table: table_1425958_1
SELECT COUNT(2011 AS _census) FROM table_1425958_1 WHERE density__pop_km²_ = "91.8"
Name the weekly rank for sunday, june 14, 2009
columns: - name: weekly_rank type: VARCHAR - name: airdate type: VARCHAR table: table_name_43
SELECT weekly_rank FROM table_name_43 WHERE airdate = "sunday, june 14, 2009"
What township is 28.597 square miles of land?
columns: - name: township type: VARCHAR - name: land___sqmi__ type: VARCHAR table: table_18600760_10
SELECT township FROM table_18600760_10 WHERE land___sqmi__ = "28.597"
What is the indoor number for the NER region?
columns: - name: indoor type: VARCHAR - name: region type: VARCHAR table: table_19534874_2
SELECT COUNT(indoor) FROM table_19534874_2 WHERE region = "NER"
What was the score of the game against Divij Sharan?
columns: - name: score type: VARCHAR - name: opponent_in_the_final type: VARCHAR table: table_name_56
SELECT score FROM table_name_56 WHERE opponent_in_the_final = "divij sharan"
What was the GP-GS for the 2009 season?
columns: - name: gp_gs type: VARCHAR - name: season type: VARCHAR table: table_name_52
SELECT gp_gs FROM table_name_52 WHERE season = "2009"
What was the term of Bruce Biers Kendall whose hometown is Anchorage?
columns: - name: term type: VARCHAR - name: hometown type: VARCHAR - name: name type: VARCHAR table: table_name_6
SELECT term FROM table_name_6 WHERE hometown = "anchorage" AND name = "bruce biers kendall"
How much did they lose by on April 26?
columns: - name: loss type: VARCHAR - name: date type: VARCHAR table: table_name_67
SELECT loss FROM table_name_67 WHERE date = "april 26"
What is the Name of the person from the Netherlands in a Lane lower than 5, with a Rank better than 5, and a time of less than 55.62?
columns: - name: name type: VARCHAR - name: nationality type: VARCHAR - name: lane type: VARCHAR - name: rank type: VARCHAR - name: time type: VARCHAR table: table_name_19
SELECT name FROM table_name_19 WHERE rank < 5 AND time < 55.62 AND lane < 5 AND nationality = "netherlands"
Which school/club team has a player named Mark Sanford?
columns: - name: school_club_team type: VARCHAR - name: name type: VARCHAR table: table_15463188_17
SELECT school_club_team FROM table_15463188_17 WHERE name = "Mark Sanford"
What is the name of the School of the Sussex Tech's Team?
columns: - name: team type: VARCHAR - name: school type: VARCHAR table: table_name_29
SELECT team FROM table_name_29 WHERE school = "sussex tech"
Name the district for 1994
columns: - name: district type: VARCHAR - name: first_elected type: VARCHAR table: table_25030512_41
SELECT district FROM table_25030512_41 WHERE first_elected = 1994
What is the sum of Game, when Date is "Wed. Nov. 14"?
columns: - name: game type: INTEGER - name: date type: VARCHAR table: table_name_26
SELECT SUM(game) FROM table_name_26 WHERE date = "wed. nov. 14"
When a team wins 4, how much is the Maximum amount of points?
columns: - name: points type: INTEGER - name: wins type: VARCHAR table: table_14889048_2
SELECT MAX(points) FROM table_14889048_2 WHERE wins = 4
What in Xenia's Diameter in km, with a latitude of 14 and a longitude of 249.4?
columns: - name: diameter__km_ type: VARCHAR - name: longitude type: VARCHAR - name: latitude type: VARCHAR - name: name type: VARCHAR table: table_name_71
SELECT COUNT(diameter__km_) FROM table_name_71 WHERE latitude < 14 AND name = "xenia" AND longitude > 249.4
How many times is st kilda the away team?
columns: - name: crowd type: VARCHAR - name: away_team type: VARCHAR table: table_name_15
SELECT COUNT(crowd) FROM table_name_15 WHERE away_team = "st kilda"
Which Place has a Score larger than 68, and a Player of david ogrin?
columns: - name: place type: VARCHAR - name: score type: VARCHAR - name: player type: VARCHAR table: table_name_63
SELECT place FROM table_name_63 WHERE score > 68 AND player = "david ogrin"
What were the Tyres after 1984?
columns: - name: tyres type: VARCHAR - name: year type: INTEGER table: table_name_22
SELECT tyres FROM table_name_22 WHERE year > 1984
What was the decision for the 1983 season for the game played against the New York Yankees?
columns: - name: decision type: VARCHAR - name: opponent type: VARCHAR - name: season type: VARCHAR table: table_name_35
SELECT decision FROM table_name_35 WHERE opponent = "new york yankees" AND season = "1983"
What number is in Bois de Warville with a time less than 810?
columns: - name: number type: INTEGER - name: location type: VARCHAR - name: time type: VARCHAR table: table_name_4
SELECT SUM(number) FROM table_name_4 WHERE location = "bois de warville" AND time < 810
How yes votes were there for measure 4?
columns: - name: yes_votes type: INTEGER - name: meas_num type: VARCHAR table: table_256286_60
SELECT MAX(yes_votes) FROM table_256286_60 WHERE meas_num = 4
Who is the kitmaker for the team that Uwe Rapolder is the head coach of.
columns: - name: kitmaker type: VARCHAR - name: head_coach type: VARCHAR table: table_name_84
SELECT kitmaker FROM table_name_84 WHERE head_coach = "uwe rapolder"
who is the constructor when the driver is jenson button?
columns: - name: constructor type: VARCHAR - name: driver type: VARCHAR table: table_name_55
SELECT constructor FROM table_name_55 WHERE driver = "jenson button"
What is the record for the date november 19?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_27712180_6
SELECT record FROM table_27712180_6 WHERE date = "November 19"
How many members did Africa have the year that Australia had 94615?
columns: - name: africa type: VARCHAR - name: australia type: VARCHAR table: table_1914090_2
SELECT africa FROM table_1914090_2 WHERE australia = 94615
What's the most amount of point finishes for v8supercar?
columns: - name: point_finishes__non_podium_ type: INTEGER - name: series type: VARCHAR table: table_2822193_1
SELECT MAX(point_finishes__non_podium_) FROM table_2822193_1 WHERE series = "V8Supercar"
What is the cyrillic name for the settlement with the population of 2125?
columns: - name: cyrillic_name_other_names type: VARCHAR - name: population__2011_ type: VARCHAR table: table_2562572_9
SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 2125
Who made the car that Alberto Ascari went more than 35 laps on a grid less than 7?
columns: - name: constructor type: VARCHAR - name: driver type: VARCHAR - name: grid type: VARCHAR - name: laps type: VARCHAR table: table_name_4
SELECT constructor FROM table_name_4 WHERE grid < 7 AND laps > 35 AND driver = "alberto ascari"
Who was on the prohibition ticket when Abraham J. Cuddeback was on the Greenback ticket?
columns: - name: prohibition_ticket type: VARCHAR - name: greenback_ticket type: VARCHAR table: table_name_39
SELECT prohibition_ticket FROM table_name_39 WHERE greenback_ticket = "abraham j. cuddeback"
What is the total where the nation is South Africa (rsa) and bronze is less than 1?
columns: - name: total type: INTEGER - name: nation type: VARCHAR - name: bronze type: VARCHAR table: table_name_45
SELECT SUM(total) FROM table_name_45 WHERE nation = "south africa (rsa)" AND bronze < 1
Who was the home team when Boston is the road team in game 4?
columns: - name: home_team type: VARCHAR - name: road_team type: VARCHAR - name: game type: VARCHAR table: table_name_89
SELECT home_team FROM table_name_89 WHERE road_team = "boston" AND game = "game 4"
Can you tell me the Artist that has the Draw smaller than 16, and the English translation of lullaby?
columns: - name: artist type: VARCHAR - name: draw type: VARCHAR - name: english_translation type: VARCHAR table: table_name_66
SELECT artist FROM table_name_66 WHERE draw < 16 AND english_translation = "lullaby"
What was the original air date for the episode Calle, The Transit of Venus?
columns: - name: original_airdate type: VARCHAR - name: title type: VARCHAR table: table_19517621_4
SELECT original_airdate FROM table_19517621_4 WHERE title = "The Transit of Venus"
Who is the incumbent that is a republican and first elected before 1864?
columns: - name: incumbent type: VARCHAR - name: party type: VARCHAR - name: first_elected type: VARCHAR table: table_name_73
SELECT incumbent FROM table_name_73 WHERE party = "republican" AND first_elected < 1864
What location did the episode that aired originally on August 26, 2009 take place at?
columns: - name: location type: VARCHAR - name: original_airdate type: VARCHAR table: table_24798489_2
SELECT location FROM table_24798489_2 WHERE original_airdate = "August 26, 2009"
Who was the athlete from egypt with q in the notes?
columns: - name: athlete type: VARCHAR - name: notes type: VARCHAR - name: country type: VARCHAR table: table_name_50
SELECT athlete FROM table_name_50 WHERE notes = "q" AND country = "egypt"
What was the result of the fight when Tetsuji Kato's record was 19-9?
columns: - name: res type: VARCHAR - name: record type: VARCHAR table: table_name_73
SELECT res FROM table_name_73 WHERE record = "19-9"
What is the highest number of Laps that have a Time of +18.366, and a Grid lower than 13?
columns: - name: laps type: INTEGER - name: grid type: VARCHAR - name: time type: VARCHAR table: table_name_93
SELECT MAX(laps) FROM table_name_93 WHERE grid < 13 AND time = "+18.366"
Who has a walking data of 214.061km?
columns: - name: athlete type: VARCHAR - name: data type: VARCHAR table: table_name_66
SELECT athlete FROM table_name_66 WHERE data = "214.061km"
What is the name with a release date of December 1966, and a Location of UK?
columns: - name: name type: VARCHAR - name: release_date type: VARCHAR - name: location type: VARCHAR table: table_name_42
SELECT name FROM table_name_42 WHERE release_date = "december 1966" AND location = "uk"
How big is the Venue of Brunswick Street Oval?
columns: - name: crowd type: INTEGER - name: venue type: VARCHAR table: table_name_47
SELECT SUM(crowd) FROM table_name_47 WHERE venue = "brunswick street oval"
What was the numer of the game when the record was 4-0?
columns: - name: game type: INTEGER - name: record type: VARCHAR table: table_21034801_1
SELECT MAX(game) FROM table_21034801_1 WHERE record = "4-0"
What Year had a Runner(s)-up of flory van donck?
columns: - name: year type: VARCHAR - name: runner_s__up type: VARCHAR table: table_name_64
SELECT year FROM table_name_64 WHERE runner_s__up = "flory van donck"
Name the most number for air date 2009/12/29
columns: - name: _number type: INTEGER - name: air_date_netherlands_yyyy_mm_dd type: VARCHAR table: table_21002034_7
SELECT MAX(_number) FROM table_21002034_7 WHERE air_date_netherlands_yyyy_mm_dd = "2009/12/29"
Which Home Town has a Took Office of 1983, and a District larger than 15?
columns: - name: home_town type: VARCHAR - name: took_office type: VARCHAR - name: district type: VARCHAR table: table_name_60
SELECT home_town FROM table_name_60 WHERE took_office = 1983 AND district > 15
What is the density of the city with an elevation of 3,400 msl?
columns: - name: "density__hab_km\xB2_" type: VARCHAR - name: elevation_msl type: VARCHAR table: table_name_5
SELECT density__hab_km²_ FROM table_name_5 WHERE elevation_msl = "3,400 msl"
What is the prime mover for a build date in 1975?
columns: - name: prime_mover type: VARCHAR - name: build_date type: VARCHAR table: table_name_87
SELECT prime_mover FROM table_name_87 WHERE build_date = "1975"
How many engines were built with a cylinder size of 20 ½” x 26”, firebox is belpaire and valve gear is from Stephenson?
columns: - name: number_built type: VARCHAR - name: valve_gear type: VARCHAR - name: cylinder_size type: VARCHAR - name: firebox type: VARCHAR table: table_25695027_1
SELECT number_built FROM table_25695027_1 WHERE cylinder_size = "20 ½” x 26”" AND firebox = "Belpaire" AND valve_gear = "Stephenson"
Result F–A of 2–0 had what total number of attendance?
columns: - name: attendance type: VARCHAR - name: result_f_a type: VARCHAR table: table_name_42
SELECT COUNT(attendance) FROM table_name_42 WHERE result_f_a = "2–0"
Which Venue has a Against larger than 13?
columns: - name: venue type: VARCHAR - name: against type: INTEGER table: table_name_16
SELECT venue FROM table_name_16 WHERE against > 13
What was the score of the game on 27 January 1996?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_15
SELECT score FROM table_name_15 WHERE date = "27 january 1996"
Which Date has a Location/Attendance of verizon center 7,587?
columns: - name: date type: VARCHAR - name: location_attendance type: VARCHAR table: table_name_66
SELECT date FROM table_name_66 WHERE location_attendance = "verizon center 7,587"
What classifications does Fish Rap live! has?
columns: - name: classification type: VARCHAR - name: title type: VARCHAR table: table_2266990_2
SELECT classification FROM table_2266990_2 WHERE title = "Fish Rap Live!"
What is the lowest crowd size at MCG?
columns: - name: crowd type: INTEGER - name: venue type: VARCHAR table: table_name_91
SELECT MIN(crowd) FROM table_name_91 WHERE venue = "mcg"
What tournament took place on July 17, 2005, with a clay surface?
columns: - name: tournament type: VARCHAR - name: surface type: VARCHAR - name: date type: VARCHAR table: table_name_70
SELECT tournament FROM table_name_70 WHERE surface = "clay" AND date = "july 17, 2005"
How many people are enrolled at the university in milwaukee, wisconsin
columns: - name: enrollment type: INTEGER - name: location type: VARCHAR table: table_2419754_1
SELECT MIN(enrollment) FROM table_2419754_1 WHERE location = "Milwaukee, Wisconsin"
What time has jules croft as the rider?
columns: - name: time type: VARCHAR - name: rider type: VARCHAR table: table_name_15
SELECT time FROM table_name_15 WHERE rider = "jules croft"
What was the high rebounds from the date of April 14?
columns: - name: high_rebounds type: VARCHAR - name: date type: VARCHAR table: table_name_29
SELECT high_rebounds FROM table_name_29 WHERE date = "april 14"
What is Ben Hogan's Place?
columns: - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_21
SELECT place FROM table_name_21 WHERE player = "ben hogan"
What Champion had a Score of 9–1?
columns: - name: champion type: VARCHAR - name: score type: VARCHAR table: table_name_82
SELECT champion FROM table_name_82 WHERE score = "9–1"
How many dances placed below 1 with a point total of 40?
columns: - name: number_of_dances type: VARCHAR - name: place type: VARCHAR - name: total_points type: VARCHAR table: table_name_69
SELECT number_of_dances FROM table_name_69 WHERE place > 1 AND total_points = 40
What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points?
columns: - name: draw type: INTEGER - name: language type: VARCHAR - name: points type: VARCHAR table: table_name_99
SELECT AVG(draw) FROM table_name_99 WHERE language = "swedish" AND points < 10
When esv ingolstadt is the oberbayern b what is the niederbayern?
columns: - name: niederbayern type: VARCHAR - name: oberbayern_b type: VARCHAR table: table_23224961_1
SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = "ESV Ingolstadt"
Who was the manufacturer for the race on grid 12?
columns: - name: manufacturer type: VARCHAR - name: grid type: VARCHAR table: table_name_49
SELECT manufacturer FROM table_name_49 WHERE grid = 12
Who was the First Baseman when the Shortstop was zoilo versalles?
columns: - name: first_baseman type: VARCHAR - name: shortstop type: VARCHAR table: table_name_53
SELECT first_baseman FROM table_name_53 WHERE shortstop = "zoilo versalles"
Where was game 62 played?
columns: - name: location type: VARCHAR - name: game type: VARCHAR table: table_16864968_7
SELECT location FROM table_16864968_7 WHERE game = 62
How many viewers in millions watched the episode with the production code 6acx16?
columns: - name: us_viewers__million_ type: VARCHAR - name: production_code type: VARCHAR table: table_22261877_1
SELECT us_viewers__million_ FROM table_22261877_1 WHERE production_code = "6ACX16"
Name the played with lost of 5
columns: - name: played type: VARCHAR - name: lost type: VARCHAR table: table_name_65
SELECT played FROM table_name_65 WHERE lost = "5"
What is the Portuguese Pluperfect when the French is Ils/Elles Avaient Entendu?
columns: - name: portuguese type: VARCHAR - name: french type: VARCHAR table: table_name_25
SELECT portuguese FROM table_name_25 WHERE french = "ils/elles avaient entendu"
What was the date of game 81?
columns: - name: date type: VARCHAR - name: game type: VARCHAR table: table_name_40
SELECT date FROM table_name_40 WHERE game = 81
Who was the incumbent in the Ohio 10 district?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_2646656_3
SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 10"
Which country did the Director(s) of kota nagaoka come from and win ¥300,000?
columns: - name: country type: VARCHAR - name: prize type: VARCHAR - name: director_s_ type: VARCHAR table: table_name_59
SELECT country FROM table_name_59 WHERE prize = "¥300,000" AND director_s_ = "kota nagaoka"
What is the 1993 value of the 1994 atp masters series?
columns: - name: Id type: VARCHAR table: table_name_59
SELECT 1993 FROM table_name_59 WHERE 1994 = "atp masters series"
what is the engine that saw 0 points, and a Chassis of porsche 718, in 1961?
columns: - name: engine type: VARCHAR - name: year type: VARCHAR - name: points type: VARCHAR - name: chassis type: VARCHAR table: table_name_27
SELECT engine FROM table_name_27 WHERE points = 0 AND chassis = "porsche 718" AND year = 1961
Name the sum To par for score of 71-74-71-72=288
columns: - name: to_par type: INTEGER - name: score type: VARCHAR table: table_name_26
SELECT SUM(to_par) FROM table_name_26 WHERE score = 71 - 74 - 71 - 72 = 288
Who are the mens doubles and and mens singles is lee hyun-il?
columns: - name: mens_doubles type: VARCHAR - name: mens_singles type: VARCHAR table: table_13553701_1
SELECT mens_doubles FROM table_13553701_1 WHERE mens_singles = "Lee Hyun-il"
Name the trinidad for yellow-bellied puffing snake
columns: - name: trinidad type: VARCHAR - name: common_name type: VARCHAR table: table_1850282_7
SELECT trinidad FROM table_1850282_7 WHERE common_name = "Yellow-bellied puffing snake"
Craig Parry with a score of 68-68=136 is in what place?
columns: - name: place type: VARCHAR - name: player type: VARCHAR - name: score type: VARCHAR table: table_name_83
SELECT place FROM table_name_83 WHERE score = 68 - 68 = 136 AND player = "craig parry"
What time was the match played with a score of 3-2?
columns: - name: time type: VARCHAR - name: score type: VARCHAR table: table_name_35
SELECT time FROM table_name_35 WHERE score = "3-2"
What was the home Competition with Attendance of 1,268?
columns: - name: competition type: VARCHAR - name: venue type: VARCHAR - name: attendance type: VARCHAR table: table_name_39
SELECT competition FROM table_name_39 WHERE venue = "home" AND attendance = "1,268"
what is the since beginning of big 12 when last 10 meetings is ou, 7-3, neutral site is ou, 2-1, and last 5 meetings is bu, 3-2?
columns: - name: since_beginning_of_big_12 type: VARCHAR - name: last_5_meetings type: VARCHAR - name: last_10_meetings type: VARCHAR - name: at_neutral_site type: VARCHAR table: table_name_28
SELECT since_beginning_of_big_12 FROM table_name_28 WHERE last_10_meetings = "ou, 7-3" AND at_neutral_site = "ou, 2-1" AND last_5_meetings = "bu, 3-2"
What's the highest League Cup with an FA Cup thats larger than 2?
columns: - name: league type: INTEGER - name: fa_cup type: INTEGER table: table_name_95
SELECT MAX(league) AS Cup FROM table_name_95 WHERE fa_cup > 2
What is the Home Team in the game with a Result of 124-109?
columns: - name: home_team type: VARCHAR - name: result type: VARCHAR table: table_name_48
SELECT home_team FROM table_name_48 WHERE result = "124-109"
Who are the candidates in Florida 13 district?
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_19753079_12
SELECT candidates FROM table_19753079_12 WHERE district = "Florida 13"
Which tournament in 2013 had a 2010 finish of 1R?
columns: - name: Id type: VARCHAR table: table_name_44
SELECT 2013 FROM table_name_44 WHERE 2006 = "a" AND 2010 = "1r"
When using a .375 Winchester, what is the muzzle energy?
columns: - name: muzzle_energy type: VARCHAR - name: cartridge type: VARCHAR table: table_16010376_1
SELECT muzzle_energy FROM table_16010376_1 WHERE cartridge = ".375 Winchester"
How many numbers were recorded for Chester when the religion was Hindu?
columns: - name: chester type: VARCHAR - name: religion type: VARCHAR table: table_16974228_1
SELECT COUNT(chester) FROM table_16974228_1 WHERE religion = "Hindu"
Name the del pueblo for centennial 1988
columns: - name: del_pueblo type: VARCHAR - name: centennial type: VARCHAR table: table_15977768_1
SELECT del_pueblo FROM table_15977768_1 WHERE centennial = "1988"
What are the names of those who made less than 3 wins in 15 matches?
columns: - name: name type: VARCHAR - name: wins type: VARCHAR - name: matches type: VARCHAR table: table_name_90
SELECT name FROM table_name_90 WHERE wins < 3 AND matches < 15