question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
How many season have an average attendance league of 2.456?
CREATE TABLE table_name_46 (season INTEGER, average_attendance_league VARCHAR)
SELECT SUM(season) FROM table_name_46 WHERE average_attendance_league = 2.456
What is the Pole Position for Winning Team Penske Racing, and the Name of II Copa Mexico 150?
CREATE TABLE table_name_41 (pole_position VARCHAR, winning_team VARCHAR, name VARCHAR)
SELECT pole_position FROM table_name_41 WHERE winning_team = "penske racing" AND name = "ii copa mexico 150"
Who scored the most rebounds in game 64?
CREATE TABLE table_17311759_8 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_17311759_8 WHERE game = 64
Who did the housemate that nominated Kashmera Rakhi in week 3 and Amit Bobby in week 1 nominate in week 6?
CREATE TABLE table_name_60 (week_6 VARCHAR, week_3 VARCHAR, week_1 VARCHAR)
SELECT week_6 FROM table_name_60 WHERE week_3 = "kashmera rakhi" AND week_1 = "amit bobby"
How many Lanes have a Country of jamaica, and a Name of kerron stewart, and a Time larger than 22?
CREATE TABLE table_name_46 (lane INTEGER, time VARCHAR, country VARCHAR, name VARCHAR)
SELECT SUM(lane) FROM table_name_46 WHERE country = "jamaica" AND name = "kerron stewart" AND time > 22
What is the date of the circuit of nürburgring, which had Graham Hill as the winning driver?
CREATE TABLE table_name_47 (date VARCHAR, winning_driver VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_47 WHERE winning_driver = "graham hill" AND circuit = "nürburgring"
What is the highest value for Byes, when Against is less than 1794, when Losses is "6", and when Draws is less than 0?
CREATE TABLE table_name_61 (byes INTEGER, draws VARCHAR, against VARCHAR, losses VARCHAR)
SELECT MAX(byes) FROM table_name_61 WHERE against < 1794 AND losses = 6 AND draws < 0
What is the date for CBS label?
CREATE TABLE table_name_48 (date VARCHAR, label VARCHAR)
SELECT date FROM table_name_48 WHERE label = "cbs"
What's the week when the result was W 38-24 and attendance was less than 43,449?
CREATE TABLE table_name_33 (week INTEGER, result VARCHAR, attendance VARCHAR)
SELECT SUM(week) FROM table_name_33 WHERE result = "w 38-24" AND attendance < 43 OFFSET 449
Who was asked 20 questions in the issue where the cover model is Linda Brava?
CREATE TABLE table_1566850_9 (cover_model VARCHAR)
SELECT 20 AS _questions FROM table_1566850_9 WHERE cover_model = "Linda Brava"
What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61?
CREATE TABLE table_name_37 (_number_of_prefectural_votes VARCHAR, _percentage_of_prefectural_vote VARCHAR, _number_of_seats_won VARCHAR)
SELECT COUNT(_number_of_prefectural_votes) FROM table_name_37 WHERE _percentage_of_prefectural_vote = "48.4%" AND _number_of_seats_won > 61
What was the result of the Todman stakes race at rosehill?
CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR, race VARCHAR)
SELECT result FROM table_name_28 WHERE venue = "rosehill" AND race = "todman stakes"
What is the to par of the player with a t4 place and a score of 75-69-74-72=290?
CREATE TABLE table_name_46 (to_par VARCHAR, place VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_46 WHERE place = "t4" AND score = 75 - 69 - 74 - 72 = 290
Name the least date for the place which has a building of victoria hall
CREATE TABLE table_name_37 (date INTEGER, building VARCHAR)
SELECT MIN(date) FROM table_name_37 WHERE building = "victoria hall"
Which byes are high when losses are larger than 7, wins smaller than 6, and draws are smaller than 0?
CREATE TABLE table_name_88 (byes INTEGER, draws VARCHAR, losses VARCHAR, wins VARCHAR)
SELECT MAX(byes) FROM table_name_88 WHERE losses > 7 AND wins < 6 AND draws < 0
What position has a spread greater than -319, and United States as the country, a win loss of 11-13, and gabriel, marty as the name?
CREATE TABLE table_name_96 (position VARCHAR, name VARCHAR, win_loss VARCHAR, spread VARCHAR, country VARCHAR)
SELECT position FROM table_name_96 WHERE spread > -319 AND country = "united states" AND win_loss = "11-13" AND name = "gabriel, marty"
What is Score, when Date is "Nov 28"?
CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_30 WHERE date = "nov 28"
What is the year range of season 4?
CREATE TABLE table_22383603_1 (season VARCHAR, no VARCHAR)
SELECT season FROM table_22383603_1 WHERE no = 4
What was the kickoff time on week 1?
CREATE TABLE table_name_53 (kickoff_time VARCHAR, week VARCHAR)
SELECT kickoff_time FROM table_name_53 WHERE week = 1
What are the title that have 19.48 million u.s. viewers?
CREATE TABLE table_1130632_1 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = "19.48"
What is the highest average that has 6 dances and a total of over 128?
CREATE TABLE table_name_15 (average INTEGER, number_of_dances VARCHAR, total VARCHAR)
SELECT MAX(average) FROM table_name_15 WHERE number_of_dances = 6 AND total > 128
What was the venue with a 3.3km c prologue discipline?
CREATE TABLE table_name_95 (venue VARCHAR, discipline VARCHAR)
SELECT venue FROM table_name_95 WHERE discipline = "3.3km c prologue"
What is the Country of the Player with a Score of 75-70-74=219?
CREATE TABLE table_name_13 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_13 WHERE score = 75 - 70 - 74 = 219
What area is Central Takaka School in?
CREATE TABLE table_name_91 (area VARCHAR, name VARCHAR)
SELECT area FROM table_name_91 WHERE name = "central takaka school"
Which round was Tom Morris picked in?
CREATE TABLE table_name_16 (round VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_16 WHERE player = "tom morris"
What is the batting team where the runs are 276?
CREATE TABLE table_11303072_5 (batting_team VARCHAR, runs VARCHAR)
SELECT batting_team FROM table_11303072_5 WHERE runs = "276"
What is the sum of t (µm), when Technology is MJ?
CREATE TABLE table_name_26 (t__µm_ INTEGER, technology VARCHAR)
SELECT SUM(t__µm_) FROM table_name_26 WHERE technology = "mj"
Which Player has a Pick larger than 20?
CREATE TABLE table_name_79 (player VARCHAR, pick INTEGER)
SELECT player FROM table_name_79 WHERE pick > 20
Name the tournament for patrick rafter winning
CREATE TABLE table_name_3 (tournament VARCHAR, winner VARCHAR)
SELECT tournament FROM table_name_3 WHERE winner = "patrick rafter"
List the distinct hometowns that are not associated with any gymnast.
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR)
SELECT DISTINCT Hometown FROM people EXCEPT SELECT DISTINCT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID
Show the ids of all employees who have authorized destruction.
CREATE TABLE Documents_to_be_destroyed (Destruction_Authorised_by_Employee_ID VARCHAR)
SELECT DISTINCT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed
What's the highest number a couple has ranked at?
CREATE TABLE table_20424140_3 (place INTEGER)
SELECT MAX(place) FROM table_20424140_3
What is the parent for peak cima tosa?
CREATE TABLE table_2731431_1 (parent VARCHAR, peak VARCHAR)
SELECT parent FROM table_2731431_1 WHERE peak = "Cima Tosa"
How powerful is the model before 1999?
CREATE TABLE table_name_58 (power VARCHAR, year INTEGER)
SELECT power FROM table_name_58 WHERE year < 1999
What round had a amtch against cyprus and an edition of 2010 davis cup europe/africa group ii?
CREATE TABLE table_name_34 (round VARCHAR, edition VARCHAR, against VARCHAR)
SELECT round FROM table_name_34 WHERE edition = "2010 davis cup europe/africa group ii" AND against = "cyprus"
On what date was the away team Sheffield Wednesday?
CREATE TABLE table_name_51 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_51 WHERE away_team = "sheffield wednesday"
When less than 37 points are scored, what's the lowest Pct % found?
CREATE TABLE table_name_90 (pct__percentage INTEGER, points INTEGER)
SELECT MIN(pct__percentage) FROM table_name_90 WHERE points < 37
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 name of the episode written by karina csolty?
CREATE TABLE table_27969432_2 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_27969432_2 WHERE written_by = "Karina Csolty"
What is Place, when Player is "Phil Mickelson"?
CREATE TABLE table_name_17 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_17 WHERE player = "phil mickelson"
Which Suburb was First Settled as a Suburb in 1962?
CREATE TABLE table_name_54 (suburb VARCHAR, date_first_settled_as_a_suburb VARCHAR)
SELECT suburb FROM table_name_54 WHERE date_first_settled_as_a_suburb = 1962
which Record has a Home of ottawa senators on Date of december 21?
CREATE TABLE table_name_82 (record VARCHAR, home VARCHAR, date VARCHAR)
SELECT record FROM table_name_82 WHERE home = "ottawa senators" AND date = "december 21"
What engine was paired with Minardi m187?
CREATE TABLE table_name_74 (engine VARCHAR, chassis VARCHAR)
SELECT engine FROM table_name_74 WHERE chassis = "minardi m187"
what is the engine that saw 0 points, and a Chassis of porsche 718, in 1961?
CREATE TABLE table_name_27 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR)
SELECT engine FROM table_name_27 WHERE points = 0 AND chassis = "porsche 718" AND year = 1961
What position does the player who played for butler cc (ks) play?
CREATE TABLE table_10015132_11 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_10015132_11 WHERE school_club_team = "Butler CC (KS)"
Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best?
CREATE TABLE table_name_34 (best INTEGER, qual_2 VARCHAR, team VARCHAR, name VARCHAR)
SELECT MIN(best) FROM table_name_34 WHERE team = "n/h/l racing" AND name = "graham rahal" AND qual_2 > 59.384
Who took test #4?
CREATE TABLE table_10749367_3 (test_taker VARCHAR, _number VARCHAR)
SELECT test_taker FROM table_10749367_3 WHERE _number = 4
What was the score for a game with the odds of p + 2 after 1847?
CREATE TABLE table_name_36 (score VARCHAR, odds VARCHAR, date VARCHAR)
SELECT score FROM table_name_36 WHERE odds = "p + 2" AND date > 1847
What is the roll of Bishop Viard College (An Integrated College), which has a decile larger than 1?
CREATE TABLE table_name_69 (roll VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)
SELECT COUNT(roll) FROM table_name_69 WHERE decile > 1 AND authority = "integrated" AND name = "bishop viard college"
Name the title when the main characters are grant calthorpe, lee neilan and the published in of astounding stories
CREATE TABLE table_name_84 (title VARCHAR, published_in VARCHAR, main_characters VARCHAR)
SELECT title FROM table_name_84 WHERE published_in = "astounding stories" AND main_characters = "grant calthorpe, lee neilan"
Which Position has a Round larger than 10, and a Name of shawn mccarthy?
CREATE TABLE table_name_36 (position VARCHAR, round VARCHAR, name VARCHAR)
SELECT position FROM table_name_36 WHERE round > 10 AND name = "shawn mccarthy"
In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?
CREATE TABLE table_name_64 (election INTEGER, mayor VARCHAR, inhabitants VARCHAR)
SELECT SUM(election) FROM table_name_64 WHERE mayor = "adalberto mosaner" AND inhabitants < 16 OFFSET 170
List all people names in the order of their date of birth from old to young.
CREATE TABLE people (name VARCHAR, date_of_birth VARCHAR)
SELECT name FROM people ORDER BY date_of_birth
What is the region for tv uskana?
CREATE TABLE table_name_5 (region VARCHAR, name VARCHAR)
SELECT region FROM table_name_5 WHERE name = "tv uskana"
What place is the United States in that has a score of 68-73-68=209?
CREATE TABLE table_name_8 (place VARCHAR, country VARCHAR, score VARCHAR)
SELECT place FROM table_name_8 WHERE country = "united states" AND score = 68 - 73 - 68 = 209
Who is the director of the episode that corresponds to the total episodes number 14?
CREATE TABLE table_14330096_3 (director VARCHAR, total_number VARCHAR)
SELECT director FROM table_14330096_3 WHERE total_number = 14
How many bill cosponsored during those years where bills originally cosponsored is 113?
CREATE TABLE table_18852984_2 (all_bills_cosponsored VARCHAR, bills_originally_cosponsored VARCHAR)
SELECT all_bills_cosponsored FROM table_18852984_2 WHERE bills_originally_cosponsored = 113
What was the Result on the Date of 25th?
CREATE TABLE table_name_82 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_82 WHERE date = "25th"
What is the total heat ranked higher than 7?
CREATE TABLE table_name_46 (heat INTEGER, rank INTEGER)
SELECT SUM(heat) FROM table_name_46 WHERE rank > 7
Name the hits for years before 1883
CREATE TABLE table_name_86 (hits VARCHAR, year INTEGER)
SELECT hits FROM table_name_86 WHERE year < 1883
What is the average First year that has a Notes of replaced by us 12 when i-94 replaced us 12, and a Final year larger than 1961?
CREATE TABLE table_name_31 (first_year INTEGER, notes VARCHAR, final_year VARCHAR)
SELECT AVG(first_year) FROM table_name_31 WHERE notes = "replaced by us 12 when i-94 replaced us 12" AND final_year > 1961
What is Mañana es para siempre of impreuna pentru totdeauna from Monday to Friday?
CREATE TABLE table_name_34 (monday_to_friday VARCHAR, mañana_es_para_siempre VARCHAR)
SELECT monday_to_friday FROM table_name_34 WHERE mañana_es_para_siempre = "impreuna pentru totdeauna"
I want the sum of stories for guadalajara done after 2007
CREATE TABLE table_name_87 (stories INTEGER, city VARCHAR, completed VARCHAR)
SELECT SUM(stories) FROM table_name_87 WHERE city = "guadalajara" AND completed > 2007
What did the away team score when playing South Melbourne?
CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_44 WHERE home_team = "south melbourne"
What is the Margin of Victory, when Tournament is Mercedes Championships (3)?
CREATE TABLE table_name_24 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_24 WHERE tournament = "mercedes championships (3)"
what is the lowest rank for the netherlands in lane less than 4?
CREATE TABLE table_name_92 (rank INTEGER, nationality VARCHAR, lane VARCHAR)
SELECT MIN(rank) FROM table_name_92 WHERE nationality = "netherlands" AND lane < 4
What party did the re-elected incumbent of the Texas 11 district belong to?
CREATE TABLE table_1342149_43 (party VARCHAR, result VARCHAR, district VARCHAR)
SELECT party FROM table_1342149_43 WHERE result = "Re-elected" AND district = "Texas 11"
When was the 3rd season premiere originally aired?
CREATE TABLE table_299121_2 (season VARCHAR)
SELECT season AS premiere FROM table_299121_2 WHERE season = "3rd"
What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire?
CREATE TABLE table_20613292_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT production_code FROM table_20613292_1 WHERE written_by = "Kirker Butler" AND directed_by = "Dan Povenmire"
How many districts was Robert Livingston incumbent in?
CREATE TABLE table_1341472_20 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1341472_20 WHERE incumbent = "Robert Livingston"
what's the edo flight with duration being 17 days, 15 hours, 53 minutes, 18 seconds
CREATE TABLE table_14118521_1 (edo_flight VARCHAR, duration VARCHAR)
SELECT edo_flight FROM table_14118521_1 WHERE duration = "17 days, 15 hours, 53 minutes, 18 seconds"
Who had the highest rebounds of the game on April 7?
CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_15 WHERE date = "april 7"
WHAT IS THE BIRTH DATE WITH A DEATH OF OCTOBER 1389?
CREATE TABLE table_name_2 (birth VARCHAR, death VARCHAR)
SELECT birth FROM table_name_2 WHERE death = "october 1389"
Which Position has a League from of western hockey league, and a Team from of everett silvertips?
CREATE TABLE table_name_90 (position VARCHAR, league_from VARCHAR, team_from VARCHAR)
SELECT position FROM table_name_90 WHERE league_from = "western hockey league" AND team_from = "everett silvertips"
Show the position of players and the corresponding number of players.
CREATE TABLE match_season (POSITION VARCHAR)
SELECT POSITION, COUNT(*) FROM match_season GROUP BY POSITION
Which Total is the highest one that has a Bronze of 0, and a Nation of poland, and a Gold smaller than 0?
CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT MAX(total) FROM table_name_87 WHERE bronze = 0 AND nation = "poland" AND gold < 0
Which Genre has a Year larger than 1999, and a Game of tony hawk's pro skater 2?
CREATE TABLE table_name_90 (genre VARCHAR, year VARCHAR, game VARCHAR)
SELECT genre FROM table_name_90 WHERE year > 1999 AND game = "tony hawk's pro skater 2"
What are all the policy types of the customer that has the most policies listed?
CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR)
SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = (SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1)
What round was matt brait?
CREATE TABLE table_name_51 (round VARCHAR, player VARCHAR)
SELECT round FROM table_name_51 WHERE player = "matt brait"
When was the circuit Donington Park?
CREATE TABLE table_22334183_3 (date VARCHAR, circuit VARCHAR)
SELECT date FROM table_22334183_3 WHERE circuit = "Donington Park"
What date was the game at Dowdy-Ficklen stadium • Greenville, NC, with 27,321 in attendance?
CREATE TABLE table_name_96 (date VARCHAR, site VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_96 WHERE site = "dowdy-ficklen stadium • greenville, nc" AND attendance = "27,321"
Name the most round for jordan cameron
CREATE TABLE table_26533354_8 (round INTEGER, player VARCHAR)
SELECT MAX(round) FROM table_26533354_8 WHERE player = "Jordan Cameron"
Name the entrant for year less than 1990 and chassis of eurobrun er189
CREATE TABLE table_name_98 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_98 WHERE year < 1990 AND chassis = "eurobrun er189"
What's the time of Britta Steffen in a lane less than 4?
CREATE TABLE table_name_50 (time INTEGER, lane VARCHAR, name VARCHAR)
SELECT SUM(time) FROM table_name_50 WHERE lane < 4 AND name = "britta steffen"
What is the highest number of rebounds of the san antonio spurs?
CREATE TABLE table_name_48 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_name_48 WHERE team = "san antonio spurs"
What is the tyre of nismo team member satoshi motoyama when he has rounds of all?
CREATE TABLE table_name_55 (tyre VARCHAR, drivers VARCHAR, rounds VARCHAR, team VARCHAR)
SELECT tyre FROM table_name_55 WHERE rounds = "all" AND team = "nismo" AND drivers = "satoshi motoyama"
What was the result in the election where the incumbent was Finis J. Garrett?
CREATE TABLE table_1342370_41 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342370_41 WHERE incumbent = "Finis J. Garrett"
Which Player has a Round larger than 5, and a School/Club Team of bethune-cookman?
CREATE TABLE table_name_52 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_52 WHERE round > 5 AND school_club_team = "bethune-cookman"
What was the competition on 29 November 1997 that resulted in a draw?
CREATE TABLE table_name_97 (competition VARCHAR, result VARCHAR, date VARCHAR)
SELECT competition FROM table_name_97 WHERE result = "draw" AND date = "29 november 1997"
What is the lowest value of Blank Ends when Stolen Ends is 7.
CREATE TABLE table_1505809_2 (blank_ends INTEGER, stolen_ends VARCHAR)
SELECT MIN(blank_ends) FROM table_1505809_2 WHERE stolen_ends = 7
Find the name and gender type of the dorms whose capacity is greater than 300 or less than 100.
CREATE TABLE dorm (dorm_name VARCHAR, gender VARCHAR, student_capacity VARCHAR)
SELECT dorm_name, gender FROM dorm WHERE student_capacity > 300 OR student_capacity < 100
How many games have Air Force as the opponent?
CREATE TABLE table_21091162_1 (game INTEGER, opponent VARCHAR)
SELECT MAX(game) FROM table_21091162_1 WHERE opponent = "Air Force"
What was the loss of the game that had a record of 3-3?
CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_41 WHERE record = "3-3"
When the Venue is mcg what is the Home team?
CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_47 WHERE venue = "mcg"
What is the highest game with team @ l.a. clippers?
CREATE TABLE table_27756314_8 (game INTEGER, team VARCHAR)
SELECT MAX(game) FROM table_27756314_8 WHERE team = "@ L.A. Clippers"
What is the lost when the try bonus is 5, and points against is 298?
CREATE TABLE table_name_40 (lost VARCHAR, try_bonus VARCHAR, points_against VARCHAR)
SELECT lost FROM table_name_40 WHERE try_bonus = "5" AND points_against = "298"
When Cancelable of yes, bubble of yes and a Category of keyboard, what was the Attribute?
CREATE TABLE table_name_52 (attribute VARCHAR, category VARCHAR, cancelable VARCHAR, bubbles VARCHAR)
SELECT attribute FROM table_name_52 WHERE cancelable = "yes" AND bubbles = "yes" AND category = "keyboard"
for the position of rb what is the name?
CREATE TABLE table_name_67 (name VARCHAR, position VARCHAR)
SELECT name FROM table_name_67 WHERE position = "rb"
What is the earliest year with points more than 8?
CREATE TABLE table_name_38 (year INTEGER, pts INTEGER)
SELECT MIN(year) FROM table_name_38 WHERE pts > 8
On what date was Hawthorn the home team?
CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_45 WHERE home_team = "hawthorn"