answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT COUNT(silver) FROM table_name_36 WHERE rank = "4" AND bronze < 12 | How much Silver has a Rank of 4, and a Bronze smaller than 12? | CREATE TABLE table_name_36 (silver VARCHAR, rank VARCHAR, bronze VARCHAR) |
SELECT name FROM table_name_38 WHERE constituency_number = "48" | What is the name for the constituency at number 48? | CREATE TABLE table_name_38 (name VARCHAR, constituency_number VARCHAR) |
SELECT television_order FROM table_20360535_3 WHERE written_by = "Gail Simone" | What TV order is written by gail simone? | CREATE TABLE table_20360535_3 (television_order VARCHAR, written_by VARCHAR) |
SELECT date FROM table_name_8 WHERE high_points = "suns" AND record = "33–13" | On what date did the Suns have high points with a record of 33–13? | CREATE TABLE table_name_8 (date VARCHAR, high_points VARCHAR, record VARCHAR) |
SELECT time_retired FROM table_name_94 WHERE rider = "simone grotzkyj" | What was the time/retired for the car raced by Simone Grotzkyj? | CREATE TABLE table_name_94 (time_retired VARCHAR, rider VARCHAR) |
SELECT dvd_name FROM table_1067134_1 WHERE region_2 = "August 22, 2010" | What DVD season/name for region 2 was released August 22, 2010? | CREATE TABLE table_1067134_1 (dvd_name VARCHAR, region_2 VARCHAR) |
SELECT category FROM table_26611679_3 WHERE totals = "50" | Name the category for 50 totals | CREATE TABLE table_26611679_3 (category VARCHAR, totals VARCHAR) |
SELECT notes FROM table_name_31 WHERE shirt_printing = "pavv" AND year > 2007 | What are the notes for the shirt that said Pavv after 2007? | CREATE TABLE table_name_31 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR) |
SELECT DISTINCT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes' | Find the states where have some college students in tryout and their decisions are yes. | CREATE TABLE tryout (cName VARCHAR, decision VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) |
SELECT equatorial_diameter FROM table_name_24 WHERE body = "mars" | What is the Equatorial diameter of the Body: Mars? | CREATE TABLE table_name_24 (equatorial_diameter VARCHAR, body VARCHAR) |
SELECT open_1st_viii FROM table_11318462_5 WHERE u15_4th_iv = "GT" | what are all the open 1st viii with u15 4th iv being gt | CREATE TABLE table_11318462_5 (open_1st_viii VARCHAR, u15_4th_iv VARCHAR) |
SELECT date FROM table_name_99 WHERE location_attendance = "madison square garden 19,763" AND high_rebounds = "david lee (12)" | Which Date has a Location Attendance of madison square garden 19,763, and a High rebounds of david lee (12)? | CREATE TABLE table_name_99 (date VARCHAR, location_attendance VARCHAR, high_rebounds VARCHAR) |
SELECT date FROM table_name_21 WHERE home = "detroit" AND visitor = "colorado" | What is the date of the match when Detroit is the home team and Colorado is the visiting team? | CREATE TABLE table_name_21 (date VARCHAR, home VARCHAR, visitor VARCHAR) |
SELECT saturday_shani__saturn_ FROM table_1277350_3 WHERE wednesday_budha__mercury_ = "برھ وار Budh'var" | In language where Wednesday is برھ وار budh'var, what is Saturday? | CREATE TABLE table_1277350_3 (saturday_shani__saturn_ VARCHAR, wednesday_budha__mercury_ VARCHAR) |
SELECT model FROM table_name_44 WHERE graphics = "agp" AND fsb__mhz_ = "400" | Which model(s) has AGP graphics and 400 FSB (MHz)? | CREATE TABLE table_name_44 (model VARCHAR, graphics VARCHAR, fsb__mhz_ VARCHAR) |
SELECT MIN(judging_panel_points) FROM table_26485957_1 | What is the minimum score given in judging panel points? | CREATE TABLE table_26485957_1 (judging_panel_points INTEGER) |
SELECT opponent_in_the_final FROM table_name_48 WHERE outcome = "runner-up" AND date > 1983 | Who is the Opponent in the final after 1983 with an Outcome of runner-up? | CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR) |
SELECT COUNT(*) FROM farm | How many farms are there? | CREATE TABLE farm (Id VARCHAR) |
SELECT constructor FROM table_name_84 WHERE driver = "alexander wurz" | What is the constructor of driver Alexander Wurz? | CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR) |
SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = "Morning" INTERSECT SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = "Night" | find the program owners that have some programs in both morning and night time. | CREATE TABLE broadcast (program_id VARCHAR, Time_of_day VARCHAR); CREATE TABLE program (owner VARCHAR, program_id VARCHAR) |
SELECT arrival FROM table_18365784_3 WHERE departure = "18.16" | What was the arrival time of the train that departed at 18.16? | CREATE TABLE table_18365784_3 (arrival VARCHAR, departure VARCHAR) |
SELECT COUNT(08 AS _a_pts) FROM table_25887826_17 WHERE avg = "1.1863" | How many figures for 08 A points for the team with 1.1863 average? | CREATE TABLE table_25887826_17 (avg VARCHAR) |
SELECT faculty FROM faculty AS T1 JOIN campuses AS T2 ON T1.campus = T2.id WHERE T1.year = 2004 AND T2.campus = "San Francisco State University" | How many faculty lines are there in "San Francisco State University" in year 2004? | CREATE TABLE campuses (id VARCHAR, campus VARCHAR); CREATE TABLE faculty (campus VARCHAR, year VARCHAR) |
SELECT agg FROM table_name_81 WHERE team_1 = "al-hilal" | What is Team 1 Al-Hilal's Agg.? | CREATE TABLE table_name_81 (agg VARCHAR, team_1 VARCHAR) |
SELECT AVG(pick) FROM table_name_49 WHERE college = "purdue" AND round < 5 | WHAT IS THE AVERAGE PICK FOR PURDUE, WITH A ROUND SMALLER THAN 5? | CREATE TABLE table_name_49 (pick INTEGER, college VARCHAR, round VARCHAR) |
SELECT SUM(drawn) FROM table_name_77 WHERE team = "internacional-sp" | Which Drawn has a Team of internacional-sp? | CREATE TABLE table_name_77 (drawn INTEGER, team VARCHAR) |
SELECT AVG(total_medals) FROM table_name_2 WHERE ensemble = "goshen hs" | Name the average total medals with ensemble of goshen hs | CREATE TABLE table_name_2 (total_medals INTEGER, ensemble VARCHAR) |
SELECT high_assists FROM table_name_13 WHERE team = "atlanta" | Who had the most assists in the game against Atlanta? | CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR) |
SELECT loa__metres_ FROM table_25594271_2 WHERE yacht = "Ichi Ban" | What were the LOA metres for the yacht ichi ban? | CREATE TABLE table_25594271_2 (loa__metres_ VARCHAR, yacht VARCHAR) |
SELECT COUNT(date) FROM table_23248869_8 WHERE high_points = "David Lee (30)" | How many times was the high points david lee (30) | CREATE TABLE table_23248869_8 (date VARCHAR, high_points VARCHAR) |
SELECT aircraft AS damage FROM table_name_35 WHERE fatalities = "30/30" | What was the aircraft damage for the accident that had fatalities of 30/30? | CREATE TABLE table_name_35 (aircraft VARCHAR, fatalities VARCHAR) |
SELECT city___state FROM table_name_83 WHERE circuit = "eastern creek raceway" AND winner = "michael donaher" | What is City / State, when Circuit is Eastern Creek Raceway, and when Winner is Michael Donaher? | CREATE TABLE table_name_83 (city___state VARCHAR, circuit VARCHAR, winner VARCHAR) |
SELECT format_s_ FROM table_name_28 WHERE region = "europe" AND catalog = "webb185" | Which formats have a region of Europe and Catalog value of WEBB185? | CREATE TABLE table_name_28 (format_s_ VARCHAR, region VARCHAR, catalog VARCHAR) |
SELECT chassis FROM table_name_93 WHERE rounds = "all" AND tyre = "g" AND driver = "bruce mclaren" | What is the chassis for Bruce Mclaren with all rounds and a g tyre? | CREATE TABLE table_name_93 (chassis VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR) |
SELECT COUNT(spokesperson) FROM table_1992924_3 WHERE year_s_ = 2004 | how many spokesperson where in 2004 | CREATE TABLE table_1992924_3 (spokesperson VARCHAR, year_s_ VARCHAR) |
SELECT AVG(round) FROM table_name_41 WHERE position = "ot" AND college = "tulane" AND overall > 38 | What's the average round for the OT position from tulane college with an overall over 38? | CREATE TABLE table_name_41 (round INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR) |
SELECT team FROM table_24491017_1 WHERE f_laps = 10 | What team was he on when he had 10 f/laps? | CREATE TABLE table_24491017_1 (team VARCHAR, f_laps VARCHAR) |
SELECT MAX(area__km²_) FROM table_298550_1 WHERE capital = "San Juan" | What is the highest value of area when capital is San Juan? | CREATE TABLE table_298550_1 (area__km²_ INTEGER, capital VARCHAR) |
SELECT team FROM table_name_80 WHERE high_points = "rashard lewis , mickaël piétrus (17)" | What is Team, when High Points is "Rashard Lewis , Mickaël Piétrus (17)"? | CREATE TABLE table_name_80 (team VARCHAR, high_points VARCHAR) |
SELECT AVG(week) FROM table_name_56 WHERE result = "l 28–17" | Name the average week for result of l 28–17 | CREATE TABLE table_name_56 (week INTEGER, result VARCHAR) |
SELECT pick FROM table_name_66 WHERE position = "wide receiver" AND name = "johnny holloway" | What pick had a wide receiver named johnny holloway? | CREATE TABLE table_name_66 (pick VARCHAR, position VARCHAR, name VARCHAR) |
SELECT MAX(grid) FROM table_name_75 WHERE driver = "jean alesi" AND laps < 24 | When Jean Alesi had laps less than 24, what was his highest grid? | CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR) |
SELECT country FROM table_name_54 WHERE player = "dow finsterwald" | What is Country, when Player is "Dow Finsterwald"? | CREATE TABLE table_name_54 (country VARCHAR, player VARCHAR) |
SELECT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE T2.course_id IN (SELECT T4.prereq_id FROM course AS T3 JOIN prereq AS T4 ON T3.course_id = T4.course_id WHERE T3.title = 'International Finance') | Find the name of students who have taken the prerequisite course of the course with title International Finance. | CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR) |
SELECT hakhun FROM table_name_11 WHERE tikhak = "ʒu²" | Which Hakhun has a Tikhak of ʒu²? | CREATE TABLE table_name_11 (hakhun VARCHAR, tikhak VARCHAR) |
SELECT MIN(result) FROM table_name_73 WHERE location = "birmingham" AND rank > 5 | What is the smallest Result with a Location of birmingham, and Rank larger than 5? | CREATE TABLE table_name_73 (result INTEGER, location VARCHAR, rank VARCHAR) |
SELECT 4 AS wi FROM table_27922491_20 WHERE economy = "4.17" | How many 4wi were recorded by the player with an economy of 4.17? | CREATE TABLE table_27922491_20 (economy VARCHAR) |
SELECT artist FROM table_name_71 WHERE year = 2005 | What artist was released in 2005? | CREATE TABLE table_name_71 (artist VARCHAR, year VARCHAR) |
SELECT position FROM table_name_56 WHERE home_town = "new york city, ny" | What is the position of the player from New York City, NY? | CREATE TABLE table_name_56 (position VARCHAR, home_town VARCHAR) |
SELECT MAX(year) FROM table_name_12 WHERE runner_s__up = "kathy ahern" | What was the most recent year that Kathy Ahern was a runner-up? | CREATE TABLE table_name_12 (year INTEGER, runner_s__up VARCHAR) |
SELECT rider FROM table_name_96 WHERE team = "lcr honda 600cc" AND time = "59’ 22.80" | What was the Rider of the LCR Honda 600CC Team with a Time of 59’ 22.80? | CREATE TABLE table_name_96 (rider VARCHAR, team VARCHAR, time VARCHAR) |
SELECT career_win_loss FROM table_name_65 WHERE 2008 = "q1" AND tournament = "australian open" | What is the win-loss when 2008 has a value of Q1 at Australian Open? | CREATE TABLE table_name_65 (career_win_loss VARCHAR, tournament VARCHAR) |
SELECT leading_scorer FROM table_11964047_5 WHERE home = "Charlotte Bobcats" | who is the leading scorer where home is charlotte bobcats | CREATE TABLE table_11964047_5 (leading_scorer VARCHAR, home VARCHAR) |
SELECT date FROM table_2267857_1 WHERE year = 2006 | Name the date for 2006 | CREATE TABLE table_2267857_1 (date VARCHAR, year VARCHAR) |
SELECT wins FROM table_name_10 WHERE league = "playoffs" | What is the number of wins in the playoffs league? | CREATE TABLE table_name_10 (wins VARCHAR, league VARCHAR) |
SELECT mascot FROM table_name_50 WHERE county = "10 clark" AND location = "new washington" | What is the mascot of the school in New Washington in 10 Clark county? | CREATE TABLE table_name_50 (mascot VARCHAR, county VARCHAR, location VARCHAR) |
SELECT place FROM table_name_43 WHERE country = "united states" AND to_par = "+2" AND score = 73 - 74 - 71 - 72 = 290 | What place did the golfer from the United States come in with a To Par of +2, and a score of 73-74-71-72=290? | CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR) |
SELECT colors FROM table_15873547_1 WHERE residence_hall = "Howard Hall" | What are the colors of Howard Hall? | CREATE TABLE table_15873547_1 (colors VARCHAR, residence_hall VARCHAR) |
SELECT males FROM table_name_13 WHERE females = "62 331" | What was the number of males that had the number females 62 331? | CREATE TABLE table_name_13 (males VARCHAR, females VARCHAR) |
SELECT date FROM table_name_43 WHERE record = "21-11" | What date was the record 21-11? | CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR) |
SELECT * FROM College ORDER BY enr | List all information about college sorted by enrollment number in the ascending order. | CREATE TABLE College (enr VARCHAR) |
SELECT class FROM table_22824312_1 WHERE player = "Ren Alde" | What class was ren alde? | CREATE TABLE table_22824312_1 (class VARCHAR, player VARCHAR) |
SELECT result FROM table_1342331_6 WHERE incumbent = "Denver S. Church" | What was the result in the election in which the incumbent was Denver S. Church? | CREATE TABLE table_1342331_6 (result VARCHAR, incumbent VARCHAR) |
SELECT date FROM table_name_76 WHERE rating = "1.5" AND event = "johnson vs. moraga" | What is Date, when Rating 1.5, and when Event is Johnson Vs. Moraga? | CREATE TABLE table_name_76 (date VARCHAR, rating VARCHAR, event VARCHAR) |
SELECT wheel_arrangement FROM table_name_95 WHERE number = "6 or 4" | What is the wheel arrangement of the locomotive with number 6 or 4? | CREATE TABLE table_name_95 (wheel_arrangement VARCHAR, number VARCHAR) |
SELECT date FROM table_name_72 WHERE region = "new zealand" | What is the release Date for the Region in New Zealand ? | CREATE TABLE table_name_72 (date VARCHAR, region VARCHAR) |
SELECT MIN(sunlight_hours) FROM table_name_98 WHERE city_town = "ourense" AND days_with_frost > 30 | What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense? | CREATE TABLE table_name_98 (sunlight_hours INTEGER, city_town VARCHAR, days_with_frost VARCHAR) |
SELECT total FROM table_1354805_3 WHERE number_of_dances = 11 AND competition_finish > 2.0 | What is the Number of dances is 11 and competition finish is larger than 2.0 total | CREATE TABLE table_1354805_3 (total VARCHAR, number_of_dances VARCHAR, competition_finish VARCHAR) |
SELECT opponents_in_the_final FROM table_name_19 WHERE surface = "hard" AND date = "january 5, 2003" | Who was the opponents in the final on January 5, 2003, on a hard surface? | CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) |
SELECT score FROM table_name_72 WHERE couple = "shannon & derek" | What was the score when the couple was shannon & derek? | CREATE TABLE table_name_72 (score VARCHAR, couple VARCHAR) |
SELECT nfl_recap FROM table_name_1 WHERE record = "1–3" | Which NFL Recap had a Record of 1–3? | CREATE TABLE table_name_1 (nfl_recap VARCHAR, record VARCHAR) |
SELECT COUNT(result) FROM table_10646790_2 WHERE record = "0-4" | How many results are there for the 0-4 record? | CREATE TABLE table_10646790_2 (result VARCHAR, record VARCHAR) |
SELECT winning_driver FROM table_25322130_3 WHERE date = "20 April" | Name the winning driver for 20 april | CREATE TABLE table_25322130_3 (winning_driver VARCHAR, date VARCHAR) |
SELECT MIN(lost) FROM table_15405904_1 WHERE position = 2 | When the position is 2 what is the number lost? | CREATE TABLE table_15405904_1 (lost INTEGER, position VARCHAR) |
SELECT date FROM table_name_55 WHERE attendance > 62 OFFSET 491 | What is the date of the game with an attendance larger than 62,491? | CREATE TABLE table_name_55 (date VARCHAR, attendance INTEGER) |
SELECT party FROM table_1341423_23 WHERE incumbent = "Jim Ramstad" | What party does jim ramstad represent? | CREATE TABLE table_1341423_23 (party VARCHAR, incumbent VARCHAR) |
SELECT circuit FROM table_name_30 WHERE round > 5 | Which circuit had a round larger than 5? | CREATE TABLE table_name_30 (circuit VARCHAR, round INTEGER) |
SELECT AVG(bronze) FROM table_name_18 WHERE silver = 0 AND total < 1 | What is the average value of Bronze when silver is 0 and the total is less than 1? | CREATE TABLE table_name_18 (bronze INTEGER, silver VARCHAR, total VARCHAR) |
SELECT 1989 FROM table_name_94 WHERE 1986 = "nh" | What is the 1989 result of the tournament in which Katerina finished nh in 1986? | CREATE TABLE table_name_94 (Id VARCHAR) |
SELECT hometown FROM table_1825751_14 WHERE pageant = "Miss Global Teen" | Where is the miss global teen? | CREATE TABLE table_1825751_14 (hometown VARCHAR, pageant VARCHAR) |
SELECT report FROM table_10725629_2 WHERE pole_position = "Michael Andretti" AND winning_team = "Galles-Kraco Racing" | In which reports does Michael Andretti have the pole position and Galles-Kraco Racing is the winning team? | CREATE TABLE table_10725629_2 (report VARCHAR, pole_position VARCHAR, winning_team VARCHAR) |
SELECT MAX(taijijian) FROM table_name_20 WHERE taijiquan = 9.87 AND total < 19.77 | What is the highest taijijian with a 9.87 taijiquan and a total less than 19.77? | CREATE TABLE table_name_20 (taijijian INTEGER, taijiquan VARCHAR, total VARCHAR) |
SELECT SUM(total) FROM table_name_69 WHERE free = 47.667 AND technical < 47.417 | What is the total for the person with free of 47.667, and technical less than 47.417? | CREATE TABLE table_name_69 (total INTEGER, free VARCHAR, technical VARCHAR) |
SELECT T2.name, T2.country FROM exhibition AS T1 JOIN artist AS T2 ON T1.artist_id = T2.artist_id GROUP BY T1.artist_id ORDER BY COUNT(*) DESC LIMIT 1 | What is the name and country for the artist with most number of exhibitions? | CREATE TABLE exhibition (artist_id VARCHAR); CREATE TABLE artist (name VARCHAR, country VARCHAR, artist_id VARCHAR) |
SELECT MIN(no_in_season) FROM table_23242950_1 WHERE us_viewers__millions_ = "6.64" | What's the season number of the episode originally seen by 6.64 million people in the US? | CREATE TABLE table_23242950_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR) |
SELECT district FROM table_2160008_4 WHERE reason_for_change = "Died July 4, 1939" | Name the district for reason for change being died july 4, 1939 | CREATE TABLE table_2160008_4 (district VARCHAR, reason_for_change VARCHAR) |
SELECT record FROM table_27755784_6 WHERE date = "November 10" | What was the record after the game on November 10? | CREATE TABLE table_27755784_6 (record VARCHAR, date VARCHAR) |
SELECT fielding_team FROM table_11303072_5 WHERE runs = "155" | What is the fielding team with 155 runs? | CREATE TABLE table_11303072_5 (fielding_team VARCHAR, runs VARCHAR) |
SELECT kicks FROM table_name_61 WHERE games = "7" | How many kicks did he get in the year when he played 7 games? | CREATE TABLE table_name_61 (kicks VARCHAR, games VARCHAR) |
SELECT race FROM table_name_20 WHERE date = "31st may 1953" AND event = "grand prix de l'albigeois final" | Which Race has a Date of 31st may 1953, and an Event of grand prix de l'albigeois final? | CREATE TABLE table_name_20 (race VARCHAR, date VARCHAR, event VARCHAR) |
SELECT capital FROM table_name_7 WHERE area_in_1000km²__1930_ = "20,4" | tell me the name of the capital with an area of 20,4. | CREATE TABLE table_name_7 (capital VARCHAR, area_in_1000km²__1930_ VARCHAR) |
SELECT Famous_Title, Age FROM artist ORDER BY Age DESC | Please list the age and famous title of artists in descending order of age. | CREATE TABLE artist (Famous_Title VARCHAR, Age VARCHAR) |
SELECT record FROM table_name_70 WHERE indoor_year = "1978" | indoor year is 1978, what is the record? | CREATE TABLE table_name_70 (record VARCHAR, indoor_year VARCHAR) |
SELECT thurs_26_aug FROM table_26986076_2 WHERE wed_25_aug = "19' 59.98 113.192mph" | What is thurs 26 aug when wed 25 aug is 19' 59.98 113.192mph? | CREATE TABLE table_26986076_2 (thurs_26_aug VARCHAR, wed_25_aug VARCHAR) |
SELECT away_team AS score FROM table_name_5 WHERE away_team = "south melbourne" | What was South Melbourne's score when they played as the away team? | CREATE TABLE table_name_5 (away_team VARCHAR) |
SELECT province FROM table_name_7 WHERE iata = "wnz" | WHich province has an IATA of WNZ? | CREATE TABLE table_name_7 (province VARCHAR, iata VARCHAR) |
SELECT yield FROM table_name_69 WHERE purpose = "weapons development" AND location = "nts area u2r" | What is the yield in NTS Area U2R when the purpose is weapons development? | CREATE TABLE table_name_69 (yield VARCHAR, purpose VARCHAR, location VARCHAR) |
SELECT COUNT(high_points) FROM table_27722408_6 WHERE score = "L 87–89 (OT)" | How many entries are shown for high points when the score was l 87–89 (ot)? | CREATE TABLE table_27722408_6 (high_points VARCHAR, score VARCHAR) |
SELECT winning_score FROM table_name_46 WHERE tournament = "standard register ping" AND runner_s__up = "kelly robbins" | What is the winning score of standard register ping tournament, which has Kelly Robbins as the runner-up? | CREATE TABLE table_name_46 (winning_score VARCHAR, tournament VARCHAR, runner_s__up VARCHAR) |
SELECT MIN(track) FROM table_name_67 WHERE song_title = "little sister" | Name the least track with song of little sister | CREATE TABLE table_name_67 (track INTEGER, song_title VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.