answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT date FROM table_name_14 WHERE opponent = "tigers"
Which date has tigers as the opponent?
CREATE TABLE table_name_14 (date VARCHAR, opponent VARCHAR)
SELECT MIN(to_par) FROM table_name_8 WHERE player = "gary player" AND total > 145
What is the lowest To par of gary player, with more than 145 total?
CREATE TABLE table_name_8 (to_par INTEGER, player VARCHAR, total VARCHAR)
SELECT time FROM table_name_56 WHERE name = "gemma spofforth"
Gemma Spofforth has what time?
CREATE TABLE table_name_56 (time VARCHAR, name VARCHAR)
SELECT district FROM table_1342426_5 WHERE incumbent = "William J. Driver"
Name the district for william j. driver
CREATE TABLE table_1342426_5 (district VARCHAR, incumbent VARCHAR)
SELECT owner_s_ FROM table_name_34 WHERE description = "operational"
What owner or owners have an operational description?
CREATE TABLE table_name_34 (owner_s_ VARCHAR, description VARCHAR)
SELECT region FROM table_name_61 WHERE catalog = "576 096-2"
Tell me the region for catalog of 576 096-2
CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR)
SELECT score FROM table_name_51 WHERE player = "bob tway"
What's bob tway's score?
CREATE TABLE table_name_51 (score VARCHAR, player VARCHAR)
SELECT date FROM table_name_51 WHERE away_team = "north melbourne"
What day is north melbourne the away side?
CREATE TABLE table_name_51 (date VARCHAR, away_team VARCHAR)
SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = "group" AND finish = "bagnères-de-bigorre"
What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre?
CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR)
SELECT label FROM table_name_37 WHERE date = "1988" AND format = "cd"
What label released a CD in 1988?
CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR, format VARCHAR)
SELECT COUNT(year) FROM table_2511876_1 WHERE league = "USISL Pro league"
Name the total number of years for usisl pro league
CREATE TABLE table_2511876_1 (year VARCHAR, league VARCHAR)
SELECT MAX(losses) FROM table_name_22 WHERE draws > 0 AND against = 1390
What is the greatest number of losses when there are more than 0 draws and 1390 against matches?
CREATE TABLE table_name_22 (losses INTEGER, draws VARCHAR, against VARCHAR)
SELECT school FROM table_name_27 WHERE enrollment > 533 AND ihsaa_football_class = "aa"
What school has more than 533 enrolled and is an IHSAA Football Class of aa?
CREATE TABLE table_name_27 (school VARCHAR, enrollment VARCHAR, ihsaa_football_class VARCHAR)
SELECT date FROM table_name_28 WHERE week > 4 AND attendance = "60,658"
What is the date of the game played after week 4 with 60,658 people in attendance?
CREATE TABLE table_name_28 (date VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT MAX(profits__billion_) AS $_ FROM table_name_87 WHERE headquarters = "usa" AND market_value__billion_$_ = 194.87 AND sales__billion_$_ < 76.66
What is the highest profits in billions of the company headquartered in the USA with a market value of 194.87 billions and less than 76.66 billions in sales?
CREATE TABLE table_name_87 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, headquarters VARCHAR, market_value__billion_$_ VARCHAR)
SELECT start FROM table_name_55 WHERE duration = "6 months 2 days"
Which Start has a Duration of 6 months 2 days?
CREATE TABLE table_name_55 (start VARCHAR, duration VARCHAR)
SELECT nature_of_incident FROM table_name_69 WHERE circumstances = "bomb attack"
What is the nature of the incident that's a bomb attack?
CREATE TABLE table_name_69 (nature_of_incident VARCHAR, circumstances VARCHAR)
SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Morning' INTERSECT SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Night'
what are the names of the channels that broadcast in both morning and night?
CREATE TABLE channel (name VARCHAR, channel_id VARCHAR); CREATE TABLE broadcast (channel_id VARCHAR, time_of_day VARCHAR)
SELECT manhattan FROM table_name_21 WHERE richmond_[staten_is] = "78%"
Which Manhattan number appeared when Richmond (Staten Island) was 78%?
CREATE TABLE table_name_21 (manhattan VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
SELECT sub_parish__sokn_ FROM table_name_30 WHERE year_built = "1957" AND location_of_the_church = "stavang"
What is the Sub-Parish (Sokn) that was built in 1957 in the location of Stavang?
CREATE TABLE table_name_30 (sub_parish__sokn_ VARCHAR, year_built VARCHAR, location_of_the_church VARCHAR)
SELECT AVG(top_10) FROM table_name_31 WHERE top_25 = 2 AND cuts_made < 10
What is the average number of top-10s for the major with 2 top-25s and fewer than 10 cuts made?
CREATE TABLE table_name_31 (top_10 INTEGER, top_25 VARCHAR, cuts_made VARCHAR)
SELECT winner FROM table_name_47 WHERE course = "forlì to carpi"
Who won at course Forlì to Carpi?
CREATE TABLE table_name_47 (winner VARCHAR, course VARCHAR)
SELECT player FROM table_name_5 WHERE height = "6-7"
Which player has a height of 6-7?
CREATE TABLE table_name_5 (player VARCHAR, height VARCHAR)
SELECT to_par FROM table_name_96 WHERE place = "t3" AND player = "nolan henke"
What was Nolan Henke's To par when he placed in t3?
CREATE TABLE table_name_96 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT player FROM table_name_74 WHERE long = "5" AND yards = "6"
Which Player had a Long of 5 and Yards of 6?
CREATE TABLE table_name_74 (player VARCHAR, long VARCHAR, yards VARCHAR)
SELECT solo FROM table_name_82 WHERE total_tackles = "6"
what is solo when total tackles is 6?
CREATE TABLE table_name_82 (solo VARCHAR, total_tackles VARCHAR)
SELECT dirty_electric_grid_rocky_mountains__denver_ FROM table_23840623_4 WHERE clean_electric_grid_california__san_francisco_ = "160 g/mi (99 g/km)"
What is the dirty electric grid rocky mountains (denver) for the vehicle with the clean electric grid california (san francisco) of 160 g/mi (99 g/km)?
CREATE TABLE table_23840623_4 (dirty_electric_grid_rocky_mountains__denver_ VARCHAR, clean_electric_grid_california__san_francisco_ VARCHAR)
SELECT COUNT(totals) FROM table_28628309_9 WHERE player = "Jay Washington"
How many times is a total listed when the player is Jay Washington?
CREATE TABLE table_28628309_9 (totals VARCHAR, player VARCHAR)
SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = "$208,851–$372,950"
What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?
CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)
SELECT college FROM table_name_83 WHERE school = "crete-monee high school"
What college did the player with a school of crete-monee high school go to?
CREATE TABLE table_name_83 (college VARCHAR, school VARCHAR)
SELECT AVG(total) FROM table_name_92 WHERE silver = 0 AND rank = "6" AND gold < 0
Can you tell me the average Total that had the Silver of 0, and the Rank of 6, and the Gold smaller than 0?
CREATE TABLE table_name_92 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT european_tier FROM table_22457674_1 WHERE artist = "Rick Springfield"
Name the european tier for rick springfield
CREATE TABLE table_22457674_1 (european_tier VARCHAR, artist VARCHAR)
SELECT area FROM table_name_45 WHERE gender = "coed" AND decile = "9" AND name = "kaharoa school"
Which area served coed genders at Kaharoa school and had a Decile of 9?
CREATE TABLE table_name_45 (area VARCHAR, name VARCHAR, gender VARCHAR, decile VARCHAR)
SELECT circuit FROM table_name_84 WHERE winner = "craig lowndes" AND date = "19 apr"
What is the circuit on 19 Apr with Craig Lowndes as the winner?
CREATE TABLE table_name_84 (circuit VARCHAR, winner VARCHAR, date VARCHAR)
SELECT MIN(touchdowns) FROM table_name_14 WHERE player = "andrew glover" AND yards > 281
What is the lowest Touchdowns, when Player is Andrew Glover, and when Yards is greater than 281?
CREATE TABLE table_name_14 (touchdowns INTEGER, player VARCHAR, yards VARCHAR)
SELECT total FROM table_1354805_3 WHERE number_of_dances = 11 AND competition_finish > 2.0
What is the Number of dances is 11 and competition finish is larger than 2.0 total
CREATE TABLE table_1354805_3 (total VARCHAR, number_of_dances VARCHAR, competition_finish VARCHAR)
SELECT MAX(county_councils___2011__) FROM table_203802_2 WHERE english_party_name = "Communist Party of Norway"
How many county councils for the communist party of norway
CREATE TABLE table_203802_2 (county_councils___2011__ INTEGER, english_party_name VARCHAR)
SELECT birth FROM table_name_16 WHERE marriage = "1 may 1844"
What is the birth date of the duchess who married on 1 May 1844?
CREATE TABLE table_name_16 (birth VARCHAR, marriage VARCHAR)
SELECT MAX(league_cup) FROM table_name_99 WHERE championship < 3 AND total < 2 AND fa_cup > 0
What is the highest league up with less than 3 championships, a total less than 2, and a FA cup larger than 0?
CREATE TABLE table_name_99 (league_cup INTEGER, fa_cup VARCHAR, championship VARCHAR, total VARCHAR)
SELECT dates_active FROM table_name_28 WHERE max_1_min_wind_mph__km_h_ = "65 (100)"
What is the active Date that has a 65 (100) Max 1-min wind?
CREATE TABLE table_name_28 (dates_active VARCHAR, max_1_min_wind_mph__km_h_ VARCHAR)
SELECT displacement FROM table_name_68 WHERE model = "180 multijet power/3.0 hdi"
What is the Displacement of the 180 Multijet Power/3.0 HDI Model?
CREATE TABLE table_name_68 (displacement VARCHAR, model VARCHAR)
SELECT location FROM table_name_22 WHERE time = "11:55"
What is the Location when the time was 11:55?
CREATE TABLE table_name_22 (location VARCHAR, time VARCHAR)
SELECT disc_number FROM table_name_19 WHERE track_number = "02" AND release_date = "7 september 2004"
What kind of Disc number has a Track number of 02 on 7 september 2004?
CREATE TABLE table_name_19 (disc_number VARCHAR, track_number VARCHAR, release_date VARCHAR)
SELECT fri_27_aug FROM table_26986076_1 WHERE tues_24_aug = "20' 49.46 108.709mph"
If the time on Tues Aug 24 is 20' 49.46 108.709mph, what is the time on Fri Aug 27?
CREATE TABLE table_26986076_1 (fri_27_aug VARCHAR, tues_24_aug VARCHAR)
SELECT party FROM table_name_85 WHERE name = "claudette tardif"
Which party does Claudette Tardif belong to?
CREATE TABLE table_name_85 (party VARCHAR, name VARCHAR)
SELECT shuji_kondo FROM table_name_61 WHERE mazada = "hijikata (14:24)"
Name the Shuji Kondo for MAZADA of hijikata (14:24)
CREATE TABLE table_name_61 (shuji_kondo VARCHAR, mazada VARCHAR)
SELECT SUM(year_of_recording) FROM table_name_14 WHERE conductor = "libor pesek"
What is the year that a record was recorded with Libor Pesek as conductor?
CREATE TABLE table_name_14 (year_of_recording INTEGER, conductor VARCHAR)
SELECT written_by FROM table_27116696_1 WHERE production_code = "3T7255"
Who wrote the episode with the production code of 3t7255?
CREATE TABLE table_27116696_1 (written_by VARCHAR, production_code VARCHAR)
SELECT * FROM employees WHERE salary BETWEEN 8000 AND 12000 AND commission_pct <> "null" OR department_id <> 40
display all the information of employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40.
CREATE TABLE employees (department_id VARCHAR, salary VARCHAR, commission_pct VARCHAR)
SELECT womens_doubles FROM table_28138035_32 WHERE womens_singles = "Ding Ning"
Who was the womens double winner when the womens singles winner was Ding Ning?
CREATE TABLE table_28138035_32 (womens_doubles VARCHAR, womens_singles VARCHAR)
SELECT season FROM table_name_1 WHERE winner = "rangers"
What season did the Rangers win?
CREATE TABLE table_name_1 (season VARCHAR, winner VARCHAR)
SELECT nationality FROM table_name_73 WHERE college_junior_club_team__league_ = "guelph storm ( ohl )"
What is Nationality, when College/Junior/Club Team (League) is "Guelph Storm ( OHL )"?
CREATE TABLE table_name_73 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT score FROM table_name_37 WHERE date = "january 12"
What is Score, when Date is January 12?
CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)
SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = "02.03.1973"
What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973?
CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR)
SELECT COUNT(bronze) FROM table_name_67 WHERE sport = "futsal"
Tell me the total number of Bronze for futsal
CREATE TABLE table_name_67 (bronze VARCHAR, sport VARCHAR)
SELECT MIN(rank__night_) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 1.3 / 4
What is the lowest rank of an episode with a rating/share (18-49) of 1.3/4?
CREATE TABLE table_25751274_2 (rank__night_ INTEGER, rating VARCHAR)
SELECT T2.Song FROM music_festival AS T1 JOIN volume AS T2 ON T1.Volume = T2.Volume_ID WHERE T1.Result = "Nominated"
Please show the songs that have result "nominated" at music festivals.
CREATE TABLE volume (Song VARCHAR, Volume_ID VARCHAR); CREATE TABLE music_festival (Volume VARCHAR, Result VARCHAR)
SELECT polling_organisation_client FROM table_name_5 WHERE others = "7%"
When the others had a value of 7%, what was the Polling organisation/client?
CREATE TABLE table_name_5 (polling_organisation_client VARCHAR, others VARCHAR)
SELECT run_1 FROM table_name_62 WHERE run_4 = "1:56.59"
What is Run 1, when Run 4 is 1:56.59?
CREATE TABLE table_name_62 (run_1 VARCHAR, run_4 VARCHAR)
SELECT brand_name FROM table_24018112_1 WHERE model__list_ = "i7-8xx"
What brand is model I7-8xx?
CREATE TABLE table_24018112_1 (brand_name VARCHAR, model__list_ VARCHAR)
SELECT runner_up FROM table_name_54 WHERE season < 2005
Who is the Runner-up that has a Season less than 2005?
CREATE TABLE table_name_54 (runner_up VARCHAR, season INTEGER)
SELECT MIN(gdp__ppp__per_capita) FROM table_25869317_1
What is the lowest GDP (ppp) per capita?
CREATE TABLE table_25869317_1 (gdp__ppp__per_capita INTEGER)
SELECT author FROM table_name_17 WHERE title = "harry potter and the deathly hallows"
who is the author for harry potter and the deathly hallows?
CREATE TABLE table_name_17 (author VARCHAR, title VARCHAR)
SELECT COUNT(style) FROM table_28677723_9 WHERE total = 33
How many styles had a total score of exactly 33?
CREATE TABLE table_28677723_9 (style VARCHAR, total VARCHAR)
SELECT branding FROM table_name_55 WHERE owner = "jim pattison group" AND frequency = "fm 94.5"
what is the branding when the owner is jim pattison group and the frequency is fm 94.5?
CREATE TABLE table_name_55 (branding VARCHAR, owner VARCHAR, frequency VARCHAR)
SELECT species FROM table_name_43 WHERE voges_proskauer = "negative" AND indole = "negative"
Which species has a Voges-Proskauer reading of negative and an indole reading of negative?
CREATE TABLE table_name_43 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR)
SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = "the trillium (residential)"
What is the lowest amount of floors after rank 1 in the Trillium (residential) building?
CREATE TABLE table_name_33 (floors INTEGER, rank VARCHAR, building VARCHAR)
SELECT written_by FROM table_23097214_1 WHERE directed_by = "Ken Whittingham"
Who wrote the episode directed by Ken Whittingham?
CREATE TABLE table_23097214_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT away_team AS score FROM table_name_31 WHERE home_team = "melbourne"
what was the away team score in a game with north melbourne as home team?
CREATE TABLE table_name_31 (away_team VARCHAR, home_team VARCHAR)
SELECT shooter FROM table_name_9 WHERE total = "28"
What Shooter has a Total of 28?
CREATE TABLE table_name_9 (shooter VARCHAR, total VARCHAR)
SELECT MIN(converted) FROM table_1895522_2 WHERE number = "19"
What is the smallest converted value at number 19?
CREATE TABLE table_1895522_2 (converted INTEGER, number VARCHAR)
SELECT to_par FROM table_name_6 WHERE country = "australia" AND player = "robert allenby"
What is the To par for Robert Allenby from Australia
CREATE TABLE table_name_6 (to_par VARCHAR, country VARCHAR, player VARCHAR)
SELECT away_team FROM table_name_19 WHERE home_team = "footscray"
What team was the away team when Footscray was the home team?
CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR)
SELECT season FROM table_name_47 WHERE position = "14th"
What season had a 14th position?
CREATE TABLE table_name_47 (season VARCHAR, position VARCHAR)
SELECT date_of_issue FROM table_name_3 WHERE theme = "mental health"
What is the Date of Issue with a Theme with mental health?
CREATE TABLE table_name_3 (date_of_issue VARCHAR, theme VARCHAR)
SELECT MAX(round) FROM table_28211103_1 WHERE hawthorn_score = "17.7.109"
What the listed in round when the hawthorn score is 17.7.109?
CREATE TABLE table_28211103_1 (round INTEGER, hawthorn_score VARCHAR)
SELECT record FROM table_name_5 WHERE result = "w 52–43"
What is the record when the result was w 52–43?
CREATE TABLE table_name_5 (record VARCHAR, result VARCHAR)
SELECT 2010 FROM table_name_95 WHERE tournament = "us open"
Name the 2010 for tournament of us open
CREATE TABLE table_name_95 (tournament VARCHAR)
SELECT score FROM table_name_78 WHERE venue = "athens olympic stadium" AND year = "30 april 2011"
what is the score when the venue is athens olympic stadium on 30 april 2011?
CREATE TABLE table_name_78 (score VARCHAR, venue VARCHAR, year VARCHAR)
SELECT arch_type FROM table_name_23 WHERE name = "pont de montanges (pont-des-pierres)"
What kind of arch is the pont de montanges (pont-des-pierres)?
CREATE TABLE table_name_23 (arch_type VARCHAR, name VARCHAR)
SELECT MIN(series_episode) FROM table_18712423_3 WHERE viewers__millions_ = "1.215"
What is the show episode number of the episode that reached 1.215 millions views?
CREATE TABLE table_18712423_3 (series_episode INTEGER, viewers__millions_ VARCHAR)
SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = "Carlin Motorsport"
How many wins did he have with carlin motorsport?
CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR)
SELECT MAX(pos) FROM table_25887826_17 WHERE avg = "1.8529"
How many POS when the average is 1.8529?
CREATE TABLE table_25887826_17 (pos INTEGER, avg VARCHAR)
SELECT type FROM table_name_63 WHERE regulatory_citation = "40 cfr 50.9(a)"
what is the type when the regulatory citation is 40 cfr 50.9(a)?
CREATE TABLE table_name_63 (type VARCHAR, regulatory_citation VARCHAR)
SELECT T1.CountryName, T1.CountryId FROM COUNTRIES AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.CountryId HAVING COUNT(*) >= 1
What are the countries having at least one car maker? List name and id.
CREATE TABLE CAR_MAKERS (Country VARCHAR); CREATE TABLE COUNTRIES (CountryName VARCHAR, CountryId VARCHAR)
SELECT points FROM table_name_12 WHERE class = "500cc" AND machine = "nsr500"
What points have 500cc as a class, and nsr500 as a machine?
CREATE TABLE table_name_12 (points VARCHAR, class VARCHAR, machine VARCHAR)
SELECT status FROM table_name_70 WHERE opposing_teams = "wales"
What is the status of the Wales opposing team?
CREATE TABLE table_name_70 (status VARCHAR, opposing_teams VARCHAR)
SELECT developer_s_ FROM table_name_8 WHERE game = "demon's souls"
who is the developers for demon's souls?
CREATE TABLE table_name_8 (developer_s_ VARCHAR, game VARCHAR)
SELECT to_par FROM table_name_29 WHERE player = "tom kite"
How close to par was Tom Kite when he played?
CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)
SELECT city FROM table_name_34 WHERE province = "cantabria"
Which city is in Cantabria?
CREATE TABLE table_name_34 (city VARCHAR, province VARCHAR)
SELECT name FROM table_16226584_1 WHERE km_from_kingston = "112.6"
Which railroad is 112.6 kilometers from kingston?
CREATE TABLE table_16226584_1 (name VARCHAR, km_from_kingston VARCHAR)
SELECT league_from FROM table_name_61 WHERE pick__number > 204 AND nationality = "canada" AND position = "lw"
Which league has a pick number larger than 204 from Canada and LW as the position?
CREATE TABLE table_name_61 (league_from VARCHAR, position VARCHAR, pick__number VARCHAR, nationality VARCHAR)
SELECT MIN(attendance) FROM table_name_75 WHERE week = 14
What week 14 has the lowest attendance?
CREATE TABLE table_name_75 (attendance INTEGER, week VARCHAR)
SELECT final_score FROM table_name_26 WHERE stadium = "robert f. kennedy memorial stadium"
What was the final score in Robert F. Kennedy Memorial Stadium?
CREATE TABLE table_name_26 (final_score VARCHAR, stadium VARCHAR)
SELECT COUNT(bronze) FROM table_name_59 WHERE gold > 0 AND rank = "4" AND total > 4
What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4?
CREATE TABLE table_name_59 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT venue FROM table_name_45 WHERE home_team = "collingwood"
What is Collingwood's home venue?
CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR)
SELECT school FROM table_name_41 WHERE round = "24"
Which school's round was 24?
CREATE TABLE table_name_41 (school VARCHAR, round VARCHAR)
SELECT label FROM table_name_62 WHERE date = "june 12, 2008" AND region = "cyprus"
What is the Label of the release on June 12, 2008 in Cyprus?
CREATE TABLE table_name_62 (label VARCHAR, date VARCHAR, region VARCHAR)
SELECT gpu_frequency FROM table_name_71 WHERE frequency = "1.67 ghz" AND sspec_number = "slbx9(a0)"
What is GPU Frequency, when Frequency is 1.67 GHz, and when sSpec Number is SLBX9(A0)?
CREATE TABLE table_name_71 (gpu_frequency VARCHAR, frequency VARCHAR, sspec_number VARCHAR)
SELECT date FROM table_name_91 WHERE record = "61–66"
What is the date of the game when the Rockies had a record of 61–66?
CREATE TABLE table_name_91 (date VARCHAR, record VARCHAR)