question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What was the lowest attendance for games played on december 23?
CREATE TABLE table_23308178_6 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_23308178_6 WHERE date = "December 23"
How many dates were played at the wachovia center?
CREATE TABLE table_23308178_6 (date VARCHAR, location VARCHAR)
SELECT COUNT(date) FROM table_23308178_6 WHERE location = "Wachovia Center"
How many games did they have a record of 39-12-6?
CREATE TABLE table_23308178_8 (game VARCHAR, record VARCHAR)
SELECT COUNT(game) FROM table_23308178_8 WHERE record = "39-12-6"
What is the largest number of points they had?
CREATE TABLE table_23308178_8 (points INTEGER)
SELECT MAX(points) FROM table_23308178_8
How many games did they play with 88 points?
CREATE TABLE table_23308178_8 (record VARCHAR, points VARCHAR)
SELECT COUNT(record) FROM table_23308178_8 WHERE points = 88
How many games did they play on february 5?
CREATE TABLE table_23308178_8 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_23308178_8 WHERE date = "February 5"
Who is every co-artist with name of role as Ah-Zhong 阿忠?
CREATE TABLE table_23379776_5 (co_artists VARCHAR, name_of_role VARCHAR)
SELECT co_artists FROM table_23379776_5 WHERE name_of_role = "Ah-Zhong 阿忠"
What is every nature of role with year as 2009?
CREATE TABLE table_23379776_5 (nature_of_role VARCHAR, year VARCHAR)
SELECT nature_of_role FROM table_23379776_5 WHERE year = 2009
How many locations for name of role as Xiao Gui 小鬼?
CREATE TABLE table_23379776_5 (location VARCHAR, name_of_role VARCHAR)
SELECT COUNT(location) FROM table_23379776_5 WHERE name_of_role = "Xiao Gui 小鬼"
On what date did episode 2 air?
CREATE TABLE table_2343740_1 (original_air_date VARCHAR, episode_number VARCHAR)
SELECT original_air_date FROM table_2343740_1 WHERE episode_number = 2
What was the title of the episode that aired February 9, 1979?
CREATE TABLE table_2343740_1 (title VARCHAR, original_air_date VARCHAR)
SELECT title FROM table_2343740_1 WHERE original_air_date = "February 9, 1979"
What is the number of the episode seen by 1.370 million people in the US?
CREATE TABLE table_2345558_1 (_number INTEGER, us_viewers__millions_ VARCHAR)
SELECT MAX(_number) FROM table_2345558_1 WHERE us_viewers__millions_ = "1.370"
What's the number of the episode directed by Whitney Ransick?
CREATE TABLE table_2345558_1 (_number VARCHAR, director VARCHAR)
SELECT _number FROM table_2345558_1 WHERE director = "Whitney Ransick"
Who directed the episode written by Jason Yoshimura?
CREATE TABLE table_2345558_1 (director VARCHAR, writer_s_ VARCHAR)
SELECT director FROM table_2345558_1 WHERE writer_s_ = "Jason Yoshimura"
When roy richardson 476cc aermacchi is the rider what is the time for saturday august 9th?
CREATE TABLE table_23465864_3 (sat_29_aug VARCHAR, rider VARCHAR)
SELECT sat_29_aug FROM table_23465864_3 WHERE rider = "Roy Richardson 476cc Aermacchi"
When 6 is the rank what is the time for Tuesday August 25th?
CREATE TABLE table_23465864_3 (tues_25_aug VARCHAR, rank VARCHAR)
SELECT tues_25_aug FROM table_23465864_3 WHERE rank = 6
When 3 is the rank what is the time for Saturday August 29th?
CREATE TABLE table_23465864_3 (sat_29_aug VARCHAR, rank VARCHAR)
SELECT sat_29_aug FROM table_23465864_3 WHERE rank = 3
When 22' 37.06 100.090mph is the time for Monday August 24th how many times are there for Friday August 28th?
CREATE TABLE table_23465864_3 (fri_28_aug VARCHAR, mon_24_aug VARCHAR)
SELECT COUNT(fri_28_aug) FROM table_23465864_3 WHERE mon_24_aug = "22' 37.06 100.090mph"
What is every rider on Monday August 24 at 21' 12.02 106.781mph?
CREATE TABLE table_23465864_5 (rider VARCHAR, mon_24_aug VARCHAR)
SELECT rider FROM table_23465864_5 WHERE mon_24_aug = "21' 12.02 106.781mph"
What is every value on Tuesday August 25 if August Friday 28 is 23' 54.54 94.684mph?
CREATE TABLE table_23465864_5 (tues_25_aug VARCHAR, fri_28_aug VARCHAR)
SELECT tues_25_aug FROM table_23465864_5 WHERE fri_28_aug = "23' 54.54 94.684mph"
What is every rider on Tuesday August 25 at 20' 32.11 110.241mph?
CREATE TABLE table_23465864_5 (rider VARCHAR, tues_25_aug VARCHAR)
SELECT rider FROM table_23465864_5 WHERE tues_25_aug = "20' 32.11 110.241mph"
What is every value for Monday August 24 if Friday August 28 is 23' 22.25 96.864mph?
CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, fri_28_aug VARCHAR)
SELECT mon_24_aug FROM table_23465864_5 WHERE fri_28_aug = "23' 22.25 96.864mph"
What is the value of Monday August 24 if the rider is Benny Smith 600cc Yamaha?
CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, rider VARCHAR)
SELECT mon_24_aug FROM table_23465864_5 WHERE rider = "Benny Smith 600cc Yamaha"
What is the value for Monday August 24 if Friday August 28 is 26' 04.60 86.814mph?
CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, fri_28_aug VARCHAR)
SELECT mon_24_aug FROM table_23465864_5 WHERE fri_28_aug = "26' 04.60 86.814mph"
Who directed 414?
CREATE TABLE table_23483182_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_23483182_1 WHERE production_code = 414
What is the series number of the episode that aired March 25, 2010?
CREATE TABLE table_23483182_1 (no_in_series INTEGER, original_air_date VARCHAR)
SELECT MIN(no_in_series) FROM table_23483182_1 WHERE original_air_date = "March 25, 2010"
Who wrote the episode that aired February 4, 2010?
CREATE TABLE table_23483182_1 (written_by VARCHAR, original_air_date VARCHAR)
SELECT written_by FROM table_23483182_1 WHERE original_air_date = "February 4, 2010"
What was the air date where there were 5.72 million viewers?
CREATE TABLE table_23483182_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT original_air_date FROM table_23483182_1 WHERE us_viewers__million_ = "5.72"
What number was there 6.01 million u.s. drivers?
CREATE TABLE table_23483182_1 (no_in_season VARCHAR, us_viewers__million_ VARCHAR)
SELECT no_in_season FROM table_23483182_1 WHERE us_viewers__million_ = "6.01"
What date did they play the Florida Panthers?
CREATE TABLE table_23486853_3 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_23486853_3 WHERE opponent = "Florida Panthers"
What was the score for the Atlanta Thrashers?
CREATE TABLE table_23486853_3 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_23486853_3 WHERE opponent = "Atlanta Thrashers"
What was the score for game 4?
CREATE TABLE table_23486853_3 (score VARCHAR, game VARCHAR)
SELECT score FROM table_23486853_3 WHERE game = 4
How many titles have an original air date of November 17, 1998?
CREATE TABLE table_234886_2 (title VARCHAR, original_air_date VARCHAR)
SELECT COUNT(title) FROM table_234886_2 WHERE original_air_date = "November 17, 1998"
How many season numbers are there for the episode seen by 13.54 million people in the US?
CREATE TABLE table_23528223_2 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(no_in_season) FROM table_23528223_2 WHERE us_viewers__millions_ = "13.54"
What's the series number of the episode directed by Skipp Sudduth?
CREATE TABLE table_23528223_2 (no_in_series VARCHAR, directed_by VARCHAR)
SELECT no_in_series FROM table_23528223_2 WHERE directed_by = "Skipp Sudduth"
Who wrote the episode seen by 10.64 million people in the US?
CREATE TABLE table_23528223_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT written_by FROM table_23528223_2 WHERE us_viewers__millions_ = "10.64"
Name the scores for david baddiel and maureen lipman
CREATE TABLE table_23575917_2 (scores VARCHAR, davids_team VARCHAR)
SELECT COUNT(scores) FROM table_23575917_2 WHERE davids_team = "David Baddiel and Maureen Lipman"
Name the scores for michael buerk and russell howard
CREATE TABLE table_23575917_2 (scores VARCHAR, lees_team VARCHAR)
SELECT scores FROM table_23575917_2 WHERE lees_team = "Michael Buerk and Russell Howard"
Name the davids team for 8 august 2008
CREATE TABLE table_23575917_2 (davids_team VARCHAR, first_broadcast VARCHAR)
SELECT davids_team FROM table_23575917_2 WHERE first_broadcast = "8 August 2008"
What is the episode number that was first broadcast on 3 September 2010?
CREATE TABLE table_23575917_4 (episode VARCHAR, first_broadcast VARCHAR)
SELECT episode FROM table_23575917_4 WHERE first_broadcast = "3 September 2010"
Who is the Lees Team for episode 4x04?
CREATE TABLE table_23575917_4 (lees_team VARCHAR, episode VARCHAR)
SELECT lees_team FROM table_23575917_4 WHERE episode = "4x04"
Who is on the David's Team for the episode with the Lees Team of Jack Dee and Peter Serafinowicz
CREATE TABLE table_23575917_4 (davids_team VARCHAR, lees_team VARCHAR)
SELECT davids_team FROM table_23575917_4 WHERE lees_team = "Jack Dee and Peter Serafinowicz"
How many David's team for the Lees Team of Deborah Meaden and Mark Watson?
CREATE TABLE table_23575917_4 (davids_team VARCHAR, lees_team VARCHAR)
SELECT COUNT(davids_team) FROM table_23575917_4 WHERE lees_team = "Deborah Meaden and Mark Watson"
If the episode is 6x03, what is the first broadcast total number?
CREATE TABLE table_23575917_7 (first_broadcast VARCHAR, episode VARCHAR)
SELECT COUNT(first_broadcast) FROM table_23575917_7 WHERE episode = "6x03"
If the lees team is Clare Balding and Miranda Hart, what is the first broadcast total number?
CREATE TABLE table_23575917_7 (first_broadcast VARCHAR, lees_team VARCHAR)
SELECT COUNT(first_broadcast) FROM table_23575917_7 WHERE lees_team = "Clare Balding and Miranda Hart"
If the lees team is Clare Balding and Miranda Hart, what was the score?
CREATE TABLE table_23575917_7 (scores VARCHAR, lees_team VARCHAR)
SELECT scores FROM table_23575917_7 WHERE lees_team = "Clare Balding and Miranda Hart"
What is the position of the song that was eliminated on 11 november?
CREATE TABLE table_23585197_3 (position INTEGER, date_eliminated VARCHAR)
SELECT MAX(position) FROM table_23585197_3 WHERE date_eliminated = "11 November"
Which artist sang the song that ingela hemming wrote?
CREATE TABLE table_23585197_3 (artist VARCHAR, songwriter_s_ VARCHAR)
SELECT artist FROM table_23585197_3 WHERE songwriter_s_ = "Ingela Hemming"
What is the position of the song that adam sandahl wrote?
CREATE TABLE table_23585197_3 (position VARCHAR, songwriter_s_ VARCHAR)
SELECT position FROM table_23585197_3 WHERE songwriter_s_ = "Adam Sandahl"
What is the position of the song thar genjor mcnell performed?
CREATE TABLE table_23585197_3 (position VARCHAR, artist VARCHAR)
SELECT position FROM table_23585197_3 WHERE artist = "Genjor McNell"
What week has an attendance of 10402
CREATE TABLE table_23624542_4 (week INTEGER, attendance VARCHAR)
SELECT MIN(week) FROM table_23624542_4 WHERE attendance = 10402
What is the record on Sept 22?
CREATE TABLE table_23624542_4 (record VARCHAR, date VARCHAR)
SELECT record FROM table_23624542_4 WHERE date = "Sept 22"
If artist 1 is Wolfgang Gartner, what is the release date?
CREATE TABLE table_23649244_2 (release_date VARCHAR, artist_1 VARCHAR)
SELECT release_date FROM table_23649244_2 WHERE artist_1 = "Wolfgang Gartner"
What is song 1 title is the artist is Danny Byrd?
CREATE TABLE table_23649244_2 (song_1_title VARCHAR, artist_1 VARCHAR)
SELECT song_1_title FROM table_23649244_2 WHERE artist_1 = "Danny Byrd"
What is the mix pack when the artist 2 is Eminem?
CREATE TABLE table_23649244_2 (mix_pack VARCHAR, artist_2 VARCHAR)
SELECT mix_pack FROM table_23649244_2 WHERE artist_2 = "Eminem"
What is every value for Serbs if value for Hungarians is 9.26%?
CREATE TABLE table_2374338_2 (serbs VARCHAR, hungarians VARCHAR)
SELECT serbs FROM table_2374338_2 WHERE hungarians = "9.26%"
What is the largest value of population?
CREATE TABLE table_2374338_2 (population INTEGER)
SELECT MAX(population) FROM table_2374338_2
How many values for Germans occurs when value for Slovaks is 0.11%?
CREATE TABLE table_2374338_2 (germans VARCHAR, slovaks VARCHAR)
SELECT COUNT(germans) FROM table_2374338_2 WHERE slovaks = "0.11%"
What is the smallest value of population if the value for Serbs is 73.53%?
CREATE TABLE table_2374338_2 (population INTEGER, serbs VARCHAR)
SELECT MIN(population) FROM table_2374338_2 WHERE serbs = "73.53%"
What is every value for Croats if the value of Roma is 3.1%?
CREATE TABLE table_2374338_2 (croats VARCHAR, roma VARCHAR)
SELECT croats FROM table_2374338_2 WHERE roma = "3.1%"
What is every value for Croats when value for Romanians is 16.65%?
CREATE TABLE table_2374338_2 (croats VARCHAR, romanians VARCHAR)
SELECT croats FROM table_2374338_2 WHERE romanians = "16.65%"
How many years of nasl years did the accolades read "captained england to victory at the 1966 world cup"?
CREATE TABLE table_237757_9 (nasl_years VARCHAR, accolades__pre_nasl_ VARCHAR)
SELECT COUNT(nasl_years) FROM table_237757_9 WHERE accolades__pre_nasl_ = "Captained England to victory at the 1966 World Cup"
What nasl club won several titles with leeds united?
CREATE TABLE table_237757_9 (nasl_club_s_ VARCHAR, accolades__pre_nasl_ VARCHAR)
SELECT nasl_club_s_ FROM table_237757_9 WHERE accolades__pre_nasl_ = "Won several titles with Leeds United"
What years did Bobby Moore play?
CREATE TABLE table_237757_9 (nasl_years VARCHAR, player VARCHAR)
SELECT nasl_years FROM table_237757_9 WHERE player = "Bobby Moore"
What position is Philadelphia Fury?
CREATE TABLE table_237757_9 (position VARCHAR, nasl_club_s_ VARCHAR)
SELECT position FROM table_237757_9 WHERE nasl_club_s_ = "Philadelphia Fury"
How many years did Peter Lorimer play?
CREATE TABLE table_237757_9 (nasl_years VARCHAR, player VARCHAR)
SELECT COUNT(nasl_years) FROM table_237757_9 WHERE player = "Peter Lorimer"
What was the entry for highest when average is 10295?
CREATE TABLE table_237757_10 (highest VARCHAR, average VARCHAR)
SELECT highest FROM table_237757_10 WHERE average = 10295
How many entries for highest when the low team was baltimore rays?
CREATE TABLE table_237757_10 (highest VARCHAR, low_team VARCHAR)
SELECT COUNT(highest) FROM table_237757_10 WHERE low_team = "Baltimore Rays"
What was the season when the low team is chicago sting?
CREATE TABLE table_237757_10 (season VARCHAR, low_team VARCHAR)
SELECT season FROM table_237757_10 WHERE low_team = "Chicago Sting"
What's the Stock Exchange Plaza's rank?
CREATE TABLE table_23759976_1 (rank VARCHAR, building_ VARCHAR, a_ VARCHAR)
SELECT rank FROM table_23759976_1 WHERE building_[a_] = "Stock Exchange Plaza"
How tall is the building with 36 floors?
CREATE TABLE table_23759976_1 (height__m_ VARCHAR, floors VARCHAR)
SELECT height__m_ FROM table_23759976_1 WHERE floors = 36
How many different numbers of floors are there for the Chongqing Poly Tower?
CREATE TABLE table_23759976_1 (floors VARCHAR, building_ VARCHAR, a_ VARCHAR)
SELECT COUNT(floors) FROM table_23759976_1 WHERE building_[a_] = "Chongqing Poly Tower"
How many different ranks does the Cathay Pacific Plaza 2 have?
CREATE TABLE table_23759976_1 (rank VARCHAR, building_ VARCHAR, a_ VARCHAR)
SELECT COUNT(rank) FROM table_23759976_1 WHERE building_[a_] = "Cathay Pacific Plaza 2"
What is the production code directed by Matt Shakman?
CREATE TABLE table_23799417_1 (production_code VARCHAR, directed_by VARCHAR)
SELECT production_code FROM table_23799417_1 WHERE directed_by = "Matt Shakman"
How many series had a production code of 202?
CREATE TABLE table_23799417_1 (no_in_series VARCHAR, production_code VARCHAR)
SELECT COUNT(no_in_series) FROM table_23799417_1 WHERE production_code = 202
What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected?
CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)
SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = "Prolonged" AND prothrombin_time = "Unaffected"
What is the bleeding time for glanzmann's thrombasthenia?
CREATE TABLE table_238124_1 (bleeding_time VARCHAR, condition VARCHAR)
SELECT bleeding_time FROM table_238124_1 WHERE condition = "Glanzmann's thrombasthenia"
What is the platelet count for congenital afibrinogenemia?
CREATE TABLE table_238124_1 (platelet_count VARCHAR, condition VARCHAR)
SELECT platelet_count FROM table_238124_1 WHERE condition = "Congenital afibrinogenemia"
What is the prothrombin time of von willebrand disease?
CREATE TABLE table_238124_1 (prothrombin_time VARCHAR, condition VARCHAR)
SELECT COUNT(prothrombin_time) FROM table_238124_1 WHERE condition = "Von Willebrand disease"
When the bleeding time is unaffected and prothrombin time is prolonged, what are the platelet counts?
CREATE TABLE table_238124_1 (platelet_count VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
SELECT platelet_count FROM table_238124_1 WHERE bleeding_time = "Unaffected" AND prothrombin_time = "Prolonged"
Name the last match for argentina - estadio josé maría minella
CREATE TABLE table_23819979_3 (last_match VARCHAR, final_place VARCHAR)
SELECT last_match FROM table_23819979_3 WHERE final_place = "Argentina - Estadio José María Minella"
Name the final position for copa libertadores
CREATE TABLE table_23819979_3 (final_position VARCHAR, competition VARCHAR)
SELECT final_position FROM table_23819979_3 WHERE competition = "Copa Libertadores"
Name the final place for july 25, 2009
CREATE TABLE table_23819979_3 (final_place VARCHAR, last_match VARCHAR)
SELECT final_place FROM table_23819979_3 WHERE last_match = "July 25, 2009"
What is the epa rated combined fuel economy for the Nissan Leaf?
CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, vehicle VARCHAR)
SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE vehicle = "Nissan Leaf"
What is the operating mode of the Coda?
CREATE TABLE table_23840623_4 (operating_mode VARCHAR, vehicle VARCHAR)
SELECT operating_mode FROM table_23840623_4 WHERE vehicle = "Coda"
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 dirty_electric_grid_rocky_mountains__denver_ FROM table_23840623_4 WHERE clean_electric_grid_california__san_francisco_ = "160 g/mi (99 g/km)"
How many dirty electric grid rocky mountains (denver) vehicles have an epa rated combined fuel economy of 102 mpg-e (33kw-hrs/100mi)?
CREATE TABLE table_23840623_4 (dirty_electric_grid_rocky_mountains__denver_ VARCHAR, epa_rated_combined_fuel_economy VARCHAR)
SELECT COUNT(dirty_electric_grid_rocky_mountains__denver_) FROM table_23840623_4 WHERE epa_rated_combined_fuel_economy = "102 mpg-e (33kW-hrs/100mi)"
What is the epa rated combined fuel economy for the all-electric vehicle with dirty electric grid rocky mountains (denver) of 330 g/mi (205 g/km)?
CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, operating_mode VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR)
SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE operating_mode = "All-electric" AND dirty_electric_grid_rocky_mountains__denver_ = "330 g/mi (205 g/km)"
How many clean electric grid california (san francisco) figures are given for the Nissan Leaf?
CREATE TABLE table_23840623_4 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR)
SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_23840623_4 WHERE vehicle = "Nissan Leaf"
Which aperture were built or used between 1987-2001?
CREATE TABLE table_23851574_2 (aper_in VARCHAR, built_used VARCHAR)
SELECT aper_in FROM table_23851574_2 WHERE built_used = "1987-2001"
How many nationalities/sponsors for mirror/type schmidt uv?
CREATE TABLE table_23851574_2 (nationality_sponsors VARCHAR, mirror_type VARCHAR)
SELECT COUNT(nationality_sponsors) FROM table_23851574_2 WHERE mirror_type = "Schmidt UV"
Which telescopes were sponsored by or originated in Belgium?
CREATE TABLE table_23851574_2 (name VARCHAR, nationality_sponsors VARCHAR)
SELECT name FROM table_23851574_2 WHERE nationality_sponsors = "Belgium"
What team finished in 4th place in 2007?
CREATE TABLE table_2388763_1 (year VARCHAR)
SELECT 4 AS th_place FROM table_2388763_1 WHERE year = 2007
If the opponent is the Stampeders, what is the record?
CREATE TABLE table_23916539_3 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_23916539_3 WHERE opponent = "Stampeders"
What is the record if the location is Clarke Stadium?
CREATE TABLE table_23916539_3 (record VARCHAR, location VARCHAR)
SELECT record FROM table_23916539_3 WHERE location = "Clarke Stadium"
How many companies had an april 2013 cumulative ranking of 3?
CREATE TABLE table_23950611_2 (market_cap_march_15__mil_usd__ VARCHAR, april_2013_cum_rank VARCHAR)
SELECT COUNT(market_cap_march_15__mil_usd__) FROM table_23950611_2 WHERE april_2013_cum_rank = 3
What was the Forbers rank (all companies) in 2012 for cenovus energy?
CREATE TABLE table_23950611_2 (rank__all__2012 VARCHAR, name VARCHAR)
SELECT rank__all__2012 FROM table_23950611_2 WHERE name = "Cenovus Energy"
How many assets in billions US$, for the company that ranked 1532 overall in 2013?
CREATE TABLE table_23950611_2 (assets__bil_usd__ VARCHAR, rank__all__2013 VARCHAR)
SELECT assets__bil_usd__ FROM table_23950611_2 WHERE rank__all__2013 = 1532
How many companies named cenovus energy?
CREATE TABLE table_23950611_2 (rank__all__2013 VARCHAR, name VARCHAR)
SELECT COUNT(rank__all__2013) FROM table_23950611_2 WHERE name = "Cenovus Energy"
What was the French title of the story published in 1968?
CREATE TABLE table_23963073_1 (french_title VARCHAR, date_of_publication VARCHAR)
SELECT french_title FROM table_23963073_1 WHERE date_of_publication = 1968