question
stringlengths 12
243
| answer
stringlengths 18
557
| context
stringlengths 27
489
|
---|---|---|
What is the Purpose of the Callsign with a Freq currently of 4rph? | SELECT purpose FROM table_name_43 WHERE freq_currently = "4rph" | CREATE TABLE table_name_43 (purpose VARCHAR, freq_currently VARCHAR) |
Can you tell me the sum of Pick # that has the Position of sb, and the College of minnesota? | SELECT SUM(pick__number) FROM table_name_20 WHERE position = "sb" AND college = "minnesota" | CREATE TABLE table_name_20 (pick__number INTEGER, position VARCHAR, college VARCHAR) |
List the number of all matches who played in years of 2013 or 2016. | SELECT COUNT(*) FROM matches WHERE YEAR = 2013 OR YEAR = 2016 | CREATE TABLE matches (YEAR VARCHAR) |
What's the name that has the characters 廣亨? | SELECT name__wade_giles_ FROM table_name_87 WHERE characters = "廣亨" | CREATE TABLE table_name_87 (name__wade_giles_ VARCHAR, characters VARCHAR) |
Prior to 2004, what was the name of the competition that took place in Johannesburg, South Africa and had the 400 m hurdles event? | SELECT competition FROM table_name_75 WHERE notes = "400 m hurdles" AND year < 2004 AND venue = "johannesburg, south africa" | CREATE TABLE table_name_75 (competition VARCHAR, venue VARCHAR, notes VARCHAR, year VARCHAR) |
What is the career SR for the tournament of wimbledon? | SELECT career_sr FROM table_name_21 WHERE tournament = "wimbledon" | CREATE TABLE table_name_21 (career_sr VARCHAR, tournament VARCHAR) |
What is the sum of values of Rd 7 with RD 6 less than 48 and Rd 8 less than 4 for TC Motorsport in a position greater than 1? | SELECT SUM(rd_7) FROM table_name_97 WHERE position > 1 AND rd_6 < 48 AND team = "tc motorsport" AND rd_8 < 4 | CREATE TABLE table_name_97 (rd_7 INTEGER, rd_8 VARCHAR, team VARCHAR, position VARCHAR, rd_6 VARCHAR) |
What are the population, name and leader of the country with the largest area? | SELECT Name, population, HeadOfState FROM country ORDER BY SurfaceArea DESC LIMIT 1 | CREATE TABLE country (Name VARCHAR, population VARCHAR, HeadOfState VARCHAR, SurfaceArea VARCHAR) |
What is the maximum elevation of all airports in the country of Iceland? | SELECT MAX(elevation) FROM airports WHERE country = 'Iceland' | CREATE TABLE airports (elevation INTEGER, country VARCHAR) |
Who is the Winner, when the Loser is the Baltimore Colts, when the Location is Schaefer Stadium, and when the Result is 42-3? | SELECT winner FROM table_name_33 WHERE loser = "baltimore colts" AND location = "schaefer stadium" AND result = "42-3" | CREATE TABLE table_name_33 (winner VARCHAR, result VARCHAR, loser VARCHAR, location VARCHAR) |
What are the most Points with an Assist of 46? | SELECT MAX(points) FROM table_name_53 WHERE assists = 46 | CREATE TABLE table_name_53 (points INTEGER, assists VARCHAR) |
What was the streak at the game at the Miami Orange Bowl? | SELECT streak FROM table_name_99 WHERE stadium = "miami orange bowl" | CREATE TABLE table_name_99 (streak VARCHAR, stadium VARCHAR) |
What is the number of points when the played is less than 30? | SELECT COUNT(points) FROM table_name_42 WHERE played < 30 | CREATE TABLE table_name_42 (points VARCHAR, played INTEGER) |
What was the result on 29/09/07? | SELECT result FROM table_name_14 WHERE date = "29/09/07" | CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR) |
Which Total has a Date of 1602, and Greater Doubles smaller than 16? | SELECT MAX(total) FROM table_name_72 WHERE date = 1602 AND greater_doubles < 16 | CREATE TABLE table_name_72 (total INTEGER, date VARCHAR, greater_doubles VARCHAR) |
What is Type for Rite Albanian? | SELECT type FROM table_name_63 WHERE rite = "albanian" | CREATE TABLE table_name_63 (type VARCHAR, rite VARCHAR) |
How many in the majority when Dan Sullivan won? | SELECT COUNT(majority) FROM table_name_9 WHERE winner = "dan sullivan" | CREATE TABLE table_name_9 (majority VARCHAR, winner VARCHAR) |
What Lomavren word has the same meaning as the Hindi word do? | SELECT lomavren FROM table_name_97 WHERE hindi = "do" | CREATE TABLE table_name_97 (lomavren VARCHAR, hindi VARCHAR) |
When Alberto Contador Kanstantsin Sivtsov was the general classification and Alessandro Petacchi was the points classification at the same time while Mark Cavendish is the winner, who was the mountain classification? | SELECT mountains_classification FROM table_28538368_2 WHERE general_classification = "Alberto Contador Kanstantsin Sivtsov" AND points_classification = "Alessandro Petacchi" AND winner = "Mark Cavendish" | CREATE TABLE table_28538368_2 (mountains_classification VARCHAR, winner VARCHAR, general_classification VARCHAR, points_classification VARCHAR) |
What shows for Władysławowo, Poland when the world record shows olympic record, a Marcin Dołęga (POL) is olympic standard, and Snatch is clean & jerk? | SELECT władysławowo_, _poland FROM table_name_83 WHERE world_record = "olympic record" AND marcin_dołęga___pol__ = "olympic standard" AND snatch = "clean & jerk" | CREATE TABLE table_name_83 (władysławowo_ VARCHAR, _poland VARCHAR, snatch VARCHAR, world_record VARCHAR, marcin_dołęga___pol__ VARCHAR) |
Name the total number of districts for rob teplitz | SELECT COUNT(district) FROM table_1979619_3 WHERE representative = "Rob Teplitz" | CREATE TABLE table_1979619_3 (district VARCHAR, representative VARCHAR) |
Which park had most attendances in 2008? | SELECT T2.park_name FROM home_game AS T1 JOIN park AS T2 ON T1.park_id = T2.park_id WHERE T1.year = 2008 ORDER BY T1.attendance DESC LIMIT 1 | CREATE TABLE park (park_name VARCHAR, park_id VARCHAR); CREATE TABLE home_game (park_id VARCHAR, year VARCHAR, attendance VARCHAR) |
How many rounds did Pierre Bland have a pick larger than 148? | SELECT COUNT(round) FROM table_name_13 WHERE pick > 148 AND player = "pierre bland" | CREATE TABLE table_name_13 (round VARCHAR, pick VARCHAR, player VARCHAR) |
What is the Homeport that has a Laid down on 14 december 1985? | SELECT homeport__as_of_july_2013_ FROM table_name_73 WHERE laid_down = "14 december 1985" | CREATE TABLE table_name_73 (homeport__as_of_july_2013_ VARCHAR, laid_down VARCHAR) |
What is the to total number of par with laurie ayton? | SELECT COUNT(to_par) FROM table_name_99 WHERE player = "laurie ayton" | CREATE TABLE table_name_99 (to_par VARCHAR, player VARCHAR) |
Name the original airdate for mr. buckston | SELECT original_airdate FROM table_name_23 WHERE identity_ies_ = "mr. buckston" | CREATE TABLE table_name_23 (original_airdate VARCHAR, identity_ies_ VARCHAR) |
Who has more than 70 score with +1 to par? | SELECT player FROM table_name_13 WHERE score > 70 AND to_par = "+1" | CREATE TABLE table_name_13 (player VARCHAR, score VARCHAR, to_par VARCHAR) |
What is the number of turns for the City of san antonio? | SELECT turns FROM table_name_35 WHERE city = "san antonio" | CREATE TABLE table_name_35 (turns VARCHAR, city VARCHAR) |
What was the race when the winner of 2nd was Voleuse? | SELECT race FROM table_name_27 WHERE winner_or_2nd = "voleuse" | CREATE TABLE table_name_27 (race VARCHAR, winner_or_2nd VARCHAR) |
Game larger than 1, and a Location of comiskey park (i), and a Date of October 9 happened at what time? | SELECT time FROM table_name_29 WHERE game > 1 AND location = "comiskey park (i)" AND date = "october 9" | CREATE TABLE table_name_29 (time VARCHAR, date VARCHAR, game VARCHAR, location VARCHAR) |
What years have 9 (3) as the finals? | SELECT years FROM table_name_77 WHERE finals = "9 (3)" | CREATE TABLE table_name_77 (years VARCHAR, finals VARCHAR) |
Who was the home team who played plymouth argyle? | SELECT home_team FROM table_24887326_8 WHERE away_team = "Plymouth Argyle" | CREATE TABLE table_24887326_8 (home_team VARCHAR, away_team VARCHAR) |
What is the average against score of all teams with less than 7 losses, more than 6 draws, and 25 points? | SELECT AVG(against) FROM table_name_99 WHERE lost < 7 AND drawn > 6 AND points = 25 | CREATE TABLE table_name_99 (against INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR) |
What is the average rating for a Flyde that has a Burnley less than 0? | SELECT AVG(fylde) FROM table_name_57 WHERE burnley < 0 | CREATE TABLE table_name_57 (fylde INTEGER, burnley INTEGER) |
What the total amount of points won during seed 25? | SELECT COUNT(points) AS won FROM table_24431348_18 WHERE seed = 25 | CREATE TABLE table_24431348_18 (points VARCHAR, seed VARCHAR) |
How many points were awarded to the Ford DFZ 3.5 V8? | SELECT SUM(points) FROM table_name_86 WHERE engine_s_ = "ford dfz 3.5 v8" | CREATE TABLE table_name_86 (points INTEGER, engine_s_ VARCHAR) |
Which player has a total of more than 290 and +4 to par. | SELECT player FROM table_name_29 WHERE total > 290 AND to_par = "+4" | CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR) |
What position is there when the main contestant is Vishal Singh and the scores are 1 + 7 + 5 = 13? | SELECT position FROM table_name_21 WHERE main_contestant = "vishal singh" AND scores_by_each_individual_judge = 1 + 7 + 5 = 13 | CREATE TABLE table_name_21 (position VARCHAR, main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR) |
If the call sign is DXYR, what is the branding? | SELECT branding FROM table_19874169_3 WHERE callsign = "DXYR" | CREATE TABLE table_19874169_3 (branding VARCHAR, callsign VARCHAR) |
What is Teleplay, when Season is greater than 1.1, and when First Broadcast is "February 20, 1981"? | SELECT teleplay FROM table_name_37 WHERE season > 1.1 AND first_broadcast = "february 20, 1981" | CREATE TABLE table_name_37 (teleplay VARCHAR, season VARCHAR, first_broadcast VARCHAR) |
What team had 159 laps and a Time/Retired of 6:30:02.3733? | SELECT team FROM table_name_75 WHERE laps = 159 AND time_retired = "6:30:02.3733" | CREATE TABLE table_name_75 (team VARCHAR, laps VARCHAR, time_retired VARCHAR) |
What position was played by the player during 1986 – 1991 1997 – 1999? | SELECT position FROM table_name_57 WHERE years = "1986 – 1991 1997 – 1999" | CREATE TABLE table_name_57 (position VARCHAR, years VARCHAR) |
That is the year founded for the institution location of Nashville, Tennessee? | SELECT MIN(founded) FROM table_10577579_2 WHERE location = "Nashville, Tennessee" | CREATE TABLE table_10577579_2 (founded INTEGER, location VARCHAR) |
What was the week 2 before Lara Leverence was week 3? | SELECT week_2 FROM table_name_40 WHERE week_3 = "lara leverence" | CREATE TABLE table_name_40 (week_2 VARCHAR, week_3 VARCHAR) |
What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk? | SELECT gp_winner FROM table_name_2 WHERE race_winners = "valentin giraud / nicolas musset" AND place = "genk" | CREATE TABLE table_name_2 (gp_winner VARCHAR, race_winners VARCHAR, place VARCHAR) |
How many middlesex principals were there in 2000-2001? | SELECT COUNT(middlesex_principal) FROM table_25037577_1 WHERE year = "2000-2001" | CREATE TABLE table_25037577_1 (middlesex_principal VARCHAR, year VARCHAR) |
What Group Song of Shine 王幸儿? | SELECT Group AS song FROM table_name_60 WHERE name = "shine 王幸儿" | CREATE TABLE table_name_60 (Group VARCHAR, name VARCHAR) |
What is the Home team of the Lincoln City Away game? | SELECT home_team FROM table_name_5 WHERE away_team = "lincoln city" | CREATE TABLE table_name_5 (home_team VARCHAR, away_team VARCHAR) |
What tournament did the Crusaders play in? | SELECT tournament FROM table_name_98 WHERE opponent = "crusaders" | CREATE TABLE table_name_98 (tournament VARCHAR, opponent VARCHAR) |
What is the branding for the station located in san jose del monte? | SELECT branding FROM table_27588823_2 WHERE location = "San Jose Del Monte" | CREATE TABLE table_27588823_2 (branding VARCHAR, location VARCHAR) |
Which date has a Terrain of plain stage, and a Stage of 4? | SELECT date FROM table_name_34 WHERE terrain = "plain stage" AND stage = "4" | CREATE TABLE table_name_34 (date VARCHAR, terrain VARCHAR, stage VARCHAR) |
how many times did Casey Martin win? | SELECT MAX(wins) FROM table_1697190_2 | CREATE TABLE table_1697190_2 (wins INTEGER) |
What is every team in the location of Port Moresby? | SELECT team FROM table_2383498_4 WHERE location = "Port Moresby" | CREATE TABLE table_2383498_4 (team VARCHAR, location VARCHAR) |
How did he win with a time of 0:38? | SELECT method FROM table_name_41 WHERE time = "0:38" | CREATE TABLE table_name_41 (method VARCHAR, time VARCHAR) |
What is Career with the franchise [b ], when Player is "Willie Anderson Category:Articles with hCards"? | SELECT career_with_the_franchise_[b_] FROM table_name_59 WHERE player = "willie anderson category:articles with hcards" | CREATE TABLE table_name_59 (career_with_the_franchise_ VARCHAR, b_ VARCHAR, player VARCHAR) |
How many courses are there in total? | SELECT COUNT(*) FROM COURSES | CREATE TABLE COURSES (Id VARCHAR) |
Who is the incumbent who was first elected before 2002 from the maryland 3 district? | SELECT incumbent FROM table_name_41 WHERE first_elected < 2002 AND district = "maryland 3" | CREATE TABLE table_name_41 (incumbent VARCHAR, first_elected VARCHAR, district VARCHAR) |
What is Aberdeen team's date of vacancy? | SELECT date_of_vacancy FROM table_name_37 WHERE team = "aberdeen" | CREATE TABLE table_name_37 (date_of_vacancy VARCHAR, team VARCHAR) |
What is the least amount of people that attended a game when Essendon was the away team? | SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "essendon" | CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR) |
What Tournament had a Winning score of –6 (73-68-72-69=282)? | SELECT tournament FROM table_name_49 WHERE winning_score = –6(73 - 68 - 72 - 69 = 282) | CREATE TABLE table_name_49 (tournament VARCHAR, winning_score VARCHAR) |
How many weeks have w 51-29 as the result/score? | SELECT SUM(week) FROM table_name_34 WHERE result_score = "w 51-29" | CREATE TABLE table_name_34 (week INTEGER, result_score VARCHAR) |
What are Doug Davis' maximum pitching stats? | SELECT MAX(stats) FROM table_19839391_3 WHERE pitcher = "Doug Davis" | CREATE TABLE table_19839391_3 (stats INTEGER, pitcher VARCHAR) |
What day is south melbourne the away side? | SELECT date FROM table_name_21 WHERE away_team = "south melbourne" | CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR) |
Name the chapter with chinese of 釋水 | SELECT chapter FROM table_name_28 WHERE chinese = "釋水" | CREATE TABLE table_name_28 (chapter VARCHAR, chinese VARCHAR) |
With a per capita income of $30,298, what was the total number of households? | SELECT COUNT(number_of_households) FROM table_1840495_2 WHERE per_capita_income = "$30,298" | CREATE TABLE table_1840495_2 (number_of_households VARCHAR, per_capita_income VARCHAR) |
What is the Ground with a Date that is 2008-06-20? | SELECT ground FROM table_name_42 WHERE date = "2008-06-20" | CREATE TABLE table_name_42 (ground VARCHAR, date VARCHAR) |
What was the lowest heat for Germany with a rank smaller than 9 for Mike Fenner and a time smaller than 13.52? | SELECT MIN(heat) FROM table_name_51 WHERE nationality = "germany" AND rank < 9 AND name = "mike fenner" AND time < 13.52 | CREATE TABLE table_name_51 (heat INTEGER, time VARCHAR, name VARCHAR, nationality VARCHAR, rank VARCHAR) |
Who was the Opponent in the Auckland, New Zealand Tournament? | SELECT opponent FROM table_name_50 WHERE tournament = "auckland, new zealand" | CREATE TABLE table_name_50 (opponent VARCHAR, tournament VARCHAR) |
who is the opponent when norway is against? | SELECT opponent FROM table_name_67 WHERE against = "norway" | CREATE TABLE table_name_67 (opponent VARCHAR, against VARCHAR) |
Which name had a bodyweight bigger than 89.64, a total (kg) bigger than 310, a clean and jerk less than 207.5, and a snatch that is bigger than 165? | SELECT name FROM table_name_89 WHERE bodyweight > 89.64 AND total__kg_ > 310 AND clean_ & _jerk < 207.5 AND snatch > 165 | CREATE TABLE table_name_89 (name VARCHAR, snatch VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR) |
What was the score on April 20? | SELECT score FROM table_name_3 WHERE date = "april 20" | CREATE TABLE table_name_3 (score VARCHAR, date VARCHAR) |
Find the name of the department that has the biggest number of students minored in? | SELECT T1.DName FROM DEPARTMENT AS T1 JOIN MINOR_IN AS T2 ON T1.DNO = T2.DNO GROUP BY T2.DNO ORDER BY COUNT(*) DESC LIMIT 1 | CREATE TABLE DEPARTMENT (DName VARCHAR, DNO VARCHAR); CREATE TABLE MINOR_IN (DNO VARCHAR) |
Which Country has azeri tv tower? | SELECT country FROM table_name_61 WHERE name = "azeri tv tower" | CREATE TABLE table_name_61 (country VARCHAR, name VARCHAR) |
Tell me the bullet tip color of headstamp id of h1z | SELECT bullet_tip_color FROM table_name_54 WHERE headstamp_id = "h1z" | CREATE TABLE table_name_54 (bullet_tip_color VARCHAR, headstamp_id VARCHAR) |
What position did Pranita Sahu's team get? | SELECT position FROM table_18278508_2 WHERE co_contestant__yaar_vs_pyaar_ = "Pranita Sahu" | CREATE TABLE table_18278508_2 (position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) |
What is the total points for GP/GS of 24/23? | SELECT total_points FROM table_name_28 WHERE gp_gs = "24/23" | CREATE TABLE table_name_28 (total_points VARCHAR, gp_gs VARCHAR) |
Which Country has Wins larger than 2, and a Rank of 2, and a Name of federico bahamontes? | SELECT country FROM table_name_90 WHERE wins > 2 AND rank = 2 AND name = "federico bahamontes" | CREATE TABLE table_name_90 (country VARCHAR, name VARCHAR, wins VARCHAR, rank VARCHAR) |
What Champion had a Score of 9–1? | SELECT champion FROM table_name_82 WHERE score = "9–1" | CREATE TABLE table_name_82 (champion VARCHAR, score VARCHAR) |
What is the total number for the position that has less than 2 draws, less than 9 losses and more than 24? | SELECT COUNT(position) FROM table_name_24 WHERE drawn < 2 AND lost < 9 AND points > 24 | CREATE TABLE table_name_24 (position VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR) |
What was the Score on February 18, 2008? | SELECT score FROM table_name_32 WHERE date = "february 18, 2008" | CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR) |
What was the regular season name where they did not qualify for the playoffs in 2009? | SELECT reg_season FROM table_21602734_1 WHERE playoffs = "Did not qualify" AND year = 2009 | CREATE TABLE table_21602734_1 (reg_season VARCHAR, playoffs VARCHAR, year VARCHAR) |
What is the team that has a shooting guard that played for the Grizzlies in 2000-2001? | SELECT school_club_team FROM table_name_98 WHERE position = "shooting guard" AND years_for_grizzlies = "2000-2001" | CREATE TABLE table_name_98 (school_club_team VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR) |
what is the score when the game is higher than 66 on march 28? | SELECT score FROM table_name_82 WHERE game > 66 AND march = 28 | CREATE TABLE table_name_82 (score VARCHAR, game VARCHAR, march VARCHAR) |
What event has european championships as the tournament, with 2006 as the year? | SELECT event FROM table_name_61 WHERE tournament = "european championships" AND year = 2006 | CREATE TABLE table_name_61 (event VARCHAR, tournament VARCHAR, year VARCHAR) |
What Tournament had a Score of 4–6, 6–7, 3–6? | SELECT tournament FROM table_name_95 WHERE score = "4–6, 6–7, 3–6" | CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR) |
What is the name of the opponent when anastasia pivovarova was the partner? | SELECT opponents FROM table_name_15 WHERE partner = "anastasia pivovarova" | CREATE TABLE table_name_15 (opponents VARCHAR, partner VARCHAR) |
What's the Score with a Home of Scotland and Date of 24 February? | SELECT score FROM table_name_12 WHERE home = "scotland" AND date = "24 february" | CREATE TABLE table_name_12 (score VARCHAR, home VARCHAR, date VARCHAR) |
What is the average round for draft pick #49 from Notre Dame? | SELECT AVG(round) FROM table_name_90 WHERE college = "notre dame" AND pick__number = "49" | CREATE TABLE table_name_90 (round INTEGER, college VARCHAR, pick__number VARCHAR) |
What were the results of episodes with the first air date of March 6, 2008? | SELECT finish FROM table_11220799_2 WHERE first_air_date = "March 6, 2008" | CREATE TABLE table_11220799_2 (finish VARCHAR, first_air_date VARCHAR) |
What is the total number of averages with an interview of 8.75 when the evening gown number was bigger than 8.75? | SELECT SUM(average) FROM table_name_62 WHERE interview = 8.75 AND evening_gown > 8.75 | CREATE TABLE table_name_62 (average INTEGER, interview VARCHAR, evening_gown VARCHAR) |
How many Silvers that has a Gold smaller than 1, and a Rank of 9, and a Total smaller than 1? | SELECT SUM(silver) FROM table_name_70 WHERE gold < 1 AND rank = "9" AND total < 1 | CREATE TABLE table_name_70 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR) |
What are the total apps that have 41 as the League apps, with total goals greater than 1? | SELECT total_apps FROM table_name_16 WHERE league_apps = "41" AND total_goals > 1 | CREATE TABLE table_name_16 (total_apps VARCHAR, league_apps VARCHAR, total_goals VARCHAR) |
Who was the opponent at GCM – D.O.G. 4? | SELECT opponent FROM table_name_54 WHERE event = "gcm – d.o.g. 4" | CREATE TABLE table_name_54 (opponent VARCHAR, event VARCHAR) |
WHAT WAS THE SCORE OF THE GAME WITH A 2007-03-06, 20:45 KICKOFF? | SELECT result FROM table_name_50 WHERE kick_off = "2007-03-06, 20:45" | CREATE TABLE table_name_50 (result VARCHAR, kick_off VARCHAR) |
where did rochdale play as opponent? | SELECT venue FROM table_name_77 WHERE opponent = "rochdale" | CREATE TABLE table_name_77 (venue VARCHAR, opponent VARCHAR) |
What are the processors supported by a ddr2 memory and the nforce 550 model? | SELECT processors_supported FROM table_name_91 WHERE memory = "ddr2" AND model = "nforce 550" | CREATE TABLE table_name_91 (processors_supported VARCHAR, memory VARCHAR, model VARCHAR) |
What percentage of browsers were using Opera in November 2009? | SELECT opera FROM table_name_69 WHERE date = "november 2009" | CREATE TABLE table_name_69 (opera VARCHAR, date VARCHAR) |
What is the ISBN of Japanese Title of 霧の訪問者 (kiri no hōmonsha)? | SELECT isbn FROM table_name_54 WHERE japanese_title = "霧の訪問者 (kiri no hōmonsha)" | CREATE TABLE table_name_54 (isbn VARCHAR, japanese_title VARCHAR) |
Name the school that is cougars | SELECT institution FROM table_24216139_2 WHERE nickname = "Cougars" | CREATE TABLE table_24216139_2 (institution VARCHAR, nickname VARCHAR) |
What day was the visitor Cleveland when the record was 34-26? | SELECT date FROM table_name_43 WHERE visitor = "cleveland" AND record = "34-26" | CREATE TABLE table_name_43 (date VARCHAR, visitor VARCHAR, record VARCHAR) |
Subsets and Splits