instruction
stringlengths 67
299
| input
stringlengths 88
550
| output
stringlengths 32
484
|
---|---|---|
Write a SQL query that answers the following question: Name the max top 5 for 5.0 avg finish
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1671401_2 (top_5 INTEGER, avg_finish VARCHAR)
|
SELECT MAX(top_5) FROM table_1671401_2 WHERE avg_finish = "5.0"
|
Write a SQL query that answers the following question: Name the poles for avg finish is 26.8
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1671401_2 (poles VARCHAR, avg_finish VARCHAR)
|
SELECT poles FROM table_1671401_2 WHERE avg_finish = "26.8"
|
Write a SQL query that answers the following question: Name the total number of teams for top 10 being 5
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1671401_2 (team_s_ VARCHAR, top_10 VARCHAR)
|
SELECT COUNT(team_s_) FROM table_1671401_2 WHERE top_10 = 5
|
Write a SQL query that answers the following question: How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16724844_1 (mens_u20 VARCHAR, womens_40 VARCHAR)
|
SELECT COUNT(mens_u20) FROM table_16724844_1 WHERE womens_40 = "Sydney Scorpions def North Queensland Cyclones"
|
Write a SQL query that answers the following question: What were the results for mens 40 when the mens u20 was Southern Suns def Gold Coast Sharks?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16724844_1 (mens_40 VARCHAR, mens_u20 VARCHAR)
|
SELECT mens_40 FROM table_16724844_1 WHERE mens_u20 = "Southern Suns def Gold Coast Sharks"
|
Write a SQL query that answers the following question: What were the results of the mens open when the womens 40 was Sydney Scorpions defeated Hunter Hornets?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16724844_1 (mens_open VARCHAR, womens_40 VARCHAR)
|
SELECT mens_open FROM table_16724844_1 WHERE womens_40 = "Sydney Scorpions defeated Hunter Hornets"
|
Write a SQL query that answers the following question: What were the results of the womens u20 when the mens 45 was Sunwest Razorbacks def Northern Eagles?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16724844_1 (womens_u20 VARCHAR, mens_45 VARCHAR)
|
SELECT womens_u20 FROM table_16724844_1 WHERE mens_45 = "SunWest Razorbacks def Northern Eagles"
|
Write a SQL query that answers the following question: What was the mens 45 when mens 40 was Sunwest Razorbacks def Sydney Mets?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16724844_1 (mens_45 VARCHAR, mens_40 VARCHAR)
|
SELECT mens_45 FROM table_16724844_1 WHERE mens_40 = "SunWest Razorbacks def Sydney Mets"
|
Write a SQL query that answers the following question: What was the mens open when the mens u20 was Qld Country Rustlers def Southern Suns?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16724844_1 (mens_open VARCHAR, mens_u20 VARCHAR)
|
SELECT mens_open FROM table_16724844_1 WHERE mens_u20 = "Qld Country Rustlers def Southern Suns"
|
Write a SQL query that answers the following question: What date was the opponent the Los Angeles Raiders?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729063_2 (date VARCHAR, opponent VARCHAR)
|
SELECT date FROM table_16729063_2 WHERE opponent = "Los Angeles Raiders"
|
Write a SQL query that answers the following question: How many games were played at Cleveland Stadium?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729063_2 (date VARCHAR, game_site VARCHAR)
|
SELECT COUNT(date) FROM table_16729063_2 WHERE game_site = "Cleveland Stadium"
|
Write a SQL query that answers the following question: In what week number was the attendance 74716?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729063_2 (week VARCHAR, attendance VARCHAR)
|
SELECT COUNT(week) FROM table_16729063_2 WHERE attendance = 74716
|
Write a SQL query that answers the following question: What is the region where Iquitos is located?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1672804_2 (region VARCHAR, name_of_city VARCHAR)
|
SELECT region FROM table_1672804_2 WHERE name_of_city = "Iquitos"
|
Write a SQL query that answers the following question: What is the region containing the Constitutional Province of Callao?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1672804_2 (region VARCHAR, province VARCHAR)
|
SELECT region FROM table_1672804_2 WHERE province = "Constitutional province of Callao"
|
Write a SQL query that answers the following question: How did the game end against the New Orleans Saints?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729071_1 (result VARCHAR, opponent VARCHAR)
|
SELECT result FROM table_16729071_1 WHERE opponent = "New Orleans Saints"
|
Write a SQL query that answers the following question: How many weeks had an attendance of 60038?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729071_1 (week VARCHAR, attendance VARCHAR)
|
SELECT COUNT(week) FROM table_16729071_1 WHERE attendance = 60038
|
Write a SQL query that answers the following question: Name the least points for daniël willemsen / kenny van gaalen
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729457_17 (points INTEGER, driver___passenger VARCHAR)
|
SELECT MIN(points) FROM table_16729457_17 WHERE driver___passenger = "Daniël Willemsen / Kenny van Gaalen"
|
Write a SQL query that answers the following question: Name the driver passenger for position 4
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729457_17 (driver___passenger VARCHAR, position VARCHAR)
|
SELECT driver___passenger FROM table_16729457_17 WHERE position = 4
|
Write a SQL query that answers the following question: Name the driver/passenger for position 8
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)
|
SELECT driver___passenger FROM table_16729457_16 WHERE position = 8
|
Write a SQL query that answers the following question: Name the driver/passenger for 6 position
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)
|
SELECT driver___passenger FROM table_16729457_16 WHERE position = 6
|
Write a SQL query that answers the following question: Who was the winner when the total attendance was 16597?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1672976_5 (winner VARCHAR, attendance VARCHAR)
|
SELECT winner FROM table_1672976_5 WHERE attendance = 16597
|
Write a SQL query that answers the following question: What is the socket for microprocessors with a frequency of 1.3 ghz?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_18 (socket VARCHAR, frequency VARCHAR)
|
SELECT socket FROM table_16729930_18 WHERE frequency = "1.3 GHz"
|
Write a SQL query that answers the following question: For a release price of $72, what is the TDP of the microprocessor?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_18 (tdp VARCHAR, release_price___usd__ VARCHAR)
|
SELECT tdp FROM table_16729930_18 WHERE release_price___usd__ = "$72"
|
Write a SQL query that answers the following question: For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU frequencies?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_18 (gpu_frequency VARCHAR, tdp VARCHAR, part_number_s_ VARCHAR)
|
SELECT gpu_frequency FROM table_16729930_18 WHERE tdp = "3.6 W" AND part_number_s_ = "CY80632007221AB"
|
Write a SQL query that answers the following question: For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_18 (sspec_number VARCHAR, tdp VARCHAR, model_number VARCHAR)
|
SELECT sspec_number FROM table_16729930_18 WHERE tdp = "3.6 W" AND model_number = "Atom E665C"
|
Write a SQL query that answers the following question: What is the release price for a processor with part number cy80632007227ab?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_18 (release_price___usd__ VARCHAR, part_number_s_ VARCHAR)
|
SELECT release_price___usd__ FROM table_16729930_18 WHERE part_number_s_ = "CY80632007227AB"
|
Write a SQL query that answers the following question: Name the fsb for atom z540
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_11 (fsb VARCHAR, model_number VARCHAR)
|
SELECT fsb FROM table_16729930_11 WHERE model_number = "Atom Z540"
|
Write a SQL query that answers the following question: Name the frequency for part number of ac80566ue041dw
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_11 (frequency VARCHAR, part_number_s_ VARCHAR)
|
SELECT frequency FROM table_16729930_11 WHERE part_number_s_ = "AC80566UE041DW"
|
Write a SQL query that answers the following question: Name the memory for part number of ct80618003201aa
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_17 (memory VARCHAR, part_number_s_ VARCHAR)
|
SELECT memory FROM table_16729930_17 WHERE part_number_s_ = "CT80618003201AA"
|
Write a SQL query that answers the following question: Name the memory for meodel number for atom e640t
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_17 (memory VARCHAR, model_number VARCHAR)
|
SELECT memory FROM table_16729930_17 WHERE model_number = "Atom E640T"
|
Write a SQL query that answers the following question: Name the memory for frequency of 1.6 ghz
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16729930_17 (memory VARCHAR, frequency VARCHAR)
|
SELECT memory FROM table_16729930_17 WHERE frequency = "1.6 GHz"
|
Write a SQL query that answers the following question: Who won the game where the Challenge Leader is ACC (2-1)?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1672976_6 (winner VARCHAR, challenge_leader VARCHAR)
|
SELECT winner FROM table_1672976_6 WHERE challenge_leader = "ACC (2-1)"
|
Write a SQL query that answers the following question: What station aired a game at 9:00pm?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1672976_6 (television VARCHAR, time VARCHAR)
|
SELECT television FROM table_1672976_6 WHERE time = "9:00PM"
|
Write a SQL query that answers the following question: ON JUNE 11, WHAT WAS THE NUMBER OF RNDS ?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)
|
SELECT MIN(rnd) FROM table_16732659_2 WHERE date = "June 11"
|
Write a SQL query that answers the following question: FOR AUGUST 13 WHAT IS THE RND ?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)
|
SELECT MAX(rnd) FROM table_16732659_2 WHERE date = "August 13"
|
Write a SQL query that answers the following question: PLEASE LIST ALL RACES WHERE THE RND IS 13.
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16732659_2 (race_name VARCHAR, rnd VARCHAR)
|
SELECT race_name FROM table_16732659_2 WHERE rnd = 13
|
Write a SQL query that answers the following question: How many figures are there for Rank 07-11 when the world ranking is 4?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_167354_2 (rank_07_11 VARCHAR, world_ranking VARCHAR)
|
SELECT COUNT(rank_07_11) FROM table_167354_2 WHERE world_ranking = "4"
|
Write a SQL query that answers the following question: How many figures are given for pubs 2011 in Chennai?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_167354_2 (pubs_2011 VARCHAR, location VARCHAR)
|
SELECT COUNT(pubs_2011) FROM table_167354_2 WHERE location = "Chennai"
|
Write a SQL query that answers the following question: Name the number location of georgia perimeter college
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
|
SELECT COUNT(location) FROM table_16734640_1 WHERE institution = "Georgia Perimeter College"
|
Write a SQL query that answers the following question: Name the location for chattahoochee technical college
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
|
SELECT location FROM table_16734640_1 WHERE institution = "Chattahoochee Technical College"
|
Write a SQL query that answers the following question: Name the location for abraham baldwin agricultural college
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
|
SELECT location FROM table_16734640_1 WHERE institution = "Abraham Baldwin Agricultural College"
|
Write a SQL query that answers the following question: Name the total number of nicknames for andrew college
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16734640_1 (nickname VARCHAR, institution VARCHAR)
|
SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = "Andrew College"
|
Write a SQL query that answers the following question: Name the most enrollment when nickname is hawks
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16734640_1 (enrollment INTEGER, nickname VARCHAR)
|
SELECT MAX(enrollment) FROM table_16734640_1 WHERE nickname = "Hawks"
|
Write a SQL query that answers the following question: WHAT WAS THE SURFACE MADE OF WHEN THE OPPONENT WAS GEORGE KHRIKADZE?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16741821_8 (surface VARCHAR, opponent VARCHAR)
|
SELECT surface FROM table_16741821_8 WHERE opponent = "George Khrikadze"
|
Write a SQL query that answers the following question: WHAT WERE ALL OF THE RESULTS WHEN THEY PLAYED AGAINST LITHUANIA AND THE SURFACE WAS MADE OF CLAY?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16741821_8 (result VARCHAR, surface VARCHAR, against VARCHAR)
|
SELECT result FROM table_16741821_8 WHERE surface = "Clay" AND against = "Lithuania"
|
Write a SQL query that answers the following question: Name the republican steve sauerberg where dates administered september 15-september 18, 2008
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_2 (republican VARCHAR, dates_administered VARCHAR)
|
SELECT republican AS :_steve_sauerberg FROM table_16751596_2 WHERE dates_administered = "September 15-September 18, 2008"
|
Write a SQL query that answers the following question: Name the republican steve sauerberg for august 12, 2008
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_2 (republican VARCHAR, dates_administered VARCHAR)
|
SELECT republican AS :_steve_sauerberg FROM table_16751596_2 WHERE dates_administered = "August 12, 2008"
|
Write a SQL query that answers the following question: Name the poll source for july 12, 2008
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_2 (poll_source VARCHAR, dates_administered VARCHAR)
|
SELECT poll_source FROM table_16751596_2 WHERE dates_administered = "July 12, 2008"
|
Write a SQL query that answers the following question: When the lead margin was 35, what were the Democrat: Vivian Davis Figures?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_12 (democrat VARCHAR, lead_margin VARCHAR)
|
SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE lead_margin = 35
|
Write a SQL query that answers the following question: On June 30, 2008 who what was the Republican: Jeff Sessions percentage?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_12 (republican VARCHAR, dates_administered VARCHAR)
|
SELECT republican AS :_jeff_sessions FROM table_16751596_12 WHERE dates_administered = "June 30, 2008"
|
Write a SQL query that answers the following question: On November 14, 2007, how many different Republican: Jeff Sessions are there?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_12 (republican VARCHAR, dates_administered VARCHAR)
|
SELECT COUNT(republican) AS :_jeff_sessions FROM table_16751596_12 WHERE dates_administered = "November 14, 2007"
|
Write a SQL query that answers the following question: On November 14, 2007, what are the Democrat: Vivian Davis Figures percentages?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_12 (democrat VARCHAR, dates_administered VARCHAR)
|
SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE dates_administered = "November 14, 2007"
|
Write a SQL query that answers the following question: On July 31, 2008, what are the Democrat: Vivian Davis Figures percentages?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_12 (democrat VARCHAR, dates_administered VARCHAR)
|
SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE dates_administered = "July 31, 2008"
|
Write a SQL query that answers the following question: What was Mark Begich polling on October 6, 2008?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_13 (democrat VARCHAR, dates_administered VARCHAR)
|
SELECT democrat AS :_mark_begich FROM table_16751596_13 WHERE dates_administered = "October 6, 2008"
|
Write a SQL query that answers the following question: When the poll source is research 2000/daily kos, what is the total number of dates administered?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_13 (dates_administered VARCHAR, poll_source VARCHAR)
|
SELECT COUNT(dates_administered) FROM table_16751596_13 WHERE poll_source = "Research 2000/Daily Kos"
|
Write a SQL query that answers the following question: On July 17, 2008, what was the total number of lead maragin?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_13 (lead_maragin VARCHAR, dates_administered VARCHAR)
|
SELECT COUNT(lead_maragin) FROM table_16751596_13 WHERE dates_administered = "July 17, 2008"
|
Write a SQL query that answers the following question: What clubs had 608 points against?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1676073_12 (club VARCHAR, points_against VARCHAR)
|
SELECT club FROM table_1676073_12 WHERE points_against = "608"
|
Write a SQL query that answers the following question: How many games played for the team with 48 points?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1676073_12 (played VARCHAR, points VARCHAR)
|
SELECT played FROM table_1676073_12 WHERE points = "48"
|
Write a SQL query that answers the following question: How many games played for the team with 686 points against?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1676073_12 (played VARCHAR, points_against VARCHAR)
|
SELECT played FROM table_1676073_12 WHERE points_against = "686"
|
Write a SQL query that answers the following question: What clubs recorded 748 points to the good?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1676073_12 (club VARCHAR, points_for VARCHAR)
|
SELECT club FROM table_1676073_12 WHERE points_for = "748"
|
Write a SQL query that answers the following question: How many teams had 632 points against?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1676073_12 (points_for VARCHAR, points_against VARCHAR)
|
SELECT COUNT(points_for) FROM table_1676073_12 WHERE points_against = "632"
|
Write a SQL query that answers the following question: How many games drawn for the team that lost 11 and had 748 points?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1676073_12 (drawn VARCHAR, lost VARCHAR, points_for VARCHAR)
|
SELECT drawn FROM table_1676073_12 WHERE lost = "11" AND points_for = "748"
|
Write a SQL query that answers the following question: How many times did Public Policy Polling under Republican: Jack Hoogendyk?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_6 (republican VARCHAR, poll_source VARCHAR)
|
SELECT COUNT(republican) AS :_jack_hoogendyk FROM table_16751596_6 WHERE poll_source = "Public Policy Polling"
|
Write a SQL query that answers the following question: What poll source had an administered date on July 10, 2008?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16751596_6 (poll_source VARCHAR, dates_administered VARCHAR)
|
SELECT poll_source FROM table_16751596_6 WHERE dates_administered = "July 10, 2008"
|
Write a SQL query that answers the following question: What is the latitude when the diameter is 184.0?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16768245_2 (latitude VARCHAR, diameter VARCHAR)
|
SELECT latitude FROM table_16768245_2 WHERE diameter = "184.0"
|
Write a SQL query that answers the following question: How many longitudes have a diameter of 224.0?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16768245_2 (longitude VARCHAR, diameter VARCHAR)
|
SELECT COUNT(longitude) FROM table_16768245_2 WHERE diameter = "224.0"
|
Write a SQL query that answers the following question: What is the namesake of the feature found at 189.5w longitude?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)
|
SELECT namesake FROM table_16768245_2 WHERE longitude = "189.5W"
|
Write a SQL query that answers the following question: When the longitude is 147.1w what is the namesake of the feature?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)
|
SELECT namesake FROM table_16768245_2 WHERE longitude = "147.1W"
|
Write a SQL query that answers the following question: How many longitudes have a latitude of 9.9n?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16768245_2 (longitude VARCHAR, latitude VARCHAR)
|
SELECT COUNT(longitude) FROM table_16768245_2 WHERE latitude = "9.9N"
|
Write a SQL query that answers the following question: What is the maximum points against when team's points are 10?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16770037_3 (points INTEGER, pts VARCHAR)
|
SELECT MAX(points) AS against FROM table_16770037_3 WHERE pts = 10
|
Write a SQL query that answers the following question: What are the tries against when they played against Bridgend?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16770037_3 (tries_against INTEGER, team VARCHAR, Bridgend VARCHAR)
|
SELECT MAX(tries_against) FROM table_16770037_3 WHERE team = Bridgend
|
Write a SQL query that answers the following question: What is the smallest number of tries for in a game?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16770037_3 (tries_for INTEGER)
|
SELECT MIN(tries_for) FROM table_16770037_3
|
Write a SQL query that answers the following question: Philae Sulcus has a latitude of what?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16768245_5 (latitude VARCHAR, name VARCHAR)
|
SELECT latitude FROM table_16768245_5 WHERE name = "Philae Sulcus"
|
Write a SQL query that answers the following question: Name the opponent for 12 may 2008
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16776312_3 (opponent VARCHAR, date VARCHAR)
|
SELECT opponent FROM table_16776312_3 WHERE date = "12 May 2008"
|
Write a SQL query that answers the following question: how many points scored by sportivo luqueño
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16788123_5 (points VARCHAR, team VARCHAR)
|
SELECT COUNT(points) FROM table_16788123_5 WHERE team = "Sportivo Luqueño"
|
Write a SQL query that answers the following question: For team Atlético Nacional, what were the points?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)
|
SELECT points FROM table_16795394_3 WHERE team__number2 = "Atlético Nacional"
|
Write a SQL query that answers the following question: If team two is San Lorenzo, how many were on team one?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16795394_3 (team__number1 VARCHAR, team__number2 VARCHAR)
|
SELECT COUNT(team__number1) FROM table_16795394_3 WHERE team__number2 = "San Lorenzo"
|
Write a SQL query that answers the following question: If team two is Lanús, what was the total number of points?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)
|
SELECT COUNT(points) FROM table_16795394_3 WHERE team__number2 = "Lanús"
|
Write a SQL query that answers the following question: What is the name origin of Nike Fossae?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_11 (name VARCHAR)
|
SELECT name AS origin FROM table_16799784_11 WHERE name = "Nike Fossae"
|
Write a SQL query that answers the following question: Which name is at latitude 10.0s?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_11 (name VARCHAR, latitude VARCHAR)
|
SELECT name FROM table_16799784_11 WHERE latitude = "10.0S"
|
Write a SQL query that answers the following question: At what latitude can the name origin of yuzut-arkh fossae be found?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR)
|
SELECT latitude FROM table_16799784_11 WHERE name = "Yuzut-Arkh Fossae"
|
Write a SQL query that answers the following question: At what latitude can the name origin of naijok fossae be found?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR)
|
SELECT latitude FROM table_16799784_11 WHERE name = "Naijok Fossae"
|
Write a SQL query that answers the following question: At what latitude can you find the diameter (km) of 500.0?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_11 (latitude VARCHAR, diameter__km_ VARCHAR)
|
SELECT latitude FROM table_16799784_11 WHERE diameter__km_ = "500.0"
|
Write a SQL query that answers the following question: How many numbers are listed under diameter with a lattitude of 5.0n?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_14 (diameter__km_ VARCHAR, latitude VARCHAR)
|
SELECT COUNT(diameter__km_) FROM table_16799784_14 WHERE latitude = "5.0N"
|
Write a SQL query that answers the following question: What is the name origin with a diameter of 220.0 kilometers?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_14 (name VARCHAR, diameter__km_ VARCHAR)
|
SELECT name AS origin FROM table_16799784_14 WHERE diameter__km_ = "220.0"
|
Write a SQL query that answers the following question: What is the name of feature with a longitude 246.0e?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_14 (name VARCHAR, longitude VARCHAR)
|
SELECT name FROM table_16799784_14 WHERE longitude = "246.0E"
|
Write a SQL query that answers the following question: What is every name origin with the name Ovda Fluctus?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_12 (name VARCHAR)
|
SELECT name AS origin FROM table_16799784_12 WHERE name = "Ovda Fluctus"
|
Write a SQL query that answers the following question: What is the highest year named for the name Tie Fluctus?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_12 (year_named INTEGER, name VARCHAR)
|
SELECT MAX(year_named) FROM table_16799784_12 WHERE name = "Tie Fluctus"
|
Write a SQL query that answers the following question: What is every year named for the latitude of 66.5N?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_12 (year_named VARCHAR, latitude VARCHAR)
|
SELECT year_named FROM table_16799784_12 WHERE latitude = "66.5N"
|
Write a SQL query that answers the following question: What is every name for longitude of 152.0E?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_12 (name VARCHAR, longitude VARCHAR)
|
SELECT name FROM table_16799784_12 WHERE longitude = "152.0E"
|
Write a SQL query that answers the following question: What is the diameter of the feature with longitude 8.0e?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_13 (diameter__km_ VARCHAR, longitude VARCHAR)
|
SELECT diameter__km_ FROM table_16799784_13 WHERE longitude = "8.0E"
|
Write a SQL query that answers the following question: What feature is at latitude 23.9S?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_13 (name VARCHAR, latitude VARCHAR)
|
SELECT name FROM table_16799784_13 WHERE latitude = "23.9S"
|
Write a SQL query that answers the following question: When was the most recently named feature named?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_13 (year_named INTEGER)
|
SELECT MAX(year_named) FROM table_16799784_13
|
Write a SQL query that answers the following question: Name the name of 36.0n
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_2 (name VARCHAR, latitude VARCHAR)
|
SELECT name FROM table_16799784_2 WHERE latitude = "36.0N"
|
Write a SQL query that answers the following question: Name the latitude of laima tessera
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_2 (latitude VARCHAR, name VARCHAR)
|
SELECT latitude FROM table_16799784_2 WHERE name = "Laima Tessera"
|
Write a SQL query that answers the following question: Name the name origin for 54.0e
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_2 (name VARCHAR, longitude VARCHAR)
|
SELECT name AS origin FROM table_16799784_2 WHERE longitude = "54.0E"
|
Write a SQL query that answers the following question: Grechukha Tholi has what longitude?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_4 (longitude VARCHAR, name VARCHAR)
|
SELECT longitude FROM table_16799784_4 WHERE name = "Grechukha Tholi"
|
Write a SQL query that answers the following question: Where is longitude 202.9e?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_4 (name VARCHAR, longitude VARCHAR)
|
SELECT name FROM table_16799784_4 WHERE longitude = "202.9E"
|
Write a SQL query that answers the following question: How many schools are named otafuku tholi?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_4 (year_named VARCHAR, name VARCHAR)
|
SELECT COUNT(year_named) FROM table_16799784_4 WHERE name = "Otafuku Tholi"
|
Write a SQL query that answers the following question: What year was Norterma Tholus created?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_16799784_4 (year_named INTEGER, name VARCHAR)
|
SELECT MAX(year_named) FROM table_16799784_4 WHERE name = "Norterma Tholus"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.