question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the sum of silvers for countries in rank 8 with totals over 3?
CREATE TABLE table_name_25 (silver INTEGER, rank VARCHAR, total VARCHAR)
SELECT SUM(silver) FROM table_name_25 WHERE rank = "8" AND total > 3
What is the average total for countries with under 3 golds and 0 silvers?
CREATE TABLE table_name_83 (total INTEGER, gold VARCHAR, silver VARCHAR)
SELECT AVG(total) FROM table_name_83 WHERE gold < 3 AND silver < 0
What is the Studio of the Film directed by Paul Greengrass?
CREATE TABLE table_name_45 (studio_s_ VARCHAR, director VARCHAR)
SELECT studio_s_ FROM table_name_45 WHERE director = "paul greengrass"
Who was the Director of Kung Fu Panda 2?
CREATE TABLE table_name_15 (director VARCHAR, title VARCHAR)
SELECT director FROM table_name_15 WHERE title = "kung fu panda 2"
What is Year is Walt Disney Pictures Imagemovers Digital?
CREATE TABLE table_name_59 (year INTEGER, studio_s_ VARCHAR)
SELECT SUM(year) FROM table_name_59 WHERE studio_s_ = "walt disney pictures imagemovers digital"
What is the Year of Rio?
CREATE TABLE table_name_14 (year VARCHAR, title VARCHAR)
SELECT year FROM table_name_14 WHERE title = "rio"
What is the Total of Player Craig Stadler?
CREATE TABLE table_name_56 (total INTEGER, player VARCHAR)
SELECT AVG(total) FROM table_name_56 WHERE player = "craig stadler"
What is the Total of the Player who won in 1998?
CREATE TABLE table_name_72 (total INTEGER, year_s__won VARCHAR)
SELECT MAX(total) FROM table_name_72 WHERE year_s__won = "1998"
What is the Total of the Player who won in 1979 with a To par of less than 11?
CREATE TABLE table_name_28 (total INTEGER, year_s__won VARCHAR, to_par VARCHAR)
SELECT MAX(total) FROM table_name_28 WHERE year_s__won = "1979" AND to_par < 11
What lane did Bronte Barratt, who had a rank larger than 4, swim in?
CREATE TABLE table_name_79 (lane INTEGER, name VARCHAR, rank VARCHAR)
SELECT AVG(lane) FROM table_name_79 WHERE name = "bronte barratt" AND rank > 4
In which lane did the swimmer with a time of 1:58.44 swim?
CREATE TABLE table_name_67 (lane VARCHAR, time VARCHAR)
SELECT COUNT(lane) FROM table_name_67 WHERE time = "1:58.44"
In which lane did the swimmer with a time of 1:57.01 and a rank smaller than 6 swim?
CREATE TABLE table_name_17 (lane INTEGER, rank VARCHAR, time VARCHAR)
SELECT SUM(lane) FROM table_name_17 WHERE rank < 6 AND time = "1:57.01"
What is the result of round 4?
CREATE TABLE table_name_39 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_39 WHERE round = 4
What venue was round 20 held at?
CREATE TABLE table_name_11 (venue VARCHAR, round VARCHAR)
SELECT venue FROM table_name_11 WHERE round = 20
What is the report for round 9?
CREATE TABLE table_name_9 (report VARCHAR, round VARCHAR)
SELECT report FROM table_name_9 WHERE round = 9
What is the highest rank of an athlete from Switzerland in a heat larger than 3?
CREATE TABLE table_name_54 (rank INTEGER, heat VARCHAR, nationality VARCHAR)
SELECT MAX(rank) FROM table_name_54 WHERE heat > 3 AND nationality = "switzerland"
What were the goals for the player whose years at club were 1908–1911, 1913–1919?
CREATE TABLE table_name_90 (goals VARCHAR, years_at_club VARCHAR)
SELECT goals FROM table_name_90 WHERE years_at_club = "1908–1911, 1913–1919"
What are the most goals listed when Jack Trehey was the player, with the listed debut year of 1902, games less than 1?
CREATE TABLE table_name_29 (goals INTEGER, games VARCHAR, debut_year VARCHAR, player VARCHAR)
SELECT MAX(goals) FROM table_name_29 WHERE debut_year = 1902 AND player = "jack trehey" AND games < 1
For player Wally Johnson, with goals larger than 0, the debut year later than 1904, and games greater than 136, what were the years at club?
CREATE TABLE table_name_5 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR)
SELECT years_at_club FROM table_name_5 WHERE goals > 0 AND debut_year > 1904 AND games > 136 AND player = "wally johnson"
What is the highest debut year for player Joe Youlden, with goals larger than 0?
CREATE TABLE table_name_56 (debut_year INTEGER, player VARCHAR, goals VARCHAR)
SELECT MAX(debut_year) FROM table_name_56 WHERE player = "joe youlden" AND goals > 0
What is the lowest goals listed for player Sid O'neill, with Games larger than 1?
CREATE TABLE table_name_91 (goals INTEGER, player VARCHAR, games VARCHAR)
SELECT MIN(goals) FROM table_name_91 WHERE player = "sid o'neill" AND games > 1
What's the date the score was 379?
CREATE TABLE table_name_5 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_5 WHERE score = "379"
What's the comp when the score was 393?
CREATE TABLE table_name_81 (comp VARCHAR, score VARCHAR)
SELECT comp FROM table_name_81 WHERE score = "393"
Which College/junior/club team has a Round of 4?
CREATE TABLE table_name_11 (college_junior_club_team VARCHAR, round VARCHAR)
SELECT college_junior_club_team FROM table_name_11 WHERE round = 4
What is the Population 1961 of West Sussex with a Population of 120,952 or less?
CREATE TABLE table_name_22 (population_1961 INTEGER, administrative_county VARCHAR, population_1891 VARCHAR)
SELECT SUM(population_1961) FROM table_name_22 WHERE administrative_county = "west sussex" AND population_1891 < 120 OFFSET 952
What is the Population n1891 of the County with Sleaford Headquarters?
CREATE TABLE table_name_44 (population_1891 INTEGER, headquarters VARCHAR)
SELECT MAX(population_1891) FROM table_name_44 WHERE headquarters = "sleaford"
What's the mascot in Anderson for the Independent previous conference?
CREATE TABLE table_name_74 (mascot VARCHAR, previous_conference VARCHAR, location VARCHAR)
SELECT mascot FROM table_name_74 WHERE previous_conference = "independent" AND location = "anderson"
What's the location for the Spartans?
CREATE TABLE table_name_99 (location VARCHAR, mascot VARCHAR)
SELECT location FROM table_name_99 WHERE mascot = "spartans"
What's the mascot in Huntington after the year 2000?
CREATE TABLE table_name_40 (mascot VARCHAR, year_left VARCHAR, location VARCHAR)
SELECT mascot FROM table_name_40 WHERE year_left > 2000 AND location = "huntington"
How many Spectators have a Date of 17 june 2006, and a Time (CET) larger than 15?
CREATE TABLE table_name_47 (spectators INTEGER, date VARCHAR, time__cet_ VARCHAR)
SELECT SUM(spectators) FROM table_name_47 WHERE date = "17 june 2006" AND time__cet_ > 15
What is the total number of cuts made when the top-25 is more than 0, and top-5 is more than 1?
CREATE TABLE table_name_68 (cuts_made VARCHAR, top_25 VARCHAR, top_5 VARCHAR)
SELECT COUNT(cuts_made) FROM table_name_68 WHERE top_25 > 0 AND top_5 > 1
What is the total number of cuts made when the events are more than 3?
CREATE TABLE table_name_47 (cuts_made VARCHAR, events INTEGER)
SELECT COUNT(cuts_made) FROM table_name_47 WHERE events > 3
What episodes had the title ロト6で3億2千万円当てた男 in Japanese?
CREATE TABLE table_name_13 (episodes VARCHAR, japanese_title VARCHAR)
SELECT episodes FROM table_name_13 WHERE japanese_title = "ロト6で3億2千万円当てた男"
What Japanese title had average ratings at 9.1%?
CREATE TABLE table_name_67 (japanese_title VARCHAR, average_ratings VARCHAR)
SELECT japanese_title FROM table_name_67 WHERE average_ratings = "9.1%"
Which TV station had a Romaji Title Maou?
CREATE TABLE table_name_64 (tv_station VARCHAR, romaji_title VARCHAR)
SELECT tv_station FROM table_name_64 WHERE romaji_title = "maou"
What Japanese title had average ratings of 9.2% on the NHK station?
CREATE TABLE table_name_78 (japanese_title VARCHAR, average_ratings VARCHAR, tv_station VARCHAR)
SELECT japanese_title FROM table_name_78 WHERE average_ratings = "9.2%" AND tv_station = "nhk"
What Japanese show on NHK had average ratings of 9.2%?
CREATE TABLE table_name_26 (japanese_title VARCHAR, tv_station VARCHAR, average_ratings VARCHAR)
SELECT japanese_title FROM table_name_26 WHERE tv_station = "nhk" AND average_ratings = "9.2%"
What is the 1st leg when team 2 is Asil Lysi?
CREATE TABLE table_name_91 (team_2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_91 WHERE team_2 = "asil lysi"
What is the 2nd leg when Ermis Aradippou is the first team?
CREATE TABLE table_name_50 (team_1 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_50 WHERE team_1 = "ermis aradippou"
What is the average number of gold medals won among the nations that won more than 1 bronze?
CREATE TABLE table_name_40 (gold INTEGER, bronze INTEGER)
SELECT AVG(gold) FROM table_name_40 WHERE bronze > 1
What is the average number of bronze medals won among nations that won at least 1 medal and are not ranked 1st?
CREATE TABLE table_name_65 (bronze INTEGER, total VARCHAR, rank VARCHAR)
SELECT AVG(bronze) FROM table_name_65 WHERE total > 1 AND rank > 1
What is the least number of gold medals won among nations ranked 1 with no silver medals?
CREATE TABLE table_name_8 (gold INTEGER, rank VARCHAR, silver VARCHAR)
SELECT MIN(gold) FROM table_name_8 WHERE rank = 1 AND silver < 1
Which athlete represented the country of egypt?
CREATE TABLE table_name_35 (athlete VARCHAR, country VARCHAR)
SELECT athlete FROM table_name_35 WHERE country = "egypt"
What rank did rower have with the time of 6:52.74?
CREATE TABLE table_name_70 (rank INTEGER, time VARCHAR)
SELECT SUM(rank) FROM table_name_70 WHERE time = "6:52.74"
What were the notes for the player who finished with a rank smaller than 2?
CREATE TABLE table_name_48 (notes VARCHAR, rank INTEGER)
SELECT notes FROM table_name_48 WHERE rank < 2
What is the highest week that has carolina panthers as the opponent?
CREATE TABLE table_name_51 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_name_51 WHERE opponent = "carolina panthers"
Which opponent has September 14, 2003 as the date?
CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_14 WHERE date = "september 14, 2003"
What is the highest week that has September 14, 2003 as the date?
CREATE TABLE table_name_81 (week INTEGER, date VARCHAR)
SELECT MAX(week) FROM table_name_81 WHERE date = "september 14, 2003"
What is the lowest week that has November 30, 2003 as the date?
CREATE TABLE table_name_19 (week INTEGER, date VARCHAR)
SELECT MIN(week) FROM table_name_19 WHERE date = "november 30, 2003"
Which League Goals have FA Cup Apps of 2, and Total Goals smaller than 0?
CREATE TABLE table_name_80 (league_goals INTEGER, fa_cup_apps VARCHAR, total_goals VARCHAR)
SELECT AVG(league_goals) FROM table_name_80 WHERE fa_cup_apps = "2" AND total_goals < 0
How many League Cup Goals have Total Apps of 36, and Total Goals smaller than 1?
CREATE TABLE table_name_76 (league_cup_goals VARCHAR, total_apps VARCHAR, total_goals VARCHAR)
SELECT COUNT(league_cup_goals) FROM table_name_76 WHERE total_apps = "36" AND total_goals < 1
Which position has 5 total apps?
CREATE TABLE table_name_39 (position VARCHAR, total_apps VARCHAR)
SELECT position FROM table_name_39 WHERE total_apps = "5"
What is the population density (per km) that has -6.7 as the change (%)?
CREATE TABLE table_name_8 (population_density__per_km²_ VARCHAR, change___percentage_ VARCHAR)
SELECT population_density__per_km²_ FROM table_name_8 WHERE change___percentage_ = "-6.7"
What population density (per km) that has 84 as the population (2006)?
CREATE TABLE table_name_56 (population_density__per_km²_ VARCHAR, population__2006_ VARCHAR)
SELECT population_density__per_km²_ FROM table_name_56 WHERE population__2006_ = "84"
Name the socket of sSpec number of sr0pk(e1)?
CREATE TABLE table_name_31 (socket VARCHAR, sspec_number VARCHAR)
SELECT socket FROM table_name_31 WHERE sspec_number = "sr0pk(e1)"
Which Release date has a sSpec number of sr0pk(e1)?
CREATE TABLE table_name_55 (release_date VARCHAR, sspec_number VARCHAR)
SELECT release_date FROM table_name_55 WHERE sspec_number = "sr0pk(e1)"
Which Part number(s) has a Model number of core i7-3770?
CREATE TABLE table_name_60 (part_number_s_ VARCHAR, model_number VARCHAR)
SELECT part_number_s_ FROM table_name_60 WHERE model_number = "core i7-3770"
Which Part number(s) has a L3 cache of 8 mb and a sSpec number of sr0pl(e1)?
CREATE TABLE table_name_71 (part_number_s_ VARCHAR, l3_cache VARCHAR, sspec_number VARCHAR)
SELECT part_number_s_ FROM table_name_71 WHERE l3_cache = "8 mb" AND sspec_number = "sr0pl(e1)"
Which Release price (USD ) has a GPU frequency of 650–1150 mhz and a sSpec number of sr0pq(e1)?
CREATE TABLE table_name_20 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR, sspec_number VARCHAR)
SELECT release_price___usd__ FROM table_name_20 WHERE gpu_frequency = "650–1150 mhz" AND sspec_number = "sr0pq(e1)"
Which Release price (USD ) that has a Release date on april 2012 and a Part number(s) of cm8063701211900bx80637i73770s?
CREATE TABLE table_name_90 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)
SELECT release_price___usd__ FROM table_name_90 WHERE release_date = "april 2012" AND part_number_s_ = "cm8063701211900bx80637i73770s"
When the genre is fighting what is the game?
CREATE TABLE table_name_89 (game VARCHAR, genre VARCHAR)
SELECT game FROM table_name_89 WHERE genre = "fighting"
What game has a platform(s) of playstation 3, when the genre is platform game?
CREATE TABLE table_name_33 (game VARCHAR, platform_s_ VARCHAR, genre VARCHAR)
SELECT game FROM table_name_33 WHERE platform_s_ = "playstation 3" AND genre = "platform game"
What is the platform(s) for the year 2006 (10th)?
CREATE TABLE table_name_78 (platform_s_ VARCHAR, year VARCHAR)
SELECT platform_s_ FROM table_name_78 WHERE year = "2006 (10th)"
What is the genre for the year 2012 (16th)?
CREATE TABLE table_name_44 (genre VARCHAR, year VARCHAR)
SELECT genre FROM table_name_44 WHERE year = "2012 (16th)"
What year has a genre the platform game?
CREATE TABLE table_name_18 (year VARCHAR, genre VARCHAR)
SELECT year FROM table_name_18 WHERE genre = "platform game"
What genre has the game god of war?
CREATE TABLE table_name_91 (genre VARCHAR, game VARCHAR)
SELECT genre FROM table_name_91 WHERE game = "god of war"
What is the score for Lucas Glover of the United States?
CREATE TABLE table_name_31 (score VARCHAR, country VARCHAR, player VARCHAR)
SELECT score FROM table_name_31 WHERE country = "united states" AND player = "lucas glover"
What is the score for Todd Hamilton?
CREATE TABLE table_name_52 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_52 WHERE player = "todd hamilton"
What player has a To par of –2, and a Score of 73-65=138?
CREATE TABLE table_name_61 (player VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT player FROM table_name_61 WHERE to_par = "–2" AND score = 73 - 65 = 138
What is the score of Nick Taylor (a)?
CREATE TABLE table_name_64 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_64 WHERE player = "nick taylor (a)"
What is the place of the person with a score of 67-70=137?
CREATE TABLE table_name_96 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_96 WHERE score = 67 - 70 = 137
What is Bishop Luers IHSAA class in football?
CREATE TABLE table_name_63 (ihsaa_class__football_ VARCHAR, school VARCHAR)
SELECT ihsaa_class__football_ FROM table_name_63 WHERE school = "bishop luers"
What IHSAA football class do the Generals play in?
CREATE TABLE table_name_24 (ihsaa_class__football_ VARCHAR, mascot VARCHAR)
SELECT ihsaa_class__football_ FROM table_name_24 WHERE mascot = "generals"
what is the attendance on december 14, 2003?
CREATE TABLE table_name_34 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_34 WHERE date = "december 14, 2003"
what is the attendance when the week is 5?
CREATE TABLE table_name_28 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_28 WHERE week = 5
what is the attendance on october 19, 2003?
CREATE TABLE table_name_36 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_36 WHERE date = "october 19, 2003"
What rank was the swimmer in lane 4?
CREATE TABLE table_name_41 (rank VARCHAR, lane VARCHAR)
SELECT rank FROM table_name_41 WHERE lane = 4
What is the highest lane for the poland swimmer who ranked under 6?
CREATE TABLE table_name_42 (lane INTEGER, rank VARCHAR, nationality VARCHAR)
SELECT MAX(lane) FROM table_name_42 WHERE rank < 6 AND nationality = "poland"
What is the CPU speed(s) of the New Plus type hardware?
CREATE TABLE table_name_74 (cpu_speed VARCHAR, type VARCHAR)
SELECT cpu_speed FROM table_name_74 WHERE type = "new plus"
Which CPU chip(s) is used in the Classic type hardware?
CREATE TABLE table_name_71 (cpu_chip VARCHAR, type VARCHAR)
SELECT cpu_chip FROM table_name_71 WHERE type = "classic"
What is the type of the RCA RW-2110, which has 2 MB of storage and a v.90 modem?
CREATE TABLE table_name_88 (type VARCHAR, model VARCHAR, brand VARCHAR, modem VARCHAR, storage VARCHAR)
SELECT type FROM table_name_88 WHERE modem = "v.90" AND storage = "2 mb" AND brand = "rca" AND model = "rw-2110"
What is the CPU chip in the Dishplayer 7100, which is a dish tuner with a v.90 modem?
CREATE TABLE table_name_10 (cpu_chip VARCHAR, model VARCHAR, modem VARCHAR, type VARCHAR)
SELECT cpu_chip FROM table_name_10 WHERE modem = "v.90" AND type = "dish tuner" AND model = "dishplayer 7100"
What brand is the RW-2100 model?
CREATE TABLE table_name_95 (brand VARCHAR, model VARCHAR)
SELECT brand FROM table_name_95 WHERE model = "rw-2100"
What's the highest Date listed that has U-boats destroyed (Pola) of 1?
CREATE TABLE table_name_97 (date INTEGER, u_boats_destroyed__pola_ VARCHAR)
SELECT MAX(date) FROM table_name_97 WHERE u_boats_destroyed__pola_ = "1"
What is the listed Tonnage that has U-boats destroyed (KuK) of 2 and Ships sunk (Pola) of (not recorded)?
CREATE TABLE table_name_54 (tonnage VARCHAR, u_boats_destroyed__kuk_ VARCHAR, ships_sunk__pola_ VARCHAR)
SELECT tonnage FROM table_name_54 WHERE u_boats_destroyed__kuk_ = "2" AND ships_sunk__pola_ = "(not recorded)"
What is the listed Tonnage for the Date of 1914?
CREATE TABLE table_name_69 (tonnage VARCHAR, date VARCHAR)
SELECT tonnage FROM table_name_69 WHERE date = 1914
What is listed as the average Date that has U-boats destroyed (KuK) of 2 with Tonnage of 1,514,050?
CREATE TABLE table_name_13 (date INTEGER, u_boats_destroyed__kuk_ VARCHAR, tonnage VARCHAR)
SELECT AVG(date) FROM table_name_13 WHERE u_boats_destroyed__kuk_ = "2" AND tonnage = "1,514,050"
Which Prominence (m) has a Rank of 10, and a Col (m) smaller than 50?
CREATE TABLE table_name_41 (prominence__m_ INTEGER, rank VARCHAR, col__m_ VARCHAR)
SELECT MIN(prominence__m_) FROM table_name_41 WHERE rank = 10 AND col__m_ < 50
How much Elevation (m) has a Col (m) smaller than 562, and a Rank of 10, and a Prominence (m) larger than 1,598?
CREATE TABLE table_name_15 (elevation__m_ VARCHAR, prominence__m_ VARCHAR, col__m_ VARCHAR, rank VARCHAR)
SELECT COUNT(elevation__m_) FROM table_name_15 WHERE col__m_ < 562 AND rank = 10 AND prominence__m_ > 1 OFFSET 598
Which Rank has a Col (m) of 0, and a Peak of aoraki/mount cook, and a Prominence (m) larger than 3,755?
CREATE TABLE table_name_32 (rank INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR)
SELECT SUM(rank) FROM table_name_32 WHERE col__m_ = 0 AND peak = "aoraki/mount cook" AND prominence__m_ > 3 OFFSET 755
In which city was the Night of the Living Duck released?
CREATE TABLE table_name_75 (city VARCHAR, title VARCHAR)
SELECT city FROM table_name_75 WHERE title = "the night of the living duck"
On what title was Stephen Fossatti the director of?
CREATE TABLE table_name_81 (title VARCHAR, director VARCHAR)
SELECT title FROM table_name_81 WHERE director = "stephen fossatti"
Which Year has Notes of 87.17 m?
CREATE TABLE table_name_74 (year VARCHAR, notes VARCHAR)
SELECT year FROM table_name_74 WHERE notes = "87.17 m"
Which Position has Notes of 68.76 m?
CREATE TABLE table_name_55 (position VARCHAR, notes VARCHAR)
SELECT position FROM table_name_55 WHERE notes = "68.76 m"
Which Notes have a Year of 2002?
CREATE TABLE table_name_48 (notes VARCHAR, year VARCHAR)
SELECT notes FROM table_name_48 WHERE year = 2002
Which nation had 3 bronze?
CREATE TABLE table_name_91 (nation VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_91 WHERE bronze = 3
what is the sspec number when the socket is standard power?
CREATE TABLE table_name_75 (sspec_number VARCHAR, socket VARCHAR)
SELECT sspec_number FROM table_name_75 WHERE socket = "standard power"
what is the gpu model when the frequency is 3.4 ghz and the sspec number is sr00b(d2)?
CREATE TABLE table_name_8 (gpu_model VARCHAR, frequency VARCHAR, sspec_number VARCHAR)
SELECT gpu_model FROM table_name_8 WHERE frequency = "3.4 ghz" AND sspec_number = "sr00b(d2)"
what is the turbo when the part number is cm8062300834302bx80623i72600bxc80623i72600?
CREATE TABLE table_name_62 (turbo VARCHAR, part_number_s_ VARCHAR)
SELECT turbo FROM table_name_62 WHERE part_number_s_ = "cm8062300834302bx80623i72600bxc80623i72600"
what is the turbo when the cores is standard power?
CREATE TABLE table_name_30 (turbo VARCHAR, cores VARCHAR)
SELECT turbo FROM table_name_30 WHERE cores = "standard power"