answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MAX(pick) FROM table_name_31 WHERE player = "jason webb"
What pick was play Jason Webb?
CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR)
SELECT year FROM table_21676617_1 WHERE odds_of_winner = "16.66"
When were the odds of winner 16.66?
CREATE TABLE table_21676617_1 (year VARCHAR, odds_of_winner VARCHAR)
SELECT role FROM table_name_99 WHERE title = "alvin and the chipmunks meet frankenstein"
When alvin and the chipmunks meet frankenstein, what was the role?
CREATE TABLE table_name_99 (role VARCHAR, title VARCHAR)
SELECT epoch__utc_ FROM table_206217_2 WHERE inclination__deg___to_moon_equator_ = "90.063603"
What is every value of epoch if inclination is 90.063603?
CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, inclination__deg___to_moon_equator_ VARCHAR)
SELECT COUNT(party) FROM table_1341640_39 WHERE incumbent = "Donald A. Bailey"
How many parties does the incumbent Donald A. Bailey a member of?
CREATE TABLE table_1341640_39 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(caps) FROM table_name_97 WHERE name = "jon dahl tomasson" AND goals_per_match < 0.46
How many caps does Jon Dahl Tomasson, who has less than 0.46 goals per match, have?
CREATE TABLE table_name_97 (caps VARCHAR, name VARCHAR, goals_per_match VARCHAR)
SELECT result FROM table_17120964_5 WHERE man_of_the_match = "Lukas Smital" AND venue = "Home"
Name the result for lukas smital and home
CREATE TABLE table_17120964_5 (result VARCHAR, man_of_the_match VARCHAR, venue VARCHAR)
SELECT AVG(rank) FROM table_name_80 WHERE total > 4 AND nation = "great britain"
What is the average rank of Great Britain when their total is over 4?
CREATE TABLE table_name_80 (rank INTEGER, total VARCHAR, nation VARCHAR)
SELECT AVG(points) FROM table_name_48 WHERE fgm___fga = "11-28" AND number < 7
What is the point average for the game that has FGM-FGA of 11-28 and a number smaller than 7?
CREATE TABLE table_name_48 (points INTEGER, fgm___fga VARCHAR, number VARCHAR)
SELECT tries_for FROM table_name_12 WHERE losing_bonus = "3" AND points = "45"
How many tries for did the club with a 3 losing bonus and 45 points have?
CREATE TABLE table_name_12 (tries_for VARCHAR, losing_bonus VARCHAR, points VARCHAR)
SELECT Chinese AS name FROM table_name_51 WHERE status = "eliminated" AND country = "singapore" AND index = "f9"
What is the Chinese name of the Eliminated player from Singapore in Index f9?
CREATE TABLE table_name_51 (Chinese VARCHAR, index VARCHAR, status VARCHAR, country VARCHAR)
SELECT surface FROM table_23385853_1 WHERE round = 8
Name surface for 8 round
CREATE TABLE table_23385853_1 (surface VARCHAR, round VARCHAR)
SELECT report FROM table_20884160_1 WHERE race_title = "Supercheap Auto Bathurst 1000"
Was the result of the supercheap auto bathurst 1000 reported?
CREATE TABLE table_20884160_1 (report VARCHAR, race_title VARCHAR)
SELECT results¹ FROM table_name_90 WHERE type_of_game = "euro '84 qualifying" AND opponent = "norway"
What results has euro '84 qualifying as the type of game and norway as the opponent?
CREATE TABLE table_name_90 (results¹ VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
SELECT AVG(matches) FROM table_name_91 WHERE country = "austria germany" AND rank < 5
When the country is austria germany and the rank is kept under 5, what's the average number of matches played?
CREATE TABLE table_name_91 (matches INTEGER, country VARCHAR, rank VARCHAR)
SELECT home_team AS score FROM table_name_10 WHERE away_team = "geelong"
What did the home team score when they played the away team of Geelong?
CREATE TABLE table_name_10 (home_team VARCHAR, away_team VARCHAR)
SELECT SUM(body_width_mm) FROM table_name_66 WHERE part_number = "tsop40/44" AND body_length_mm < 18.42
How much Body Width/mm has a Part Number of tsop40/44, and a Body Length/mm smaller than 18.42?
CREATE TABLE table_name_66 (body_width_mm INTEGER, part_number VARCHAR, body_length_mm VARCHAR)
SELECT record FROM table_19789597_6 WHERE high_rebounds = "McWilliams (8)"
What was the record in the game where McWilliams (8) did the most high rebounds?
CREATE TABLE table_19789597_6 (record VARCHAR, high_rebounds VARCHAR)
SELECT COUNT(*), affiliation FROM university WHERE enrollment > 20000 GROUP BY affiliation
Find the number of universities that have over a 20000 enrollment size for each affiliation type.
CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER)
SELECT MAX(debut_year) FROM table_name_56 WHERE player = "joe youlden" AND goals > 0
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 record FROM table_name_61 WHERE points < 98 AND opponent = "canucks"
What is the record when they play the canucks and have under 98 points?
CREATE TABLE table_name_61 (record VARCHAR, points VARCHAR, opponent VARCHAR)
SELECT COUNT(timeslot) FROM table_19834691_4 WHERE _number = 1
name the total number of timeslot for number 1
CREATE TABLE table_19834691_4 (timeslot VARCHAR, _number VARCHAR)
SELECT payout___us$__ FROM table_24427210_1 WHERE tv = "ESPN" AND bowl_game = "Music City Bowl"
Name the payout for espn for music city bowl
CREATE TABLE table_24427210_1 (payout___us$__ VARCHAR, tv VARCHAR, bowl_game VARCHAR)
SELECT date_of_death FROM table_name_4 WHERE name = "charles iii"
When did Charles III die?
CREATE TABLE table_name_4 (date_of_death VARCHAR, name VARCHAR)
SELECT COUNT(gold) FROM table_name_19 WHERE silver = 3 AND bronze > 3
How much gold does the tank have that has 3 silver and more than 3 bronze?
CREATE TABLE table_name_19 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT MIN(round) FROM table_11803648_17 WHERE position = "Forward"
WHAT ROUND WAS FORWARD ANDRE PETERSSON SELECTED?
CREATE TABLE table_11803648_17 (round INTEGER, position VARCHAR)
SELECT si_meaning FROM table_name_40 WHERE symbol = "m"
What;s the SI Meaning for symbol m?
CREATE TABLE table_name_40 (si_meaning VARCHAR, symbol VARCHAR)
SELECT first_name, middle_name, last_name FROM Staff
List the first name middle name and last name of all staff.
CREATE TABLE Staff (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR)
SELECT money_spent, _2q FROM table_name_84 WHERE candidate = "john mccain"
Name the money spent for 2Q having candidate of john mccain
CREATE TABLE table_name_84 (money_spent VARCHAR, _2q VARCHAR, candidate VARCHAR)
SELECT name FROM table_name_64 WHERE heat < 3 AND rank < 18 AND nationality = "east germany" AND time = "2:35.31"
what is the name when the heat is less than 3, the rank is less than 18, the nationality is east germany and the time is 2:35.31?
CREATE TABLE table_name_64 (name VARCHAR, time VARCHAR, nationality VARCHAR, heat VARCHAR, rank VARCHAR)
SELECT AVG(goals_conceded__gc_) FROM table_name_80 WHERE goals_scored__gf_ > 19 AND points__pts_ = 31 AND draw__pe_ > 7
What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws?
CREATE TABLE table_name_80 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR, points__pts_ VARCHAR)
SELECT COUNT(total) FROM table_name_74 WHERE silver > 0 AND bronze > 21 AND gold > 29
I want to know the total for silver more than 0 with bronze more than 21 and gold more than 29
CREATE TABLE table_name_74 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT date FROM table_name_8 WHERE winner__title__number_ = "robert smith (7)"
Name the Date when has robert smith (7)?
CREATE TABLE table_name_8 (date VARCHAR, winner__title__number_ VARCHAR)
SELECT MIN(rank) FROM table_name_50 WHERE goals > 124 AND name = "jeff cunningham"
What is the lowest Rank when the goals are less than 124 for Jeff Cunningham?
CREATE TABLE table_name_50 (rank INTEGER, goals VARCHAR, name VARCHAR)
SELECT language FROM table_name_28 WHERE network = "ptc punjabi"
What is the Language for Network PTC Punjabi?
CREATE TABLE table_name_28 (language VARCHAR, network VARCHAR)
SELECT binary FROM table_name_82 WHERE pairing = "θ(1)" AND binomial = "θ(1)"
Pairing of θ(1), and a Binomial of θ(1) is what binary?
CREATE TABLE table_name_82 (binary VARCHAR, pairing VARCHAR, binomial VARCHAR)
SELECT games FROM table_name_70 WHERE name = "tsegay kebede category:articles with hcards"
Which game is named tsegay kebede category:articles with hcards?
CREATE TABLE table_name_70 (games VARCHAR, name VARCHAR)
SELECT world_record FROM table_23988726_2 WHERE "saif_saaeed_shaheen___qat__" = "saif_saaeed_shaheen___qat__"
When saif saaeed shaheen (qat) is the saif saaeed shaheen ( qat ) what is the world record?
CREATE TABLE table_23988726_2 (world_record VARCHAR)
SELECT category FROM table_name_56 WHERE director_s_ = "tom shankland"
what category is for tom shankland, director?
CREATE TABLE table_name_56 (category VARCHAR, director_s_ VARCHAR)
SELECT COUNT(ties) FROM table_name_98 WHERE losses < 3
What is the total number of ties a team with less than 3 losses have?
CREATE TABLE table_name_98 (ties VARCHAR, losses INTEGER)
SELECT COUNT(attempts) FROM table_20906175_3 WHERE name = "Charley Johnson"
How many attempts did Charley Johnson have?
CREATE TABLE table_20906175_3 (attempts VARCHAR, name VARCHAR)
SELECT competition FROM table_name_55 WHERE venue = "hampden park, glasgow"
What competition has a venue in Hampden Park, Glasgow?
CREATE TABLE table_name_55 (competition VARCHAR, venue VARCHAR)
SELECT date FROM table_name_89 WHERE venue = "mcg"
On what date was a game played at MCG?
CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR)
SELECT COUNT(result) FROM table_11326124_3 WHERE round = "2R"
How many rounds were 2r?
CREATE TABLE table_11326124_3 (result VARCHAR, round VARCHAR)
SELECT cup_finaldate FROM table_name_44 WHERE winningteam = "brisbane lions (1)"
On what date did the Brisbane Lions (1) win?
CREATE TABLE table_name_44 (cup_finaldate VARCHAR, winningteam VARCHAR)
SELECT home_team FROM table_name_98 WHERE score = "2 – 2"
What is the Home team of the game with a Score of 2 – 2?
CREATE TABLE table_name_98 (home_team VARCHAR, score VARCHAR)
SELECT COUNT(record) FROM table_17288869_5 WHERE date = "November 7"
What was the record on November 7?
CREATE TABLE table_17288869_5 (record VARCHAR, date VARCHAR)
SELECT run_4 FROM table_name_21 WHERE run_2 = "1:25.84"
What is Run 4, when Run 2 is 1:25.84?
CREATE TABLE table_name_21 (run_4 VARCHAR, run_2 VARCHAR)
SELECT record FROM table_name_90 WHERE game < 79
What is the record for a game lower than 79?
CREATE TABLE table_name_90 (record VARCHAR, game INTEGER)
SELECT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician ORDER BY T2.dose DESC LIMIT 1
What are the names of the physician who prescribed the highest dose?
CREATE TABLE prescribes (physician VARCHAR, dose VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)
SELECT player FROM table_name_42 WHERE score = 71 - 69 - 72 - 72 = 284
What is Player, when Score is "71-69-72-72=284"?
CREATE TABLE table_name_42 (player VARCHAR, score VARCHAR)
SELECT COUNT(track_number) FROM table_name_58 WHERE recording_date = "november 16, 1959" AND title = "i couldn't hear nobody pray"
How many track numbers were recorded on November 16, 1959 for the title of I Couldn't Hear Nobody Pray?
CREATE TABLE table_name_58 (track_number VARCHAR, recording_date VARCHAR, title VARCHAR)
SELECT week FROM table_name_7 WHERE result = "w 31-21"
What is the week with w 31-21 result?
CREATE TABLE table_name_7 (week VARCHAR, result VARCHAR)
SELECT publisher FROM table_21458142_1 WHERE genre = "Pet-raising simulator"
Who published the title in the pet-raising simulator genre?
CREATE TABLE table_21458142_1 (publisher VARCHAR, genre VARCHAR)
SELECT home FROM table_name_61 WHERE visitor = "ottawa senators" AND score = "2–3"
which Home has a Visitor of ottawa senators and a Score of 2–3?
CREATE TABLE table_name_61 (home VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT team FROM table_27733909_7 WHERE date = "January 17"
Name the team for january 17
CREATE TABLE table_27733909_7 (team VARCHAR, date VARCHAR)
SELECT name FROM table_name_74 WHERE league_cup_goals > 0 AND total_goals < 13 AND league_cup_apps = "4"
Who is the player that has scored more than 0 league cup goals, but has than 13 total goals, and 4 league cup appearances total?
CREATE TABLE table_name_74 (name VARCHAR, league_cup_apps VARCHAR, league_cup_goals VARCHAR, total_goals VARCHAR)
SELECT height FROM table_28062822_3 WHERE represent = 1
What was the height of representative #1?
CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR)
SELECT distance FROM table_name_20 WHERE stage = "4a"
What is the Distance of the 1945 Vuelta a Espana with 4A Stage?
CREATE TABLE table_name_20 (distance VARCHAR, stage VARCHAR)
SELECT winning_driver FROM table_1140116_5 WHERE circuit = "Modena"
Who won the Modena circuit?
CREATE TABLE table_1140116_5 (winning_driver VARCHAR, circuit VARCHAR)
SELECT no FROM table_26202847_6 WHERE date = "October 21, 2007"
On the date October 21, 2007, what is the No.?
CREATE TABLE table_26202847_6 (no VARCHAR, date VARCHAR)
SELECT COUNT(population) FROM table_name_41 WHERE altitude__mslm_ > 302 AND area__km_2__ = 29.2
How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2?
CREATE TABLE table_name_41 (population VARCHAR, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR)
SELECT opponent FROM table_name_73 WHERE site_stadium = "lindsey nelson stadium"
Who was the opponent at Lindsey Nelson Stadium?
CREATE TABLE table_name_73 (opponent VARCHAR, site_stadium VARCHAR)
SELECT city FROM table_name_91 WHERE result = "w" AND competition = "international friendly (unofficial match)" AND score = "1-0"
Which City has a Result of w, and a Competition of international friendly (unofficial match), and a Score of 1-0?
CREATE TABLE table_name_91 (city VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)
SELECT length FROM table_name_63 WHERE class = "all" AND date = "march 18"
Name the length for all class and date of march 18
CREATE TABLE table_name_63 (length VARCHAR, class VARCHAR, date VARCHAR)
SELECT airport FROM table_name_52 WHERE iata = "tyn"
Which airport has an IATA of TYN?
CREATE TABLE table_name_52 (airport VARCHAR, iata VARCHAR)
SELECT MIN(pick) FROM table_name_30 WHERE player = "mike o'quinn" AND round < 15
Player of mike o'quinn, and a Round smaller than 15 had what lowest pick?
CREATE TABLE table_name_30 (pick INTEGER, player VARCHAR, round VARCHAR)
SELECT broadcast_date FROM table_1785117_1 WHERE viewers__in_millions_ = "8.3"
What is the broadcast date when 8.3 million viewers watched?
CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT margin_of_victory FROM table_name_78 WHERE tournament = "cyber agent ladies"
Which margin of victory has cyber agent ladies as the tournament?
CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT MAX(seasons) FROM table_name_28 WHERE drawn = 57 AND rank = 20 AND spells > 1
What is the highest season number with 57 draws, rank 20, and more than 1 spell?
CREATE TABLE table_name_28 (seasons INTEGER, spells VARCHAR, drawn VARCHAR, rank VARCHAR)
SELECT points_against FROM table_17941032_2 WHERE try_bonus = "0" AND points_for = "150"
List all points against with a 0 try bonus and points for of 150.
CREATE TABLE table_17941032_2 (points_against VARCHAR, try_bonus VARCHAR, points_for VARCHAR)
SELECT constituency_number FROM table_name_37 WHERE district = "bhiwani"
Bhiwani district have what constituency number?
CREATE TABLE table_name_37 (constituency_number VARCHAR, district VARCHAR)
SELECT COUNT(lost) FROM table_name_54 WHERE played > 12
Which player lost more than 12?
CREATE TABLE table_name_54 (lost VARCHAR, played INTEGER)
SELECT AVG(amount_of_transaction) FROM TRANSACTIONS WHERE transaction_type_code = "SALE"
Show the average amount of transactions with type code "SALE".
CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER, transaction_type_code VARCHAR)
SELECT record FROM table_name_1 WHERE event = "inoki bom-ba-ye 2002"
Which Record has an Event of inoki bom-ba-ye 2002?
CREATE TABLE table_name_1 (record VARCHAR, event VARCHAR)
SELECT COUNT(built) FROM table_name_51 WHERE withdrawn = 1967 AND br_sr_no = "w27" AND to_iow < 1926
What is the number for year built of W27 that was withdrawn in 1967 with a To LoW year earlier than 1926?
CREATE TABLE table_name_51 (built VARCHAR, to_iow VARCHAR, withdrawn VARCHAR, br_sr_no VARCHAR)
SELECT engine FROM table_name_12 WHERE transmission = "4-speed automatic" AND acceleration_0_100km_h__0_62mph_ = "10.4 s"
What is the engine when the transmission was 4-speed automatic, and acceleration 0–100km/h (0–62mph) was 10.4 s?
CREATE TABLE table_name_12 (engine VARCHAR, transmission VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)
SELECT home_team AS score FROM table_name_75 WHERE away_team = "collingwood"
What was the score for the away team at Collingwood?
CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)
SELECT print_resolution__dpi__resolution_is_given_in_dots_per_inch__dpi_ FROM table_10528691_4 WHERE introduction = "December 2002"
What is the print resolution (FPI) for December 2002?
CREATE TABLE table_10528691_4 (print_resolution__dpi__resolution_is_given_in_dots_per_inch__dpi_ VARCHAR, introduction VARCHAR)
SELECT event FROM table_name_77 WHERE long_course_short_course = "short course" AND year_set = 2010
What event had a short course in 2010?
CREATE TABLE table_name_77 (event VARCHAR, long_course_short_course VARCHAR, year_set VARCHAR)
SELECT opponent FROM table_name_81 WHERE record = "0-1"
Who is the opponent with a 0-1 record?
CREATE TABLE table_name_81 (opponent VARCHAR, record VARCHAR)
SELECT player FROM table_name_42 WHERE to_par = "+3" AND score = 74 - 71 - 68 = 213
Who is the player with a +3 to par and a 74-71-68=213 score?
CREATE TABLE table_name_42 (player VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT lfn_support FROM table_name_74 WHERE architecture = "32-bit" AND name = "windows home server"
What is the LFN support with 32-bit architecture on Windows Home Server?
CREATE TABLE table_name_74 (lfn_support VARCHAR, architecture VARCHAR, name VARCHAR)
SELECT COUNT(*) FROM routes AS T1 JOIN airports AS T2 ON T1.dst_apid = T2.apid JOIN airlines AS T3 ON T1.alid = T3.alid WHERE T2.country = 'Italy' AND T3.name = 'American Airlines'
Return the number of routes with destination airport in Italy operated by the airline with name 'American Airlines'.
CREATE TABLE routes (dst_apid VARCHAR, alid VARCHAR); CREATE TABLE airports (apid VARCHAR, country VARCHAR); CREATE TABLE airlines (alid VARCHAR, name VARCHAR)
SELECT MIN(relapsing_fever) FROM table_1007688_1 WHERE malaria = "3000"
what is the number of relapsing fever when malaria is 3000
CREATE TABLE table_1007688_1 (relapsing_fever INTEGER, malaria VARCHAR)
SELECT builder FROM table_name_69 WHERE name = "ins rana"
Who was the builder of the ship INS Rana?
CREATE TABLE table_name_69 (builder VARCHAR, name VARCHAR)
SELECT MIN(total) FROM table_name_80 WHERE location = "boston, massachusetts"
What is the earliest episode of the series that is set in Boston, Massachusetts?
CREATE TABLE table_name_80 (total INTEGER, location VARCHAR)
SELECT class_aAAAA FROM table_15315103_1 WHERE school_year = "1995-96"
Who is in class during 1995-96?
CREATE TABLE table_15315103_1 (class_aAAAA VARCHAR, school_year VARCHAR)
SELECT COUNT(county) FROM table_15929156_3 WHERE obama_votes = 49558
Name the number of counties for obama votes for 49558
CREATE TABLE table_15929156_3 (county VARCHAR, obama_votes VARCHAR)
SELECT leading_scorer FROM table_name_31 WHERE date = "9 february 2008"
Who is the leading scorer of the game on 9 February 2008?
CREATE TABLE table_name_31 (leading_scorer VARCHAR, date VARCHAR)
SELECT event FROM table_name_56 WHERE rider = "rob vine"
What event was Rob Vine riding?
CREATE TABLE table_name_56 (event VARCHAR, rider VARCHAR)
SELECT MAX(to_par) FROM table_name_89 WHERE total < 148
Which To par is the highest one that has a Total smaller than 148?
CREATE TABLE table_name_89 (to_par INTEGER, total INTEGER)
SELECT role FROM table_name_22 WHERE pick__number = 10
What role did Pick # 10 have?
CREATE TABLE table_name_22 (role VARCHAR, pick__number VARCHAR)
SELECT T1.name_first, T1.name_last, T2.player_id FROM player AS T1 JOIN manager_award AS T2 ON T1.player_id = T2.player_id GROUP BY T2.player_id ORDER BY COUNT(*) DESC LIMIT 1
What are the manager's first name, last name and id who won the most manager award?
CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, player_id VARCHAR); CREATE TABLE manager_award (player_id VARCHAR)
SELECT MIN(points) FROM table_name_23 WHERE league = "w-2 (w-league)" AND draws > 2
What is the lowest points that has w-2 (w-league) as the league, and draws greater than 2?
CREATE TABLE table_name_23 (points INTEGER, league VARCHAR, draws VARCHAR)
SELECT condition FROM table_1555308_1 WHERE bleeding_time = "Prolonged" AND prothrombin_time = "Unaffected"
In which condition(s) is bleeding time prolonged and prothrombin time unaffected?
CREATE TABLE table_1555308_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
SELECT COUNT(week) FROM table_10646790_2 WHERE date = "November 9, 1969"
How many weeks are there that include the date November 9, 1969.
CREATE TABLE table_10646790_2 (week VARCHAR, date VARCHAR)
SELECT born_died FROM table_name_27 WHERE name = "maliq bushati"
What is Born-Died, when Name is Maliq Bushati?
CREATE TABLE table_name_27 (born_died VARCHAR, name VARCHAR)
SELECT AVG(laps) FROM table_name_42 WHERE time = "+50.653"
What is the average laps for the +50.653 time?
CREATE TABLE table_name_42 (laps INTEGER, time VARCHAR)
SELECT color FROM table_name_54 WHERE scientific_name = "chamaeleo calyptratus"
What is the color of the Chamaeleo Calyptratus?
CREATE TABLE table_name_54 (color VARCHAR, scientific_name VARCHAR)