answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT candidates FROM table_1341598_11 WHERE incumbent = "George Darden"
Who are shown as candidates when George Darden is the incumbent?
CREATE TABLE table_1341598_11 (candidates VARCHAR, incumbent VARCHAR)
SELECT SUM(place) FROM table_name_30 WHERE machine = "yamaha" AND speed = "89.85mph"
How many places have yamaha as the machine, and 89.85mph as the speed?
CREATE TABLE table_name_30 (place INTEGER, machine VARCHAR, speed VARCHAR)
SELECT COUNT(week) FROM table_name_81 WHERE date = "november 5, 1973" AND attendance > 49 OFFSET 220
What is the total number of weeks where games were on November 5, 1973 and the attendance was larger than 49,220?
CREATE TABLE table_name_81 (week VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT tournament_winner FROM table_28884880_4 WHERE conference = "Southwestern Athletic conference"
Who was the tournament winner in the Southwestern Athletic Conference?
CREATE TABLE table_28884880_4 (tournament_winner VARCHAR, conference VARCHAR)
SELECT COUNT(sets) FROM table_name_21 WHERE player = "gary muller"
How many Sets did Gary Muller have?
CREATE TABLE table_name_21 (sets VARCHAR, player VARCHAR)
SELECT episode FROM table_26250218_1 WHERE order__number = "4"
Which episode is #4?
CREATE TABLE table_26250218_1 (episode VARCHAR, order__number VARCHAR)
SELECT AVG(earnings___) AS $__ FROM table_name_58 WHERE player = "meg mallon" AND rank < 9
What is the average earnings ($) that has meg mallon as the player, with a rank less than 9?
CREATE TABLE table_name_58 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)
SELECT AVG(crowd) FROM table_name_70 WHERE home_team = "melbourne"
What was the crowd when Melbourne was the home team?
CREATE TABLE table_name_70 (crowd INTEGER, home_team VARCHAR)
SELECT college_junior_club_team FROM table_2781227_7 WHERE player = "Ryan Golden"
What college team did Ryan Golden come from?
CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT manner_of_departure FROM table_27782699_3 WHERE replaced_by = "Jakob Michelsen"
How did the manager who was replaced by Jakob Michelsen depart?
CREATE TABLE table_27782699_3 (manner_of_departure VARCHAR, replaced_by VARCHAR)
SELECT date FROM table_name_48 WHERE home_team = "fitzroy"
If fitzroy was the home team what date did they play?
CREATE TABLE table_name_48 (date VARCHAR, home_team VARCHAR)
SELECT hometown FROM table_11677100_12 WHERE player = "Jason Place"
What is the hometown of player Jason Place?
CREATE TABLE table_11677100_12 (hometown VARCHAR, player VARCHAR)
SELECT MIN(loses) FROM table_name_54 WHERE minutes > 2776
What is the lowest number of losses a goalkeeper with more than 2776 minutes had?
CREATE TABLE table_name_54 (loses INTEGER, minutes INTEGER)
SELECT director FROM table_name_51 WHERE production_number = "9368"
Who is the director of the production number 9368?
CREATE TABLE table_name_51 (director VARCHAR, production_number VARCHAR)
SELECT junior_high_school__12_15_yrs_ FROM table_name_97 WHERE gender = "male and female"
Which junior high school has male and female genders?
CREATE TABLE table_name_97 (junior_high_school__12_15_yrs_ VARCHAR, gender VARCHAR)
SELECT leading_scorer FROM table_name_59 WHERE visitor = "grizzlies"
Tell me the leading scorer for grizzlies
CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR)
SELECT s_sikh FROM table_14598_5 WHERE buddhist = "955"
What is the number of s sikh where 955 is the number of buddhists?
CREATE TABLE table_14598_5 (s_sikh VARCHAR, buddhist VARCHAR)
SELECT MAX(wins) FROM table_1637041_6 WHERE starts = 22
What is the maximum number of wins in the season with 22 starts?
CREATE TABLE table_1637041_6 (wins INTEGER, starts VARCHAR)
SELECT opponent FROM table_name_38 WHERE attendance = "54,136"
Who was the opponent for the game played with 54,136 people in attendance?
CREATE TABLE table_name_38 (opponent VARCHAR, attendance VARCHAR)
SELECT MAX(season__number) FROM table_2655016_10 WHERE nick_prod__number = 942
What was the latest season with a nick production number of 942?
CREATE TABLE table_2655016_10 (season__number INTEGER, nick_prod__number VARCHAR)
SELECT MIN(population) FROM table_22815568_1 WHERE market_income_per_capita = "$24,383"
What is the lowest population in a county with market income per capita of $24,383?
CREATE TABLE table_22815568_1 (population INTEGER, market_income_per_capita VARCHAR)
SELECT 1 AS st_leg FROM table_name_34 WHERE team_1 = "galatasaray"
Which first leg had Galatasaray as Team 1?
CREATE TABLE table_name_34 (team_1 VARCHAR)
SELECT opponent FROM table_name_22 WHERE method = "technical submission (guillotine choke)"
Who is the opponent when the method is technical submission (guillotine choke)?
CREATE TABLE table_name_22 (opponent VARCHAR, method VARCHAR)
SELECT type FROM table_2562572_25 WHERE cyrillic_name_other_names = "Оџаци"
When оџаци is the cyrillic name other names what is the type?
CREATE TABLE table_2562572_25 (type VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT winner FROM table_name_79 WHERE score = "7–6 (7–3) , 2–6, [10–6]"
Who was the winner with a score of 7–6 (7–3) , 2–6, [10–6]?
CREATE TABLE table_name_79 (winner VARCHAR, score VARCHAR)
SELECT platform_s_ FROM table_name_11 WHERE game = "red dead redemption"
What was the platform of Red Dead Redemption?
CREATE TABLE table_name_11 (platform_s_ VARCHAR, game VARCHAR)
SELECT Residence FROM player GROUP BY Residence HAVING COUNT(*) >= 2
Show the residences that have at least two players.
CREATE TABLE player (Residence VARCHAR)
SELECT home_team FROM table_14312471_3 WHERE ground = "Manuka Oval"
Name the home team for manuka oval
CREATE TABLE table_14312471_3 (home_team VARCHAR, ground VARCHAR)
SELECT year_signed FROM table_name_82 WHERE year_separated = "1987" AND chinese_name = "蘇永康"
What was the signed year for the Chinese name 蘇永康 who separated in 1987?
CREATE TABLE table_name_82 (year_signed VARCHAR, year_separated VARCHAR, chinese_name VARCHAR)
SELECT COUNT(*) FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE T1.participant_details LIKE '%Dr.%'
How many events had participants whose details had the substring 'Dr.'
CREATE TABLE participants (Participant_ID VARCHAR, participant_details VARCHAR); CREATE TABLE Participants_in_Events (Participant_ID VARCHAR)
SELECT adelaide FROM table_name_30 WHERE sydney = "yes" AND perth = "no" AND melbourne = "yes" AND auckland = "no"
Which Adelaide has a Sydney of yes, a Perth of no, a Melbourne of yes, and an Auckland of no?
CREATE TABLE table_name_30 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR, sydney VARCHAR, perth VARCHAR)
SELECT year FROM table_name_50 WHERE record = "9–1" AND tournament_champion = "duke"
When has a Record of 9–1, and a Tournament Champion of duke?
CREATE TABLE table_name_50 (year VARCHAR, record VARCHAR, tournament_champion VARCHAR)
SELECT MAX(big__) > 500 AS ha_ FROM table_name_12 WHERE micro__10ha_ > 940 AND department = "potosí" AND total < 16 OFFSET 240
Which Big (>500ha) has a Micro (10ha) larger than 940, and a Department of potosí, and a Total smaller than 16,240?
CREATE TABLE table_name_12 (big__ INTEGER, total VARCHAR, micro__10ha_ VARCHAR, department VARCHAR)
SELECT tournament FROM table_name_94 WHERE 2011 = "2r"
Name the tournament when it has 2011 of 2r
CREATE TABLE table_name_94 (tournament VARCHAR)
SELECT label FROM table_name_31 WHERE country = "spain"
Which label is from Spain?
CREATE TABLE table_name_31 (label VARCHAR, country VARCHAR)
SELECT MIN(no_in_season) FROM table_28334498_3 WHERE directed_by = "Jeff Melman" AND us_viewers__millions_ = "1.21"
How many episodes were directed by Jeff Melman and 1.21million viewers?
CREATE TABLE table_28334498_3 (no_in_season INTEGER, directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT score FROM table_name_82 WHERE date = "3 may 2009"
What was the score on 3 may 2009?
CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)
SELECT semi_finalists FROM table_name_25 WHERE runner_up = "gigi fernández natalia zvereva" AND week_of = "26 june 2 weeks"
When the runner-up is listed as Gigi Fernández Natalia Zvereva and the week is 26 June 2 weeks, who are the semi finalists?
CREATE TABLE table_name_25 (semi_finalists VARCHAR, runner_up VARCHAR, week_of VARCHAR)
SELECT opponent FROM table_name_78 WHERE result = "l 17–24"
Who was the Opponent with a Result of l 17–24?
CREATE TABLE table_name_78 (opponent VARCHAR, result VARCHAR)
SELECT result FROM table_27654988_1 WHERE opponent = "Innsbrucker Kilmarnock CSK VVS Samara"
What is the result of the game where the opponent is Innsbrucker Kilmarnock CSK VVS Samara?
CREATE TABLE table_27654988_1 (result VARCHAR, opponent VARCHAR)
SELECT T1.CName FROM COURSE AS T1 JOIN ENROLLED_IN AS T2 ON T1.CID = T2.CID GROUP BY T2.CID HAVING COUNT(*) >= 5
What are the name of courses that have at least five enrollments?
CREATE TABLE ENROLLED_IN (CID VARCHAR); CREATE TABLE COURSE (CName VARCHAR, CID VARCHAR)
SELECT years FROM table_name_73 WHERE jersey_number_s_ = 44
What is the Years of the player with Jersey Number(s) of 44?
CREATE TABLE table_name_73 (years VARCHAR, jersey_number_s_ VARCHAR)
SELECT COUNT(*), T1.name FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.src_apid GROUP BY T1.name
Find the number of routes for each source airport and the airport name.
CREATE TABLE airports (name VARCHAR, apid VARCHAR); CREATE TABLE routes (src_apid VARCHAR)
SELECT date FROM table_name_8 WHERE opponent_in_the_final = "johanna konta"
Tell me the date for johanna konta
CREATE TABLE table_name_8 (date VARCHAR, opponent_in_the_final VARCHAR)
SELECT team FROM table_24172157_3 WHERE incoming_manager = "Kenny Dalglish"
What team has an incoming manager named Kenny Dalglish?
CREATE TABLE table_24172157_3 (team VARCHAR, incoming_manager VARCHAR)
SELECT COUNT(games) FROM table_2509505_1 WHERE lost = 41
Name the total number of games for lost being 41
CREATE TABLE table_2509505_1 (games VARCHAR, lost VARCHAR)
SELECT MAX(no_in_season) FROM table_10718192_2
What's the highest season number of an episode in the series?
CREATE TABLE table_10718192_2 (no_in_season INTEGER)
SELECT COUNT(attendance) FROM table_name_76 WHERE visitor = "charlotte" AND leading_scorer = "ricky davis (23)"
What is the sum number of attendance when the visiting team was Charlotte and the leading scorer was Ricky Davis (23)?
CREATE TABLE table_name_76 (attendance VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)
SELECT winning_driver FROM table_name_43 WHERE winning_constructor = "sunbeam"
What Winning driver has a Winning constructor of sunbeam?
CREATE TABLE table_name_43 (winning_driver VARCHAR, winning_constructor VARCHAR)
SELECT week__number FROM table_26250227_1 WHERE theme = "Auditioner's Choice"
What are all the week # where subject matter is auditioner's choice
CREATE TABLE table_26250227_1 (week__number VARCHAR, theme VARCHAR)
SELECT phoneme FROM table_name_18 WHERE letter_name = "zɛn"
What is the Phoneme symbol for the letter name zɛn?
CREATE TABLE table_name_18 (phoneme VARCHAR, letter_name VARCHAR)
SELECT santo_domingo_, _dominican FROM table_name_79 WHERE world_record = "clean & jerk"
What is the figure for Santo Domingo, Dominican for the world record in the clean & jerk?
CREATE TABLE table_name_79 (santo_domingo_ VARCHAR, _dominican VARCHAR, world_record VARCHAR)
SELECT winner FROM table_name_35 WHERE result = "90–86"
What team was the winner when the result was 90–86?
CREATE TABLE table_name_35 (winner VARCHAR, result VARCHAR)
SELECT COUNT(position) FROM table_name_21 WHERE 2012 = "0.92"
What is the number of positions that have 2012 ratings of 0.92?
CREATE TABLE table_name_21 (position VARCHAR)
SELECT MIN(year) FROM table_name_41 WHERE attendance = 77 OFFSET 254
When was the earliest year when the attendance was 77,254?
CREATE TABLE table_name_41 (year INTEGER, attendance VARCHAR)
SELECT themed_area FROM table_name_12 WHERE name = "troublesome trucks runaway coaster"
Which Themed Area has a Name of troublesome trucks runaway coaster?
CREATE TABLE table_name_12 (themed_area VARCHAR, name VARCHAR)
SELECT bulletins_to_all_contacts FROM table_name_69 WHERE creator = "gg network"
Were there Bulletins to all contacts of the license created by GG Network?
CREATE TABLE table_name_69 (bulletins_to_all_contacts VARCHAR, creator VARCHAR)
SELECT MAX(episodes) FROM table_14562722_2 WHERE region_4 = "March 13, 2008"
Name the most epiosdes when region 4 is march 13, 2008
CREATE TABLE table_14562722_2 (episodes INTEGER, region_4 VARCHAR)
SELECT current_affiliation FROM table_1553485_1 WHERE city_of_license__market = "San Francisco - Oakland - San Jose"
Who currently affiliates in San Francisco - Oakland - San Jose?
CREATE TABLE table_1553485_1 (current_affiliation VARCHAR, city_of_license__market VARCHAR)
SELECT 2008 AS _head_coach FROM table_name_7 WHERE team = "ucla"
Who is the 2008 head coach of UCLA?
CREATE TABLE table_name_7 (team VARCHAR)
SELECT campanius__ca_1645_ FROM table_name_43 WHERE unami_delaware = "palé·naxk"
What is the Campanius term for an Unami Delaware term of palé·naxk?
CREATE TABLE table_name_43 (campanius__ca_1645_ VARCHAR, unami_delaware VARCHAR)
SELECT DISTINCT Carrier FROM phone WHERE Memory_in_G > 32
List the distinct carriers of phones with memories bigger than 32.
CREATE TABLE phone (Carrier VARCHAR, Memory_in_G INTEGER)
SELECT type FROM table_name_50 WHERE callsign = "xetam"
What is the Type, when Callsign is "Xetam"?
CREATE TABLE table_name_50 (type VARCHAR, callsign VARCHAR)
SELECT laps FROM table_name_65 WHERE points = "50"
How many laps have 50 points?
CREATE TABLE table_name_65 (laps VARCHAR, points VARCHAR)
SELECT club FROM table_name_22 WHERE replacement = "aykut kocaman"
What is the club the used aykut kocaman as the replacement?
CREATE TABLE table_name_22 (club VARCHAR, replacement VARCHAR)
SELECT SUM(round) FROM table_name_4 WHERE event = "ifl: oakland"
How many rounds did the IFL: Oakland event have?
CREATE TABLE table_name_4 (round INTEGER, event VARCHAR)
SELECT COUNT(goal) FROM table_name_81 WHERE date = "15 november 1989"
How many total goals were made at the game on 15 November 1989?
CREATE TABLE table_name_81 (goal VARCHAR, date VARCHAR)
SELECT AVG(year) FROM table_name_8 WHERE rank_final < 2 AND apparatus = "team" AND score_qualifying < 248.275
Name the Year with a Rank-Final smaller than 2, an Apparatus of team, and a Score-Qualifying smaller than 248.275?
CREATE TABLE table_name_8 (year INTEGER, score_qualifying VARCHAR, rank_final VARCHAR, apparatus VARCHAR)
SELECT competition FROM table_name_55 WHERE venue = "hampden park, glasgow"
What competition has a venue in Hampden Park, Glasgow?
CREATE TABLE table_name_55 (competition VARCHAR, venue VARCHAR)
SELECT download FROM table_name_55 WHERE catch_up_period = "varies"
What is the download of the varies catch-up period?
CREATE TABLE table_name_55 (download VARCHAR, catch_up_period VARCHAR)
SELECT t1.name FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id JOIN museum AS t3 ON t3.Museum_ID = t2.Museum_ID WHERE t3.open_year < 2009 INTERSECT SELECT t1.name FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id JOIN museum AS t3 ON t3.Museum_ID = t2.Museum_ID WHERE t3.open_year > 2011
What is the name of the visitor who visited both a museum opened before 2009 and a museum opened after 2011?
CREATE TABLE visitor (name VARCHAR, id VARCHAR); CREATE TABLE museum (Museum_ID VARCHAR, open_year INTEGER); CREATE TABLE visit (visitor_id VARCHAR, Museum_ID VARCHAR)
SELECT loss FROM table_name_61 WHERE attendance = "16,468"
Which team had the attendance of 16,468 and lost?
CREATE TABLE table_name_61 (loss VARCHAR, attendance VARCHAR)
SELECT title FROM table_165732_2 WHERE episode__number = 2
What is the title of Episode #2
CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR)
SELECT date FROM table_name_70 WHERE venue = "hrazdan stadium, yerevan, armenia"
What date was the game played at the venue of Hrazdan Stadium, Yerevan, Armenia?
CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_92 WHERE jurisdiction = "oregon"
Name the date for oregon jurisdiction
CREATE TABLE table_name_92 (date VARCHAR, jurisdiction VARCHAR)
SELECT MAX(money___) AS $__ FROM table_name_35 WHERE to_par = "e" AND player = "ernie els"
What is the highest Money ($), when Top Par is E, and when Player is Ernie Els?
CREATE TABLE table_name_35 (money___ INTEGER, to_par VARCHAR, player VARCHAR)
SELECT COUNT(week) FROM table_name_27 WHERE date = "october 9, 1983" AND attendance < 40 OFFSET 492
What is the week with a date of October 9, 1983, and attendance smaller than 40,492?
CREATE TABLE table_name_27 (week VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT first_elected FROM table_1341472_15 WHERE district = "Illinois 18"
what's the first elected with district illinois 18
CREATE TABLE table_1341472_15 (first_elected VARCHAR, district VARCHAR)
SELECT denomination FROM table_name_80 WHERE year = 2006
What denomination was produced in 2006?
CREATE TABLE table_name_80 (denomination VARCHAR, year VARCHAR)
SELECT MIN(places) FROM table_name_11 WHERE nation = "norway" AND points < 1524.9
What is the fewest number of places for a skater from Norway with fewer than 1524.9 points?
CREATE TABLE table_name_11 (places INTEGER, nation VARCHAR, points VARCHAR)
SELECT cover_model FROM table_name_22 WHERE centerfold_model = "scarlett keegan"
Which Cover model has a Centerfold model of scarlett keegan?
CREATE TABLE table_name_22 (cover_model VARCHAR, centerfold_model VARCHAR)
SELECT class FROM table_name_2 WHERE call_sign = "k220cp"
Name the class with call sign of k220cp
CREATE TABLE table_name_2 (class VARCHAR, call_sign VARCHAR)
SELECT mountains_classification FROM table_name_48 WHERE points_classification = "not awarded"
Which Mountains classification has Points classification of not awarded?
CREATE TABLE table_name_48 (mountains_classification VARCHAR, points_classification VARCHAR)
SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong"
What is the highest position the album Where we belong, which had an issue date higher than 9, had?
CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR)
SELECT disposition_of_ship FROM table_name_57 WHERE ship_type = "brig" AND location = "english channel"
For the ship that was a brig and located in the English Channel, what was the disposition of ship?
CREATE TABLE table_name_57 (disposition_of_ship VARCHAR, ship_type VARCHAR, location VARCHAR)
SELECT team FROM table_11094950_1 WHERE location = "Highland Township"
Which teams are located in highland township?
CREATE TABLE table_11094950_1 (team VARCHAR, location VARCHAR)
SELECT opponent FROM table_name_93 WHERE date = "april 21"
what team played on april 21
CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)
SELECT SUM(erp_w) FROM table_name_30 WHERE call_sign = "k231bg"
Call sign of k231bg has what sum of erp w?
CREATE TABLE table_name_30 (erp_w INTEGER, call_sign VARCHAR)
SELECT player FROM table_name_35 WHERE penalty = "holding" AND team = "det"
What player has a penalty of holding on the DET team?
CREATE TABLE table_name_35 (player VARCHAR, penalty VARCHAR, team VARCHAR)
SELECT date FROM table_name_26 WHERE name = "thuin circuit"
What Date has a Name of thuin circuit?
CREATE TABLE table_name_26 (date VARCHAR, name VARCHAR)
SELECT record FROM table_name_15 WHERE week = 11
What was their record on week 11?
CREATE TABLE table_name_15 (record VARCHAR, week VARCHAR)
SELECT date FROM table_name_97 WHERE plant_patent_number = "us plant patent 12098"
What date had the patent number US plant patent 12098?
CREATE TABLE table_name_97 (date VARCHAR, plant_patent_number VARCHAR)
SELECT domestic_tournament FROM table_name_42 WHERE team = "chennai super kings"
What is the Domestic Tournament with Chennai Super Kings Team?
CREATE TABLE table_name_42 (domestic_tournament VARCHAR, team VARCHAR)
SELECT height FROM table_name_19 WHERE date_of_birth = "1982-07-05"
What is the Height of the Player with a Date of Birth of 1982-07-05?
CREATE TABLE table_name_19 (height VARCHAR, date_of_birth VARCHAR)
SELECT country FROM table_name_94 WHERE transfer_fee = "loan" AND name = "lynch"
What is the Country, when the Transfer fee is "loan", and when the Name is Lynch?
CREATE TABLE table_name_94 (country VARCHAR, transfer_fee VARCHAR, name VARCHAR)
SELECT produced FROM table_name_28 WHERE aircraft = "kai kuh-1 surion"
Where was the Kai Kuh-1 Surion Produced?
CREATE TABLE table_name_28 (produced VARCHAR, aircraft VARCHAR)
SELECT county FROM table_name_51 WHERE precincts = "90/90"
Which County has Precincts of 90/90?
CREATE TABLE table_name_51 (county VARCHAR, precincts VARCHAR)
SELECT tournament FROM table_name_66 WHERE date > 1973 AND opponents_in_the_final = "hank pfister sherwood stewart"
What is the Tournament with a Date larger than 1973, with Opponents in the final with hank pfister sherwood stewart?
CREATE TABLE table_name_66 (tournament VARCHAR, date VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_87 WHERE venue = "a" AND result = "0-1" AND opponent = "rangers"
What was the date of the game held at the A venue with a result of 0-1 against the Rangers?
CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, venue VARCHAR, result VARCHAR)
SELECT MIN(al_ahly_wins) FROM table_name_29 WHERE draws = 0 AND el_zamalek_wins < 0
What is the fewest Al Ahly wins for El Zamalek wins of 0 and 0 draws?
CREATE TABLE table_name_29 (al_ahly_wins INTEGER, draws VARCHAR, el_zamalek_wins VARCHAR)