answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT MIN(bronze_medals) FROM table_name_27 WHERE gold_medals > 3 AND ensemble = "music city mystique" AND total_medals < 15 | What is the lowest amount of bronze medals won by Music City Mystique where they won more than 3 gold medals and less than 15 total medals? | CREATE TABLE table_name_27 (bronze_medals INTEGER, total_medals VARCHAR, gold_medals VARCHAR, ensemble VARCHAR) |
SELECT nation FROM table_name_30 WHERE penalty_points < 40.2 AND judge_e = "82.22" | what is the nation when the penalty points is less than 40.2 and judge e is 82.22? | CREATE TABLE table_name_30 (nation VARCHAR, penalty_points VARCHAR, judge_e VARCHAR) |
SELECT us_viewers__millions_ FROM table_17482534_1 WHERE written_by = "Warren Lieberstein & Halsted Sullivan" | How many viewers did the episode written by Warren Lieberstein & Halsted Sullivan have? | CREATE TABLE table_17482534_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR) |
SELECT gdp_per_capita FROM table_2249029_1 WHERE gdp_world_rank = "131" | Name the gdp per capita for world rank being 131 | CREATE TABLE table_2249029_1 (gdp_per_capita VARCHAR, gdp_world_rank VARCHAR) |
SELECT framed_size FROM table_15070195_1 WHERE nickname = "Robot Black" | for the robot black nickname, what framed size is used | CREATE TABLE table_15070195_1 (framed_size VARCHAR, nickname VARCHAR) |
SELECT SUM(killed) FROM table_name_4 WHERE injured = "15" AND year < 1987 | How many kills have 15 as the injured, with a year prior to 1987? | CREATE TABLE table_name_4 (killed INTEGER, injured VARCHAR, year VARCHAR) |
SELECT explosion FROM table_148578_1 WHERE altitude__km_ = "539" | What explosion had an altitude of 539 km? | CREATE TABLE table_148578_1 (explosion VARCHAR, altitude__km_ VARCHAR) |
SELECT COUNT(director_s_) FROM table_14928423_1 WHERE original_title = "Мајки" | how many directors for the film мајки | CREATE TABLE table_14928423_1 (director_s_ VARCHAR, original_title VARCHAR) |
SELECT COUNT(socket) FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-2xx7M" | How many sockets are listed that have a brand name of "Core i3-2xx7m"? | CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR) |
SELECT time_retired FROM table_name_93 WHERE constructor = "toyota" AND grid = 5 | What is the time/retired with a toyota constructor and a 5 grid? | CREATE TABLE table_name_93 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR) |
SELECT order_shipping_charges, customer_id FROM customer_orders WHERE order_status_code = 'Cancelled' OR order_status_code = 'Paid' | Show the shipping charge and customer id for customer orders with order status Cancelled or Paid. | CREATE TABLE customer_orders (order_shipping_charges VARCHAR, customer_id VARCHAR, order_status_code VARCHAR) |
SELECT country FROM table_name_99 WHERE city = "sydney" | What country has the city, Sydney? | CREATE TABLE table_name_99 (country VARCHAR, city VARCHAR) |
SELECT policy_type_code FROM policies GROUP BY policy_type_code HAVING COUNT(*) > 2 | Find all the policy types that are used by more than 2 customers. | CREATE TABLE policies (policy_type_code VARCHAR) |
SELECT tournament_winner FROM table_24248450_3 WHERE conference = "Atlantic Sun conference" | Who won the tournament for the Atlantic Sun Conference? | CREATE TABLE table_24248450_3 (tournament_winner VARCHAR, conference VARCHAR) |
SELECT captain FROM table_name_23 WHERE year = "1774" AND guns = "14" | Tell me the captain for 1774 and guns of 14 | CREATE TABLE table_name_23 (captain VARCHAR, year VARCHAR, guns VARCHAR) |
SELECT MAX(year_left) FROM table_name_3 WHERE conference_joined = "sagamore" AND year_joined > 1942 | What's the highest Year Left that's got a Conference Joined of Sagamore with a Year Joined larger than 1942? | CREATE TABLE table_name_3 (year_left INTEGER, conference_joined VARCHAR, year_joined VARCHAR) |
SELECT COUNT(venue) FROM table_24850630_3 WHERE race = "Mackinnon Stakes" | The MacKinnon Stakes races took place on how many venues? | CREATE TABLE table_24850630_3 (venue VARCHAR, race VARCHAR) |
SELECT song_title FROM table_name_26 WHERE genre = "glam" | what song is a genre of glam | CREATE TABLE table_name_26 (song_title VARCHAR, genre VARCHAR) |
SELECT isbn_us FROM table_name_72 WHERE title = "crisis in space" | What is ISBN US, when Title is "Crisis In Space"? | CREATE TABLE table_name_72 (isbn_us VARCHAR, title VARCHAR) |
SELECT team_1 FROM table_name_84 WHERE team_2 = "saint louis" | What is Team 1, when Team 2 is Saint Louis? | CREATE TABLE table_name_84 (team_1 VARCHAR, team_2 VARCHAR) |
SELECT discoverer_s_ FROM table_name_41 WHERE aphelion__au_ > 97 AND year_discovered = 2004 | Who was the discoverer of the object with an Aphelion above 97 in 2004? | CREATE TABLE table_name_41 (discoverer_s_ VARCHAR, aphelion__au_ VARCHAR, year_discovered VARCHAR) |
SELECT COUNT(round) FROM table_name_84 WHERE school_club_team = "north carolina" AND pick > 131 | Which Round has a School/Club Team of north carolina, and a Pick larger than 131? | CREATE TABLE table_name_84 (round VARCHAR, school_club_team VARCHAR, pick VARCHAR) |
SELECT record FROM table_name_98 WHERE visitor = "chicago" | What was the record when chicago was the visiting team? | CREATE TABLE table_name_98 (record VARCHAR, visitor VARCHAR) |
SELECT home FROM table_name_18 WHERE date = "14 december 2002" | WHich Home is on 14 december 2002? | CREATE TABLE table_name_18 (home VARCHAR, date VARCHAR) |
SELECT DISTINCT T1.Advisor FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.Treasurer_Vote WHERE T2.Election_Cycle = "Spring" | Find the distinct Advisor of students who have treasurer votes in the spring election cycle. | CREATE TABLE STUDENT (Advisor VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (Treasurer_Vote VARCHAR, Election_Cycle VARCHAR) |
SELECT MAX(stolen_ends) FROM table_name_54 WHERE skip = "ludmila privivkova" | What is the highest Stolen Ends when ludmila privivkova shows for skip? | CREATE TABLE table_name_54 (stolen_ends INTEGER, skip VARCHAR) |
SELECT method FROM table_name_99 WHERE date_of_execution = "december 27, 1827" AND name = "kewaubis" | In what way was Kewaubis executed on December 27, 1827? | CREATE TABLE table_name_99 (method VARCHAR, date_of_execution VARCHAR, name VARCHAR) |
SELECT george_h_w_bush FROM table_name_84 WHERE result = "no opinion" | What percent of respondents had no opinion on George H.W. Bush? | CREATE TABLE table_name_84 (george_h_w_bush VARCHAR, result VARCHAR) |
SELECT Leading AS scorer FROM table_name_59 WHERE opponent = "@ seattle" AND record = "14-16" | Which Leading Scorer has an Opponent of @ seattle, and a Record of 14-16? | CREATE TABLE table_name_59 (Leading VARCHAR, opponent VARCHAR, record VARCHAR) |
SELECT MAX(saffir_simpson_category) FROM table_15416002_1 | What is the maximum number for the Saffir-Simpson category in the Carvill Hurricane Index? | CREATE TABLE table_15416002_1 (saffir_simpson_category INTEGER) |
SELECT rank___number_ FROM table_name_86 WHERE air_date = "may 19, 2009" | What is the rank for the show aired on May 19, 2009? | CREATE TABLE table_name_86 (rank___number_ VARCHAR, air_date VARCHAR) |
SELECT team FROM table_name_97 WHERE date = "january 20" | What is the Team on January 20? | CREATE TABLE table_name_97 (team VARCHAR, date VARCHAR) |
SELECT starring FROM table_24212608_1 WHERE episode = 3 | Who starred in episode 3? | CREATE TABLE table_24212608_1 (starring VARCHAR, episode VARCHAR) |
SELECT semifinal__week_ FROM table_28180840_15 WHERE age_s_ = "29" | How many performers are 29 that made it to the semi finals? | CREATE TABLE table_28180840_15 (semifinal__week_ VARCHAR, age_s_ VARCHAR) |
SELECT name FROM table_name_9 WHERE moving_from = "1. fc nürnberg" | Name the name that has moving of 1. fc nürnberg. | CREATE TABLE table_name_9 (name VARCHAR, moving_from VARCHAR) |
SELECT T2.name FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'Math' ORDER BY T3.tot_cred | Find the name of instructors who are advisors of the students from the Math department, and sort the results by students' total credit. | CREATE TABLE student (id VARCHAR, dept_name VARCHAR, tot_cred VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) |
SELECT fcc_info FROM table_name_96 WHERE frequency_mhz = 100.7 | Which FCC info has a Frequency MHz of 100.7? | CREATE TABLE table_name_96 (fcc_info VARCHAR, frequency_mhz VARCHAR) |
SELECT position FROM table_name_59 WHERE date_of_birth__age_ = "example" AND player = "mark spencer" | What is Postition, when Date of Birth (Age) is Example, and when Player is Mark Spencer? | CREATE TABLE table_name_59 (position VARCHAR, date_of_birth__age_ VARCHAR, player VARCHAR) |
SELECT highest FROM table_21824695_8 WHERE team = "Pohang Steelers" | What is the highest when pohang steelers is the team? | CREATE TABLE table_21824695_8 (highest VARCHAR, team VARCHAR) |
SELECT COUNT(hangul_chosongul) FROM table_160510_5 WHERE area = "8,352" | Name the total number of hangul chosongul for 8,352 | CREATE TABLE table_160510_5 (hangul_chosongul VARCHAR, area VARCHAR) |
SELECT screen_size, pixels FROM table_name_69 WHERE model = "s6400" | Tell me the screen size for pixels of model s6400 | CREATE TABLE table_name_69 (screen_size VARCHAR, pixels VARCHAR, model VARCHAR) |
SELECT MAX(ansi_code) FROM table_18600760_7 WHERE pop__2010_ = 1858 | If the population is 1858, what is the maximum ansi code? | CREATE TABLE table_18600760_7 (ansi_code INTEGER, pop__2010_ VARCHAR) |
SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = "21st" | Which T.C. has a Year larger than 2007, and a D.C. of 21st? | CREATE TABLE table_name_26 (tc VARCHAR, year VARCHAR, dc VARCHAR) |
SELECT years FROM table_name_43 WHERE jersey_number_s_ = "5" | What is Years, when Jersey Number(s) is 5? | CREATE TABLE table_name_43 (years VARCHAR, jersey_number_s_ VARCHAR) |
SELECT COUNT(founded) FROM table_10082596_1 WHERE location = "Bloomington, IN" | How many schools are in Bloomington, IN? | CREATE TABLE table_10082596_1 (founded VARCHAR, location VARCHAR) |
SELECT COUNT(passed) FROM table_256286_40 WHERE yes_votes = 390338 | How many votes passed are listed on the measure that had 390338 yes votes? | CREATE TABLE table_256286_40 (passed VARCHAR, yes_votes VARCHAR) |
SELECT location FROM table_name_23 WHERE name_of_mill = "moulin bertrand" | What is the Location of the Moulin Bertrand Mill? | CREATE TABLE table_name_23 (location VARCHAR, name_of_mill VARCHAR) |
SELECT country FROM table_15887683_6 WHERE television_service = "Sky Primafila 7 HD" | Name the country for sky primafila 7 hd | CREATE TABLE table_15887683_6 (country VARCHAR, television_service VARCHAR) |
SELECT film FROM table_name_27 WHERE year = "1999" | What film was made in 1999? | CREATE TABLE table_name_27 (film VARCHAR, year VARCHAR) |
SELECT MAX(round) FROM table_name_6 WHERE name = "donnie caraway" | What is the highest round number for donnie caraway? | CREATE TABLE table_name_6 (round INTEGER, name VARCHAR) |
SELECT COUNT(course_id) FROM Student_Course_Enrolment | How many distinct courses are enrolled in by students? | CREATE TABLE Student_Course_Enrolment (course_id VARCHAR) |
SELECT AVG(laps) FROM table_name_5 WHERE driver = "bob wollek" | How many Laps did Bob Wollek have? | CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR) |
SELECT school FROM table_16295365_1 WHERE conference = "Patriot" | Which qualifying schools were in the Patriot conference? | CREATE TABLE table_16295365_1 (school VARCHAR, conference VARCHAR) |
SELECT operator_s_ FROM table_name_96 WHERE reserves = "100 bbbl" | Which operator has a Reserve of 100 bbbl? | CREATE TABLE table_name_96 (operator_s_ VARCHAR, reserves VARCHAR) |
SELECT week_11_nov_16 FROM table_name_50 WHERE week_13_nov_30 = "wisconsin (10-1)" | What is the week 11 nov 16 standing with wisconsin (10-1) on week 13 Nov 30? | CREATE TABLE table_name_50 (week_11_nov_16 VARCHAR, week_13_nov_30 VARCHAR) |
SELECT song FROM table_name_72 WHERE draw < 4 AND percentage = "32.22%" | What Song has a Draw of less than 4 with a Percentage of 32.22%? | CREATE TABLE table_name_72 (song VARCHAR, draw VARCHAR, percentage VARCHAR) |
SELECT ga_date FROM table_10818465_1 WHERE processor_frequency = "1.0, 1.2, 1.4GHz" | What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have? | CREATE TABLE table_10818465_1 (ga_date VARCHAR, processor_frequency VARCHAR) |
SELECT date FROM table_name_98 WHERE tie_no = "6" | What is the date when tie number is 6? | CREATE TABLE table_name_98 (date VARCHAR, tie_no VARCHAR) |
SELECT engine FROM table_name_91 WHERE notes = "srt8" | What is then engine when the notes state srt8? | CREATE TABLE table_name_91 (engine VARCHAR, notes VARCHAR) |
SELECT friday FROM table_18173916_8 WHERE monday = "515 The Adventures of Tintin" | which episode was Transmitted on friday if the episode of "515 the adventures of tintin" was transmitted on monday? | CREATE TABLE table_18173916_8 (friday VARCHAR, monday VARCHAR) |
SELECT region FROM table_name_16 WHERE city = "philadelphia" | What region is the city of Philadelphia located in? | CREATE TABLE table_name_16 (region VARCHAR, city VARCHAR) |
SELECT race FROM table_name_61 WHERE position = "5th" | What race is in the 5th position? | CREATE TABLE table_name_61 (race VARCHAR, position VARCHAR) |
SELECT MIN(points) FROM table_14342592_4 WHERE player = "Patrick" | Name the least points for patrick | CREATE TABLE table_14342592_4 (points INTEGER, player VARCHAR) |
SELECT COUNT(grid) FROM table_name_98 WHERE time_retired = "gearbox" AND laps < 3 | How many grids have a Time/Retired of gearbox, and Laps smaller than 3? | CREATE TABLE table_name_98 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR) |
SELECT COUNT(DISTINCT dept_address), school_code FROM department GROUP BY school_code | How many different locations does each school have? | CREATE TABLE department (school_code VARCHAR, dept_address VARCHAR) |
SELECT away_team FROM table_name_16 WHERE home_team = "richmond" | What away team is the home team richmond? | CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR) |
SELECT SUM(gold) FROM table_name_34 WHERE bronze = 0 AND total > 1 AND nation = "chad" AND silver > 0 | How many golds have a Bronze of 0, a Total larger than 1, a Nation of chad, and a Silver larger than 0? | CREATE TABLE table_name_34 (gold INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR) |
SELECT COUNT(average) FROM table_26611679_3 WHERE category = "Steals per game" | Name the number of average for steals per game | CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR) |
SELECT venue FROM table_name_67 WHERE date = "7,8,10,11 feb 1908" | What was the venue for the dates 7,8,10,11 Feb 1908? | CREATE TABLE table_name_67 (venue VARCHAR, date VARCHAR) |
SELECT nationality FROM table_name_74 WHERE player = "tom boswell" | What is the nationality of the player Tom Boswell? | CREATE TABLE table_name_74 (nationality VARCHAR, player VARCHAR) |
SELECT position FROM table_name_70 WHERE overall = 45 | What is the position of the player with an overall of 45? | CREATE TABLE table_name_70 (position VARCHAR, overall VARCHAR) |
SELECT opponent FROM table_name_46 WHERE record = "66-69" | What is the name of the opponent that has a record of 66-69? | CREATE TABLE table_name_46 (opponent VARCHAR, record VARCHAR) |
SELECT airport FROM table_name_55 WHERE country = "china" AND icao = "zbaa" | What airport is in China with an ICAO of zbaa? | CREATE TABLE table_name_55 (airport VARCHAR, country VARCHAR, icao VARCHAR) |
SELECT date FROM table_name_8 WHERE crowd > 17 OFFSET 000 | On what Date is the Crowd larger than 17,000? | CREATE TABLE table_name_8 (date VARCHAR, crowd INTEGER) |
SELECT Denomination FROM school WHERE Founded < 1890 INTERSECT SELECT Denomination FROM school WHERE Founded > 1900 | Show the denomination shared by schools founded before 1890 and schools founded after 1900 | CREATE TABLE school (Denomination VARCHAR, Founded INTEGER) |
SELECT team FROM table_name_94 WHERE podiums = "0" AND position = "nc†" | Which Team has Podiums of 0, and a Position of nc†? | CREATE TABLE table_name_94 (team VARCHAR, podiums VARCHAR, position VARCHAR) |
SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA343L" | What are the original air date(s) for episodes with production code ipea343l? | CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) |
SELECT college_junior_club_team FROM table_name_6 WHERE pick__number = "16" | To which college/junior/club team did the player that was Pick 16 belong? | CREATE TABLE table_name_6 (college_junior_club_team VARCHAR, pick__number VARCHAR) |
SELECT result FROM table_name_89 WHERE week > 14 AND opponent = "dallas cowboys" | Where week is greater than 14 and Opponent is Dallas Cowboys, what is the result? | CREATE TABLE table_name_89 (result VARCHAR, week VARCHAR, opponent VARCHAR) |
SELECT T2.dept_name FROM course AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.crs_description LIKE '%Statistics%' | Find the name of department that offers the class whose description has the word "Statistics". | CREATE TABLE course (dept_code VARCHAR, crs_description VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR) |
SELECT MAX(no_in_series) FROM table_20726262_2 WHERE writtenby = "Kurt Sutter & Jack LoGiudice" | What number episode was written by kurt sutter & jack logiudice? | CREATE TABLE table_20726262_2 (no_in_series INTEGER, writtenby VARCHAR) |
SELECT AVG(wins) FROM table_name_51 WHERE losses < 1 | For the teams that had less than 1 loss, what was the average number of Wins? | CREATE TABLE table_name_51 (wins INTEGER, losses INTEGER) |
SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "serena williams venus williams" AND surface = "hard" | What was the outcome when the oppenent was serena williams venus williams and had a hard surface? | CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR, surface VARCHAR) |
SELECT institution FROM table_261895_1 WHERE type = "Private/United Church of Christ" | which institutions can be categorized as private/united church of christ? | CREATE TABLE table_261895_1 (institution VARCHAR, type VARCHAR) |
SELECT 1988 FROM table_name_32 WHERE 1994 = "10–6" | What shows for 1988 when 1994 shows 10–6? | CREATE TABLE table_name_32 (Id VARCHAR) |
SELECT player FROM table_name_43 WHERE height = 1.92 AND current_club = "montepaschi siena" | Who is 1.92 m tall and a current club member of Montepaschi Siena | CREATE TABLE table_name_43 (player VARCHAR, height VARCHAR, current_club VARCHAR) |
SELECT problem_log_id, log_entry_description FROM problem_log | List all the log ids and their descriptions from the problem logs. | CREATE TABLE problem_log (problem_log_id VARCHAR, log_entry_description VARCHAR) |
SELECT COUNT(year) FROM table_name_4 WHERE wins < 2 AND class = "50cc" AND points = 15 | Tell me the total number of years for wins less than 2 and class of 50cc with points of 15 | CREATE TABLE table_name_4 (year VARCHAR, points VARCHAR, wins VARCHAR, class VARCHAR) |
SELECT diameter__km_ FROM table_16799784_8 WHERE longitude = "40.2E" | What is the diameter in km of the feature with a longitude of 40.2E? | CREATE TABLE table_16799784_8 (diameter__km_ VARCHAR, longitude VARCHAR) |
SELECT institution FROM table_261954_1 WHERE nickname = "WildCats" | What is every institution with the nickname of Wildcats? | CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR) |
SELECT points_against FROM table_17510803_2 WHERE lost = "13" | How many points against have a lose of 13? | CREATE TABLE table_17510803_2 (points_against VARCHAR, lost 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(points) FROM table_name_69 WHERE year > 1966 | How many points have a Year larger than 1966? | CREATE TABLE table_name_69 (points VARCHAR, year INTEGER) |
SELECT place FROM table_name_86 WHERE score = 72 - 70 - 72 = 214 | What is the Place of the Player with a Score of 72-70-72=214? | CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR) |
SELECT MIN(year) FROM table_name_69 WHERE venue = "gothenburg, sweden" | When is the earliest year the venue is in gothenburg, sweden? | CREATE TABLE table_name_69 (year INTEGER, venue VARCHAR) |
SELECT MIN(rank) FROM table_name_3 WHERE bronze = 3 AND total > 10 | What is the lowest rank for Spain when more than 10 medals were won, 3 of which were bronze? | CREATE TABLE table_name_3 (rank INTEGER, bronze VARCHAR, total VARCHAR) |
SELECT COUNT(lane) FROM table_name_88 WHERE time = "2:01.51" AND rank < 4 | How many lanes had a rank smaller than 4 and a time of 2:01.51? | CREATE TABLE table_name_88 (lane VARCHAR, time VARCHAR, rank VARCHAR) |
SELECT authority FROM table_name_21 WHERE gender = "coed" AND decile < 6 AND area = "merivale" | Which Authority has a Gender of coed, a Decile smaller than 6, and an Area of merivale? | CREATE TABLE table_name_21 (authority VARCHAR, area VARCHAR, gender VARCHAR, decile VARCHAR) |
SELECT COUNT(cover_model) FROM table_1566852_7 WHERE centerfold_model = "Stephanie Larimore" | HOW MANY MODELS WERE ON THE COVER OF THE ISSUE WHERE THE CENTERFOLD WAS STEPHANIE LARIMORE? | CREATE TABLE table_1566852_7 (cover_model VARCHAR, centerfold_model VARCHAR) |
SELECT netscape FROM table_name_45 WHERE firefox = "21.67%" | What percentage of users were using Netscape during the period in which 21.67% were using Firefox? | CREATE TABLE table_name_45 (netscape VARCHAR, firefox VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.