answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT golden_point_s__scorer FROM table_name_53 WHERE away = "sydney roosters" AND home = "cronulla sharks" | What Golden point(s) scorer has the Away Sydney Roosters and Home Cronulla Sharks? | CREATE TABLE table_name_53 (golden_point_s__scorer VARCHAR, away VARCHAR, home VARCHAR) |
SELECT nfl_team FROM table_name_91 WHERE overall > 118 AND pick > 9 AND round > 5 AND position = "de" | Which NFL team chose a position of DE when the pick was larger than 9, after round 5, and the overal was larger than 118? | CREATE TABLE table_name_91 (nfl_team VARCHAR, position VARCHAR, round VARCHAR, overall VARCHAR, pick VARCHAR) |
SELECT entrant FROM table_name_1 WHERE tyre = "p" AND constructor = "alfa romeo" | What entrant has a P tyre and was constructed by Alfa Romeo? | CREATE TABLE table_name_1 (entrant VARCHAR, tyre VARCHAR, constructor VARCHAR) |
SELECT score FROM table_name_13 WHERE tie_no = "15" | What is the score for the tie number 15? | CREATE TABLE table_name_13 (score VARCHAR, tie_no VARCHAR) |
SELECT brazil_scorers FROM table_name_41 WHERE score = "6-0" | Who is the Brazil scorer who scored 6-0? | CREATE TABLE table_name_41 (brazil_scorers VARCHAR, score VARCHAR) |
SELECT college FROM table_name_85 WHERE player = "jordan phillips" | Which college is Jordan Phillips playing for? | CREATE TABLE table_name_85 (college VARCHAR, player VARCHAR) |
SELECT code FROM table_2801442_1 WHERE density_in_2011___km²_ = "800.5" | What's the code of the district with 800.5 people per km2? | CREATE TABLE table_2801442_1 (code VARCHAR, density_in_2011___km²_ VARCHAR) |
SELECT reason_for_change FROM table_2159571_1 WHERE date_of_successors_formal_installation = "March 16, 1960" | What is every reason for change for the date of successors installation is March 16, 1960? | CREATE TABLE table_2159571_1 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR) |
SELECT system FROM table_name_63 WHERE license = "gpl" AND current_version = "1.72" | What is the System when the Licence is gpl and the Current Version is 1.72? | CREATE TABLE table_name_63 (system VARCHAR, license VARCHAR, current_version VARCHAR) |
SELECT surface FROM table_name_18 WHERE date = "1 september 2008" | What Surface has a Date of 1 september 2008? | CREATE TABLE table_name_18 (surface VARCHAR, date VARCHAR) |
SELECT college_junior_club_team__league_ FROM table_name_48 WHERE player = "steve jones" | What college or club team did Steve Jones play for? | CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, player VARCHAR) |
SELECT MAX(poles) FROM table_17289224_1 WHERE team_name = "David Price Racing" | How many poles did David Price Racing win? | CREATE TABLE table_17289224_1 (poles INTEGER, team_name VARCHAR) |
SELECT COUNT(age) FROM table_17596418_5 WHERE started = "6 November" | what ist he total number of ages where the start date is 6 november? | CREATE TABLE table_17596418_5 (age VARCHAR, started VARCHAR) |
SELECT assist_pass FROM table_name_14 WHERE score = "1-0" AND competition = "2010 concacaf world cup qualifying – group stage" | Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying – group stage? | CREATE TABLE table_name_14 (assist_pass VARCHAR, score VARCHAR, competition VARCHAR) |
SELECT MAX(year) FROM table_name_82 WHERE title = "loves lost and found" | What is the highest year for the title, "loves lost and found"? | CREATE TABLE table_name_82 (year INTEGER, title VARCHAR) |
SELECT to_par FROM table_name_18 WHERE player = "ben crenshaw" | Ben Crenshaw has what To par? | CREATE TABLE table_name_18 (to_par VARCHAR, player VARCHAR) |
SELECT MIN(extra_points) FROM table_name_26 WHERE player = "rheinschild" AND touchdowns > 1 | Which Extra points is the lowest one that has a Player of rheinschild, and Touchdowns larger than 1? | CREATE TABLE table_name_26 (extra_points INTEGER, player VARCHAR, touchdowns VARCHAR) |
SELECT MAX(purse__) AS $__ FROM table_11621915_1 WHERE score = "204 (-9)" | what's the maximum purse( $ ) with score value of 204 (-9) | CREATE TABLE table_11621915_1 (purse__ INTEGER, score VARCHAR) |
SELECT to_par FROM table_name_29 WHERE score = 72 - 71 - 68 = 211 | What To par scored 72-71-68=211? | CREATE TABLE table_name_29 (to_par VARCHAR, score VARCHAR) |
SELECT COUNT(week) FROM table_name_4 WHERE result = "l 21-19" | Which Week has a Result of l 21-19? | CREATE TABLE table_name_4 (week VARCHAR, result VARCHAR) |
SELECT years FROM table_name_4 WHERE jersey_number_s_ = 33 AND position = "pf" | What years did the player with the jersey number 33 and played position pf play? | CREATE TABLE table_name_4 (years VARCHAR, jersey_number_s_ VARCHAR, position VARCHAR) |
SELECT score FROM table_name_15 WHERE to_par = "–3" AND player = "jim furyk" | What is the Score that has a To standard of –3, and a Player of Jim Furyk? | CREATE TABLE table_name_15 (score VARCHAR, to_par VARCHAR, player VARCHAR) |
SELECT AVG(enrollment) FROM table_name_38 WHERE control = "public" AND location = "golden, colorado" AND founded > 1874 | What is the enrollment number for the public institution in Golden, Colorado founded after 1874? | CREATE TABLE table_name_38 (enrollment INTEGER, founded VARCHAR, control VARCHAR, location VARCHAR) |
SELECT venue FROM table_name_68 WHERE opponent = "melbourne storm" AND round = "rd 7, 2006" | What venue did Melbourne Storm played in Rd 7, 2006? | CREATE TABLE table_name_68 (venue VARCHAR, opponent VARCHAR, round VARCHAR) |
SELECT country FROM table_28005160_2 WHERE sponsored_name = "New Orleans Shell Shockers" | What country are the new orleans shell shockers from? | CREATE TABLE table_28005160_2 (country VARCHAR, sponsored_name VARCHAR) |
SELECT opponent FROM table_name_69 WHERE surface = "clay" AND score = "6–3, 2–6, [10–8]" | With the score of 6–3, 2–6, [10–8] and played on clay who was the opponent? | CREATE TABLE table_name_69 (opponent VARCHAR, surface VARCHAR, score VARCHAR) |
SELECT original_air_date FROM table_10718631_2 WHERE no_in_series = 113 | When did the 113 episode air? | CREATE TABLE table_10718631_2 (original_air_date VARCHAR, no_in_series VARCHAR) |
SELECT MIN(fa_cup) FROM table_name_9 WHERE league > 0 AND malaysia_cup > 5 | What is the lowest FA cup that has a league greater than 0, with a Malaysia cup greater than 5? | CREATE TABLE table_name_9 (fa_cup INTEGER, league VARCHAR, malaysia_cup VARCHAR) |
SELECT term_end FROM table_name_40 WHERE minister = "danny ayalon" | What term end had minister Danny Ayalon? | CREATE TABLE table_name_40 (term_end VARCHAR, minister VARCHAR) |
SELECT play_by_play FROM table_name_80 WHERE studio_host = "jimmy myers" | Studio host of jimmy myers had what play by play? | CREATE TABLE table_name_80 (play_by_play VARCHAR, studio_host VARCHAR) |
SELECT service FROM table_name_20 WHERE unit = "7th marines" AND rank = "sergeant" | Name the service for 7th marines rank of sergeant | CREATE TABLE table_name_20 (service VARCHAR, unit VARCHAR, rank VARCHAR) |
SELECT SUM(long) FROM table_name_26 WHERE loss < 390 AND avg_g = 2 AND gain > 29 | When the Gain is 29, and the average per game is 2, and the player lost less than 390 yards, what's the sum of the Long yards? | CREATE TABLE table_name_26 (long INTEGER, gain VARCHAR, loss VARCHAR, avg_g VARCHAR) |
SELECT couple FROM table_19744915_14 WHERE rank_by_average = 9 | If your rank by average is 9, what is the name of the couple? | CREATE TABLE table_19744915_14 (couple VARCHAR, rank_by_average VARCHAR) |
SELECT record FROM table_name_8 WHERE date = "october 30" | What was the Record for the game on October 30? | CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR) |
SELECT SUM(points) FROM table_name_26 WHERE visitor = "philadelphia" AND attendance > 7 OFFSET 284 | What is the sum of the points of the game with philadelphia as the visitor and an attendance greater than 7,284? | CREATE TABLE table_name_26 (points INTEGER, visitor VARCHAR, attendance VARCHAR) |
SELECT first_class_team FROM table_name_15 WHERE bowling_style = "left arm orthodox spin" | What is the name of the First Class Team in which the player has a bowling style of left arm orthodox spin? | CREATE TABLE table_name_15 (first_class_team VARCHAR, bowling_style VARCHAR) |
SELECT elimination AS Move FROM table_name_28 WHERE wrestler = "regal" | What is the Elimination move listed against Regal? | CREATE TABLE table_name_28 (elimination VARCHAR, wrestler VARCHAR) |
SELECT time__eest_ FROM table_name_5 WHERE stage = "ss8" | What is the Time (EEST), when the Stage is ss8? | CREATE TABLE table_name_5 (time__eest_ VARCHAR, stage VARCHAR) |
SELECT home_team FROM table_name_90 WHERE tie_no = "16" | What was the Home team in Tie no 16? | CREATE TABLE table_name_90 (home_team VARCHAR, tie_no VARCHAR) |
SELECT rank FROM table_name_28 WHERE bronze < 17 AND silver > 1 AND gold < 1 | Tell me the rank for bronze less than 17 and gold less than 1 | CREATE TABLE table_name_28 (rank VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR) |
SELECT winners FROM table_name_90 WHERE runners_up = "united states" AND venue = "st. germain golf club" | What is the Winners when the United States is the runner-up at st. germain golf club? | CREATE TABLE table_name_90 (winners VARCHAR, runners_up VARCHAR, venue VARCHAR) |
SELECT program FROM table_12591022_2 WHERE duration__years_ = "1.5" AND teaching_language = "German/English" | WHat is the program where duration (years) is 1.5 and teaching language is german/english? | CREATE TABLE table_12591022_2 (program VARCHAR, duration__years_ VARCHAR, teaching_language VARCHAR) |
SELECT runner_up FROM table_name_60 WHERE third_place = "omar camporese" | Who was the runner-up in the tournament in which Omar Camporese held third place? | CREATE TABLE table_name_60 (runner_up VARCHAR, third_place VARCHAR) |
SELECT affiliation FROM table_name_58 WHERE owned_since > 1991 AND channel___tv___rf__ = "42" | What affiliation has an owned since larger than 1991, and also has a channel (tv/rf) of 42? | CREATE TABLE table_name_58 (affiliation VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR) |
SELECT paper_type FROM table_name_11 WHERE first_day_cover_cancellation = "ottawa, on" | What is the Paper Type with a First Day Cover Cancellation with ottawa, on? | CREATE TABLE table_name_11 (paper_type VARCHAR, first_day_cover_cancellation VARCHAR) |
SELECT club FROM table_name_93 WHERE lost = "10" | Which club lost 10 games ? | CREATE TABLE table_name_93 (club VARCHAR, lost VARCHAR) |
SELECT university_of_minnesota FROM table_name_63 WHERE rood_ & _taylor = "o" AND buechel_ & _manhart_spelling__pronunciation_ = "o" | Rood & Taylor of o, and a Buechel & Manhart spelling (pronunciation) of o had what university of Minnesota? | CREATE TABLE table_name_63 (university_of_minnesota VARCHAR, rood_ VARCHAR, _taylor VARCHAR, buechel_ VARCHAR, _manhart_spelling__pronunciation_ VARCHAR) |
SELECT location FROM table_23315271_2 WHERE circuit = "ACI Vallelunga circuit" | In which location is aci vallelunga circuit? | CREATE TABLE table_23315271_2 (location VARCHAR, circuit VARCHAR) |
SELECT AVG(losses) FROM table_name_43 WHERE years = "1904" | How many losses did Notre Dame have in 1904? | CREATE TABLE table_name_43 (losses INTEGER, years VARCHAR) |
SELECT MAX(series__number) FROM table_19517621_3 WHERE written_by = "Kristen Dunphy and David Ogilvy" | What is the series number for the episode written by Kristen Dunphy and David Ogilvy? | CREATE TABLE table_19517621_3 (series__number INTEGER, written_by VARCHAR) |
SELECT original_air_date FROM table_20704243_4 WHERE written_by = "Albert Kim" | When was the episode written by Albert Kim aired for the first time? | CREATE TABLE table_20704243_4 (original_air_date VARCHAR, written_by VARCHAR) |
SELECT venue FROM table_name_49 WHERE team = "boston red sox" | In what venue did the Boston Red Sox play in? | CREATE TABLE table_name_49 (venue VARCHAR, team VARCHAR) |
SELECT MIN(total) FROM table_name_37 WHERE bronze = 5 AND silver < 1 | Which Total has a Bronze of 5, and a Silver smaller than 1? | CREATE TABLE table_name_37 (total INTEGER, bronze VARCHAR, silver VARCHAR) |
SELECT school_year FROM table_15315103_1 WHERE class_aAAA = Dayton | What year is dayton in class AAAA? | CREATE TABLE table_15315103_1 (school_year VARCHAR, class_aAAA VARCHAR, Dayton VARCHAR) |
SELECT captain FROM table_27631756_2 WHERE shirt_sponsor = "N/A" | What is the name of the captain when teh shirt sponsor is n/a? | CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR) |
SELECT date FROM table_name_65 WHERE site = "louisiana superdome • new orleans, la" | What is Date, when Site is "Louisiana Superdome • New Orleans, LA"? | CREATE TABLE table_name_65 (date VARCHAR, site VARCHAR) |
SELECT COUNT(romaji_title) FROM table_10979230_4 WHERE japanese_title = "Mi-Chemin" | How many songs have mi-chemin as their Japanese name and romanji name? | CREATE TABLE table_10979230_4 (romaji_title VARCHAR, japanese_title VARCHAR) |
SELECT SUM(appearance) FROM table_name_33 WHERE goals > 0 | what is the sum of appearance when goals is more than 0? | CREATE TABLE table_name_33 (appearance INTEGER, goals INTEGER) |
SELECT MIN(began) FROM table_14903081_1 WHERE country = "Italy" | What year was the tournament first held in Italy? | CREATE TABLE table_14903081_1 (began INTEGER, country VARCHAR) |
SELECT date FROM table_name_98 WHERE group = "g1" AND venue = "flemington" | What was the date for the G1 group race at Flemington? | CREATE TABLE table_name_98 (date VARCHAR, group VARCHAR, venue VARCHAR) |
SELECT player FROM table_name_45 WHERE score = 70 - 68 - 70 = 208 | Who is the player with a score of 70-68-70=208? | CREATE TABLE table_name_45 (player VARCHAR, score VARCHAR) |
SELECT opponent FROM table_name_55 WHERE record = "23-5" | Who was the opponent that led to a record of 23-5? | CREATE TABLE table_name_55 (opponent VARCHAR, record VARCHAR) |
SELECT SUM(year) FROM table_name_31 WHERE extra = "junior team competition" | Tell me the sum of year for extra of junior team competition | CREATE TABLE table_name_31 (year INTEGER, extra VARCHAR) |
SELECT platform FROM table_name_44 WHERE company = "surfstats software" | What platform is the company Surfstats Software? | CREATE TABLE table_name_44 (platform VARCHAR, company VARCHAR) |
SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914 | Who is the candidate that was first elected in 1914? | CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR) |
SELECT city FROM table_name_22 WHERE result = "brisbane broncos def. halifax blue sox" | What city has a Result of brisbane broncos def. halifax blue sox? | CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR) |
SELECT opponent FROM table_name_78 WHERE attendance < 751 | Who did they play when there were only 751 in attendance? | CREATE TABLE table_name_78 (opponent VARCHAR, attendance INTEGER) |
SELECT pole_position FROM table_name_36 WHERE winning_driver = "michael schumacher" AND grand_prix = "san marino grand prix" | What was the pole position at the san marino grand prix with michael schumacher as winning driver? | CREATE TABLE table_name_36 (pole_position VARCHAR, winning_driver VARCHAR, grand_prix VARCHAR) |
SELECT COUNT(attendance) FROM table_name_14 WHERE date = "december 11, 1954" | How many were in Attendance on December 11, 1954? | CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR) |
SELECT COUNT(year) FROM table_22834834_3 WHERE score_in_the_final = "6–3, 6–2" | How many years have a final score of 6–3, 6–2? | CREATE TABLE table_22834834_3 (year VARCHAR, score_in_the_final VARCHAR) |
SELECT MAX(round) FROM table_name_91 WHERE position = "tackle" AND player = "fred neilsen" | What is the highest Round that has a Position of Tackle and the Player Fred Neilsen? | CREATE TABLE table_name_91 (round INTEGER, position VARCHAR, player VARCHAR) |
SELECT money___£__ FROM table_name_78 WHERE score = 68 - 71 - 68 - 72 = 279 | How much money does the player with a 68-71-68-72=279 score have? | CREATE TABLE table_name_78 (money___£__ VARCHAR, score VARCHAR) |
SELECT MIN(round) FROM table_name_72 WHERE position = "outside linebacker" | In what round was the first outside linebacker picked? | CREATE TABLE table_name_72 (round INTEGER, position VARCHAR) |
SELECT COUNT(wins) FROM table_name_13 WHERE podiums > 1 AND races = 9 AND season > 1984 | How many wins has a podiums greater than 1 and 9 as the races with a season after 1984? | CREATE TABLE table_name_13 (wins VARCHAR, season VARCHAR, podiums VARCHAR, races VARCHAR) |
SELECT shape FROM table_name_78 WHERE metal = "nickel" AND denomination = "one rupee" | What shape has nickel as the metal, and one rupee as the denomination? | CREATE TABLE table_name_78 (shape VARCHAR, metal VARCHAR, denomination VARCHAR) |
SELECT country FROM table_name_39 WHERE transfer_fee = "—" AND transfer_window = "summer" AND status = "loaned out" AND name = "gonzález" | What country has a Transfer fee of —, and a Transfer window of summer, and the Status of loaned out, and a Name of gonzález? | CREATE TABLE table_name_39 (country VARCHAR, name VARCHAR, status VARCHAR, transfer_fee VARCHAR, transfer_window VARCHAR) |
SELECT drew FROM table_name_23 WHERE played = "9" AND lost = "3" | What is the number of draws when the played 9 and lost 3? | CREATE TABLE table_name_23 (drew VARCHAR, played VARCHAR, lost VARCHAR) |
SELECT MAX(no) FROM table_26914076_2 | Name the most number | CREATE TABLE table_26914076_2 (no INTEGER) |
SELECT date FROM table_name_40 WHERE round = "r3" | What is the date where the round is R3? | CREATE TABLE table_name_40 (date VARCHAR, round VARCHAR) |
SELECT years_at_club FROM table_name_77 WHERE games > 28 AND goals > 225 AND debut_year > 1950 | What is the number of Years at Club for the player who has had more games than 28, more Goals than 225, and his Debut year was after 1950? | CREATE TABLE table_name_77 (years_at_club VARCHAR, debut_year VARCHAR, games VARCHAR, goals VARCHAR) |
SELECT website FROM table_name_53 WHERE city_of_license = "san antonio" AND webcast = "listen live" AND frequency = 680 | Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio. | CREATE TABLE table_name_53 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR) |
SELECT COUNT(*) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = Class_Senator_Vote WHERE T1.Sex = "M" AND T2.Election_Cycle = "Fall" | How many male (sex is M) students have class senator votes in the fall election cycle? | CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR); CREATE TABLE STUDENT (StuID VARCHAR, Sex VARCHAR) |
SELECT T1.title FROM albums AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T2.name = "Balls to the Wall" | What is title of album which track Balls to the Wall belongs to? | CREATE TABLE tracks (genre_id VARCHAR, name VARCHAR); CREATE TABLE albums (title VARCHAR, id VARCHAR) |
SELECT MIN(founded) FROM table_10082596_1 WHERE school = "Lindenwood University" | In what year was Lindenwood University founded? | CREATE TABLE table_10082596_1 (founded INTEGER, school VARCHAR) |
SELECT result FROM table_name_35 WHERE venue = "away" AND opponent = "marbella" | Which result has a Venue of away, and an Opponent of marbella? | CREATE TABLE table_name_35 (result VARCHAR, venue VARCHAR, opponent VARCHAR) |
SELECT segment_d FROM table_15187735_15 WHERE episode = 183 | What was segment D for episode 183? | CREATE TABLE table_15187735_15 (segment_d VARCHAR, episode VARCHAR) |
SELECT set_1 FROM table_name_48 WHERE set_2 = "21:18" | What is Set 1, when Set 2 is "21:18"? | CREATE TABLE table_name_48 (set_1 VARCHAR, set_2 VARCHAR) |
SELECT date FROM table_name_35 WHERE attendance = "71,789" | On what date was the crowd size of 71,789? | CREATE TABLE table_name_35 (date VARCHAR, attendance VARCHAR) |
SELECT MAX(divisional_titles) FROM table_20190834_1 WHERE enrollment = 30049 | What is the most divisional titles won by a school with an enrollment of 30049? | CREATE TABLE table_20190834_1 (divisional_titles INTEGER, enrollment VARCHAR) |
SELECT college FROM table_name_87 WHERE overall > 158 AND name = "travian robertson" | Which college's overall number is more than 158 when Travian Robertson is the name? | CREATE TABLE table_name_87 (college VARCHAR, overall VARCHAR, name VARCHAR) |
SELECT MAX(crowd) FROM table_name_88 WHERE venue = "princes park" | What is the largest crowd at princes park? | CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR) |
SELECT LOCATION, name FROM stadium WHERE capacity BETWEEN 5000 AND 10000 | Show location and name for all stadiums with a capacity between 5000 and 10000. | CREATE TABLE stadium (LOCATION VARCHAR, name VARCHAR, capacity INTEGER) |
SELECT COUNT(rd) FROM table_14016079_1 WHERE circuit = "Hidden Valley Raceway" | What was the number of rounds on the Hidden Valley Raceway? | CREATE TABLE table_14016079_1 (rd VARCHAR, circuit VARCHAR) |
SELECT jockey FROM table_name_75 WHERE owner = "richard pegum" | Who was the jockey when the owner was Richard Pegum? | CREATE TABLE table_name_75 (jockey VARCHAR, owner VARCHAR) |
SELECT event FROM table_name_60 WHERE method = "tko (punches)" AND record = "7-1" | What is the event when the method was tko (punches), and the record was 7-1? | CREATE TABLE table_name_60 (event VARCHAR, method VARCHAR, record VARCHAR) |
SELECT fourth FROM table_name_93 WHERE event = "2008 telstra men's pro" | Who was Fourth in the 2008 Telstra Men's Pro Event? | CREATE TABLE table_name_93 (fourth VARCHAR, event VARCHAR) |
SELECT MIN(year) FROM table_29163303_2 WHERE championship = "US Open (2)" | What is the earliest year in which the result is championship US Open (2)? | CREATE TABLE table_29163303_2 (year INTEGER, championship VARCHAR) |
SELECT MIN(pf) FROM table_1370559_1 | What is the lowest PF? | CREATE TABLE table_1370559_1 (pf INTEGER) |
SELECT season FROM table_name_98 WHERE number_of_contestants > 12 AND winner = "greydis gil" | What season had more than 12 contestants in which greydis gil won? | CREATE TABLE table_name_98 (season VARCHAR, number_of_contestants VARCHAR, winner VARCHAR) |
SELECT MIN(camp_mates) FROM table_14345690_1 | What was the least amount of camp mates? | CREATE TABLE table_14345690_1 (camp_mates INTEGER) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.