instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: What's the Korean word for Pohang? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (korean VARCHAR, city VARCHAR) | SELECT korean FROM table_name_89 WHERE city = "pohang" |
Write a SQL query that answers the following question: What's the team nickname of the private/catholic school whose enrollment is larger than 3,490? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (team_nickname VARCHAR, affiliation VARCHAR, enrollment VARCHAR) | SELECT team_nickname FROM table_name_25 WHERE affiliation = "private/catholic" AND enrollment > 3 OFFSET 490 |
Write a SQL query that answers the following question: What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (enrollment INTEGER, founded VARCHAR, location VARCHAR, affiliation VARCHAR) | SELECT SUM(enrollment) FROM table_name_62 WHERE location = "buffalo, new york" AND affiliation = "public" AND founded > 1846 |
Write a SQL query that answers the following question: What year did Bangkok University and Chunnam Dragons have a score of 0-0? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VARCHAR) | SELECT SUM(season) FROM table_name_31 WHERE team_1 = "bangkok university" AND score = "0-0" AND team_2 = "chunnam dragons" |
Write a SQL query that answers the following question: What is the transfer window for Christian Nerlinger? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR) | SELECT transfer_window FROM table_name_23 WHERE name = "christian nerlinger" |
Write a SQL query that answers the following question: What is the name for the end of contract because they're moving to Falkirk? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (name VARCHAR, type VARCHAR, moving_to VARCHAR) | SELECT name FROM table_name_63 WHERE type = "end of contract" AND moving_to = "falkirk" |
Write a SQL query that answers the following question: What type of transfer window is winter in Ita? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (type VARCHAR, transfer_window VARCHAR, nat VARCHAR) | SELECT type FROM table_name_8 WHERE transfer_window = "winter" AND nat = "ita" |
Write a SQL query that answers the following question: What is the type of loan and the transfer fee loan? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (nat VARCHAR, type VARCHAR, transfer_fee VARCHAR) | SELECT nat FROM table_name_32 WHERE type = "loan" AND transfer_fee = "loan" |
Write a SQL query that answers the following question: On what date did a streak start on November 14? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (streak VARCHAR, date VARCHAR) | SELECT streak FROM table_name_30 WHERE date = "november 14" |
Write a SQL query that answers the following question: What was the score of game 36? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_97 WHERE game = 36 |
Write a SQL query that answers the following question: Where was the third bridge over panama canal? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (location VARCHAR, name VARCHAR) | SELECT location FROM table_name_83 WHERE name = "third bridge over panama canal" |
Write a SQL query that answers the following question: Name the Comp which has a Name of smith? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (comp VARCHAR, name VARCHAR) | SELECT comp FROM table_name_71 WHERE name = "smith" |
Write a SQL query that answers the following question: Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR) | SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = "brytus" AND rating < 100 |
Write a SQL query that answers the following question: Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR) | SELECT MAX(comp) FROM table_name_19 WHERE yds_game > 0 AND name = "bostick" AND rating < 91.77 |
Write a SQL query that answers the following question: Can you tell me the sum of Score that has the Place of t5, and the Country of united states, and the Player of jeff maggert? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (score INTEGER, player VARCHAR, place VARCHAR, country VARCHAR) | SELECT SUM(score) FROM table_name_27 WHERE place = "t5" AND country = "united states" AND player = "jeff maggert" |
Write a SQL query that answers the following question: Which event had a decision method? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (event VARCHAR, method VARCHAR) | SELECT event FROM table_name_12 WHERE method = "decision" |
Write a SQL query that answers the following question: Where was the method of tko? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (location VARCHAR, method VARCHAR) | SELECT location FROM table_name_34 WHERE method = "tko" |
Write a SQL query that answers the following question: What is the time of kenya, which is ranked 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (time VARCHAR, nation VARCHAR, rank VARCHAR) | SELECT time FROM table_name_30 WHERE nation = "kenya" AND rank = "2" |
Write a SQL query that answers the following question: What race is on 26 June 2011? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (race VARCHAR, date VARCHAR) | SELECT race FROM table_name_18 WHERE date = "26 june 2011" |
Write a SQL query that answers the following question: What is the time of the peachtree road race in kenya? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (time VARCHAR, nation VARCHAR, race VARCHAR) | SELECT time FROM table_name_57 WHERE nation = "kenya" AND race = "peachtree road race" |
Write a SQL query that answers the following question: What is the score of team chicago? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_64 WHERE team = "chicago" |
Write a SQL query that answers the following question: What is the record of team utah? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (record VARCHAR, team VARCHAR) | SELECT record FROM table_name_61 WHERE team = "utah" |
Write a SQL query that answers the following question: What is the location and attendance of game 63? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_name_29 WHERE game = 63 |
Write a SQL query that answers the following question: What is the nationality of the person who played small forward? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (nationality VARCHAR, position VARCHAR) | SELECT nationality FROM table_name_82 WHERE position = "small forward" |
Write a SQL query that answers the following question: What position did Rich Manning play? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_87 WHERE player = "rich manning" |
Write a SQL query that answers the following question: What position did the player who was with the grizzlies from 2007-2009 play? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (position VARCHAR, years_for_grizzlies VARCHAR) | SELECT position FROM table_name_89 WHERE years_for_grizzlies = "2007-2009" |
Write a SQL query that answers the following question: Who is the player in the 2008 draft with a pick greater than 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (player VARCHAR, draft VARCHAR, pick VARCHAR) | SELECT player FROM table_name_26 WHERE draft = 2008 AND pick > 5 |
Write a SQL query that answers the following question: What is the total pick number of the player from a round greater than 1, a draft before 2002, and with the college/high school/club of western kentucky? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (pick VARCHAR, college_high_school_club VARCHAR, round VARCHAR, draft VARCHAR) | SELECT COUNT(pick) FROM table_name_51 WHERE round > 1 AND draft < 2002 AND college_high_school_club = "western kentucky" |
Write a SQL query that answers the following question: What is the lowest draft number with a 48 pick? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (draft INTEGER, pick VARCHAR) | SELECT MIN(draft) FROM table_name_94 WHERE pick = 48 |
Write a SQL query that answers the following question: Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc_team VARCHAR, position VARCHAR) | SELECT name FROM table_name_70 WHERE aafc_team = "los angeles dons" AND position = "fb" AND college = "oklahoma a&m" |
Write a SQL query that answers the following question: Which Round has a College of tulsa, and a Pick larger than 61? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (round INTEGER, college VARCHAR, pick VARCHAR) | SELECT AVG(round) FROM table_name_78 WHERE college = "tulsa" AND pick > 61 |
Write a SQL query that answers the following question: Which Position has a Round smaller than 5, and a Pick of 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (position VARCHAR, round VARCHAR, pick VARCHAR) | SELECT position FROM table_name_75 WHERE round < 5 AND pick = 5 |
Write a SQL query that answers the following question: Which College has a Name of hardy brown? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (college VARCHAR, name VARCHAR) | SELECT college FROM table_name_93 WHERE name = "hardy brown" |
Write a SQL query that answers the following question: Who was the winner for Peter Jackson Racing at Mallala Motor Sport Park? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (winner VARCHAR, team VARCHAR, circuit VARCHAR) | SELECT winner FROM table_name_9 WHERE team = "peter jackson racing" AND circuit = "mallala motor sport park" |
Write a SQL query that answers the following question: What city had a series of atcc round 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (city___state VARCHAR, series VARCHAR) | SELECT city___state FROM table_name_96 WHERE series = "atcc round 1" |
Write a SQL query that answers the following question: Who was the winner for ASTC round 8? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (winner VARCHAR, series VARCHAR) | SELECT winner FROM table_name_63 WHERE series = "astc round 8" |
Write a SQL query that answers the following question: Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) | SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)" |
Write a SQL query that answers the following question: Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (round INTEGER, college_junior_club_team__league_ VARCHAR, position VARCHAR) | SELECT AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = "hamilton red wings (oha)" AND position = "rw" |
Write a SQL query that answers the following question: Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (round INTEGER, position VARCHAR, college_junior_club_team__league_ VARCHAR) | SELECT AVG(round) FROM table_name_11 WHERE position = "lw" AND college_junior_club_team__league_ = "swift current broncos (wchl)" |
Write a SQL query that answers the following question: What is round 10's nationality? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (nationality VARCHAR, round VARCHAR) | SELECT nationality FROM table_name_55 WHERE round = 10 |
Write a SQL query that answers the following question: Which driver was in 8 rounds with a chassis of dallara f306? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR) | SELECT driver FROM table_name_57 WHERE chassis = "dallara f306" AND rounds = "8" |
Write a SQL query that answers the following question: How many rounds did Nil Montserrat drive in? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (rounds VARCHAR, driver VARCHAR) | SELECT rounds FROM table_name_94 WHERE driver = "nil montserrat" |
Write a SQL query that answers the following question: How many rounds did germán sánchez drive in where the chassis was dallara f308? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR) | SELECT rounds FROM table_name_34 WHERE chassis = "dallara f308" AND driver = "germán sánchez" |
Write a SQL query that answers the following question: What is the chassis for Augusto Scalbi on Team RP Motorsport? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR) | SELECT chassis FROM table_name_34 WHERE team = "rp motorsport" AND driver = "augusto scalbi" |
Write a SQL query that answers the following question: In what Week was the Result W 24-17? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (week INTEGER, result VARCHAR) | SELECT MAX(week) FROM table_name_65 WHERE result = "w 24-17" |
Write a SQL query that answers the following question: What was the Week number on November 20, 1977? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (week INTEGER, date VARCHAR) | SELECT SUM(week) FROM table_name_54 WHERE date = "november 20, 1977" |
Write a SQL query that answers the following question: Who played hte home team when the score was 2:1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (home VARCHAR, score VARCHAR) | SELECT home FROM table_name_45 WHERE score = "2:1" |
Write a SQL query that answers the following question: Who was the home team when real juventud was the away team when there were more than 1189 in attendance? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (home VARCHAR, attendance VARCHAR, away VARCHAR) | SELECT home FROM table_name_4 WHERE attendance > 1189 AND away = "real juventud" |
Write a SQL query that answers the following question: What was the average attendance when marathon was the away team? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (attendance INTEGER, away VARCHAR) | SELECT AVG(attendance) FROM table_name_6 WHERE away = "marathon" |
Write a SQL query that answers the following question: Who was the home team when the score was 0:1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR) | SELECT home FROM table_name_90 WHERE score = "0:1" |
Write a SQL query that answers the following question: Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (company VARCHAR, profits__billion_$_ VARCHAR, industry VARCHAR, assets__billion_$_ VARCHAR, sales__billion_$_ VARCHAR) | SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = "oil and gas" AND profits__billion_$_ = 19.28 |
Write a SQL query that answers the following question: How many profits is the company that is headquartered in the USA, in the banking industry, and has sales (billion $) less than 98.64 bringing in? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, headquarters VARCHAR, industry VARCHAR) | SELECT SUM(profits__billion_) AS $_ FROM table_name_54 WHERE headquarters = "usa" AND industry = "banking" AND sales__billion_$_ < 98.64 |
Write a SQL query that answers the following question: What test had 49,608 students? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (test VARCHAR, number_of_students VARCHAR) | SELECT test FROM table_name_86 WHERE number_of_students = "49,608" |
Write a SQL query that answers the following question: What was the Tie no when the Home team was Ramsgate? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_20 WHERE home_team = "ramsgate" |
Write a SQL query that answers the following question: What was the Tie no when the Home team was carshalton athletic? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_50 WHERE home_team = "carshalton athletic" |
Write a SQL query that answers the following question: Who was the away team when the home team was Ramsgate? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_30 WHERE home_team = "ramsgate" |
Write a SQL query that answers the following question: What was the home team when the Tie no was 60? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_31 WHERE tie_no = "60" |
Write a SQL query that answers the following question: What was the Tie no when the Home team was wealdstone? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_34 WHERE home_team = "wealdstone" |
Write a SQL query that answers the following question: Which format has january 21, 2002 as the date? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (format VARCHAR, date VARCHAR) | SELECT format FROM table_name_11 WHERE date = "january 21, 2002" |
Write a SQL query that answers the following question: What format has France as the region, with Universal Licensing Music (ulm) as the label? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (format VARCHAR, region VARCHAR, label VARCHAR) | SELECT format FROM table_name_72 WHERE region = "france" AND label = "universal licensing music (ulm)" |
Write a SQL query that answers the following question: What label has the netherlands as the region, and magik muzik 802-1 as the catalog? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (label VARCHAR, region VARCHAR, catalog VARCHAR) | SELECT label FROM table_name_83 WHERE region = "netherlands" AND catalog = "magik muzik 802-1" |
Write a SQL query that answers the following question: What is the record at 3:00? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (record VARCHAR, time VARCHAR) | SELECT record FROM table_name_71 WHERE time = "3:00" |
Write a SQL query that answers the following question: What opponent used the Ko method, and a 6-0 record? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (opponent VARCHAR, method VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_12 WHERE method = "ko" AND record = "6-0" |
Write a SQL query that answers the following question: What is the ground of the game where the home team was Adelaide? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (ground VARCHAR, home_team VARCHAR) | SELECT ground FROM table_name_88 WHERE home_team = "adelaide" |
Write a SQL query that answers the following question: What is Manufacturer, when Quantity Made is 2, and when Year Made is 1884? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (manufacturer VARCHAR, quantity_made VARCHAR, year_made VARCHAR) | SELECT manufacturer FROM table_name_25 WHERE quantity_made = "2" AND year_made = "1884" |
Write a SQL query that answers the following question: What is Quantity Made, when Manufacturer is "Baldwin"? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (quantity_made VARCHAR, manufacturer VARCHAR) | SELECT quantity_made FROM table_name_3 WHERE manufacturer = "baldwin" |
Write a SQL query that answers the following question: What is Wheel Arrangement, when Manufacturer is "Baldwin", and when Quantity Made is 12? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (wheel_arrangement VARCHAR, manufacturer VARCHAR, quantity_made VARCHAR) | SELECT wheel_arrangement FROM table_name_52 WHERE manufacturer = "baldwin" AND quantity_made = "12" |
Write a SQL query that answers the following question: What is Quantity Made, when Year Made is "4-4-0 — oooo — american"? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (quantity_made VARCHAR, year_made VARCHAR) | SELECT quantity_made FROM table_name_65 WHERE year_made = "4-4-0 — oooo — american" |
Write a SQL query that answers the following question: What is Wheel Arrangement, when Quantity Made is 44? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (wheel_arrangement VARCHAR, quantity_made VARCHAR) | SELECT wheel_arrangement FROM table_name_8 WHERE quantity_made = "44" |
Write a SQL query that answers the following question: What is Quantitiy Made, when Quantity Preserved is "4-4-0 — oooo — american"? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (quantity_made VARCHAR, quantity_preserved VARCHAR) | SELECT quantity_made FROM table_name_23 WHERE quantity_preserved = "4-4-0 — oooo — american" |
Write a SQL query that answers the following question: What's the highest game found when the record is 2-1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (game INTEGER, record VARCHAR) | SELECT MAX(game) FROM table_name_10 WHERE record = "2-1" |
Write a SQL query that answers the following question: What was the game date when the opponent was Houston? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_8 WHERE opponent = "houston" |
Write a SQL query that answers the following question: Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (season INTEGER, home_team VARCHAR, away_team VARCHAR) | SELECT MAX(season) FROM table_name_8 WHERE home_team = "chonburi" AND away_team = "melbourne victory" |
Write a SQL query that answers the following question: Can you tell me the Season that has the Score of 1-0? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (season VARCHAR, score VARCHAR) | SELECT season FROM table_name_34 WHERE score = "1-0" |
Write a SQL query that answers the following question: WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR) | SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100 |
Write a SQL query that answers the following question: WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (MIN VARCHAR, $10___1_10_oz VARCHAR) | SELECT MIN AS $25___1_4_oz FROM table_name_57 WHERE $10___1_10_oz = "70,250" |
Write a SQL query that answers the following question: What is the model number for the GPU and 320 mhz? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (model_number VARCHAR, gpu_frequency VARCHAR) | SELECT model_number FROM table_name_98 WHERE gpu_frequency = "320 mhz" |
Write a SQL query that answers the following question: What is the socket of the model atom e680t? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (socket VARCHAR, model_number VARCHAR) | SELECT socket FROM table_name_55 WHERE model_number = "atom e680t" |
Write a SQL query that answers the following question: What is the memory for ct80618005844ab? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (memory VARCHAR, part_number_s_ VARCHAR) | SELECT memory FROM table_name_78 WHERE part_number_s_ = "ct80618005844ab" |
Write a SQL query that answers the following question: Which Average Cards a game has a Season of 1997/1998, and a Games larger than 38? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (average_cards_a_game INTEGER, season VARCHAR, games VARCHAR) | SELECT MAX(average_cards_a_game) FROM table_name_78 WHERE season = "1997/1998" AND games > 38 |
Write a SQL query that answers the following question: Which Red Cards has a Season of 1998/1999, and a Games larger than 41? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (red_cards INTEGER, season VARCHAR, games VARCHAR) | SELECT MIN(red_cards) FROM table_name_55 WHERE season = "1998/1999" AND games > 41 |
Write a SQL query that answers the following question: Which Games has a Season of 2003/2004, and a Red Cards smaller than 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (games INTEGER, season VARCHAR, red_cards VARCHAR) | SELECT AVG(games) FROM table_name_65 WHERE season = "2003/2004" AND red_cards < 5 |
Write a SQL query that answers the following question: Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (average_cards_a_game INTEGER, season VARCHAR, red_cards VARCHAR) | SELECT MIN(average_cards_a_game) FROM table_name_22 WHERE season = "2004/2005" AND red_cards > 3 |
Write a SQL query that answers the following question: Which Yellow Cards has a Season of 1999/2000? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (yellow_cards INTEGER, season VARCHAR) | SELECT AVG(yellow_cards) FROM table_name_75 WHERE season = "1999/2000" |
Write a SQL query that answers the following question: Which Goals have Ends of 30 june 2010, and Since larger than 2007? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (goals VARCHAR, ends VARCHAR, since VARCHAR) | SELECT goals FROM table_name_14 WHERE ends = "30 june 2010" AND since > 2007 |
Write a SQL query that answers the following question: Which Name has Ends of 30 june 2010, and a Nation of eng, and Since larger than 2007? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (name VARCHAR, since VARCHAR, ends VARCHAR, nat VARCHAR) | SELECT name FROM table_name_2 WHERE ends = "30 june 2010" AND nat = "eng" AND since > 2007 |
Write a SQL query that answers the following question: What was Bryan Clay's react time? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (react INTEGER, name VARCHAR) | SELECT MIN(react) FROM table_name_94 WHERE name = "bryan clay" |
Write a SQL query that answers the following question: What country did Dmitriy Karpov represent? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (country VARCHAR, name VARCHAR) | SELECT country FROM table_name_92 WHERE name = "dmitriy karpov" |
Write a SQL query that answers the following question: What is Plural, when Singular is tor (your)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (plural VARCHAR, singular VARCHAR) | SELECT plural FROM table_name_33 WHERE singular = "tor (your)" |
Write a SQL query that answers the following question: What is Proximity, when Honor is P, and when Singular is ẽr (his/her/its)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (proximity VARCHAR, honor VARCHAR, singular VARCHAR) | SELECT proximity FROM table_name_2 WHERE honor = "p" AND singular = "ẽr (his/her/its)" |
Write a SQL query that answers the following question: What is the lowest Subject, when Plural is tãder (their)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (subject INTEGER, plural VARCHAR) | SELECT MIN(subject) FROM table_name_58 WHERE plural = "tãder (their)" |
Write a SQL query that answers the following question: What is Proximity, when Plural is amader (our)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (proximity VARCHAR, plural VARCHAR) | SELECT proximity FROM table_name_67 WHERE plural = "amader (our)" |
Write a SQL query that answers the following question: What is Honor, when Singular is ẽr (his/her/its)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (honor VARCHAR, singular VARCHAR) | SELECT honor FROM table_name_97 WHERE singular = "ẽr (his/her/its)" |
Write a SQL query that answers the following question: what is the f/laps when the season is 2011 and races is 18? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (f_laps VARCHAR, season VARCHAR, races VARCHAR) | SELECT f_laps FROM table_name_16 WHERE season = "2011" AND races = "18" |
Write a SQL query that answers the following question: what is the wins when the f/laps is test driver and team is lotus racing? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (wins VARCHAR, f_laps VARCHAR, team VARCHAR) | SELECT wins FROM table_name_20 WHERE f_laps = "test driver" AND team = "lotus racing" |
Write a SQL query that answers the following question: what is the poles when the wins is 0 and points is 0? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (poles VARCHAR, wins VARCHAR, points VARCHAR) | SELECT poles FROM table_name_86 WHERE wins = "0" AND points = "0" |
Write a SQL query that answers the following question: What score won $36,090? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (score VARCHAR, money___$__ VARCHAR) | SELECT score FROM table_name_65 WHERE money___$__ = "36,090" |
Write a SQL query that answers the following question: What was Larry Nelson's final score? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_39 WHERE player = "larry nelson" |
Write a SQL query that answers the following question: What is the average attendance of the game with 38 opponent and less than 14 Falcons points? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (attendance INTEGER, opponents VARCHAR, falcons_points VARCHAR) | SELECT AVG(attendance) FROM table_name_63 WHERE opponents = 38 AND falcons_points < 14 |
Write a SQL query that answers the following question: What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (losses VARCHAR, school VARCHAR, conference VARCHAR, games VARCHAR, wins VARCHAR) | SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = "maac" AND school = "fairfield" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.