question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is GPU Frequency, when Model Number is Atom N435?
CREATE TABLE table_name_18 (gpu_frequency VARCHAR, model_number VARCHAR)
SELECT gpu_frequency FROM table_name_18 WHERE model_number = "atom n435"
What nationality is the guard from ucla?
CREATE TABLE table_name_85 (nationality VARCHAR, position VARCHAR, school_country VARCHAR)
SELECT nationality FROM table_name_85 WHERE position = "guard" AND school_country = "ucla"
What is the lowest laps with a 142.744 qual?
CREATE TABLE table_name_34 (laps INTEGER, qual VARCHAR)
SELECT MIN(laps) FROM table_name_34 WHERE qual = "142.744"
What was the Maple Leafs' record on game 52?
CREATE TABLE table_name_51 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_51 WHERE game = 52
Find the name and email of the users who have more than 1000 followers.
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers INTEGER)
SELECT name, email FROM user_profiles WHERE followers > 1000
What was the team standing if the won 130 goals against another team?
CREATE TABLE table_2619469_1 (standing VARCHAR, goals_against VARCHAR)
SELECT standing FROM table_2619469_1 WHERE goals_against = 130
Name the original air date for ai% for 83
CREATE TABLE table_18012738_1 (original_air_date VARCHAR, ai___percentage_ VARCHAR)
SELECT original_air_date FROM table_18012738_1 WHERE ai___percentage_ = 83
What is the D 48 √ with a D 49 √ with r 9?
CREATE TABLE table_name_27 (d_48_√ VARCHAR, d_49_√ VARCHAR)
SELECT d_48_√ FROM table_name_27 WHERE d_49_√ = "r 9"
What is the location on 2008-06-17 when the lineup was start?
CREATE TABLE table_name_3 (location VARCHAR, lineup VARCHAR, date VARCHAR)
SELECT location FROM table_name_3 WHERE lineup = "start" AND date = "2008-06-17"
Name the car number for 1997
CREATE TABLE table_1688640_4 (car__number VARCHAR, year_started VARCHAR)
SELECT car__number FROM table_1688640_4 WHERE year_started = 1997
What is the Tie no when Crystal Palace is the Away team?
CREATE TABLE table_name_37 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_37 WHERE away_team = "crystal palace"
What is the average rank of Roman Koudelka, who has less than 274.4 points?
CREATE TABLE table_name_41 (rank INTEGER, points VARCHAR, name VARCHAR)
SELECT AVG(rank) FROM table_name_41 WHERE points < 274.4 AND name = "roman koudelka"
Which player has 0 goals, 1 tries, 4 points, and plays in the Prop position?
CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, points VARCHAR, goals VARCHAR, tries VARCHAR)
SELECT player FROM table_name_19 WHERE goals = 0 AND tries = 1 AND points = 4 AND position = "prop"
Which April is the smallest one that has a Score of 2–4, and a Game smaller than 76?
CREATE TABLE table_name_4 (april INTEGER, score VARCHAR, game VARCHAR)
SELECT MAX(april) FROM table_name_4 WHERE score = "2–4" AND game < 76
How much money was spent when the amount after debt was $1,757,936?
CREATE TABLE table_name_19 (money_spent VARCHAR, _3q VARCHAR, after_debt VARCHAR)
SELECT money_spent, _3q FROM table_name_19 WHERE after_debt = "$1,757,936"
What is the highest round on 5 april?
CREATE TABLE table_name_42 (round INTEGER, date VARCHAR)
SELECT MAX(round) FROM table_name_42 WHERE date = "5 april"
What Rider has a Grid of 21?
CREATE TABLE table_name_91 (rider VARCHAR, grid VARCHAR)
SELECT rider FROM table_name_91 WHERE grid = 21
Which Date has a Score of 7–6(3), 4–6, 6–2?
CREATE TABLE table_name_68 (date INTEGER, score VARCHAR)
SELECT SUM(date) FROM table_name_68 WHERE score = "7–6(3), 4–6, 6–2"
What is the rank for less than 6 plays?
CREATE TABLE table_name_47 (rank INTEGER, played INTEGER)
SELECT SUM(rank) FROM table_name_47 WHERE played < 6
Who had the high rebounds when the score was l 122–93?
CREATE TABLE table_name_7 (high_rebounds VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_name_7 WHERE score = "l 122–93"
What is the average Week for the game at three rivers stadium, with a Record of 3–2?
CREATE TABLE table_name_44 (week INTEGER, location VARCHAR, record VARCHAR)
SELECT AVG(week) FROM table_name_44 WHERE location = "three rivers stadium" AND record = "3–2"
How large of a crowd can the Brunswick Street Oval hold?
CREATE TABLE table_name_48 (crowd VARCHAR, venue VARCHAR)
SELECT COUNT(crowd) FROM table_name_48 WHERE venue = "brunswick street oval"
How many burglaries occurred in the city where the violent crime rate was 974.7?
CREATE TABLE table_1818254_1 (burglary VARCHAR, violent_crime VARCHAR)
SELECT burglary FROM table_1818254_1 WHERE violent_crime = "974.7"
Which authority has a rocket launch called shahpar-2?
CREATE TABLE table_11869952_1 (institutional_authority VARCHAR, rocket_launch VARCHAR)
SELECT institutional_authority FROM table_11869952_1 WHERE rocket_launch = "Shahpar-2"
Return ids of all the products that are supplied by supplier id 2 and are more expensive than the average price of all products.
CREATE TABLE products (product_id VARCHAR, product_price INTEGER); CREATE TABLE product_suppliers (product_id VARCHAR, supplier_id VARCHAR); CREATE TABLE products (product_price INTEGER)
SELECT T1.product_id FROM product_suppliers AS T1 JOIN products AS T2 ON T1.product_id = T2.product_id WHERE T1.supplier_id = 2 AND T2.product_price > (SELECT AVG(product_price) FROM products)
Which Rank has a Goals smaller than 76, and a Matches larger than 270?
CREATE TABLE table_name_42 (rank INTEGER, goals VARCHAR, matches VARCHAR)
SELECT SUM(rank) FROM table_name_42 WHERE goals < 76 AND matches > 270
How many customers have at least one order with status "Cancelled"?
CREATE TABLE customer_orders (customer_id VARCHAR, order_status VARCHAR)
SELECT COUNT(DISTINCT customer_id) FROM customer_orders WHERE order_status = "Cancelled"
Which rider has time of +19.751?
CREATE TABLE table_name_59 (rider VARCHAR, time VARCHAR)
SELECT rider FROM table_name_59 WHERE time = "+19.751"
What is the 4.45 for Yelena Isinbayeva?
CREATE TABLE table_name_5 (name VARCHAR)
SELECT 445 FROM table_name_5 WHERE name = "yelena isinbayeva"
Who had the pole at the French Grand Prix?
CREATE TABLE table_name_86 (pole_position VARCHAR, grand_prix VARCHAR)
SELECT pole_position FROM table_name_86 WHERE grand_prix = "french grand prix"
How many games were there on May 1?
CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR)
SELECT COUNT(game) FROM table_22654073_13 WHERE date = "May 1"
What is the English of chae soo-yeon?
CREATE TABLE table_name_56 (english_title VARCHAR, role VARCHAR)
SELECT english_title FROM table_name_56 WHERE role = "chae soo-yeon"
What was the crowd size at the moorabbin oval venue?
CREATE TABLE table_name_86 (crowd VARCHAR, venue VARCHAR)
SELECT COUNT(crowd) FROM table_name_86 WHERE venue = "moorabbin oval"
What is Competition, when Date is "28 March 2001"?
CREATE TABLE table_name_24 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_24 WHERE date = "28 march 2001"
Name the recipient for jamaica and award of £6,947
CREATE TABLE table_name_94 (recipient VARCHAR, award VARCHAR, film VARCHAR)
SELECT recipient FROM table_name_94 WHERE award = "£6,947" AND film = "jamaica"
Which opponent had a round of more than 1 and an even of PFP: ring of fire?
CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR, event VARCHAR)
SELECT opponent FROM table_name_45 WHERE round > 1 AND event = "pfp: ring of fire"
How many entries are shown for viewers when the airdate was 26 november 2009?
CREATE TABLE table_24399615_3 (viewers VARCHAR, airdate VARCHAR)
SELECT COUNT(viewers) FROM table_24399615_3 WHERE airdate = "26 November 2009"
Who was the champion for the 1998-99 season?
CREATE TABLE table_19651669_1 (champion VARCHAR, season VARCHAR)
SELECT champion FROM table_19651669_1 WHERE season = "1998-99"
Name the transfer fee for transfer status for fra
CREATE TABLE table_name_24 (transfer_fee VARCHAR, status VARCHAR, country VARCHAR)
SELECT transfer_fee FROM table_name_24 WHERE status = "transfer" AND country = "fra"
How many heats had 5 lanes and a rank less than 110 for the nationality of Honduras?
CREATE TABLE table_name_18 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR)
SELECT COUNT(heat) FROM table_name_18 WHERE lane = 5 AND rank > 110 AND nationality = "honduras"
Who was the (M) Best & Fairest when ray kaduck was president and richard keane was coach?
CREATE TABLE table_name_2 (_m__best_ VARCHAR, _fairest VARCHAR, president VARCHAR, _m__coach VARCHAR)
SELECT _m__best_ & _fairest FROM table_name_2 WHERE president = "ray kaduck" AND _m__coach = "richard keane"
Which average Home Run has a Game of 89?
CREATE TABLE table_name_55 (home_run INTEGER, game VARCHAR)
SELECT AVG(home_run) FROM table_name_55 WHERE game = 89
On what circuit was the i mexican grand prix held?
CREATE TABLE table_name_5 (circuit VARCHAR, race_name VARCHAR)
SELECT circuit FROM table_name_5 WHERE race_name = "i mexican grand prix"
Which player went to Vanderbilt?
CREATE TABLE table_name_20 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_20 WHERE college = "vanderbilt"
What is the combined crowd in Vancouver on may 22?
CREATE TABLE table_name_43 (attendance INTEGER, home VARCHAR, date VARCHAR)
SELECT SUM(attendance) FROM table_name_43 WHERE home = "vancouver" AND date = "may 22"
Surface of clay, and a Partnering of júlio silva had what score?
CREATE TABLE table_name_69 (score VARCHAR, surface VARCHAR, partnering VARCHAR)
SELECT score FROM table_name_69 WHERE surface = "clay" AND partnering = "júlio silva"
What position was Jafus White who was picked after round 1?
CREATE TABLE table_name_87 (position VARCHAR, round VARCHAR, player VARCHAR)
SELECT position FROM table_name_87 WHERE round > 1 AND player = "jafus white"
What is the Draw for the team tramwajarz łódź?
CREATE TABLE table_name_94 (draw VARCHAR, team VARCHAR)
SELECT draw FROM table_name_94 WHERE team = "tramwajarz łódź"
How many millions of U.S. viewers watched the episode that first aired on March 31, 2013?
CREATE TABLE table_11111116_8 (us_viewers__million_ VARCHAR, original_air_date VARCHAR)
SELECT us_viewers__million_ FROM table_11111116_8 WHERE original_air_date = "March 31, 2013"
Which network has more than 31.4 channels with a 4:3 aspect?
CREATE TABLE table_name_69 (network VARCHAR, aspect VARCHAR, channel VARCHAR)
SELECT network FROM table_name_69 WHERE aspect = "4:3" AND channel > 31.4
On what date did the opponents win with 17 points?
CREATE TABLE table_16678052_2 (date VARCHAR, opponents VARCHAR, result VARCHAR)
SELECT date FROM table_16678052_2 WHERE opponents = 17 AND result = "Win"
Which Championship total is over 13?
CREATE TABLE table_name_99 (total INTEGER, championship INTEGER)
SELECT AVG(total) FROM table_name_99 WHERE championship > 13
In which tournament was Silke Meier the opponent in the final?
CREATE TABLE table_name_8 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_8 WHERE opponent_in_the_final = "silke meier"
Name the results for steve millen
CREATE TABLE table_13643154_2 (results VARCHAR, gto_winning_team VARCHAR)
SELECT results FROM table_13643154_2 WHERE gto_winning_team = "Steve Millen"
What is Club Source [I ], when Name is "Andrew McCombie Category:Articles With hCards"?
CREATE TABLE table_name_14 (club_source_ VARCHAR, i_ VARCHAR, name VARCHAR)
SELECT club_source_[i_] FROM table_name_14 WHERE name = "andrew mccombie category:articles with hcards"
What is the highest attendance of the game on week 9?
CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR)
SELECT MAX(attendance) FROM table_name_68 WHERE week = 9
Name the score for scotland
CREATE TABLE table_name_64 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_64 WHERE country = "scotland"
Name the opponents for record being 2-0
CREATE TABLE table_21094951_1 (opponents INTEGER, record VARCHAR)
SELECT MAX(opponents) FROM table_21094951_1 WHERE record = "2-0"
What is the league for season 1955-56?
CREATE TABLE table_name_93 (league VARCHAR, season VARCHAR)
SELECT league FROM table_name_93 WHERE season = "1955-56"
What are the lowest top-5 with a top-25 larger than 4, 29 cuts and a top-10 larger than 18?
CREATE TABLE table_name_62 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)
SELECT MIN(top_5) FROM table_name_62 WHERE top_25 > 4 AND cuts_made = 29 AND top_10 > 18
What is the rev of the 2003-2004 Mustang Cobra?
CREATE TABLE table_1310499_1 (rev VARCHAR, application VARCHAR)
SELECT rev FROM table_1310499_1 WHERE application = "2003-2004 Mustang Cobra"
Who was the 20 Questions section aimed at when Centerfold Model was Rachel Jeán Marteen?
CREATE TABLE table_name_46 (centerfold_model VARCHAR)
SELECT 20 AS _questions FROM table_name_46 WHERE centerfold_model = "rachel jeán marteen"
What is Current Rank, when Ring Name is Kimurayama Mamoru?
CREATE TABLE table_name_63 (current_rank VARCHAR, ring_name VARCHAR)
SELECT current_rank FROM table_name_63 WHERE ring_name = "kimurayama mamoru"
For the match in which player David Frost scored a To Par of +7, what was the final score?
CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT score FROM table_name_94 WHERE to_par = "+7" AND player = "david frost"
Where did Jerry Pate finish?
CREATE TABLE table_name_29 (finish VARCHAR, player VARCHAR)
SELECT finish FROM table_name_29 WHERE player = "jerry pate"
What school has the greyhounds as mascots?
CREATE TABLE table_name_56 (school VARCHAR, mascot VARCHAR)
SELECT school FROM table_name_56 WHERE mascot = "greyhounds"
On which date was the score 0 - 0?
CREATE TABLE table_name_54 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_54 WHERE score = "0 - 0"
What show is coming back on in July 2008
CREATE TABLE table_13549921_18 (programme VARCHAR, date_s__of_return VARCHAR)
SELECT programme FROM table_13549921_18 WHERE date_s__of_return = "July 2008"
Which constructor made the car with a rb1 chassis and which is driven by David Coulthard?
CREATE TABLE table_name_34 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_34 WHERE chassis = "rb1" AND driver = "david coulthard"
Which round goes to Stanford college?
CREATE TABLE table_name_21 (round VARCHAR, college VARCHAR)
SELECT round FROM table_name_21 WHERE college = "stanford"
What are the first names of the professors who do not teach a class.
CREATE TABLE employee (emp_fname VARCHAR, emp_jobcode VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)
SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num
Who played for Memphis State?
CREATE TABLE table_name_47 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_47 WHERE school_club_team = "memphis state"
What was the result of the election of the incumbent clyde doyle?
CREATE TABLE table_1341973_6 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341973_6 WHERE incumbent = "Clyde Doyle"
What is the Singapore Cup when the S-League is 5 (14)?
CREATE TABLE table_name_92 (singapore_cup VARCHAR, s_league VARCHAR)
SELECT singapore_cup FROM table_name_92 WHERE s_league = "5 (14)"
What car make was sponsored by Aflac?
CREATE TABLE table_27940569_1 (make VARCHAR, sponsor VARCHAR)
SELECT make FROM table_27940569_1 WHERE sponsor = "Aflac"
How much total has a To par of +9?
CREATE TABLE table_name_65 (total VARCHAR, to_par VARCHAR)
SELECT COUNT(total) FROM table_name_65 WHERE to_par = "+9"
During what year was Wicked associated with the Green Room Awards?
CREATE TABLE table_name_44 (year VARCHAR, production VARCHAR, award VARCHAR)
SELECT year FROM table_name_44 WHERE production = "wicked" AND award = "green room awards"
What entrant has osella fa1c chassis after 1981?
CREATE TABLE table_name_60 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_60 WHERE year > 1981 AND chassis = "osella fa1c"
When indianapolis, indiana is the location what is the institution?
CREATE TABLE table_28211213_2 (institution VARCHAR, location VARCHAR)
SELECT institution FROM table_28211213_2 WHERE location = "Indianapolis, Indiana"
What is the general classification with riccardo riccò as the young rider classification?
CREATE TABLE table_name_37 (general_classification VARCHAR, young_rider_classification VARCHAR)
SELECT general_classification FROM table_name_37 WHERE young_rider_classification = "riccardo riccò"
what is the right ascension (j2000) when the constellation is sextans and the declination (j2000) is °28′01″?
CREATE TABLE table_name_53 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, declination___j2000__ VARCHAR)
SELECT right_ascension___j2000__ FROM table_name_53 WHERE constellation = "sextans" AND declination___j2000__ = "°28′01″"
What is every media type for the Dub genre?
CREATE TABLE table_23829490_1 (media_type VARCHAR, genre VARCHAR)
SELECT media_type FROM table_23829490_1 WHERE genre = "Dub"
what is the sum of attendance of week 11
CREATE TABLE table_name_62 (attendance INTEGER, week VARCHAR)
SELECT SUM(attendance) FROM table_name_62 WHERE week = 11
What Version has a Developer of dino games, and a Title of metronome?
CREATE TABLE table_name_34 (version VARCHAR, developer VARCHAR, title VARCHAR)
SELECT version FROM table_name_34 WHERE developer = "dino games" AND title = "metronome"
Which Format has a Label of eagle eye media, a Catalogue number(s) of —, and a Country of united states?
CREATE TABLE table_name_33 (format VARCHAR, country VARCHAR, label VARCHAR, catalogue_number_s_ VARCHAR)
SELECT format FROM table_name_33 WHERE label = "eagle eye media" AND catalogue_number_s_ = "—" AND country = "united states"
Which Winner has a Winter Olympics of 1968?
CREATE TABLE table_name_31 (winner VARCHAR, winter_olympics VARCHAR)
SELECT winner FROM table_name_31 WHERE winter_olympics = "1968"
Which Nationality has a Name of igor koleda?
CREATE TABLE table_name_42 (nationality VARCHAR, name VARCHAR)
SELECT nationality FROM table_name_42 WHERE name = "igor koleda"
What is Mult, when Model Number is Pentium II 450?
CREATE TABLE table_name_85 (mult VARCHAR, model_number VARCHAR)
SELECT mult FROM table_name_85 WHERE model_number = "pentium ii 450"
Name the opponent for save of williams (9)
CREATE TABLE table_name_35 (opponent VARCHAR, save VARCHAR)
SELECT opponent FROM table_name_35 WHERE save = "williams (9)"
Which average Crowd has a Home team of essendon?
CREATE TABLE table_name_59 (crowd INTEGER, home_team VARCHAR)
SELECT AVG(crowd) FROM table_name_59 WHERE home_team = "essendon"
Which Home team faced the Away team, Hawthorn?
CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_9 WHERE away_team = "hawthorn"
what's the total win count for Games smaller than 7, and a Goals For larger than 2, and a Goals Against smaller than 6, and Draws of 1
CREATE TABLE table_name_85 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, games VARCHAR, goals_for VARCHAR)
SELECT COUNT(wins) FROM table_name_85 WHERE games < 7 AND goals_for > 2 AND goals_against < 6 AND draws = 1
What country is Pick 100?
CREATE TABLE table_name_97 (nationality VARCHAR, pick VARCHAR)
SELECT nationality FROM table_name_97 WHERE pick = 100
What is the release date when the location is Europe?
CREATE TABLE table_name_37 (release_date VARCHAR, location VARCHAR)
SELECT release_date FROM table_name_37 WHERE location = "europe"
What's the type of 0.0 value?
CREATE TABLE table_name_29 (type VARCHAR, value VARCHAR)
SELECT type FROM table_name_29 WHERE value = "0.0"
Which sporting location is where Richmond plays?
CREATE TABLE table_name_69 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_69 WHERE home_team = "richmond"
Name the callback date for amway arena
CREATE TABLE table_22897967_1 (callback_date VARCHAR, audition_venue VARCHAR)
SELECT callback_date FROM table_22897967_1 WHERE audition_venue = "Amway Arena"
What is the 2nd leg in match with team 2 of Teram?
CREATE TABLE table_name_92 (team_2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_92 WHERE team_2 = "teram"
What event was in detroit?
CREATE TABLE table_1139087_2 (grand_prix VARCHAR, location VARCHAR)
SELECT grand_prix FROM table_1139087_2 WHERE location = "Detroit"
How many millions of $ were spent in Iceland in 1948/49?
CREATE TABLE table_19766_1 (country VARCHAR)
SELECT MAX(1948 AS _49__) AS $_millions_ FROM table_19766_1 WHERE country = "Iceland"