answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT college FROM table_15353123_1 WHERE player = "Dean Kirkland"
Which college did Dean Kirkland go to
CREATE TABLE table_15353123_1 (college VARCHAR, player VARCHAR)
SELECT nat FROM table_name_26 WHERE estimate = "372"
Which nation was the ship from that had 372 victims?
CREATE TABLE table_name_26 (nat VARCHAR, estimate VARCHAR)
SELECT result FROM table_name_54 WHERE attendance = "67,715"
What is the result of the game with 67,715 fans attending?
CREATE TABLE table_name_54 (result VARCHAR, attendance VARCHAR)
SELECT COUNT(pop__2010_) FROM table_name_24 WHERE longitude = -97.578927
What is the population in 2010 for the longitude of -97.578927?
CREATE TABLE table_name_24 (pop__2010_ VARCHAR, longitude VARCHAR)
SELECT title FROM table_name_83 WHERE production_number = "1039"
What is the title of the production with a number of 1039?
CREATE TABLE table_name_83 (title VARCHAR, production_number VARCHAR)
SELECT Ref_Shipping_Agents.shipping_agent_name FROM Ref_Shipping_Agents JOIN Documents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Documents.document_id = 2
What is the name of the shipping agent of the document with id 2?
CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Shipping_Agents (Id VARCHAR)
SELECT COUNT(latest_year) FROM table_25735_1 WHERE competition = "Cook Island League"
How many cook island league competitions were there?
CREATE TABLE table_25735_1 (latest_year VARCHAR, competition VARCHAR)
SELECT Park FROM roller_coaster ORDER BY Speed DESC LIMIT 1
Show the park of the roller coaster with the highest speed.
CREATE TABLE roller_coaster (Park VARCHAR, Speed VARCHAR)
SELECT COUNT(location_attendance) FROM table_22822559_4 WHERE game = 7
List the location and number of fans in attendance for game 7/
CREATE TABLE table_22822559_4 (location_attendance VARCHAR, game VARCHAR)
SELECT league_cup FROM table_name_40 WHERE years = "1947–1958"
What is the League Cup for 1947–1958?
CREATE TABLE table_name_40 (league_cup VARCHAR, years VARCHAR)
SELECT team_name FROM table_name_97 WHERE losses = 6 AND games > 18
Who is the team that has played more than 18 games and has 6 losses?
CREATE TABLE table_name_97 (team_name VARCHAR, losses VARCHAR, games VARCHAR)
SELECT record FROM table_name_48 WHERE visitor = "toronto st. pats" AND score = "5–4" AND home = "ottawa senators"
Name the Record of Visitor of toronto st. pats with a Score of 5–4 and a Home of ottawa senators? Question 5
CREATE TABLE table_name_48 (record VARCHAR, home VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT area FROM table_name_17 WHERE output__2007_ = "12,332 t"
What's the Area with an Output (2007) of 12,332 T?
CREATE TABLE table_name_17 (area VARCHAR, output__2007_ VARCHAR)
SELECT event FROM table_name_69 WHERE medal = "gold" AND name = "barney henricus"
Which Event has a Medal of gold and a Name of barney henricus?
CREATE TABLE table_name_69 (event VARCHAR, medal VARCHAR, name VARCHAR)
SELECT outcome FROM table_name_73 WHERE opponent = "magdalena maleeva"
What was the outcome of the match against Magdalena Maleeva?
CREATE TABLE table_name_73 (outcome VARCHAR, opponent VARCHAR)
SELECT director FROM table_name_93 WHERE release_date = "2004-03-31" AND characters = "daffy (as duck dodgers)"
What director has 2004-03-31 as the release date, with daffy (as duck dodgers) as the character?
CREATE TABLE table_name_93 (director VARCHAR, release_date VARCHAR, characters VARCHAR)
SELECT catalogue FROM table_name_31 WHERE region = "japan"
Which catalogue is from Japan?
CREATE TABLE table_name_31 (catalogue VARCHAR, region VARCHAR)
SELECT AVG(egypt_cup) FROM table_name_93 WHERE caf_champions_league = 0 AND egyptian_premier_league = 6 AND total < 6
What is the aveage Egypt Cup value for players with 0 CAF Champions League goals, 6 Egyptian Premier League goals, and totals under 6?
CREATE TABLE table_name_93 (egypt_cup INTEGER, total VARCHAR, caf_champions_league VARCHAR, egyptian_premier_league VARCHAR)
SELECT MIN(bronze) FROM table_name_82 WHERE silver < 0
with silver count at 0, what is the lowest bronze count?
CREATE TABLE table_name_82 (bronze INTEGER, silver INTEGER)
SELECT AVG(vertical_relief__ft_) FROM table_name_87 WHERE peak_name = "tower near mead wood road entrance" AND elevation__ft_ > 1 OFFSET 410
What is the mean vertical relief in feet when the Peak Name is Tower near mead wood road entrance and the elevation in feet is more than 1,410?
CREATE TABLE table_name_87 (vertical_relief__ft_ INTEGER, peak_name VARCHAR, elevation__ft_ VARCHAR)
SELECT language FROM table_24446718_3 WHERE awardee_s_ = "B. Ajith Kumar"
Name the language for b. ajith kumar
CREATE TABLE table_24446718_3 (language VARCHAR, awardee_s_ VARCHAR)
SELECT city FROM table_name_21 WHERE track = "indianapolis speedrome"
What city is the indianapolis speedrome in?
CREATE TABLE table_name_21 (city VARCHAR, track VARCHAR)
SELECT record FROM table_name_23 WHERE date = "june 24"
What is the Record of the game on June 24?
CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)
SELECT wheel_arrangement FROM table_name_78 WHERE year_made = "1881"
what is the wheel arrangement when the year made is 1881?
CREATE TABLE table_name_78 (wheel_arrangement VARCHAR, year_made VARCHAR)
SELECT lname FROM faculty WHERE rank = 'Professor' EXCEPT SELECT DISTINCT T1.lname FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID JOIN activity AS T3 ON T2.actid = T2.actid WHERE T3.activity_name = 'Canoeing' OR T3.activity_name = 'Kayaking'
Find the first names of professors who are not playing Canoeing or Kayaking.
CREATE TABLE faculty (lname VARCHAR, rank VARCHAR); CREATE TABLE activity (activity_name VARCHAR); CREATE TABLE Faculty_participates_in (facID VARCHAR, actid VARCHAR); CREATE TABLE Faculty (lname VARCHAR, facID VARCHAR)
SELECT MIN(rank) FROM table_name_24 WHERE gross = "$54,215,416"
Which Rank is the lowest one that has a Gross of $54,215,416?
CREATE TABLE table_name_24 (rank INTEGER, gross VARCHAR)
SELECT MAX(number_of_dairy_cows) FROM table_29012710_1 WHERE province = "British Columbia"
what is the most amount of cattle where they live in british columbia
CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR)
SELECT opposition FROM table_name_39 WHERE stadium = "11,682 excl. exhibition match"
Who was the opposition at 11,682 excl. exhibition match?
CREATE TABLE table_name_39 (opposition VARCHAR, stadium VARCHAR)
SELECT COUNT(goal_difference) FROM table_name_4 WHERE goals_against = 30 AND played < 18
Tell me the totla number of goal difference for goals against of 30 and played less than 18
CREATE TABLE table_name_4 (goal_difference VARCHAR, goals_against VARCHAR, played VARCHAR)
SELECT sportname, COUNT(*) FROM Sportsinfo GROUP BY sportname
Show all sport name and the number of students.
CREATE TABLE Sportsinfo (sportname VARCHAR)
SELECT final_round FROM table_name_1 WHERE year = "1975"
In 1975, what was the final round?
CREATE TABLE table_name_1 (final_round VARCHAR, year VARCHAR)
SELECT opponents FROM table_name_21 WHERE partner = "yvonne meusburger"
Tell me the opponents for partner of yvonne meusburger
CREATE TABLE table_name_21 (opponents VARCHAR, partner VARCHAR)
SELECT first FROM table_name_12 WHERE uni_number > 34 AND throws = "r" AND position = "rhp" AND surname = "stockman"
Which First has a Uni # larger than 34, and Throws of r, and a Position of rhp, and a Surname of stockman?
CREATE TABLE table_name_12 (first VARCHAR, surname VARCHAR, position VARCHAR, uni_number VARCHAR, throws VARCHAR)
SELECT to_par FROM table_name_23 WHERE finish = "t11" AND player = "david graham"
WHAT IS THE TO PAR WITH A FINISH OF T11, FOR DAVID GRAHAM?
CREATE TABLE table_name_23 (to_par VARCHAR, finish VARCHAR, player VARCHAR)
SELECT COUNT(*) FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID WHERE Student.Fname = "Linda" AND Student.Lname = "Smith" AND Restaurant.ResName = "Subway"
How many times has the student Linda Smith visited Subway?
CREATE TABLE Visits_Restaurant (Id VARCHAR); CREATE TABLE Student (Id VARCHAR); CREATE TABLE Restaurant (Id VARCHAR)
SELECT nomination FROM table_10236830_4 WHERE film_name = "Totalitarian Romance"
Which nominations are connected to the film Totalitarian Romance?
CREATE TABLE table_10236830_4 (nomination VARCHAR, film_name VARCHAR)
SELECT lower_index_kcal__nm_3 FROM table_1868929_1 WHERE upper_index_mj__nm_3 = "61.32"
Name the lower index kcal/ nm3 for 61.32
CREATE TABLE table_1868929_1 (lower_index_kcal__nm_3 VARCHAR, upper_index_mj__nm_3 VARCHAR)
SELECT opponent FROM table_name_81 WHERE attendance = "70,012"
Who was the opponent at the game attended by 70,012?
CREATE TABLE table_name_81 (opponent VARCHAR, attendance VARCHAR)
SELECT player FROM table_name_92 WHERE position = "number 8" AND club_province = "scarlets"
Which Player has a Position of number 8, and a Club/province of scarlets?
CREATE TABLE table_name_92 (player VARCHAR, position VARCHAR, club_province VARCHAR)
SELECT japanese_title FROM table_name_12 WHERE episodes > 9 AND romaji_title = "haikei, chichiue-sama"
Which Japanese Title has more than 9 Episodes, and a Romaji Title of haikei, chichiue-sama?
CREATE TABLE table_name_12 (japanese_title VARCHAR, episodes VARCHAR, romaji_title VARCHAR)
SELECT notes FROM table_name_59 WHERE venue = "rome" AND date = "july 30, 2009"
For a venue of Rome on July 30, 2009, what are the notes?
CREATE TABLE table_name_59 (notes VARCHAR, venue VARCHAR, date VARCHAR)
SELECT MAX(year) FROM table_name_79 WHERE entrant = "ron harris / team lotus"
What is the largest year with an Entrant of ron harris / team lotus?
CREATE TABLE table_name_79 (year INTEGER, entrant VARCHAR)
SELECT T3.title, T3.credits FROM classroom AS T1 JOIN SECTION AS T2 ON T1.building = T2.building AND T1.room_number = T2.room_number JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T1.capacity = (SELECT MAX(capacity) FROM classroom)
What is the title and credits of the course that is taught in the largest classroom (with the highest capacity)?
CREATE TABLE SECTION (course_id VARCHAR, building VARCHAR, room_number VARCHAR); CREATE TABLE course (title VARCHAR, credits VARCHAR, course_id VARCHAR); CREATE TABLE classroom (capacity INTEGER, building VARCHAR, room_number VARCHAR); CREATE TABLE classroom (capacity INTEGER)
SELECT date FROM table_name_78 WHERE votes = "50,324"
On what date were there 50,324 votes?
CREATE TABLE table_name_78 (date VARCHAR, votes VARCHAR)
SELECT Planned_Delivery_Date, Actual_Delivery_Date FROM BOOKINGS
Show all the planned delivery dates and actual delivery dates of bookings.
CREATE TABLE BOOKINGS (Planned_Delivery_Date VARCHAR, Actual_Delivery_Date VARCHAR)
SELECT club FROM table_18967450_2 WHERE goals = 48
Which team/s have 48 goals total?
CREATE TABLE table_18967450_2 (club VARCHAR, goals VARCHAR)
SELECT venue FROM table_name_33 WHERE away_team = "north melbourne"
What was the Venue of the North Melbourne Away Team?
CREATE TABLE table_name_33 (venue VARCHAR, away_team VARCHAR)
SELECT games FROM table_name_71 WHERE medal = "bronze" AND sport = "weightlifting" AND event = "94kg men's weightlifting"
At which games was a bronze medal won in the 94kg men's weightlifting event?
CREATE TABLE table_name_71 (games VARCHAR, event VARCHAR, medal VARCHAR, sport VARCHAR)
SELECT children_together FROM table_24143253_2 WHERE deceased_spouse = "Dennis Hawley"
How many children did Dennis Hawley have at his time of death?
CREATE TABLE table_24143253_2 (children_together VARCHAR, deceased_spouse VARCHAR)
SELECT COUNT(*) FROM COUNTRIES
How many countries are listed?
CREATE TABLE COUNTRIES (Id VARCHAR)
SELECT laps FROM table_name_98 WHERE driver = "olivier panis"
Which lap number had Olivier Panis as a driver?
CREATE TABLE table_name_98 (laps VARCHAR, driver VARCHAR)
SELECT AVG(assists) FROM table_name_66 WHERE rank > 3 AND games < 25
How many Assists for the Player with a Rank greater than 3 in less than 25 Games?
CREATE TABLE table_name_66 (assists INTEGER, rank VARCHAR, games VARCHAR)
SELECT general_election FROM table_106367_2 WHERE result = "PQ majority" AND _percentage_of_popular_vote = "44.75%"
Which general election had a pq majority and a 44.75% of the popular vote?
CREATE TABLE table_106367_2 (general_election VARCHAR, result VARCHAR, _percentage_of_popular_vote VARCHAR)
SELECT dma FROM table_19131921_1 WHERE branding = "Big Oldies 107.3" AND station = "WARV-FM"
What is the dma of branding is big oldies 107.3 with the station warv-fm?
CREATE TABLE table_19131921_1 (dma VARCHAR, branding VARCHAR, station VARCHAR)
SELECT nation FROM table_name_9 WHERE time__sec_ = 48.38
Which nation had a time of 48.38?
CREATE TABLE table_name_9 (nation VARCHAR, time__sec_ VARCHAR)
SELECT COUNT(year) FROM table_11680175_1 WHERE eichstädt = 939
How many years where Eichstädt had a number of 939?
CREATE TABLE table_11680175_1 (year VARCHAR, eichstädt VARCHAR)
SELECT attendance FROM table_name_32 WHERE opponent = "angels" AND date = "july 9"
Name the attendance with angels opponent for july 9
CREATE TABLE table_name_32 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT league_division FROM table_name_29 WHERE club = "sai kung"
What division is Sai Kung in?
CREATE TABLE table_name_29 (league_division VARCHAR, club VARCHAR)
SELECT visitor FROM table_name_37 WHERE home = "dallas"
Name the visitor for home of dallas
CREATE TABLE table_name_37 (visitor VARCHAR, home VARCHAR)
SELECT driver FROM table_name_21 WHERE tyre = "p" AND entrant = "officine alfieri maserati"
Who was the driver of the Officine Alfieri Maserati with a Tyre of P?
CREATE TABLE table_name_21 (driver VARCHAR, tyre VARCHAR, entrant VARCHAR)
SELECT school FROM table_name_41 WHERE player = "tyrone johnson"
Which School did Player Tyrone Johnson attend?
CREATE TABLE table_name_41 (school VARCHAR, player VARCHAR)
SELECT MIN(top_5) FROM table_1671401_1
Name the least top 5
CREATE TABLE table_1671401_1 (top_5 INTEGER)
SELECT MIN(three_pointers) FROM table_22824199_1 WHERE free_throws = 50
Of the players with 50 free throws, what is the lowest number of three pointers?
CREATE TABLE table_22824199_1 (three_pointers INTEGER, free_throws VARCHAR)
SELECT AVG(crowd) FROM table_name_2 WHERE home_team = "richmond"
What is the average crowd size for Richmond home games?
CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR)
SELECT final_score FROM table_name_96 WHERE date = "january 9" AND host_team = "cincinnati bengals"
Tell me the final score for january 9 for cincinnati bengals
CREATE TABLE table_name_96 (final_score VARCHAR, date VARCHAR, host_team VARCHAR)
SELECT status FROM table_name_16 WHERE opposing_teams = "wales"
Which Status has a Opposing Teams of wales?
CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)
SELECT MAX(react) FROM table_name_84 WHERE mark = "7.61" AND heat > 1
What is the highest React that has a 7.61 Mark and a heat bigger than 1?
CREATE TABLE table_name_84 (react INTEGER, mark VARCHAR, heat VARCHAR)
SELECT proto_germanic FROM table_name_3 WHERE old_english = "/d/"
What's the Proto-Germanic when the Old English is /d/?
CREATE TABLE table_name_3 (proto_germanic VARCHAR, old_english VARCHAR)
SELECT MIN(game) FROM table_name_93 WHERE date = "october 17" AND attendance > 49 OFFSET 347
What game, played on October 17 in front of 49,347 fans, had the lowest score?
CREATE TABLE table_name_93 (game INTEGER, date VARCHAR, attendance VARCHAR)
SELECT mens_singles FROM table_28138035_27 WHERE year_location = "2009 Doha"
Who is listed under mens singles when the year location is 2009 doha?
CREATE TABLE table_28138035_27 (mens_singles VARCHAR, year_location VARCHAR)
SELECT country FROM table_name_66 WHERE lane = 6
Tell me the country for lane of 6
CREATE TABLE table_name_66 (country VARCHAR, lane VARCHAR)
SELECT MIN(miss_international) FROM table_29942205_1
What is the lowest value in the miss international column?
CREATE TABLE table_29942205_1 (miss_international INTEGER)
SELECT bid_pronar_investment__us$_ FROM table_17118006_2 WHERE farmers = 1326
What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects?
CREATE TABLE table_17118006_2 (bid_pronar_investment__us$_ VARCHAR, farmers VARCHAR)
SELECT city_of_license FROM table_name_40 WHERE class = "lp"
What is the city of license that has lp as the class?
CREATE TABLE table_name_40 (city_of_license VARCHAR, class VARCHAR)
SELECT date FROM table_name_16 WHERE visitor = "chicago black hawks" AND record = "0-2"
What day was the visitor Chicago Black Hawks and the record 0-2?
CREATE TABLE table_name_16 (date VARCHAR, visitor VARCHAR, record VARCHAR)
SELECT position FROM table_20872722_1 WHERE weight = "225lb"
Which position has 225lb as weight?
CREATE TABLE table_20872722_1 (position VARCHAR, weight VARCHAR)
SELECT against FROM table_name_94 WHERE opponents = "mădălina gojnea monica niculescu"
Who was against the opponents, mădălina gojnea monica niculescu?
CREATE TABLE table_name_94 (against VARCHAR, opponents VARCHAR)
SELECT location FROM table_19210115_1 WHERE nickname = "Hawks"
Where is the University that is also called Hawks?
CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)
SELECT third FROM table_name_76 WHERE lead = "cindy simmons"
WHAT IS THE THIRD WITH LEAD CINDY SIMMONS?
CREATE TABLE table_name_76 (third VARCHAR, lead VARCHAR)
SELECT finish FROM table_name_22 WHERE season = "1950–51"
What is the Finish for the 1950–51? season?
CREATE TABLE table_name_22 (finish VARCHAR, season VARCHAR)
SELECT surface FROM table_name_75 WHERE date > 1979 AND championship = "melbourne indoor, australia" AND score = "2–6, 6–2, 6–2"
What was the surface later than 1979, for the Melbourne Indoor, Australia, and the score was 2–6, 6–2, 6–2?
CREATE TABLE table_name_75 (surface VARCHAR, score VARCHAR, date VARCHAR, championship VARCHAR)
SELECT COUNT(number_of_troops) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.45"
Name the number of troops for troops per $1 billion being 2.45
CREATE TABLE table_30108346_1 (number_of_troops VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)
SELECT final_round FROM table_name_22 WHERE first_round = 20
Which final round had a first round of 20?
CREATE TABLE table_name_22 (final_round VARCHAR, first_round VARCHAR)
SELECT player FROM table_name_6 WHERE college = "iowa state"
What Player is from Iowa State?
CREATE TABLE table_name_6 (player VARCHAR, college VARCHAR)
SELECT SUM(time) FROM table_name_50 WHERE lane < 4 AND name = "britta steffen"
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 MIN(losses) FROM table_name_75 WHERE draws > 6 AND club = "cd mestalla" AND goals_against > 44
Which Losses have Draws larger than 6, and a Club of cd mestalla, and Goals against larger than 44?
CREATE TABLE table_name_75 (losses INTEGER, goals_against VARCHAR, draws VARCHAR, club VARCHAR)
SELECT AVG(total_population__2005_estimate_) FROM table_name_78 WHERE province = "west kalimantan (kalimantan barat)" AND area__km_2__ < 147 OFFSET 307.00
Which Total population (2005 estimate) has a Province of west kalimantan (kalimantan barat), and an Area (km 2) smaller than 147,307.00?
CREATE TABLE table_name_78 (total_population__2005_estimate_ INTEGER, province VARCHAR, area__km_2__ VARCHAR)
SELECT city FROM table_name_85 WHERE score < 30 AND venue = "aigburth"
Which City has a Score smaller than 30, and a Venue of aigburth?
CREATE TABLE table_name_85 (city VARCHAR, score VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_14 WHERE venue = "victoria park"
Who plays at Victoria Park?
CREATE TABLE table_name_14 (away_team VARCHAR, venue VARCHAR)
SELECT myspace_band FROM table_name_77 WHERE original_airdate = "25 march 2008"
What is the name of the MySpace Band with an Original Airdate of 25 march 2008?
CREATE TABLE table_name_77 (myspace_band VARCHAR, original_airdate VARCHAR)
SELECT last_title FROM table_name_36 WHERE club = "quilmes"
Name the last title for club of quilmes
CREATE TABLE table_name_36 (last_title VARCHAR, club VARCHAR)
SELECT MIN(week) FROM table_29679510_2
In what week was the first game played?
CREATE TABLE table_29679510_2 (week INTEGER)
SELECT location FROM table_name_3 WHERE meet = "2008 championships" AND time = "7:56.90"
Where were the 2008 championships with a time of 7:56.90 held?
CREATE TABLE table_name_3 (location VARCHAR, meet VARCHAR, time VARCHAR)
SELECT COUNT(kickoff) FROM table_26275503_2 WHERE opponent = "Scottish Claymores"
How many different kickoffs happened when the opponent was the Scottish Claymores
CREATE TABLE table_26275503_2 (kickoff VARCHAR, opponent VARCHAR)
SELECT team FROM table_11964154_7 WHERE game = 25
Whom did they play on game number 25?
CREATE TABLE table_11964154_7 (team VARCHAR, game VARCHAR)
SELECT COUNT(opponents) FROM table_21035326_1 WHERE game = 4
What is the total number of opponents played against the bears in game 4?
CREATE TABLE table_21035326_1 (opponents VARCHAR, game VARCHAR)
SELECT city FROM table_name_55 WHERE home_arena = "barclays center"
Which city includes Barclays Center?
CREATE TABLE table_name_55 (city VARCHAR, home_arena VARCHAR)
SELECT outcome FROM table_name_38 WHERE partner = "christophe rochus" AND date = "31 july 2005"
What is the Outcome when christophe rochus was partner, on 31 july 2005?
CREATE TABLE table_name_38 (outcome VARCHAR, partner VARCHAR, date VARCHAR)
SELECT COUNT(episode_title) FROM table_12146637_1 WHERE us_viewers__millions_ = "9.90"
How many episodes had 9.90 million viewers?
CREATE TABLE table_12146637_1 (episode_title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT score FROM table_name_12 WHERE venue = "riyadh, saudi arabia"
in riyadh, saudi arabia, what is the score?
CREATE TABLE table_name_12 (score VARCHAR, venue VARCHAR)