instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What was the game record when the opponent was 'at Los Angeles Raiders'?
The relevant table was constructed using the following SQL : CREATE TABLE table_17972193_1 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_17972193_1 WHERE opponent = "at Los Angeles Raiders"
Write a SQL query that answers the following question: When was the game played when the opponent was 'at Los Angeles Rams'?
The relevant table was constructed using the following SQL : CREATE TABLE table_17972193_1 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_17972193_1 WHERE opponent = "at Los Angeles Rams"
Write a SQL query that answers the following question: How many total number of attendance were there when the game was held in Anaheim Stadium?
The relevant table was constructed using the following SQL : CREATE TABLE table_17972193_1 (attendance VARCHAR, game_site VARCHAR)
SELECT COUNT(attendance) FROM table_17972193_1 WHERE game_site = "Anaheim Stadium"
Write a SQL query that answers the following question: How many were in attendance when the game was held in Arrowhead Stadium?
The relevant table was constructed using the following SQL : CREATE TABLE table_17972193_1 (attendance INTEGER, game_site VARCHAR)
SELECT MIN(attendance) FROM table_17972193_1 WHERE game_site = "Arrowhead Stadium"
Write a SQL query that answers the following question: What is the highest position a team with 7 draws earned?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_1 (position INTEGER, draws VARCHAR)
SELECT MAX(position) FROM table_18018214_1 WHERE draws = 7
Write a SQL query that answers the following question: Name the original air date for ai% for 83
The relevant table was constructed using the following SQL : CREATE TABLE table_18012738_1 (original_air_date VARCHAR, ai___percentage_ VARCHAR)
SELECT original_air_date FROM table_18012738_1 WHERE ai___percentage_ = 83
Write a SQL query that answers the following question: Name the story number for paul cornell
The relevant table was constructed using the following SQL : CREATE TABLE table_18012738_1 (story_no VARCHAR, written_by VARCHAR)
SELECT story_no FROM table_18012738_1 WHERE written_by = "Paul Cornell"
Write a SQL query that answers the following question: Name the total number directed by for uk viewers being 6.86
The relevant table was constructed using the following SQL : CREATE TABLE table_18012738_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR)
SELECT COUNT(directed_by) FROM table_18012738_1 WHERE uk_viewers__million_ = "6.86"
Write a SQL query that answers the following question: Name the least ai %
The relevant table was constructed using the following SQL : CREATE TABLE table_18012738_1 (ai___percentage_ INTEGER)
SELECT MIN(ai___percentage_) FROM table_18012738_1
Write a SQL query that answers the following question: What is the highest number of games played?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_4 (games_played INTEGER)
SELECT MAX(games_played) FROM table_18018214_4
Write a SQL query that answers the following question: In the game with 31 points, how many goals were conceded?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_4 (goals_conceded VARCHAR, points VARCHAR)
SELECT COUNT(goals_conceded) FROM table_18018214_4 WHERE points = 31
Write a SQL query that answers the following question: How many games had 22 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_4 (games_played VARCHAR, points VARCHAR)
SELECT COUNT(games_played) FROM table_18018214_4 WHERE points = 22
Write a SQL query that answers the following question: How many wins had 58 goals scored?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018248_2 (wins VARCHAR, goals_scored VARCHAR)
SELECT wins FROM table_18018248_2 WHERE goals_scored = 58
Write a SQL query that answers the following question: How many clubs had 29 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018248_2 (club VARCHAR, points VARCHAR)
SELECT COUNT(club) FROM table_18018248_2 WHERE points = 29
Write a SQL query that answers the following question: Which clubs had draws of 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018248_2 (club VARCHAR, draws VARCHAR)
SELECT club FROM table_18018248_2 WHERE draws = 9
Write a SQL query that answers the following question: How many draws were there when the conceded goals was numbered at 45?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018248_2 (draws VARCHAR, goals_conceded VARCHAR)
SELECT COUNT(draws) FROM table_18018248_2 WHERE goals_conceded = 45
Write a SQL query that answers the following question: What is the least amount of games played with 21 losses?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018248_2 (games_played INTEGER, loses VARCHAR)
SELECT MIN(games_played) FROM table_18018248_2 WHERE loses = 21
Write a SQL query that answers the following question: How many games did each team played?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_3 (games_played INTEGER)
SELECT MIN(games_played) FROM table_18018214_3
Write a SQL query that answers the following question: HOw many points where there when the number of goals scored was 47?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_3 (points INTEGER, goals_scored VARCHAR)
SELECT MAX(points) FROM table_18018214_3 WHERE goals_scored = 47
Write a SQL query that answers the following question: How many goals were scored by club team fm (losc) vilnius
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_3 (goals_scored VARCHAR, club VARCHAR)
SELECT goals_scored FROM table_18018214_3 WHERE club = "FM (LOSC) Vilnius"
Write a SQL query that answers the following question: How many losses occurred when the club team was ekranas-2 panevėžys
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_3 (loses INTEGER, club VARCHAR)
SELECT MAX(loses) FROM table_18018214_3 WHERE club = "Ekranas-2 Panevėžys"
Write a SQL query that answers the following question: What was the highest number of wins for any team?
The relevant table was constructed using the following SQL : CREATE TABLE table_18018214_3 (wins INTEGER)
SELECT MAX(wins) FROM table_18018214_3
Write a SQL query that answers the following question: What is the June 22 ncaat baseball record for Fresno State Bulldogs?
The relevant table was constructed using the following SQL : CREATE TABLE table_18025024_7 (ncaat_record VARCHAR, date VARCHAR)
SELECT ncaat_record FROM table_18025024_7 WHERE date = "June 22"
Write a SQL query that answers the following question: How many saves were in the Georgia game, versus the Bulldogs, with a score of 7-6?
The relevant table was constructed using the following SQL : CREATE TABLE table_18025024_7 (save VARCHAR, score VARCHAR)
SELECT save FROM table_18025024_7 WHERE score = "7-6"
Write a SQL query that answers the following question: What is the June 21 ncaat baseball record for Fresno State Bulldogs?
The relevant table was constructed using the following SQL : CREATE TABLE table_18025024_7 (ncaat_record VARCHAR, date VARCHAR)
SELECT ncaat_record FROM table_18025024_7 WHERE date = "June 21"
Write a SQL query that answers the following question: how many times did estudiantes de la plata participate in 2008 suruga bank championship
The relevant table was constructed using the following SQL : CREATE TABLE table_18027411_1 (team___competition VARCHAR)
SELECT COUNT(2008 AS _suruga_bank_championship) FROM table_18027411_1 WHERE team___competition = "Estudiantes de La Plata"
Write a SQL query that answers the following question: What date was the match against Morocco played?
The relevant table was constructed using the following SQL : CREATE TABLE table_18042031_16 (date VARCHAR, against VARCHAR)
SELECT date FROM table_18042031_16 WHERE against = "Morocco"
Write a SQL query that answers the following question: What country did Gil play against on 21–23 september 2007?
The relevant table was constructed using the following SQL : CREATE TABLE table_18042031_16 (against VARCHAR, date VARCHAR)
SELECT against FROM table_18042031_16 WHERE date = "21–23 September 2007"
Write a SQL query that answers the following question: Who was Gil's partner on 10–12 july 2009
The relevant table was constructed using the following SQL : CREATE TABLE table_18042031_16 (partnering VARCHAR, date VARCHAR)
SELECT partnering FROM table_18042031_16 WHERE date = "10–12 July 2009"
Write a SQL query that answers the following question: Where was the successor formally installed on December 3, 1858?
The relevant table was constructed using the following SQL : CREATE TABLE table_1802760_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT state__class_ FROM table_1802760_3 WHERE date_of_successors_formal_installation = "December 3, 1858"
Write a SQL query that answers the following question: Why did the change happen in the state where the formal installation happen on February 14, 1859?
The relevant table was constructed using the following SQL : CREATE TABLE table_1802760_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT reason_for_change FROM table_1802760_3 WHERE date_of_successors_formal_installation = "February 14, 1859"
Write a SQL query that answers the following question: Name the vacator for tennessee 1st
The relevant table was constructed using the following SQL : CREATE TABLE table_1802522_4 (vacator VARCHAR, district VARCHAR)
SELECT vacator FROM table_1802522_4 WHERE district = "Tennessee 1st"
Write a SQL query that answers the following question: If the passengers are 15,505,566, what is the iata code?
The relevant table was constructed using the following SQL : CREATE TABLE table_18047346_4 (iata_code VARCHAR, passengers VARCHAR)
SELECT iata_code FROM table_18047346_4 WHERE passengers = "15,505,566"
Write a SQL query that answers the following question: If the location is Chicago, Illinois, what is the airport name?
The relevant table was constructed using the following SQL : CREATE TABLE table_18047346_4 (airport_name VARCHAR, location VARCHAR)
SELECT airport_name FROM table_18047346_4 WHERE location = "Chicago, Illinois"
Write a SQL query that answers the following question: If the amount of passengers is 15,505,566, what is the %/chg. for 2009/10?
The relevant table was constructed using the following SQL : CREATE TABLE table_18047346_4 (_percentage_chg_2009_10 VARCHAR, passengers VARCHAR)
SELECT _percentage_chg_2009_10 FROM table_18047346_4 WHERE passengers = "15,505,566"
Write a SQL query that answers the following question: What university did Steve Hoar attend.
The relevant table was constructed using the following SQL : CREATE TABLE table_18042409_1 (alma_mater VARCHAR, player VARCHAR)
SELECT alma_mater FROM table_18042409_1 WHERE player = "Steve Hoar"
Write a SQL query that answers the following question: List the plats that attended Wilfrid Laurier University.
The relevant table was constructed using the following SQL : CREATE TABLE table_18042409_1 (player VARCHAR, alma_mater VARCHAR)
SELECT player FROM table_18042409_1 WHERE alma_mater = "Wilfrid Laurier University"
Write a SQL query that answers the following question: List all the international lacrosse league competitions for Toronto Rock.
The relevant table was constructed using the following SQL : CREATE TABLE table_18042409_1 (international_competition VARCHAR, national_lacrosse_league VARCHAR)
SELECT international_competition FROM table_18042409_1 WHERE national_lacrosse_league = "Toronto Rock"
Write a SQL query that answers the following question: List all of the NLL Toronto Rock players.
The relevant table was constructed using the following SQL : CREATE TABLE table_18042409_1 (player VARCHAR, national_lacrosse_league VARCHAR)
SELECT player FROM table_18042409_1 WHERE national_lacrosse_league = "Toronto Rock"
Write a SQL query that answers the following question: What rank is the airport whose IATA Code is JFK?
The relevant table was constructed using the following SQL : CREATE TABLE table_18047346_5 (rank VARCHAR, iata_code VARCHAR)
SELECT rank FROM table_18047346_5 WHERE iata_code = "JFK"
Write a SQL query that answers the following question: Which airport has an IATA Code of ORD?
The relevant table was constructed using the following SQL : CREATE TABLE table_18047346_5 (airport_name VARCHAR, iata_code VARCHAR)
SELECT airport_name FROM table_18047346_5 WHERE iata_code = "ORD"
Write a SQL query that answers the following question: Louisville International Airport had how many tonnes of cargo in 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_18047346_5 (tonnes VARCHAR, airport_name VARCHAR)
SELECT tonnes FROM table_18047346_5 WHERE airport_name = "Louisville International Airport"
Write a SQL query that answers the following question: How many tonnes of cargo did the airport have with the IATA Code IND?
The relevant table was constructed using the following SQL : CREATE TABLE table_18047346_5 (tonnes VARCHAR, iata_code VARCHAR)
SELECT tonnes FROM table_18047346_5 WHERE iata_code = "IND"
Write a SQL query that answers the following question: Who is the incumbent democratic party in district florida 11?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_10 (incumbent VARCHAR, party VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1805191_10 WHERE party = "Democratic" AND district = "Florida 11"
Write a SQL query that answers the following question: In which district is the first elected 2000?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_10 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1805191_10 WHERE first_elected = 2000
Write a SQL query that answers the following question: When is the first elected in the Florida 19 district?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_10 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1805191_10 WHERE district = "Florida 19"
Write a SQL query that answers the following question: What are the results of incumbent dave weldon?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_10 (results VARCHAR, incumbent VARCHAR)
SELECT COUNT(results) FROM table_1805191_10 WHERE incumbent = "Dave Weldon"
Write a SQL query that answers the following question: How many districts have the incumbent, Charles Rangel?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_33 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1805191_33 WHERE incumbent = "Charles Rangel"
Write a SQL query that answers the following question: What is the party affiliation of New York 26?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_33 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1805191_33 WHERE district = "New York 26"
Write a SQL query that answers the following question: In the district of Pennsylvania 1, what is the total number of political parties?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_39 (party VARCHAR, district VARCHAR)
SELECT COUNT(party) FROM table_1805191_39 WHERE district = "Pennsylvania 1"
Write a SQL query that answers the following question: What year was Tim Holden first elected?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_39 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1805191_39 WHERE incumbent = "Tim Holden"
Write a SQL query that answers the following question: How many parties were first elected in 1994?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_39 (party VARCHAR, first_elected VARCHAR)
SELECT COUNT(party) FROM table_1805191_39 WHERE first_elected = 1994
Write a SQL query that answers the following question: In district Pennsylvania 11, what was the total numbers of results?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_39 (results VARCHAR, district VARCHAR)
SELECT COUNT(results) FROM table_1805191_39 WHERE district = "Pennsylvania 11"
Write a SQL query that answers the following question: During what year was Representative Spencer Bachus first elected?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_2 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_1805191_2 WHERE incumbent = "Spencer Bachus"
Write a SQL query that answers the following question: What is the party affiliation of the incumbent Robert Cramer?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_2 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1805191_2 WHERE incumbent = "Robert Cramer"
Write a SQL query that answers the following question: Who is the incumbent in the Washington 1 district?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_48 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1805191_48 WHERE district = "Washington 1"
Write a SQL query that answers the following question: How many categories of first elected are in Washington 4 district?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_48 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1805191_48 WHERE district = "Washington 4"
Write a SQL query that answers the following question: What was the result in the election where the date of first elected was 2000?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_48 (results VARCHAR, first_elected VARCHAR)
SELECT results FROM table_1805191_48 WHERE first_elected = 2000
Write a SQL query that answers the following question: Which title, directed by David Kendall, had 3.7 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_18054886_1 (title VARCHAR, viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT title FROM table_18054886_1 WHERE viewers__millions_ = "3.7" AND directed_by = "David Kendall"
Write a SQL query that answers the following question: How many people were first elected with an incument of diane watson?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_6 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_1805191_6 WHERE incumbent = "Diane Watson"
Write a SQL query that answers the following question: What party did hilda solis represent?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_6 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1805191_6 WHERE incumbent = "Hilda Solis"
Write a SQL query that answers the following question: What were the result(s) of the election featuring grace napolitano as the incumbent?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805191_6 (results VARCHAR, incumbent VARCHAR)
SELECT results FROM table_1805191_6 WHERE incumbent = "Grace Napolitano"
Write a SQL query that answers the following question: Which place in the order is the Pinyin transcription She Jiang?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805919_1 (standard_order INTEGER, transcription__based_on_pinyin_ VARCHAR)
SELECT MIN(standard_order) FROM table_1805919_1 WHERE transcription__based_on_pinyin_ = "She Jiang"
Write a SQL query that answers the following question: What is the place of "A Lament for Ying"?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805919_1 (standard_order INTEGER, english_translation VARCHAR)
SELECT MAX(standard_order) FROM table_1805919_1 WHERE english_translation = "A Lament for Ying"
Write a SQL query that answers the following question: How many traditional Chinese for the translation of "Crossing the River"?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805919_1 (traditional_chinese VARCHAR, english_translation VARCHAR)
SELECT COUNT(traditional_chinese) FROM table_1805919_1 WHERE english_translation = "Crossing the River"
Write a SQL query that answers the following question: What is the place of the Pinyin transcription Xi Wangri?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805919_1 (standard_order INTEGER, transcription__based_on_pinyin_ VARCHAR)
SELECT MAX(standard_order) FROM table_1805919_1 WHERE transcription__based_on_pinyin_ = "Xi Wangri"
Write a SQL query that answers the following question: What is the English translation of 哀郢?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805919_1 (english_translation VARCHAR, traditional_chinese VARCHAR)
SELECT english_translation FROM table_1805919_1 WHERE traditional_chinese = "哀郢"
Write a SQL query that answers the following question: What is the Pinyin transcription for "Alas for the Days Gone By"?
The relevant table was constructed using the following SQL : CREATE TABLE table_1805919_1 (transcription__based_on_pinyin_ VARCHAR, english_translation VARCHAR)
SELECT transcription__based_on_pinyin_ FROM table_1805919_1 WHERE english_translation = "Alas for the Days Gone By"
Write a SQL query that answers the following question: What's the English name for the month with พ.ย. abbreviation?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_2 (english_name VARCHAR, abbr VARCHAR)
SELECT english_name FROM table_180802_2 WHERE abbr = "พ.ย."
Write a SQL query that answers the following question: What's the zodiac sing for the month abbreviated as มี.ค.?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_2 (zodiac_sign VARCHAR, abbr VARCHAR)
SELECT zodiac_sign FROM table_180802_2 WHERE abbr = "มี.ค."
Write a SQL query that answers the following question: What's the transcription of the thai name of the month พฤษภาคม?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_2 (transcription VARCHAR, thai_name VARCHAR)
SELECT transcription FROM table_180802_2 WHERE thai_name = "พฤษภาคม"
Write a SQL query that answers the following question: How many zodiac signs does the month by the Thai name of กันยายน belong to?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_2 (zodiac_sign VARCHAR, thai_name VARCHAR)
SELECT COUNT(zodiac_sign) FROM table_180802_2 WHERE thai_name = "กันยายน"
Write a SQL query that answers the following question: What's the English name of the month abbreviated as มิ.ย.?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_2 (english_name VARCHAR, abbr VARCHAR)
SELECT english_name FROM table_180802_2 WHERE abbr = "มิ.ย."
Write a SQL query that answers the following question: What's the abbreviation of the month in the zodiac sign scorpio?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_2 (abbr VARCHAR, zodiac_sign VARCHAR)
SELECT abbr FROM table_180802_2 WHERE zodiac_sign = "Scorpio"
Write a SQL query that answers the following question: which year was the original title გაღმა ნაპირი
The relevant table was constructed using the following SQL : CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, original_title VARCHAR)
SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE original_title = "გაღმა ნაპირი"
Write a SQL query that answers the following question: how many times was 27 missing kisses used in nomination
The relevant table was constructed using the following SQL : CREATE TABLE table_18069789_1 (e_ VARCHAR, film_title_used_in_nomination VARCHAR, year_ VARCHAR)
SELECT COUNT(year_)[e_] AS __ceremony_ FROM table_18069789_1 WHERE film_title_used_in_nomination = "27 Missing Kisses"
Write a SQL query that answers the following question: when was otar iosseliani's film selected
The relevant table was constructed using the following SQL : CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, director VARCHAR)
SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE director = "Otar Iosseliani"
Write a SQL query that answers the following question: What is the thai name of the transcription wan chan?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_3 (thai_name VARCHAR, transcription VARCHAR)
SELECT thai_name FROM table_180802_3 WHERE transcription = "wan chan"
Write a SQL query that answers the following question: What is the sanskrit word for the color red?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_3 (sanskrit_word VARCHAR, color VARCHAR)
SELECT sanskrit_word FROM table_180802_3 WHERE color = "red"
Write a SQL query that answers the following question: What is the transcription of the sanskrit word chandra?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_3 (transcription VARCHAR, sanskrit_word VARCHAR)
SELECT transcription FROM table_180802_3 WHERE sanskrit_word = "Chandra"
Write a SQL query that answers the following question: What is the sanskrit word if the transcription is wan athit?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_3 (sanskrit_word VARCHAR, transcription VARCHAR)
SELECT sanskrit_word FROM table_180802_3 WHERE transcription = "wan athit"
Write a SQL query that answers the following question: What is the color of the planet venus?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_3 (color VARCHAR, planet VARCHAR)
SELECT color FROM table_180802_3 WHERE planet = "Venus"
Write a SQL query that answers the following question: Which planet has the transcription of wan suk?
The relevant table was constructed using the following SQL : CREATE TABLE table_180802_3 (planet VARCHAR, transcription VARCHAR)
SELECT planet FROM table_180802_3 WHERE transcription = "wan suk"
Write a SQL query that answers the following question: What is the year to april when the revenue is 434.8 million dollars?
The relevant table was constructed using the following SQL : CREATE TABLE table_18077713_1 (year_to_april VARCHAR, revenue__us_$million_ VARCHAR)
SELECT year_to_april FROM table_18077713_1 WHERE revenue__us_$million_ = "434.8"
Write a SQL query that answers the following question: What is the dollar amount of ebit when the net profit is 120.6?
The relevant table was constructed using the following SQL : CREATE TABLE table_18077713_1 (ebit__us_$m_ VARCHAR, net_profit__us_$m_ VARCHAR)
SELECT ebit__us_$m_ FROM table_18077713_1 WHERE net_profit__us_$m_ = "120.6"
Write a SQL query that answers the following question: How many dollars is the revenue when the net profit is 55.4 million dollars?
The relevant table was constructed using the following SQL : CREATE TABLE table_18077713_1 (revenue__us_$million_ VARCHAR, net_profit__us_$m_ VARCHAR)
SELECT revenue__us_$million_ FROM table_18077713_1 WHERE net_profit__us_$m_ = "55.4"
Write a SQL query that answers the following question: When the earning per share is listed as 22.0 what is the year to april?
The relevant table was constructed using the following SQL : CREATE TABLE table_18077713_1 (year_to_april VARCHAR, earnings_per_share__¢_ VARCHAR)
SELECT COUNT(year_to_april) FROM table_18077713_1 WHERE earnings_per_share__¢_ = "22.0"
Write a SQL query that answers the following question: What is the earnings per share when the net profit is 16.2 million dollars?
The relevant table was constructed using the following SQL : CREATE TABLE table_18077713_1 (earnings_per_share__¢_ VARCHAR, net_profit__us_$m_ VARCHAR)
SELECT earnings_per_share__¢_ FROM table_18077713_1 WHERE net_profit__us_$m_ = "16.2"
Write a SQL query that answers the following question: How much is the net profit when the revenue is 150.6 million dollars?
The relevant table was constructed using the following SQL : CREATE TABLE table_18077713_1 (net_profit__us_$m_ VARCHAR, revenue__us_$million_ VARCHAR)
SELECT net_profit__us_$m_ FROM table_18077713_1 WHERE revenue__us_$million_ = "150.6"
Write a SQL query that answers the following question: Name the year for not nominated for alberto aruelo
The relevant table was constructed using the following SQL : CREATE TABLE table_18123274_1 (year__ceremony_ VARCHAR, result VARCHAR, director VARCHAR)
SELECT year__ceremony_ FROM table_18123274_1 WHERE result = "Not Nominated" AND director = "Alberto Aruelo"
Write a SQL query that answers the following question: Name the total number of director for oro diablo
The relevant table was constructed using the following SQL : CREATE TABLE table_18123274_1 (director VARCHAR, original_title VARCHAR)
SELECT COUNT(director) FROM table_18123274_1 WHERE original_title = "Oro Diablo"
Write a SQL query that answers the following question: Name the number of result for maroa
The relevant table was constructed using the following SQL : CREATE TABLE table_18123274_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT COUNT(result) FROM table_18123274_1 WHERE film_title_used_in_nomination = "Maroa"
Write a SQL query that answers the following question: Name the number of director for huelepega: ley de la calle
The relevant table was constructed using the following SQL : CREATE TABLE table_18123274_1 (director VARCHAR, original_title VARCHAR)
SELECT COUNT(director) FROM table_18123274_1 WHERE original_title = "Huelepega: Ley de la Calle"
Write a SQL query that answers the following question: What was the win/loss record for All Neutral games for the team whose Big 10 winning percentage was .833?
The relevant table was constructed using the following SQL : CREATE TABLE table_18135572_2 (all_neutral VARCHAR, b10__percentage VARCHAR)
SELECT all_neutral FROM table_18135572_2 WHERE b10__percentage = ".833"
Write a SQL query that answers the following question: What is the category when the version is 1.0 and the title is Chord finder?
The relevant table was constructed using the following SQL : CREATE TABLE table_18138132_2 (category VARCHAR, version VARCHAR, title VARCHAR)
SELECT category FROM table_18138132_2 WHERE version = "1.0" AND title = "Chord Finder"
Write a SQL query that answers the following question: What was the release date for metronome?
The relevant table was constructed using the following SQL : CREATE TABLE table_18138132_2 (release_date VARCHAR, title VARCHAR)
SELECT release_date FROM table_18138132_2 WHERE title = "Metronome"
Write a SQL query that answers the following question: Who is the developer for Windows live messenger?
The relevant table was constructed using the following SQL : CREATE TABLE table_18138132_2 (developer VARCHAR, title VARCHAR)
SELECT developer FROM table_18138132_2 WHERE title = "Windows Live Messenger"
Write a SQL query that answers the following question: What is the function of 1.4 version of Windows live messenger?
The relevant table was constructed using the following SQL : CREATE TABLE table_18138132_2 (function VARCHAR, version VARCHAR, title VARCHAR)
SELECT function FROM table_18138132_2 WHERE version = "1.4" AND title = "Windows Live Messenger"
Write a SQL query that answers the following question: What functions were released on 2011-06-23?
The relevant table was constructed using the following SQL : CREATE TABLE table_18138132_2 (function VARCHAR, release_date VARCHAR)
SELECT function FROM table_18138132_2 WHERE release_date = "2011-06-23"
Write a SQL query that answers the following question: What is the cospar ID of the Kosmos 2397 satellite, which has an operational life of 2 months?
The relevant table was constructed using the following SQL : CREATE TABLE table_18161217_2 (cospar_id VARCHAR, estimated_operational_life VARCHAR, satellite VARCHAR)
SELECT cospar_id FROM table_18161217_2 WHERE estimated_operational_life = "2 months" AND satellite = "Kosmos 2397"