question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the 2FM for SW Ireland?
CREATE TABLE table_name_91 (service_area VARCHAR)
SELECT 2 AS fm__mhz_ FROM table_name_91 WHERE service_area = "sw ireland"
Name Event of Medal of gold and a Name of duncan white?
CREATE TABLE table_name_18 (event VARCHAR, medal VARCHAR, name VARCHAR)
SELECT event FROM table_name_18 WHERE medal = "gold" AND name = "duncan white"
Name the Event of the Games of 1950 auckland and a Medal of bronze?
CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR, medal VARCHAR)
SELECT event FROM table_name_60 WHERE games = "1950 auckland" AND medal = "bronze"
Which Medal has a Name of alex obeyesekera?
CREATE TABLE table_name_14 (medal VARCHAR, name VARCHAR)
SELECT medal FROM table_name_14 WHERE name = "alex obeyesekera"
Which Event has a Medal of gold and a Name of barney henricus?
CREATE TABLE table_name_69 (event VARCHAR, medal VARCHAR, name VARCHAR)
SELECT event FROM table_name_69 WHERE medal = "gold" AND name = "barney henricus"
Name the Event of sudesh peiris?
CREATE TABLE table_name_93 (event VARCHAR, name VARCHAR)
SELECT event FROM table_name_93 WHERE name = "sudesh peiris"
What year was the developer(s) Bioware?
CREATE TABLE table_name_59 (year INTEGER, developer_s_ VARCHAR)
SELECT AVG(year) FROM table_name_59 WHERE developer_s_ = "bioware"
What is the genre for 2009 on Playstation 3?
CREATE TABLE table_name_9 (genre VARCHAR, year VARCHAR, platform_s_ VARCHAR)
SELECT genre FROM table_name_9 WHERE year > 2009 AND platform_s_ = "playstation 3"
Which result has a recipients and nominees of outstanding achievement in drama with 1995 as the year?
CREATE TABLE table_name_87 (result VARCHAR, recipients_and_nominees VARCHAR, year VARCHAR)
SELECT result FROM table_name_87 WHERE recipients_and_nominees = "outstanding achievement in drama" AND year = 1995
What recipients and nominees have outstanding achievement in drama as the category with 1994 as the year?
CREATE TABLE table_name_93 (recipients_and_nominees VARCHAR, category VARCHAR, year VARCHAR)
SELECT recipients_and_nominees FROM table_name_93 WHERE category = "outstanding achievement in drama" AND year = 1994
What result has outstanding achievement in drama, as the role/episode with a year prior to 1995?
CREATE TABLE table_name_48 (result VARCHAR, role_episode VARCHAR, year VARCHAR)
SELECT result FROM table_name_48 WHERE role_episode = "outstanding achievement in drama" AND year < 1995
What is the total for Danny Pinheiro Rodrigues ( fra ), in a Position smaller than 7?
CREATE TABLE table_name_37 (total INTEGER, gymnast VARCHAR, position VARCHAR)
SELECT AVG(total) FROM table_name_37 WHERE gymnast = "danny pinheiro rodrigues ( fra )" AND position < 7
What is the total for Chen Yibing ( chn ), when his B Score was smaller than 9.225?
CREATE TABLE table_name_87 (total VARCHAR, gymnast VARCHAR, b_score VARCHAR)
SELECT COUNT(total) FROM table_name_87 WHERE gymnast = "chen yibing ( chn )" AND b_score < 9.225
What is the A Score when the B Score is more than 9.05, and the total is less than 16.525?
CREATE TABLE table_name_54 (a_score VARCHAR, b_score VARCHAR, total VARCHAR)
SELECT COUNT(a_score) FROM table_name_54 WHERE b_score > 9.05 AND total < 16.525
What is the position for Oleksandr Vorobiov ( ukr ), when the total was larger than 16.25?
CREATE TABLE table_name_58 (position VARCHAR, gymnast VARCHAR, total VARCHAR)
SELECT COUNT(position) FROM table_name_58 WHERE gymnast = "oleksandr vorobiov ( ukr )" AND total > 16.25
What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75?
CREATE TABLE table_name_40 (total INTEGER, gymnast VARCHAR, b_score VARCHAR)
SELECT SUM(total) FROM table_name_40 WHERE gymnast = "robert stanescu ( rou )" AND b_score > 8.75
Poland has what notes?
CREATE TABLE table_name_75 (notes VARCHAR, country VARCHAR)
SELECT notes FROM table_name_75 WHERE country = "poland"
What is Croatia's rank?
CREATE TABLE table_name_85 (rank VARCHAR, country VARCHAR)
SELECT rank FROM table_name_85 WHERE country = "croatia"
When rank is 5, what is the rowers?
CREATE TABLE table_name_32 (rowers VARCHAR, rank VARCHAR)
SELECT rowers FROM table_name_32 WHERE rank = 5
What is the average rank for Denmark?
CREATE TABLE table_name_33 (rank INTEGER, country VARCHAR)
SELECT AVG(rank) FROM table_name_33 WHERE country = "denmark"
What is the end of the term for Kadima that started on 18 January 2006?
CREATE TABLE table_name_6 (term_end VARCHAR, party VARCHAR, term_start VARCHAR)
SELECT term_end FROM table_name_6 WHERE party = "kadima" AND term_start = "18 january 2006"
Whose term started on 4 May 2006?
CREATE TABLE table_name_35 (minister VARCHAR, term_start VARCHAR)
SELECT minister FROM table_name_35 WHERE term_start = "4 may 2006"
What's the number of bronze when they are ranked 29, had a total more than 3 and less than 2 golds?
CREATE TABLE table_name_71 (bronze INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT MIN(bronze) FROM table_name_71 WHERE gold < 2 AND rank = "29" AND total > 3
What's the bronze medal count for Rank 33 when the silver count was less than 2 and the total was more than 4?
CREATE TABLE table_name_51 (bronze INTEGER, rank VARCHAR, silver VARCHAR, total VARCHAR)
SELECT MAX(bronze) FROM table_name_51 WHERE silver < 2 AND total > 4 AND rank = "33"
How many silver for rank 22 when gold count was more than 0 and Bronze count was less than 5?
CREATE TABLE table_name_45 (silver INTEGER, rank VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT SUM(silver) FROM table_name_45 WHERE bronze < 5 AND gold > 0 AND rank = "22"
What's the bronze count for South Africa (RSA) with a total more than 16?
CREATE TABLE table_name_64 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT MAX(bronze) FROM table_name_64 WHERE nation = "south africa (rsa)" AND total > 16
What was the lowest election result for President Leonardo Marras with an area smaller than 227,063 people?
CREATE TABLE table_name_29 (election INTEGER, president VARCHAR, inhabitants VARCHAR)
SELECT MIN(election) FROM table_name_29 WHERE president = "leonardo marras" AND inhabitants < 227 OFFSET 063
What is the party affiliation for President Stefano Baccelli?
CREATE TABLE table_name_33 (party VARCHAR, president VARCHAR)
SELECT party FROM table_name_33 WHERE president = "stefano baccelli"
What is the average election result for the province of Grosseto from 1766 and prior?
CREATE TABLE table_name_50 (election INTEGER, province VARCHAR, established VARCHAR)
SELECT AVG(election) FROM table_name_50 WHERE province = "grosseto" AND established < 1766
What is the total number of all bills co-sponsored associated with all amendments sponsored under 15, all bills sponsored of 6, and 0 amendments cosponsored?
CREATE TABLE table_name_80 (all_bills_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR, all_amendments_sponsored VARCHAR, all_bills_sponsored VARCHAR)
SELECT COUNT(all_bills_cosponsored) FROM table_name_80 WHERE all_amendments_sponsored < 15 AND all_bills_sponsored = 6 AND all_amendments_cosponsored < 0
What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored?
CREATE TABLE table_name_52 (all_amendments_sponsored INTEGER, bills_originally_cosponsored VARCHAR, all_bills_cosponsored VARCHAR)
SELECT MIN(all_amendments_sponsored) FROM table_name_52 WHERE bills_originally_cosponsored = 150 AND all_bills_cosponsored > 247
What is the highest number of bills cosponsored associated with under 24 bills sponsored and under 16 amendments sponsored?
CREATE TABLE table_name_22 (all_bills_cosponsored INTEGER, all_bills_sponsored VARCHAR, all_amendments_sponsored VARCHAR)
SELECT MAX(all_bills_cosponsored) FROM table_name_22 WHERE all_bills_sponsored < 24 AND all_amendments_sponsored < 16
What is the highest number of amendments cosponsored associated with 53 amendments originally cosponsored and over 54 bills sponsored?
CREATE TABLE table_name_25 (all_amendments_cosponsored INTEGER, amendments_originally_cosponsored VARCHAR, all_bills_sponsored VARCHAR)
SELECT MAX(all_amendments_cosponsored) FROM table_name_25 WHERE amendments_originally_cosponsored = 53 AND all_bills_sponsored > 54
What is the number of bills sponsored associated with over 113 bills originally cosponsored and under 47 amendments cosponsored?
CREATE TABLE table_name_57 (all_bills_sponsored VARCHAR, bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR)
SELECT all_bills_sponsored FROM table_name_57 WHERE bills_originally_cosponsored > 113 AND all_amendments_cosponsored < 47
What is the Lane of the swimmer from Uzbekistan in Heat 1?
CREATE TABLE table_name_88 (lane VARCHAR, heat VARCHAR, nationality VARCHAR)
SELECT COUNT(lane) FROM table_name_88 WHERE heat = 1 AND nationality = "uzbekistan"
Which station has a frequency of 873khz?
CREATE TABLE table_name_18 (station VARCHAR, frequency VARCHAR)
SELECT station FROM table_name_18 WHERE frequency = "873khz"
Where is the transmitter located for the station voice of vietnam
CREATE TABLE table_name_87 (transmitter_location VARCHAR, station VARCHAR)
SELECT transmitter_location FROM table_name_87 WHERE station = "voice of vietnam"
Which station is from China and has a frequency of 684khz?
CREATE TABLE table_name_79 (station VARCHAR, country_of_origin VARCHAR, frequency VARCHAR)
SELECT station FROM table_name_79 WHERE country_of_origin = "china" AND frequency = "684khz"
Name the Tally of an Opposition of westmeath?
CREATE TABLE table_name_76 (tally VARCHAR, opposition VARCHAR)
SELECT tally FROM table_name_76 WHERE opposition = "westmeath"
What is the horizontal bar score with a pommel horse of n/a, and the position is less than 27, and the parallel bars score is 15.800?
CREATE TABLE table_name_18 (horizontal_bar VARCHAR, parallel_bars VARCHAR, pommel_horse VARCHAR, position VARCHAR)
SELECT horizontal_bar FROM table_name_18 WHERE pommel_horse = "n/a" AND position < 27 AND parallel_bars = "15.800"
What is the score of the floor when the position is less than 21, and less than 81.2 total, and the pommel horse score is 13.925?
CREATE TABLE table_name_1 (floor VARCHAR, pommel_horse VARCHAR, position VARCHAR, total VARCHAR)
SELECT floor FROM table_name_1 WHERE position < 21 AND total < 81.2 AND pommel_horse = "13.925"
Who is the gymnast with a floor score of 14.800?
CREATE TABLE table_name_83 (gymnast VARCHAR, floor VARCHAR)
SELECT gymnast FROM table_name_83 WHERE floor = "14.800"
What horizontal bar score also has a pommel horse score of 15.250?
CREATE TABLE table_name_60 (horizontal_bar VARCHAR, pommel_horse VARCHAR)
SELECT horizontal_bar FROM table_name_60 WHERE pommel_horse = "15.250"
With a parallel bars score of 14.625 what is the average total?
CREATE TABLE table_name_8 (total INTEGER, parallel_bars VARCHAR)
SELECT AVG(total) FROM table_name_8 WHERE parallel_bars = "14.625"
What is the Rank of the Athletes with a Time of 3:43.491?
CREATE TABLE table_name_21 (rank VARCHAR, time VARCHAR)
SELECT COUNT(rank) FROM table_name_21 WHERE time = "3:43.491"
What are the Notes of the Athletes from Germany?
CREATE TABLE table_name_41 (notes VARCHAR, country VARCHAR)
SELECT notes FROM table_name_41 WHERE country = "germany"
What is the Rank of the Athletes from Ukraine?
CREATE TABLE table_name_65 (rank VARCHAR, country VARCHAR)
SELECT COUNT(rank) FROM table_name_65 WHERE country = "ukraine"
What location did Sherry Middaugh win in?
CREATE TABLE table_name_13 (location VARCHAR, winning_skip VARCHAR)
SELECT location FROM table_name_13 WHERE winning_skip = "sherry middaugh"
What event did Patti Lank have the winning skip?
CREATE TABLE table_name_11 (event VARCHAR, winning_skip VARCHAR)
SELECT event FROM table_name_11 WHERE winning_skip = "patti lank"
What date shows Binia Feltscher-Beeli as the runner-up skip?
CREATE TABLE table_name_68 (date VARCHAR, runner_up_skip VARCHAR)
SELECT date FROM table_name_68 WHERE runner_up_skip = "binia feltscher-beeli"
What person was the runner-up skip when Julie Reddick was the winning skip?
CREATE TABLE table_name_61 (runner_up_skip VARCHAR, winning_skip VARCHAR)
SELECT runner_up_skip FROM table_name_61 WHERE winning_skip = "julie reddick"
What's the Yellow fertility rate when Brazil is 0,43407?
CREATE TABLE table_name_94 (yellow_109_percentage VARCHAR, brazil_100_percentage VARCHAR)
SELECT yellow_109_percentage FROM table_name_94 WHERE brazil_100_percentage = "0,43407"
What is the sum of the area in km with a population of 110 in 2011?
CREATE TABLE table_name_59 (area__km_2__ INTEGER, population__2011_ VARCHAR)
SELECT SUM(area__km_2__) FROM table_name_59 WHERE population__2011_ = 110
What is the average population in 2006 that has more than 5 people in 2011 and an area 5.84km?
CREATE TABLE table_name_14 (population__2006_ INTEGER, population__2011_ VARCHAR, area__km_2__ VARCHAR)
SELECT AVG(population__2006_) FROM table_name_14 WHERE population__2011_ > 5 AND area__km_2__ = 5.84
What is the lowest lane with a 0.216 react?
CREATE TABLE table_name_67 (lane INTEGER, react VARCHAR)
SELECT MIN(lane) FROM table_name_67 WHERE react = 0.216
What is the total rank for the lane before 2?
CREATE TABLE table_name_87 (rank INTEGER, lane INTEGER)
SELECT SUM(rank) FROM table_name_87 WHERE lane < 2
What genre is the game from the year 2007?
CREATE TABLE table_name_29 (genre VARCHAR, year VARCHAR)
SELECT genre FROM table_name_29 WHERE year = 2007
What is the Game that came out before the year 2009 for the Playstation 3?
CREATE TABLE table_name_39 (game VARCHAR, platform_s_ VARCHAR, year VARCHAR)
SELECT game FROM table_name_39 WHERE platform_s_ = "playstation 3" AND year < 2009
What is the earliest year that had the Legend of Zelda: Twilight Princess game?
CREATE TABLE table_name_90 (year INTEGER, game VARCHAR)
SELECT MIN(year) FROM table_name_90 WHERE game = "the legend of zelda: twilight princess"
Who was the opponent on November 15, 1981?
CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_70 WHERE date = "november 15, 1981"
Which Debut year has a Player of noel carroll, and Games smaller than 12?
CREATE TABLE table_name_95 (debut_year INTEGER, player VARCHAR, games VARCHAR)
SELECT MAX(debut_year) FROM table_name_95 WHERE player = "noel carroll" AND games < 12
Which Goals have a Player of noel carroll?
CREATE TABLE table_name_4 (goals INTEGER, player VARCHAR)
SELECT MIN(goals) FROM table_name_4 WHERE player = "noel carroll"
How many debut years have Years at club of 1950–1951, and Games larger than 14?
CREATE TABLE table_name_39 (debut_year INTEGER, years_at_club VARCHAR, games VARCHAR)
SELECT SUM(debut_year) FROM table_name_39 WHERE years_at_club = "1950–1951" AND games > 14
Which title has origianal sound entertainment as its label?
CREATE TABLE table_name_85 (title VARCHAR, label VARCHAR)
SELECT title FROM table_name_85 WHERE label = "origianal sound entertainment"
What was the latest year of release for the greatest hits title?
CREATE TABLE table_name_71 (year_of_release INTEGER, title VARCHAR)
SELECT MAX(year_of_release) FROM table_name_71 WHERE title = "greatest hits"
When the country of release is EU, what is the label name?
CREATE TABLE table_name_39 (label VARCHAR, country_of_release VARCHAR)
SELECT label FROM table_name_39 WHERE country_of_release = "eu"
what is the highest latitude when the township is kingsley and the geo id is higher than 3803942820?
CREATE TABLE table_name_24 (latitude INTEGER, township VARCHAR, geo_id VARCHAR)
SELECT MAX(latitude) FROM table_name_24 WHERE township = "kingsley" AND geo_id > 3803942820
what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?
CREATE TABLE table_name_57 (latitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR)
SELECT AVG(latitude) FROM table_name_57 WHERE water__sqmi_ = 0.058 AND ansi_code < 1759683
what is the geo id when the longitude is -98.435797 and the land (sqmi) is less than 36.039?
CREATE TABLE table_name_1 (geo_id INTEGER, longitude VARCHAR, land___sqmi__ VARCHAR)
SELECT MAX(geo_id) FROM table_name_1 WHERE longitude = -98.435797 AND land___sqmi__ < 36.039
Name the lowest Year Joined which has a Mascot of pioneers?
CREATE TABLE table_name_93 (year_joined INTEGER, mascot VARCHAR)
SELECT MIN(year_joined) FROM table_name_93 WHERE mascot = "pioneers"
Name the IHSAA Class of Mascot of pioneers?
CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR)
SELECT ihsaa_class FROM table_name_32 WHERE mascot = "pioneers"
Name the IHSAA Class of 55 morgan and a School of mooresville?
CREATE TABLE table_name_8 (ihsaa_class VARCHAR, county VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_8 WHERE county = "55 morgan" AND school = "mooresville"
where is Mascot of quakers?
CREATE TABLE table_name_35 (location VARCHAR, mascot VARCHAR)
SELECT location FROM table_name_35 WHERE mascot = "quakers"
What kind of IHSAA Class has a School of decatur central?
CREATE TABLE table_name_2 (ihsaa_class VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_2 WHERE school = "decatur central"
What studio had the director Peter Lord Nick Park before 2004?
CREATE TABLE table_name_57 (studio_s_ VARCHAR, year VARCHAR, director VARCHAR)
SELECT studio_s_ FROM table_name_57 WHERE year < 2004 AND director = "peter lord nick park"
What studio did Paul Greengrass direct in 2007?
CREATE TABLE table_name_92 (studio_s_ VARCHAR, year VARCHAR, director VARCHAR)
SELECT studio_s_ FROM table_name_92 WHERE year = 2007 AND director = "paul greengrass"
What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?
CREATE TABLE table_name_1 (a_score INTEGER, b_score VARCHAR, position VARCHAR)
SELECT SUM(a_score) FROM table_name_1 WHERE b_score > 9.15 AND position = "2nd"
what is the quantity when the year of manufacture is 1900 and the class is mc?
CREATE TABLE table_name_20 (quantity VARCHAR, year_s__of_manufacture VARCHAR, class VARCHAR)
SELECT quantity FROM table_name_20 WHERE year_s__of_manufacture = "1900" AND class = "mc"
what is the class when the quantity is 4?
CREATE TABLE table_name_96 (class VARCHAR, quantity VARCHAR)
SELECT class FROM table_name_96 WHERE quantity = 4
Who were the opponents on Week 8?
CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_89 WHERE week = 8
When the city is agadir what is the change (12/11)?
CREATE TABLE table_name_8 (change__12_11_ VARCHAR, city VARCHAR)
SELECT change__12_11_ FROM table_name_8 WHERE city = "agadir"
What is the catalog number of Venus Demilo's A-side?
CREATE TABLE table_name_30 (catalog_number VARCHAR, a_side VARCHAR)
SELECT catalog_number FROM table_name_30 WHERE a_side = "venus demilo"
What year did the B-Side of Just Squeeze Me come out?
CREATE TABLE table_name_46 (year VARCHAR, b_side VARCHAR)
SELECT year FROM table_name_46 WHERE b_side = "just squeeze me"
What label has the 817 catalog?
CREATE TABLE table_name_92 (label VARCHAR, catalog_number VARCHAR)
SELECT label FROM table_name_92 WHERE catalog_number = "817"
What is the A-side for it Never Entered My Mind, Part 2?
CREATE TABLE table_name_75 (a_side VARCHAR, b_side VARCHAR)
SELECT a_side FROM table_name_75 WHERE b_side = "it never entered my mind, part 2"
What is the A-side for catalog 902?
CREATE TABLE table_name_87 (a_side VARCHAR, catalog_number VARCHAR)
SELECT a_side FROM table_name_87 WHERE catalog_number = "902"
What is the class of the a1 bm type?
CREATE TABLE table_name_10 (class VARCHAR, type VARCHAR)
SELECT class FROM table_name_10 WHERE type = "a1 bm"
What is the quantity of the aw class?
CREATE TABLE table_name_5 (quantity VARCHAR, class VARCHAR)
SELECT quantity FROM table_name_5 WHERE class = "aw"
What is the class with 1 quantity?
CREATE TABLE table_name_6 (class VARCHAR, quantity VARCHAR)
SELECT class FROM table_name_6 WHERE quantity = "1"
What is the railway number of the aw class?
CREATE TABLE table_name_3 (railway_number_s_ VARCHAR, class VARCHAR)
SELECT railway_number_s_ FROM table_name_3 WHERE class = "aw"
What was the game when the record was 31-15?
CREATE TABLE table_name_80 (game VARCHAR, record VARCHAR)
SELECT game FROM table_name_80 WHERE record = "31-15"
What was the date of the game with a score of W 106-100?
CREATE TABLE table_name_2 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_2 WHERE score = "w 106-100"
What is the speed for rank 1?
CREATE TABLE table_name_26 (speed VARCHAR, rank VARCHAR)
SELECT speed FROM table_name_26 WHERE rank = "1"
What team has a Rank Ret, and rider Frank A Applebee?
CREATE TABLE table_name_92 (team VARCHAR, rank VARCHAR, rider VARCHAR)
SELECT team FROM table_name_92 WHERE rank = "ret" AND rider = "frank a applebee"
What internet explorer has 29.07% for the chrome?
CREATE TABLE table_name_91 (internet_explorer VARCHAR, chrome VARCHAR)
SELECT internet_explorer FROM table_name_91 WHERE chrome = "29.07%"
What is the other mozilla that has 9.41% for the safari?
CREATE TABLE table_name_71 (other_mozilla VARCHAR, safari VARCHAR)
SELECT other_mozilla FROM table_name_71 WHERE safari = "9.41%"
What other mozilla has January 2010 as the period?
CREATE TABLE table_name_80 (other_mozilla VARCHAR, period VARCHAR)
SELECT other_mozilla FROM table_name_80 WHERE period = "january 2010"
What internet explorer has 7.89% as the safari, and 8.22% as the chrome?
CREATE TABLE table_name_31 (internet_explorer VARCHAR, safari VARCHAR, chrome VARCHAR)
SELECT internet_explorer FROM table_name_31 WHERE safari = "7.89%" AND chrome = "8.22%"
What period has 0.25% as the other mozilla?
CREATE TABLE table_name_66 (period VARCHAR, other_mozilla VARCHAR)
SELECT period FROM table_name_66 WHERE other_mozilla = "0.25%"
Which socket goes with the item with release price of $378 and turbo of 6/6/8/9?
CREATE TABLE table_name_75 (socket VARCHAR, release_price___usd__ VARCHAR, turbo VARCHAR)
SELECT socket FROM table_name_75 WHERE release_price___usd__ = "$378" AND turbo = "6/6/8/9"