instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Whose term started on 4 May 2006?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (minister VARCHAR, term_start VARCHAR)
SELECT minister FROM table_name_35 WHERE term_start = "4 may 2006"
Write a SQL query that answers the following question: What's the number of bronze when they are ranked 29, had a total more than 3 and less than 2 golds?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What's the bronze medal count for Rank 33 when the silver count was less than 2 and the total was more than 4?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: How many silver for rank 22 when gold count was more than 0 and Bronze count was less than 5?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What's the bronze count for South Africa (RSA) with a total more than 16?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What was the lowest election result for President Leonardo Marras with an area smaller than 227,063 people?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the party affiliation for President Stefano Baccelli?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (party VARCHAR, president VARCHAR)
SELECT party FROM table_name_33 WHERE president = "stefano baccelli"
Write a SQL query that answers the following question: What is the average election result for the province of Grosseto from 1766 and prior?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (election INTEGER, province VARCHAR, established VARCHAR)
SELECT AVG(election) FROM table_name_50 WHERE province = "grosseto" AND established < 1766
Write a SQL query that answers the following question: 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?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the highest number of bills cosponsored associated with under 24 bills sponsored and under 16 amendments sponsored?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the highest number of amendments cosponsored associated with 53 amendments originally cosponsored and over 54 bills sponsored?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the number of bills sponsored associated with over 113 bills originally cosponsored and under 47 amendments cosponsored?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the Lane of the swimmer from Uzbekistan in Heat 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (lane VARCHAR, heat VARCHAR, nationality VARCHAR)
SELECT COUNT(lane) FROM table_name_88 WHERE heat = 1 AND nationality = "uzbekistan"
Write a SQL query that answers the following question: Which station has a frequency of 873khz?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (station VARCHAR, frequency VARCHAR)
SELECT station FROM table_name_18 WHERE frequency = "873khz"
Write a SQL query that answers the following question: Where is the transmitter located for the station voice of vietnam
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (transmitter_location VARCHAR, station VARCHAR)
SELECT transmitter_location FROM table_name_87 WHERE station = "voice of vietnam"
Write a SQL query that answers the following question: Which station is from China and has a frequency of 684khz?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Name the Tally of an Opposition of westmeath?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (tally VARCHAR, opposition VARCHAR)
SELECT tally FROM table_name_76 WHERE opposition = "westmeath"
Write a SQL query that answers the following question: 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?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: 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?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Who is the gymnast with a floor score of 14.800?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (gymnast VARCHAR, floor VARCHAR)
SELECT gymnast FROM table_name_83 WHERE floor = "14.800"
Write a SQL query that answers the following question: What horizontal bar score also has a pommel horse score of 15.250?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (horizontal_bar VARCHAR, pommel_horse VARCHAR)
SELECT horizontal_bar FROM table_name_60 WHERE pommel_horse = "15.250"
Write a SQL query that answers the following question: With a parallel bars score of 14.625 what is the average total?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (total INTEGER, parallel_bars VARCHAR)
SELECT AVG(total) FROM table_name_8 WHERE parallel_bars = "14.625"
Write a SQL query that answers the following question: What is the Rank of the Athletes with a Time of 3:43.491?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (rank VARCHAR, time VARCHAR)
SELECT COUNT(rank) FROM table_name_21 WHERE time = "3:43.491"
Write a SQL query that answers the following question: What are the Notes of the Athletes from Germany?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (notes VARCHAR, country VARCHAR)
SELECT notes FROM table_name_41 WHERE country = "germany"
Write a SQL query that answers the following question: What is the Rank of the Athletes from Ukraine?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (rank VARCHAR, country VARCHAR)
SELECT COUNT(rank) FROM table_name_65 WHERE country = "ukraine"
Write a SQL query that answers the following question: What location did Sherry Middaugh win in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (location VARCHAR, winning_skip VARCHAR)
SELECT location FROM table_name_13 WHERE winning_skip = "sherry middaugh"
Write a SQL query that answers the following question: What event did Patti Lank have the winning skip?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (event VARCHAR, winning_skip VARCHAR)
SELECT event FROM table_name_11 WHERE winning_skip = "patti lank"
Write a SQL query that answers the following question: What date shows Binia Feltscher-Beeli as the runner-up skip?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (date VARCHAR, runner_up_skip VARCHAR)
SELECT date FROM table_name_68 WHERE runner_up_skip = "binia feltscher-beeli"
Write a SQL query that answers the following question: What person was the runner-up skip when Julie Reddick was the winning skip?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What's the Yellow fertility rate when Brazil is 0,43407?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What is the sum of the area in km with a population of 110 in 2011?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the average population in 2006 that has more than 5 people in 2011 and an area 5.84km?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the lowest lane with a 0.216 react?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (lane INTEGER, react VARCHAR)
SELECT MIN(lane) FROM table_name_67 WHERE react = 0.216
Write a SQL query that answers the following question: What is the total rank for the lane before 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (rank INTEGER, lane INTEGER)
SELECT SUM(rank) FROM table_name_87 WHERE lane < 2
Write a SQL query that answers the following question: What genre is the game from the year 2007?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (genre VARCHAR, year VARCHAR)
SELECT genre FROM table_name_29 WHERE year = 2007
Write a SQL query that answers the following question: What is the Game that came out before the year 2009 for the Playstation 3?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: What is the earliest year that had the Legend of Zelda: Twilight Princess game?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (year INTEGER, game VARCHAR)
SELECT MIN(year) FROM table_name_90 WHERE game = "the legend of zelda: twilight princess"
Write a SQL query that answers the following question: Who was the opponent on November 15, 1981?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_70 WHERE date = "november 15, 1981"
Write a SQL query that answers the following question: Which Debut year has a Player of noel carroll, and Games smaller than 12?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: Which Goals have a Player of noel carroll?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (goals INTEGER, player VARCHAR)
SELECT MIN(goals) FROM table_name_4 WHERE player = "noel carroll"
Write a SQL query that answers the following question: How many debut years have Years at club of 1950–1951, and Games larger than 14?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: Which title has origianal sound entertainment as its label?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (title VARCHAR, label VARCHAR)
SELECT title FROM table_name_85 WHERE label = "origianal sound entertainment"
Write a SQL query that answers the following question: What was the latest year of release for the greatest hits title?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (year_of_release INTEGER, title VARCHAR)
SELECT MAX(year_of_release) FROM table_name_71 WHERE title = "greatest hits"
Write a SQL query that answers the following question: When the country of release is EU, what is the label name?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (label VARCHAR, country_of_release VARCHAR)
SELECT label FROM table_name_39 WHERE country_of_release = "eu"
Write a SQL query that answers the following question: what is the highest latitude when the township is kingsley and the geo id is higher than 3803942820?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: what is the geo id when the longitude is -98.435797 and the land (sqmi) is less than 36.039?
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: Name the lowest Year Joined which has a Mascot of pioneers?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (year_joined INTEGER, mascot VARCHAR)
SELECT MIN(year_joined) FROM table_name_93 WHERE mascot = "pioneers"
Write a SQL query that answers the following question: Name the IHSAA Class of Mascot of pioneers?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR)
SELECT ihsaa_class FROM table_name_32 WHERE mascot = "pioneers"
Write a SQL query that answers the following question: Name the IHSAA Class of 55 morgan and a School of mooresville?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: where is Mascot of quakers?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (location VARCHAR, mascot VARCHAR)
SELECT location FROM table_name_35 WHERE mascot = "quakers"
Write a SQL query that answers the following question: What kind of IHSAA Class has a School of decatur central?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (ihsaa_class VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_2 WHERE school = "decatur central"
Write a SQL query that answers the following question: What studio had the director Peter Lord Nick Park before 2004?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What studio did Paul Greengrass direct in 2007?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: what is the quantity when the year of manufacture is 1900 and the class is mc?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: what is the class when the quantity is 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (class VARCHAR, quantity VARCHAR)
SELECT class FROM table_name_96 WHERE quantity = 4
Write a SQL query that answers the following question: Who were the opponents on Week 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_89 WHERE week = 8
Write a SQL query that answers the following question: When the city is agadir what is the change (12/11)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (change__12_11_ VARCHAR, city VARCHAR)
SELECT change__12_11_ FROM table_name_8 WHERE city = "agadir"
Write a SQL query that answers the following question: What is the catalog number of Venus Demilo's A-side?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (catalog_number VARCHAR, a_side VARCHAR)
SELECT catalog_number FROM table_name_30 WHERE a_side = "venus demilo"
Write a SQL query that answers the following question: What year did the B-Side of Just Squeeze Me come out?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (year VARCHAR, b_side VARCHAR)
SELECT year FROM table_name_46 WHERE b_side = "just squeeze me"
Write a SQL query that answers the following question: What label has the 817 catalog?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (label VARCHAR, catalog_number VARCHAR)
SELECT label FROM table_name_92 WHERE catalog_number = "817"
Write a SQL query that answers the following question: What is the A-side for it Never Entered My Mind, Part 2?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What is the A-side for catalog 902?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (a_side VARCHAR, catalog_number VARCHAR)
SELECT a_side FROM table_name_87 WHERE catalog_number = "902"
Write a SQL query that answers the following question: What is the class of the a1 bm type?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (class VARCHAR, type VARCHAR)
SELECT class FROM table_name_10 WHERE type = "a1 bm"
Write a SQL query that answers the following question: What is the quantity of the aw class?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (quantity VARCHAR, class VARCHAR)
SELECT quantity FROM table_name_5 WHERE class = "aw"
Write a SQL query that answers the following question: What is the class with 1 quantity?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (class VARCHAR, quantity VARCHAR)
SELECT class FROM table_name_6 WHERE quantity = "1"
Write a SQL query that answers the following question: What is the railway number of the aw class?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (railway_number_s_ VARCHAR, class VARCHAR)
SELECT railway_number_s_ FROM table_name_3 WHERE class = "aw"
Write a SQL query that answers the following question: What was the game when the record was 31-15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (game VARCHAR, record VARCHAR)
SELECT game FROM table_name_80 WHERE record = "31-15"
Write a SQL query that answers the following question: What was the date of the game with a score of W 106-100?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_2 WHERE score = "w 106-100"
Write a SQL query that answers the following question: What is the speed for rank 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (speed VARCHAR, rank VARCHAR)
SELECT speed FROM table_name_26 WHERE rank = "1"
Write a SQL query that answers the following question: What team has a Rank Ret, and rider Frank A Applebee?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What internet explorer has 29.07% for the chrome?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (internet_explorer VARCHAR, chrome VARCHAR)
SELECT internet_explorer FROM table_name_91 WHERE chrome = "29.07%"
Write a SQL query that answers the following question: What is the other mozilla that has 9.41% for the safari?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (other_mozilla VARCHAR, safari VARCHAR)
SELECT other_mozilla FROM table_name_71 WHERE safari = "9.41%"
Write a SQL query that answers the following question: What other mozilla has January 2010 as the period?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (other_mozilla VARCHAR, period VARCHAR)
SELECT other_mozilla FROM table_name_80 WHERE period = "january 2010"
Write a SQL query that answers the following question: What internet explorer has 7.89% as the safari, and 8.22% as the chrome?
The relevant table was constructed using the following SQL : 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%"
Write a SQL query that answers the following question: What period has 0.25% as the other mozilla?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (period VARCHAR, other_mozilla VARCHAR)
SELECT period FROM table_name_66 WHERE other_mozilla = "0.25%"
Write a SQL query that answers the following question: Which socket goes with the item with release price of $378 and turbo of 6/6/8/9?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What is the L2 cache for the core i7-2635QM?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (l2_cache VARCHAR, model_number VARCHAR)
SELECT l2_cache FROM table_name_65 WHERE model_number = "core i7-2635qm"
Write a SQL query that answers the following question: What is the release price for the GPU frequency of standard power, embedded?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR)
SELECT release_price___usd__ FROM table_name_96 WHERE gpu_frequency = "standard power, embedded"
Write a SQL query that answers the following question: What is the socked when the turbo is 8/8/10/11?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (socket VARCHAR, turbo VARCHAR)
SELECT socket FROM table_name_40 WHERE turbo = "8/8/10/11"
Write a SQL query that answers the following question: Which round did the bout that led to a 1-0 record end in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (round VARCHAR, record VARCHAR)
SELECT round FROM table_name_42 WHERE record = "1-0"
Write a SQL query that answers the following question: Which Time has a Lane smaller than 2, and a Nationality of spain?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (time VARCHAR, lane VARCHAR, nationality VARCHAR)
SELECT time FROM table_name_73 WHERE lane < 2 AND nationality = "spain"
Write a SQL query that answers the following question: How many Heats have a Name of miguel molina?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (heat VARCHAR, name VARCHAR)
SELECT COUNT(heat) FROM table_name_39 WHERE name = "miguel molina"
Write a SQL query that answers the following question: what is the league when the fa cup is qr4 and the fa trophy is qf?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (league VARCHAR, fa_cup VARCHAR, fa_trophy VARCHAR)
SELECT league FROM table_name_46 WHERE fa_cup = "qr4" AND fa_trophy = "qf"
Write a SQL query that answers the following question: what is the fa trophy when the leading scorer is lee gregory (8)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (fa_trophy VARCHAR, leading_scorer VARCHAR)
SELECT fa_trophy FROM table_name_66 WHERE leading_scorer = "lee gregory (8)"
Write a SQL query that answers the following question: what is the year when the position is 1/22 promoted and the leading scorer is james dean (27)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (year VARCHAR, position VARCHAR, leading_scorer VARCHAR)
SELECT year FROM table_name_81 WHERE position = "1/22 promoted" AND leading_scorer = "james dean (27)"
Write a SQL query that answers the following question: When the Altrincham was the home team what was the tie no?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_52 WHERE home_team = "altrincham"
Write a SQL query that answers the following question: Crawley Town as the home team has what as the tie no?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_77 WHERE home_team = "crawley town"
Write a SQL query that answers the following question: What is the nationality of the swimmer with a rank over 2 with a time of 55.77?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (nationality VARCHAR, rank VARCHAR, time VARCHAR)
SELECT nationality FROM table_name_47 WHERE rank > 2 AND time = "55.77"
Write a SQL query that answers the following question: What is the earliest heat with a finisher from the Czech Republic and a rank over 41?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (heat INTEGER, nationality VARCHAR, rank VARCHAR)
SELECT MIN(heat) FROM table_name_51 WHERE nationality = "czech republic" AND rank > 41
Write a SQL query that answers the following question: What is the total number of heats with a finisher named Gregor Tait in lanes over 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (heat VARCHAR, name VARCHAR, lane VARCHAR)
SELECT COUNT(heat) FROM table_name_38 WHERE name = "gregor tait" AND lane > 6
Write a SQL query that answers the following question: What is the time of the swimmer in rank 40?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (time VARCHAR, rank VARCHAR)
SELECT time FROM table_name_47 WHERE rank = 40
Write a SQL query that answers the following question: From what series was Tokio Jokio, directed by Norm McCabe?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (series VARCHAR, director VARCHAR, title VARCHAR)
SELECT series FROM table_name_35 WHERE director = "norm mccabe" AND title = "tokio jokio"
Write a SQL query that answers the following question: When was Inki and the Minah Bird released?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (release_date VARCHAR, title VARCHAR)
SELECT release_date FROM table_name_71 WHERE title = "inki and the minah bird"
Write a SQL query that answers the following question: From what series is Peck Up Your Troubles?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (series VARCHAR, title VARCHAR)
SELECT series FROM table_name_66 WHERE title = "peck up your troubles"
Write a SQL query that answers the following question: When the president was Yoweri Museveni, and the year was 1993, with rank of 6 under political rights, what was the total of civil liberties?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (civil_liberties INTEGER, year VARCHAR, political_rights VARCHAR, president VARCHAR)
SELECT SUM(civil_liberties) FROM table_name_78 WHERE political_rights = 6 AND president = "yoweri museveni" AND year = 1993
Write a SQL query that answers the following question: What is the year average when not free was the status, and less than 7 was the civil liberties, and less than 6 political rights?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (year INTEGER, political_rights VARCHAR, status VARCHAR, civil_liberties VARCHAR)
SELECT AVG(year) FROM table_name_39 WHERE status = "not free" AND civil_liberties < 7 AND political_rights < 6
Write a SQL query that answers the following question: What is the least political rights rank in 1976?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (political_rights INTEGER, year VARCHAR)
SELECT MIN(political_rights) FROM table_name_54 WHERE year = 1976