answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
|---|---|---|
SELECT MIN(losses) FROM table_name_96 WHERE rank < 3 AND team = "united states" AND wins > 6
|
CREATE TABLE table_name_96 (losses INTEGER, wins VARCHAR, rank VARCHAR, team VARCHAR)
|
What is the lowest amount of losses the United States, ranked higher than 3 with more than 6 wins, have?
|
SELECT AVG(runs_allowed) FROM table_name_50 WHERE rank = 2 AND losses > 2
|
CREATE TABLE table_name_50 (runs_allowed INTEGER, rank VARCHAR, losses VARCHAR)
|
How many runs allowed did the team ranked 2 with more than 2 losses have?
|
SELECT COUNT(wins) FROM table_name_87 WHERE rank > 1 AND run_ratio < 5.85 AND losses > 4
|
CREATE TABLE table_name_87 (wins VARCHAR, losses VARCHAR, rank VARCHAR, run_ratio VARCHAR)
|
How many total wins did the team ranked lower than 1 with a run ratio less than 5.85 and more than 4 losses have?
|
SELECT MAX(run_ratio) FROM table_name_36 WHERE runs_allowed < 58 AND wins = 5 AND team = "japan"
|
CREATE TABLE table_name_36 (run_ratio INTEGER, team VARCHAR, runs_allowed VARCHAR, wins VARCHAR)
|
What is the highest run ratio Japan, which has less than 58 runs and 5 wins, have?
|
SELECT AVG(losses) FROM table_name_63 WHERE runs_allowed < 25 AND wins = 5
|
CREATE TABLE table_name_63 (losses INTEGER, runs_allowed VARCHAR, wins VARCHAR)
|
What is the average number of losses the team with less than 25 runs allowed and 5 wins have?
|
SELECT date FROM table_name_14 WHERE opponent = "tigers"
|
CREATE TABLE table_name_14 (date VARCHAR, opponent VARCHAR)
|
Which date has tigers as the opponent?
|
SELECT loss FROM table_name_47 WHERE date = "october 1"
|
CREATE TABLE table_name_47 (loss VARCHAR, date VARCHAR)
|
What loss has october 1 as the date?
|
SELECT year FROM table_name_26 WHERE points > 0 AND chassis = "ags jh22"
|
CREATE TABLE table_name_26 (year VARCHAR, points VARCHAR, chassis VARCHAR)
|
What year is listed that has points greater than 0 with a chassis labeled AGS JH22?
|
SELECT SUM(points) FROM table_name_76 WHERE tyres = "p" AND year > 1986
|
CREATE TABLE table_name_76 (points INTEGER, tyres VARCHAR, year VARCHAR)
|
What is the total points listed that includes P listed Tyres after 1986?
|
SELECT MIN(points) FROM table_name_73 WHERE chassis = "ags jh23" AND year < 1988
|
CREATE TABLE table_name_73 (points INTEGER, chassis VARCHAR, year VARCHAR)
|
What point is the lowest for listings of chassis labeled AGS JH23 before 1988?
|
SELECT SUM(points) FROM table_name_58 WHERE year = 1988
|
CREATE TABLE table_name_58 (points INTEGER, year VARCHAR)
|
What is the total point for the year listed in 1988?
|
SELECT MAX(attendance) FROM table_name_28 WHERE date = "august 2"
|
CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR)
|
What was the attendance on August 2?
|
SELECT opponent FROM table_name_54 WHERE loss = "kinney (0-1)"
|
CREATE TABLE table_name_54 (opponent VARCHAR, loss VARCHAR)
|
Which opponent lost with pitcher Kinney (0-1)?
|
SELECT COUNT(attendance) FROM table_name_77 WHERE date = "august 23"
|
CREATE TABLE table_name_77 (attendance VARCHAR, date VARCHAR)
|
What was the attendance on August 23?
|
SELECT MAX(wins) FROM table_name_27 WHERE cuts_made = 3 AND events > 4
|
CREATE TABLE table_name_27 (wins INTEGER, cuts_made VARCHAR, events VARCHAR)
|
What is the highest wins a tournament with 3 cuts and more than 4 events has?
|
SELECT MIN(events) FROM table_name_77 WHERE top_10 > 1 AND wins > 0
|
CREATE TABLE table_name_77 (events INTEGER, top_10 VARCHAR, wins VARCHAR)
|
What is the lowest number of events a tournament with more than 1 top-10 and more than 0 wins has?
|
SELECT SUM(laps) FROM table_name_90 WHERE pos = "6th" AND year = 1998
|
CREATE TABLE table_name_90 (laps INTEGER, pos VARCHAR, year VARCHAR)
|
How many laps did the 6th placed in 1998 complete?
|
SELECT team FROM table_name_55 WHERE class = "c1" AND laps > 331 AND year > 1990
|
CREATE TABLE table_name_55 (team VARCHAR, year VARCHAR, class VARCHAR, laps VARCHAR)
|
What team was c1 class, had over 331 laps after 1990?
|
SELECT class FROM table_name_16 WHERE co_drivers = "eddie cheever raul boesel"
|
CREATE TABLE table_name_16 (class VARCHAR, co_drivers VARCHAR)
|
What class did eddie cheever raul boesel race in?
|
SELECT MIN(rank) FROM table_name_50 WHERE event = "2012"
|
CREATE TABLE table_name_50 (rank INTEGER, event VARCHAR)
|
What's the lowest rank of a player who played in 2012?
|
SELECT player FROM table_name_97 WHERE rank = 2011
|
CREATE TABLE table_name_97 (player VARCHAR, rank VARCHAR)
|
What player has the rank 2011?
|
SELECT score FROM table_name_70 WHERE surface = "hard" AND rank = 10
|
CREATE TABLE table_name_70 (score VARCHAR, surface VARCHAR, rank VARCHAR)
|
What was the score of the match played on hard with a person ranked 10?
|
SELECT females FROM table_name_71 WHERE language = "romanian"
|
CREATE TABLE table_name_71 (females VARCHAR, language VARCHAR)
|
What females speak Romanian?
|
SELECT females FROM table_name_21 WHERE males = "1 234"
|
CREATE TABLE table_name_21 (females VARCHAR, males VARCHAR)
|
What females have males of 1 234?
|
SELECT males FROM table_name_22 WHERE language = "polish"
|
CREATE TABLE table_name_22 (males VARCHAR, language VARCHAR)
|
What males speak Polish?
|
SELECT number FROM table_name_20 WHERE males = "977 948"
|
CREATE TABLE table_name_20 (number VARCHAR, males VARCHAR)
|
What is the number of males 977 948?
|
SELECT MIN(over_no) FROM table_name_37 WHERE bowler = "shane bond"
|
CREATE TABLE table_name_37 (over_no INTEGER, bowler VARCHAR)
|
Bowler of shane bond has what lowest overall number?
|
SELECT date FROM table_name_16 WHERE wickets = "chris gayle caught kapali"
|
CREATE TABLE table_name_16 (date VARCHAR, wickets VARCHAR)
|
Wickets of chris gayle caught kapali happened on what date?
|
SELECT year FROM table_name_34 WHERE third = "kyle newman"
|
CREATE TABLE table_name_34 (year VARCHAR, third VARCHAR)
|
What year did Kyle Newman place third?
|
SELECT venue FROM table_name_20 WHERE winner = "jerran hart"
|
CREATE TABLE table_name_20 (venue VARCHAR, winner VARCHAR)
|
What was the venue when Jerran Hart won?
|
SELECT runner_up FROM table_name_82 WHERE year = 2004
|
CREATE TABLE table_name_82 (runner_up VARCHAR, year VARCHAR)
|
Who was the runner-up in 2004?
|
SELECT venue FROM table_name_63 WHERE third = "jack hargreaves"
|
CREATE TABLE table_name_63 (venue VARCHAR, third VARCHAR)
|
What was the venue when Jack Hargreaves finished third?
|
SELECT venue FROM table_name_65 WHERE third = "ben barker"
|
CREATE TABLE table_name_65 (venue VARCHAR, third VARCHAR)
|
What was the venue when Ben Barker finished third?
|
SELECT province_region FROM table_name_91 WHERE icao = "rjtq"
|
CREATE TABLE table_name_91 (province_region VARCHAR, icao VARCHAR)
|
What province/region is RJTQ located?
|
SELECT city FROM table_name_57 WHERE icao = "rjsn"
|
CREATE TABLE table_name_57 (city VARCHAR, icao VARCHAR)
|
In what city is RJSN located?
|
SELECT iata FROM table_name_76 WHERE icao = "rjcm"
|
CREATE TABLE table_name_76 (iata VARCHAR, icao VARCHAR)
|
What is RJCM's IATA?
|
SELECT country FROM table_name_55 WHERE province_region = "hokkaidΕ" AND airport = "new chitose airport"
|
CREATE TABLE table_name_55 (country VARCHAR, province_region VARCHAR, airport VARCHAR)
|
In what country is HokkaidΕ and New Chitose airport located?
|
SELECT country FROM table_name_69 WHERE airport = "hiroshima airport"
|
CREATE TABLE table_name_69 (country VARCHAR, airport VARCHAR)
|
In what country is Hiroshima Airport located?
|
SELECT icao FROM table_name_89 WHERE city = "nakashibetsu"
|
CREATE TABLE table_name_89 (icao VARCHAR, city VARCHAR)
|
What is the ICAO of Nakashibetsu?
|
SELECT lost FROM table_name_52 WHERE played = "22" AND losing_bp = "2" AND club = "merthyr rfc"
|
CREATE TABLE table_name_52 (lost VARCHAR, club VARCHAR, played VARCHAR, losing_bp VARCHAR)
|
What is the total number of games lost when 22 have been played, the losing BP number is 2, and the club is Merthyr RFC?
|
SELECT drawn FROM table_name_74 WHERE lost = "3"
|
CREATE TABLE table_name_74 (drawn VARCHAR, lost VARCHAR)
|
What is the number drawn when 3 have been lost?
|
SELECT drawn FROM table_name_79 WHERE try_bp = "1"
|
CREATE TABLE table_name_79 (drawn VARCHAR, try_bp VARCHAR)
|
What is the number drawn when the try BP is 1?
|
SELECT try_bp FROM table_name_82 WHERE losing_bp = "4" AND club = "bargoed rfc"
|
CREATE TABLE table_name_82 (try_bp VARCHAR, losing_bp VARCHAR, club VARCHAR)
|
What is the try BP when the losing BP is 4 and the club is Bargoed RFC?
|
SELECT club FROM table_name_96 WHERE played = "22" AND drawn = "0" AND lost = "14" AND losing_bp = "5"
|
CREATE TABLE table_name_96 (club VARCHAR, losing_bp VARCHAR, lost VARCHAR, played VARCHAR, drawn VARCHAR)
|
What is the club that has played 22 rounds, has a drawn score of 0, has lost 14, and whose losing BP is 5?
|
SELECT AVG(total) FROM table_name_33 WHERE rank = "3" AND bronze > 3
|
CREATE TABLE table_name_33 (total INTEGER, rank VARCHAR, bronze VARCHAR)
|
What average Total has a Rank of 3 and a Bronze award larger than 3?
|
SELECT AVG(total) FROM table_name_84 WHERE gold = 13 AND bronze < 13
|
CREATE TABLE table_name_84 (total INTEGER, gold VARCHAR, bronze VARCHAR)
|
What average Total has a Gold award of 13 and a Bronze award less than 13?
|
SELECT AVG(gold) FROM table_name_5 WHERE silver > 2 AND bronze < 13 AND total > 24
|
CREATE TABLE table_name_5 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR)
|
What is the average Gold award that has a Silver award greater than 2, and a Bronze award less than 13, and a Total greater than 24?
|
SELECT record FROM table_name_9 WHERE loss = "guardado"
|
CREATE TABLE table_name_9 (record VARCHAR, loss VARCHAR)
|
What is the record number of the game where Guardado lost?
|
SELECT MIN(attendance) FROM table_name_79 WHERE date = "september 28"
|
CREATE TABLE table_name_79 (attendance INTEGER, date VARCHAR)
|
What was the lowest attendance recorded at a game on September 28?
|
SELECT AVG(gold) FROM table_name_75 WHERE total = 2 AND bronze > 1
|
CREATE TABLE table_name_75 (gold INTEGER, total VARCHAR, bronze VARCHAR)
|
What is the average gold that has a total of 2 and more than 1 bronze.
|
SELECT 2006 FROM table_name_88 WHERE 2010 = "a" AND 2009 = "a" AND tournament = "canada masters"
|
CREATE TABLE table_name_88 (tournament VARCHAR)
|
What is the 2006 result of the Canada Masters tournament that is A in 2009 and A in 2010?
|
SELECT 2006 FROM table_name_73 WHERE 2010 = "107"
|
CREATE TABLE table_name_73 (Id VARCHAR)
|
What is the result for 2006 of a tournament that is 107 in 2010?
|
SELECT 2010 FROM table_name_40 WHERE 2011 = "a" AND 2006 = "a"
|
CREATE TABLE table_name_40 (Id VARCHAR)
|
What is the 2010 result of a tournament that is A in 2006 and A in 2011?
|
SELECT 2012 FROM table_name_29 WHERE 2009 = "1r" AND 2008 = "1r" AND 2007 = "2r"
|
CREATE TABLE table_name_29 (Id VARCHAR)
|
What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009?
|
SELECT 2010 FROM table_name_43 WHERE 2011 = "q2" AND 2012 = "1r" AND 2009 = "1r"
|
CREATE TABLE table_name_43 (Id VARCHAR)
|
What is the 2010 result of a tournament that is 1R in 2009, Q2 in 2011 and 1R in 2012?
|
SELECT MAX(match) FROM table_name_38 WHERE date = "august 3, 2007"
|
CREATE TABLE table_name_38 (match INTEGER, date VARCHAR)
|
What match number took place on August 3, 2007?
|
SELECT 2010 FROM table_name_1 WHERE 2013 = "grand slam tournaments"
|
CREATE TABLE table_name_1 (Id VARCHAR)
|
What is the 2010 value of the 2013 Grand Slam Tournaments?
|
SELECT 2012 FROM table_name_11 WHERE 2007 = "a" AND 2011 = "qf"
|
CREATE TABLE table_name_11 (Id VARCHAR)
|
What is the 2012 value with A in 2007 and qf in 2011?
|
SELECT 2012 FROM table_name_6 WHERE 2011 = "1r" AND tournament = "australian open"
|
CREATE TABLE table_name_6 (tournament VARCHAR)
|
What is the 2012 value with a 1r in 2011 in the Australian Open?
|
SELECT 2013 FROM table_name_68 WHERE 2011 = "qf"
|
CREATE TABLE table_name_68 (Id VARCHAR)
|
What is the 2013 value with a qf in 2011?
|
SELECT 2007 FROM table_name_26 WHERE 2012 = "grand slam tournaments"
|
CREATE TABLE table_name_26 (Id VARCHAR)
|
What is the 2007 value at the 2012 Grand Slam Tournaments?
|
SELECT tournament FROM table_name_26 WHERE 2011 = "qf"
|
CREATE TABLE table_name_26 (tournament VARCHAR)
|
Which tournament had a qf in 2011?
|
SELECT score FROM table_name_13 WHERE competition = "2014 fifa world cup qual."
|
CREATE TABLE table_name_13 (score VARCHAR, competition VARCHAR)
|
What was the score for the 2014 FIFA World Cup Qual. competition?
|
SELECT MAX(matches) FROM table_name_46 WHERE draws < 2 AND efficiency__percentage = "25%"
|
CREATE TABLE table_name_46 (matches INTEGER, draws VARCHAR, efficiency__percentage VARCHAR)
|
What is the highest number of matches with less than 2 draws that had an efficiency percent of 25%?
|
SELECT COUNT(draws) FROM table_name_27 WHERE matches < 4
|
CREATE TABLE table_name_27 (draws VARCHAR, matches INTEGER)
|
What is the total number of Draws with less than 4 matches?
|
SELECT AVG(frequency_mhz) FROM table_name_9 WHERE program = "radio rezonans"
|
CREATE TABLE table_name_9 (frequency_mhz INTEGER, program VARCHAR)
|
What is the average MHz Frequency of radio rezonans?
|
SELECT date FROM table_name_80 WHERE loss = "lilly (2β2)"
|
CREATE TABLE table_name_80 (date VARCHAR, loss VARCHAR)
|
What date shows a Loss of lilly (2β2)?
|
SELECT loss FROM table_name_74 WHERE time = "3:16" AND record = "15β15"
|
CREATE TABLE table_name_74 (loss VARCHAR, time VARCHAR, record VARCHAR)
|
What is the loss when the time was 3:16, and a Record of 15β15?
|
SELECT opponent FROM table_name_59 WHERE time = "2:57" AND score = "7β5"
|
CREATE TABLE table_name_59 (opponent VARCHAR, time VARCHAR, score VARCHAR)
|
What team was the opponent when the time was 2:57, and a Score of 7β5?
|
SELECT date FROM table_name_68 WHERE loss = "ponson (4β3)"
|
CREATE TABLE table_name_68 (date VARCHAR, loss VARCHAR)
|
What date was the loss of ponson (4β3)?
|
SELECT date FROM table_name_43 WHERE loss = "sparks (0β1)"
|
CREATE TABLE table_name_43 (date VARCHAR, loss VARCHAR)
|
What date was the loss of sparks (0β1)?
|
SELECT position FROM table_name_62 WHERE venue = "tampere, finland"
|
CREATE TABLE table_name_62 (position VARCHAR, venue VARCHAR)
|
What is the position of the competition in Tampere, Finland?
|
SELECT MIN(total) FROM table_name_89 WHERE draws < 2 AND wins < 1 AND goal_difference = "1:2" AND losses > 1
|
CREATE TABLE table_name_89 (total INTEGER, losses VARCHAR, goal_difference VARCHAR, draws VARCHAR, wins VARCHAR)
|
What is the lowest total that has draws less than 2 and wins less than 1, losses bigger than 1 with a goal difference of 1:2
|
SELECT AVG(draws) FROM table_name_67 WHERE total = 1 AND goal_difference = "2:0"
|
CREATE TABLE table_name_67 (draws INTEGER, total VARCHAR, goal_difference VARCHAR)
|
What is the average number of draws that have a total of 1 and a goal difference of 2:0?
|
SELECT MIN(draws) FROM table_name_83 WHERE goal_difference = "0:2" AND wins > 0
|
CREATE TABLE table_name_83 (draws INTEGER, goal_difference VARCHAR, wins VARCHAR)
|
What is the lowest number of draws that have a goal difference of 0:2 and wins greater than 0?
|
SELECT reg_season FROM table_name_89 WHERE avg_attendance_β = "1,242"
|
CREATE TABLE table_name_89 (reg_season VARCHAR, avg_attendance_β VARCHAR)
|
What regular season had an average attendance of 1,242?
|
SELECT league FROM table_name_72 WHERE avg_attendance_β = "244"
|
CREATE TABLE table_name_72 (league VARCHAR, avg_attendance_β VARCHAR)
|
What league has an average attendance of 244?
|
SELECT date FROM table_name_90 WHERE opponent = "white sox" AND record = "18-13"
|
CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR, record VARCHAR)
|
On what date was the opponent the White Sox and the record 18-13?
|
SELECT AVG(attendance) FROM table_name_23 WHERE record = "19-13"
|
CREATE TABLE table_name_23 (attendance INTEGER, record VARCHAR)
|
What was the average attendance when the record was 19-13?
|
SELECT loss FROM table_name_57 WHERE opponent = "rangers" AND attendance > 43 OFFSET 211
|
CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)
|
What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?
|
SELECT 2012 FROM table_name_18 WHERE 2007 = "2r" AND 2009 = "1r"
|
CREATE TABLE table_name_18 (Id VARCHAR)
|
What was the 2012 result associated with a 2007 finish of 2R and a 2009 of 1R?
|
SELECT 2009 FROM table_name_2 WHERE 2012 = "1r" AND 2007 = "2r"
|
CREATE TABLE table_name_2 (Id VARCHAR)
|
What was the 2009 result associated with a 2012 of 1R and a 2007 of 2R?
|
SELECT 2008 FROM table_name_36 WHERE 2009 = "a" AND 2011 = "2r"
|
CREATE TABLE table_name_36 (Id VARCHAR)
|
What was the 2008 result associated with a 2009 of A and a 2011 of 2R?
|
SELECT tournament FROM table_name_34 WHERE 2007 = "lq"
|
CREATE TABLE table_name_34 (tournament VARCHAR)
|
In which tournament did Pauline Parmentier finish LQ in 2007?
|
SELECT player_name FROM table_name_23 WHERE matches = "51"
|
CREATE TABLE table_name_23 (player_name VARCHAR, matches VARCHAR)
|
Name the player name with matches of 51
|
SELECT position FROM table_name_6 WHERE country = "brazil" AND period = "2008" AND goals = "0 1"
|
CREATE TABLE table_name_6 (position VARCHAR, goals VARCHAR, country VARCHAR, period VARCHAR)
|
Name the position for brazil 2008 with goals of 0 1
|
SELECT goals FROM table_name_38 WHERE matches = "21"
|
CREATE TABLE table_name_38 (goals VARCHAR, matches VARCHAR)
|
Name the goals with matches of 21
|
SELECT period FROM table_name_56 WHERE matches = "0 0" AND country = "portugal"
|
CREATE TABLE table_name_56 (period VARCHAR, matches VARCHAR, country VARCHAR)
|
Name the period with matches of 0 0 of portugal
|
SELECT opponents FROM table_name_9 WHERE round = "round 5"
|
CREATE TABLE table_name_9 (opponents VARCHAR, round VARCHAR)
|
Name the opponents for round of round 5
|
SELECT attendance FROM table_name_72 WHERE date = "4 january 2004"
|
CREATE TABLE table_name_72 (attendance VARCHAR, date VARCHAR)
|
Name the attendance for 4 january 2004
|
SELECT MAX(attendance) FROM table_name_64 WHERE date = "25 january 2004"
|
CREATE TABLE table_name_64 (attendance INTEGER, date VARCHAR)
|
Name the most attendance for 25 january 2004
|
SELECT AVG(attendance) FROM table_name_54 WHERE round = "final"
|
CREATE TABLE table_name_54 (attendance INTEGER, round VARCHAR)
|
What is the average Attendance for the final round?
|
SELECT MIN(attendance) FROM table_name_67 WHERE h___a = "h" AND opponents = "roma"
|
CREATE TABLE table_name_67 (attendance INTEGER, h___a VARCHAR, opponents VARCHAR)
|
What is the smallest number of people to attend a game with an H/A of h and the opponent was Roma?
|
SELECT game FROM table_name_54 WHERE pov_character = "quentyn martell"
|
CREATE TABLE table_name_54 (game VARCHAR, pov_character VARCHAR)
|
Which game does the quentyn martell have?
|
SELECT storm FROM table_name_58 WHERE dance = "4" AND clash = "3"
|
CREATE TABLE table_name_58 (storm VARCHAR, dance VARCHAR, clash VARCHAR)
|
Which storm has a clash of 3 and a dance of 4?
|
SELECT melbourne FROM table_name_38 WHERE perth = "no" AND adelaide = "no" AND auckland = "no" AND sydney = "yes"
|
CREATE TABLE table_name_38 (melbourne VARCHAR, sydney VARCHAR, auckland VARCHAR, perth VARCHAR, adelaide VARCHAR)
|
Name the melbourne with perth, adelaide and auckland of no with sydney of yes
|
SELECT gold_coast FROM table_name_88 WHERE auckland = "no" AND melbourne = "yes"
|
CREATE TABLE table_name_88 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR)
|
Name the gold coast which has an auckland of no and melbourne of yes
|
SELECT sydney FROM table_name_53 WHERE perth = "no" AND adelaide = "no" AND melbourne = "yes" AND gold_coast = "yes"
|
CREATE TABLE table_name_53 (sydney VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, perth VARCHAR, adelaide VARCHAR)
|
Name the sydney with perth of no, adelaide of no with melbourne of yes and gold coast of yes
|
SELECT adelaide FROM table_name_6 WHERE sydney = "yes" AND perth = "yes"
|
CREATE TABLE table_name_6 (adelaide VARCHAR, sydney VARCHAR, perth VARCHAR)
|
Name the Adelaide for Sydney of yes and Perth of yes
|
SELECT melbourne FROM table_name_49 WHERE adelaide = "no" AND auckland = "yes" AND gold_coast = "no"
|
CREATE TABLE table_name_49 (melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR, auckland VARCHAR)
|
Name the melbourne for adelaide of no with auckland of yes and gold coast of yes
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.