question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many runs when bangladesh was the fielding team?
CREATE TABLE table_1670921_2 (runs VARCHAR, fielding_team VARCHAR)
SELECT runs FROM table_1670921_2 WHERE fielding_team = "Bangladesh"
### Context: CREATE TABLE table_1670921_2 (runs VARCHAR, fielding_team VARCHAR) ### Question: How many runs when bangladesh was the fielding team? ### Answer: SELECT runs FROM table_1670921_2 WHERE fielding_team = "Bangladesh"
What are the wickets when there are 451 runs and india is the fielding team?
CREATE TABLE table_1670921_2 (wicket VARCHAR, runs VARCHAR, fielding_team VARCHAR)
SELECT wicket FROM table_1670921_2 WHERE runs = "451" AND fielding_team = "India"
### Context: CREATE TABLE table_1670921_2 (wicket VARCHAR, runs VARCHAR, fielding_team VARCHAR) ### Question: What are the wickets when there are 451 runs and india is the fielding team? ### Answer: SELECT wicket FROM table_1670921_2 WHERE runs = "451" AND fielding_team = "India"
What batting partners played in sydney?
CREATE TABLE table_1670921_2 (batting_partners VARCHAR, venue VARCHAR)
SELECT batting_partners FROM table_1670921_2 WHERE venue = "Sydney"
### Context: CREATE TABLE table_1670921_2 (batting_partners VARCHAR, venue VARCHAR) ### Question: What batting partners played in sydney? ### Answer: SELECT batting_partners FROM table_1670921_2 WHERE venue = "Sydney"
What batting partners were the most successful in 2004?
CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR)
SELECT batting_partners FROM table_1670921_2 WHERE season = "2004"
### Context: CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR) ### Question: What batting partners were the most successful in 2004? ### Answer: SELECT batting_partners FROM table_1670921_2 WHERE season = "2004"
Name the falcons points for record of 3-2
CREATE TABLE table_16710829_2 (falcons_points VARCHAR, record VARCHAR)
SELECT falcons_points FROM table_16710829_2 WHERE record = "3-2"
### Context: CREATE TABLE table_16710829_2 (falcons_points VARCHAR, record VARCHAR) ### Question: Name the falcons points for record of 3-2 ### Answer: SELECT falcons_points FROM table_16710829_2 WHERE record = "3-2"
Name the date for game 9
CREATE TABLE table_16710829_2 (date VARCHAR, game VARCHAR)
SELECT date FROM table_16710829_2 WHERE game = 9
### Context: CREATE TABLE table_16710829_2 (date VARCHAR, game VARCHAR) ### Question: Name the date for game 9 ### Answer: SELECT date FROM table_16710829_2 WHERE game = 9
Name the max game for attendance being 54774
CREATE TABLE table_16710829_2 (game INTEGER, attendance VARCHAR)
SELECT MAX(game) FROM table_16710829_2 WHERE attendance = 54774
### Context: CREATE TABLE table_16710829_2 (game INTEGER, attendance VARCHAR) ### Question: Name the max game for attendance being 54774 ### Answer: SELECT MAX(game) FROM table_16710829_2 WHERE attendance = 54774
Name the total number of results for new orleans saints
CREATE TABLE table_16710829_2 (result VARCHAR, opponent VARCHAR)
SELECT COUNT(result) FROM table_16710829_2 WHERE opponent = "New Orleans Saints"
### Context: CREATE TABLE table_16710829_2 (result VARCHAR, opponent VARCHAR) ### Question: Name the total number of results for new orleans saints ### Answer: SELECT COUNT(result) FROM table_16710829_2 WHERE opponent = "New Orleans Saints"
What is the total number of opponents for the game recorded as 1-3?
CREATE TABLE table_16710971_2 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_16710971_2 WHERE record = "1-3"
### Context: CREATE TABLE table_16710971_2 (opponent VARCHAR, record VARCHAR) ### Question: What is the total number of opponents for the game recorded as 1-3? ### Answer: SELECT COUNT(opponent) FROM table_16710971_2 WHERE record = "1-3"
What was the result of the 1978 Atlanta Falcons season when the record was 1-2?
CREATE TABLE table_16710971_2 (result VARCHAR, record VARCHAR)
SELECT result FROM table_16710971_2 WHERE record = "1-2"
### Context: CREATE TABLE table_16710971_2 (result VARCHAR, record VARCHAR) ### Question: What was the result of the 1978 Atlanta Falcons season when the record was 1-2? ### Answer: SELECT result FROM table_16710971_2 WHERE record = "1-2"
How many points did the Falcons score when the record was 4-4?
CREATE TABLE table_16710971_2 (falcons_points VARCHAR, record VARCHAR)
SELECT falcons_points FROM table_16710971_2 WHERE record = "4-4"
### Context: CREATE TABLE table_16710971_2 (falcons_points VARCHAR, record VARCHAR) ### Question: How many points did the Falcons score when the record was 4-4? ### Answer: SELECT falcons_points FROM table_16710971_2 WHERE record = "4-4"
How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season?
CREATE TABLE table_16710971_2 (opponents VARCHAR, record VARCHAR)
SELECT COUNT(opponents) FROM table_16710971_2 WHERE record = "6-4"
### Context: CREATE TABLE table_16710971_2 (opponents VARCHAR, record VARCHAR) ### Question: How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season? ### Answer: SELECT COUNT(opponents) FROM table_16710971_2 WHERE record = "6-4"
In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored?
CREATE TABLE table_16710971_2 (falcons_points INTEGER, opponent VARCHAR)
SELECT MIN(falcons_points) FROM table_16710971_2 WHERE opponent = "San Francisco 49ers"
### Context: CREATE TABLE table_16710971_2 (falcons_points INTEGER, opponent VARCHAR) ### Question: In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored? ### Answer: SELECT MIN(falcons_points) FROM table_16710971_2 WHERE opponent = "San Francisco 49ers"
How many points did kiefer-bos-castrol honda have?
CREATE TABLE table_16710541_2 (pts VARCHAR, team VARCHAR)
SELECT pts FROM table_16710541_2 WHERE team = "Kiefer-Bos-Castrol Honda"
### Context: CREATE TABLE table_16710541_2 (pts VARCHAR, team VARCHAR) ### Question: How many points did kiefer-bos-castrol honda have? ### Answer: SELECT pts FROM table_16710541_2 WHERE team = "Kiefer-Bos-Castrol Honda"
What result did the ktm motorcycle achieve?
CREATE TABLE table_16710541_2 (position VARCHAR, motorcycle VARCHAR)
SELECT position FROM table_16710541_2 WHERE motorcycle = "KTM"
### Context: CREATE TABLE table_16710541_2 (position VARCHAR, motorcycle VARCHAR) ### Question: What result did the ktm motorcycle achieve? ### Answer: SELECT position FROM table_16710541_2 WHERE motorcycle = "KTM"
What is the lowest number of poles?
CREATE TABLE table_16710541_2 (poles INTEGER)
SELECT MIN(poles) FROM table_16710541_2
### Context: CREATE TABLE table_16710541_2 (poles INTEGER) ### Question: What is the lowest number of poles? ### Answer: SELECT MIN(poles) FROM table_16710541_2
Name the least top 5
CREATE TABLE table_1671401_1 (top_5 INTEGER)
SELECT MIN(top_5) FROM table_1671401_1
### Context: CREATE TABLE table_1671401_1 (top_5 INTEGER) ### Question: Name the least top 5 ### Answer: SELECT MIN(top_5) FROM table_1671401_1
name the top 5 where the winnings is $52,595
CREATE TABLE table_1671401_3 (top_5 VARCHAR, winnings VARCHAR)
SELECT top_5 FROM table_1671401_3 WHERE winnings = "$52,595"
### Context: CREATE TABLE table_1671401_3 (top_5 VARCHAR, winnings VARCHAR) ### Question: name the top 5 where the winnings is $52,595 ### Answer: SELECT top_5 FROM table_1671401_3 WHERE winnings = "$52,595"
name the total number of top 10 also where the position is 51st
CREATE TABLE table_1671401_3 (top_10 VARCHAR, position VARCHAR)
SELECT COUNT(top_10) FROM table_1671401_3 WHERE position = "51st"
### Context: CREATE TABLE table_1671401_3 (top_10 VARCHAR, position VARCHAR) ### Question: name the total number of top 10 also where the position is 51st ### Answer: SELECT COUNT(top_10) FROM table_1671401_3 WHERE position = "51st"
name all the winnings that the start appears to be 7
CREATE TABLE table_1671401_3 (winnings VARCHAR, starts VARCHAR)
SELECT winnings FROM table_1671401_3 WHERE starts = 7
### Context: CREATE TABLE table_1671401_3 (winnings VARCHAR, starts VARCHAR) ### Question: name all the winnings that the start appears to be 7 ### Answer: SELECT winnings FROM table_1671401_3 WHERE starts = 7
Name the total number of winnings for 1995
CREATE TABLE table_1671401_2 (winnings VARCHAR, year VARCHAR)
SELECT COUNT(winnings) FROM table_1671401_2 WHERE year = 1995
### Context: CREATE TABLE table_1671401_2 (winnings VARCHAR, year VARCHAR) ### Question: Name the total number of winnings for 1995 ### Answer: SELECT COUNT(winnings) FROM table_1671401_2 WHERE year = 1995
Name the max top 5 for 5.0 avg finish
CREATE TABLE table_1671401_2 (top_5 INTEGER, avg_finish VARCHAR)
SELECT MAX(top_5) FROM table_1671401_2 WHERE avg_finish = "5.0"
### Context: CREATE TABLE table_1671401_2 (top_5 INTEGER, avg_finish VARCHAR) ### Question: Name the max top 5 for 5.0 avg finish ### Answer: SELECT MAX(top_5) FROM table_1671401_2 WHERE avg_finish = "5.0"
Name the poles for avg finish is 26.8
CREATE TABLE table_1671401_2 (poles VARCHAR, avg_finish VARCHAR)
SELECT poles FROM table_1671401_2 WHERE avg_finish = "26.8"
### Context: CREATE TABLE table_1671401_2 (poles VARCHAR, avg_finish VARCHAR) ### Question: Name the poles for avg finish is 26.8 ### Answer: SELECT poles FROM table_1671401_2 WHERE avg_finish = "26.8"
Name the total number of teams for top 10 being 5
CREATE TABLE table_1671401_2 (team_s_ VARCHAR, top_10 VARCHAR)
SELECT COUNT(team_s_) FROM table_1671401_2 WHERE top_10 = 5
### Context: CREATE TABLE table_1671401_2 (team_s_ VARCHAR, top_10 VARCHAR) ### Question: Name the total number of teams for top 10 being 5 ### Answer: SELECT COUNT(team_s_) FROM table_1671401_2 WHERE top_10 = 5
How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones?
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"
### Context: CREATE TABLE table_16724844_1 (mens_u20 VARCHAR, womens_40 VARCHAR) ### Question: How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones? ### Answer: SELECT COUNT(mens_u20) FROM table_16724844_1 WHERE womens_40 = "Sydney Scorpions def North Queenslan...
What were the results for mens 40 when the mens u20 was Southern Suns def Gold Coast Sharks?
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"
### Context: CREATE TABLE table_16724844_1 (mens_40 VARCHAR, mens_u20 VARCHAR) ### Question: What were the results for mens 40 when the mens u20 was Southern Suns def Gold Coast Sharks? ### Answer: SELECT mens_40 FROM table_16724844_1 WHERE mens_u20 = "Southern Suns def Gold Coast Sharks"
What were the results of the mens open when the womens 40 was Sydney Scorpions defeated Hunter Hornets?
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"
### Context: CREATE TABLE table_16724844_1 (mens_open VARCHAR, womens_40 VARCHAR) ### Question: What were the results of the mens open when the womens 40 was Sydney Scorpions defeated Hunter Hornets? ### Answer: SELECT mens_open FROM table_16724844_1 WHERE womens_40 = "Sydney Scorpions defeated Hunter Hornets"
What were the results of the womens u20 when the mens 45 was Sunwest Razorbacks def Northern Eagles?
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"
### Context: CREATE TABLE table_16724844_1 (womens_u20 VARCHAR, mens_45 VARCHAR) ### Question: What were the results of the womens u20 when the mens 45 was Sunwest Razorbacks def Northern Eagles? ### Answer: SELECT womens_u20 FROM table_16724844_1 WHERE mens_45 = "SunWest Razorbacks def Northern Eagles"
What was the mens 45 when mens 40 was Sunwest Razorbacks def Sydney Mets?
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"
### Context: CREATE TABLE table_16724844_1 (mens_45 VARCHAR, mens_40 VARCHAR) ### Question: What was the mens 45 when mens 40 was Sunwest Razorbacks def Sydney Mets? ### Answer: SELECT mens_45 FROM table_16724844_1 WHERE mens_40 = "SunWest Razorbacks def Sydney Mets"
What was the mens open when the mens u20 was Qld Country Rustlers def Southern Suns?
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"
### Context: CREATE TABLE table_16724844_1 (mens_open VARCHAR, mens_u20 VARCHAR) ### Question: What was the mens open when the mens u20 was Qld Country Rustlers def Southern Suns? ### Answer: SELECT mens_open FROM table_16724844_1 WHERE mens_u20 = "Qld Country Rustlers def Southern Suns"
What date was the opponent the Los Angeles Raiders?
CREATE TABLE table_16729063_2 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_16729063_2 WHERE opponent = "Los Angeles Raiders"
### Context: CREATE TABLE table_16729063_2 (date VARCHAR, opponent VARCHAR) ### Question: What date was the opponent the Los Angeles Raiders? ### Answer: SELECT date FROM table_16729063_2 WHERE opponent = "Los Angeles Raiders"
How many games were played at Cleveland Stadium?
CREATE TABLE table_16729063_2 (date VARCHAR, game_site VARCHAR)
SELECT COUNT(date) FROM table_16729063_2 WHERE game_site = "Cleveland Stadium"
### Context: CREATE TABLE table_16729063_2 (date VARCHAR, game_site VARCHAR) ### Question: How many games were played at Cleveland Stadium? ### Answer: SELECT COUNT(date) FROM table_16729063_2 WHERE game_site = "Cleveland Stadium"
In what week number was the attendance 74716?
CREATE TABLE table_16729063_2 (week VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_16729063_2 WHERE attendance = 74716
### Context: CREATE TABLE table_16729063_2 (week VARCHAR, attendance VARCHAR) ### Question: In what week number was the attendance 74716? ### Answer: SELECT COUNT(week) FROM table_16729063_2 WHERE attendance = 74716
What is the region where Iquitos is located?
CREATE TABLE table_1672804_2 (region VARCHAR, name_of_city VARCHAR)
SELECT region FROM table_1672804_2 WHERE name_of_city = "Iquitos"
### Context: CREATE TABLE table_1672804_2 (region VARCHAR, name_of_city VARCHAR) ### Question: What is the region where Iquitos is located? ### Answer: SELECT region FROM table_1672804_2 WHERE name_of_city = "Iquitos"
What is the region containing the Constitutional Province of Callao?
CREATE TABLE table_1672804_2 (region VARCHAR, province VARCHAR)
SELECT region FROM table_1672804_2 WHERE province = "Constitutional province of Callao"
### Context: CREATE TABLE table_1672804_2 (region VARCHAR, province VARCHAR) ### Question: What is the region containing the Constitutional Province of Callao? ### Answer: SELECT region FROM table_1672804_2 WHERE province = "Constitutional province of Callao"
How did the game end against the New Orleans Saints?
CREATE TABLE table_16729071_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_16729071_1 WHERE opponent = "New Orleans Saints"
### Context: CREATE TABLE table_16729071_1 (result VARCHAR, opponent VARCHAR) ### Question: How did the game end against the New Orleans Saints? ### Answer: SELECT result FROM table_16729071_1 WHERE opponent = "New Orleans Saints"
How many weeks had an attendance of 60038?
CREATE TABLE table_16729071_1 (week VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_16729071_1 WHERE attendance = 60038
### Context: CREATE TABLE table_16729071_1 (week VARCHAR, attendance VARCHAR) ### Question: How many weeks had an attendance of 60038? ### Answer: SELECT COUNT(week) FROM table_16729071_1 WHERE attendance = 60038
Name the least points for daniël willemsen / kenny van gaalen
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"
### Context: CREATE TABLE table_16729457_17 (points INTEGER, driver___passenger VARCHAR) ### Question: Name the least points for daniël willemsen / kenny van gaalen ### Answer: SELECT MIN(points) FROM table_16729457_17 WHERE driver___passenger = "Daniël Willemsen / Kenny van Gaalen"
Name the driver passenger for position 4
CREATE TABLE table_16729457_17 (driver___passenger VARCHAR, position VARCHAR)
SELECT driver___passenger FROM table_16729457_17 WHERE position = 4
### Context: CREATE TABLE table_16729457_17 (driver___passenger VARCHAR, position VARCHAR) ### Question: Name the driver passenger for position 4 ### Answer: SELECT driver___passenger FROM table_16729457_17 WHERE position = 4
Name the driver/passenger for position 8
CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)
SELECT driver___passenger FROM table_16729457_16 WHERE position = 8
### Context: CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR) ### Question: Name the driver/passenger for position 8 ### Answer: SELECT driver___passenger FROM table_16729457_16 WHERE position = 8
Name the driver/passenger for 6 position
CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)
SELECT driver___passenger FROM table_16729457_16 WHERE position = 6
### Context: CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR) ### Question: Name the driver/passenger for 6 position ### Answer: SELECT driver___passenger FROM table_16729457_16 WHERE position = 6
Who was the winner when the total attendance was 16597?
CREATE TABLE table_1672976_5 (winner VARCHAR, attendance VARCHAR)
SELECT winner FROM table_1672976_5 WHERE attendance = 16597
### Context: CREATE TABLE table_1672976_5 (winner VARCHAR, attendance VARCHAR) ### Question: Who was the winner when the total attendance was 16597? ### Answer: SELECT winner FROM table_1672976_5 WHERE attendance = 16597
What is the socket for microprocessors with a frequency of 1.3 ghz?
CREATE TABLE table_16729930_18 (socket VARCHAR, frequency VARCHAR)
SELECT socket FROM table_16729930_18 WHERE frequency = "1.3 GHz"
### Context: CREATE TABLE table_16729930_18 (socket VARCHAR, frequency VARCHAR) ### Question: What is the socket for microprocessors with a frequency of 1.3 ghz? ### Answer: SELECT socket FROM table_16729930_18 WHERE frequency = "1.3 GHz"
For a release price of $72, what is the TDP of the microprocessor?
CREATE TABLE table_16729930_18 (tdp VARCHAR, release_price___usd__ VARCHAR)
SELECT tdp FROM table_16729930_18 WHERE release_price___usd__ = "$72"
### Context: CREATE TABLE table_16729930_18 (tdp VARCHAR, release_price___usd__ VARCHAR) ### Question: For a release price of $72, what is the TDP of the microprocessor? ### Answer: SELECT tdp FROM table_16729930_18 WHERE release_price___usd__ = "$72"
For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU frequencies?
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"
### Context: CREATE TABLE table_16729930_18 (gpu_frequency VARCHAR, tdp VARCHAR, part_number_s_ VARCHAR) ### Question: For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU frequencies? ### Answer: SELECT gpu_frequency FROM table_16729930_18 WHERE tdp = "3.6 W" AND part_number_s...
For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number?
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"
### Context: CREATE TABLE table_16729930_18 (sspec_number VARCHAR, tdp VARCHAR, model_number VARCHAR) ### Question: For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number? ### Answer: SELECT sspec_number FROM table_16729930_18 WHERE tdp = "3.6 W" AND model_number = "Atom E665C"
What is the release price for a processor with part number cy80632007227ab?
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"
### Context: CREATE TABLE table_16729930_18 (release_price___usd__ VARCHAR, part_number_s_ VARCHAR) ### Question: What is the release price for a processor with part number cy80632007227ab? ### Answer: SELECT release_price___usd__ FROM table_16729930_18 WHERE part_number_s_ = "CY80632007227AB"
Name the fsb for atom z540
CREATE TABLE table_16729930_11 (fsb VARCHAR, model_number VARCHAR)
SELECT fsb FROM table_16729930_11 WHERE model_number = "Atom Z540"
### Context: CREATE TABLE table_16729930_11 (fsb VARCHAR, model_number VARCHAR) ### Question: Name the fsb for atom z540 ### Answer: SELECT fsb FROM table_16729930_11 WHERE model_number = "Atom Z540"
Name the frequency for part number of ac80566ue041dw
CREATE TABLE table_16729930_11 (frequency VARCHAR, part_number_s_ VARCHAR)
SELECT frequency FROM table_16729930_11 WHERE part_number_s_ = "AC80566UE041DW"
### Context: CREATE TABLE table_16729930_11 (frequency VARCHAR, part_number_s_ VARCHAR) ### Question: Name the frequency for part number of ac80566ue041dw ### Answer: SELECT frequency FROM table_16729930_11 WHERE part_number_s_ = "AC80566UE041DW"
Name the memory for part number of ct80618003201aa
CREATE TABLE table_16729930_17 (memory VARCHAR, part_number_s_ VARCHAR)
SELECT memory FROM table_16729930_17 WHERE part_number_s_ = "CT80618003201AA"
### Context: CREATE TABLE table_16729930_17 (memory VARCHAR, part_number_s_ VARCHAR) ### Question: Name the memory for part number of ct80618003201aa ### Answer: SELECT memory FROM table_16729930_17 WHERE part_number_s_ = "CT80618003201AA"
Name the memory for meodel number for atom e640t
CREATE TABLE table_16729930_17 (memory VARCHAR, model_number VARCHAR)
SELECT memory FROM table_16729930_17 WHERE model_number = "Atom E640T"
### Context: CREATE TABLE table_16729930_17 (memory VARCHAR, model_number VARCHAR) ### Question: Name the memory for meodel number for atom e640t ### Answer: SELECT memory FROM table_16729930_17 WHERE model_number = "Atom E640T"
Name the memory for frequency of 1.6 ghz
CREATE TABLE table_16729930_17 (memory VARCHAR, frequency VARCHAR)
SELECT memory FROM table_16729930_17 WHERE frequency = "1.6 GHz"
### Context: CREATE TABLE table_16729930_17 (memory VARCHAR, frequency VARCHAR) ### Question: Name the memory for frequency of 1.6 ghz ### Answer: SELECT memory FROM table_16729930_17 WHERE frequency = "1.6 GHz"
Who won the game where the Challenge Leader is ACC (2-1)?
CREATE TABLE table_1672976_6 (winner VARCHAR, challenge_leader VARCHAR)
SELECT winner FROM table_1672976_6 WHERE challenge_leader = "ACC (2-1)"
### Context: CREATE TABLE table_1672976_6 (winner VARCHAR, challenge_leader VARCHAR) ### Question: Who won the game where the Challenge Leader is ACC (2-1)? ### Answer: SELECT winner FROM table_1672976_6 WHERE challenge_leader = "ACC (2-1)"
What station aired a game at 9:00pm?
CREATE TABLE table_1672976_6 (television VARCHAR, time VARCHAR)
SELECT television FROM table_1672976_6 WHERE time = "9:00PM"
### Context: CREATE TABLE table_1672976_6 (television VARCHAR, time VARCHAR) ### Question: What station aired a game at 9:00pm? ### Answer: SELECT television FROM table_1672976_6 WHERE time = "9:00PM"
ON JUNE 11, WHAT WAS THE NUMBER OF RNDS ?
CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)
SELECT MIN(rnd) FROM table_16732659_2 WHERE date = "June 11"
### Context: CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR) ### Question: ON JUNE 11, WHAT WAS THE NUMBER OF RNDS ? ### Answer: SELECT MIN(rnd) FROM table_16732659_2 WHERE date = "June 11"
FOR AUGUST 13 WHAT IS THE RND ?
CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)
SELECT MAX(rnd) FROM table_16732659_2 WHERE date = "August 13"
### Context: CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR) ### Question: FOR AUGUST 13 WHAT IS THE RND ? ### Answer: SELECT MAX(rnd) FROM table_16732659_2 WHERE date = "August 13"
PLEASE LIST ALL RACES WHERE THE RND IS 13.
CREATE TABLE table_16732659_2 (race_name VARCHAR, rnd VARCHAR)
SELECT race_name FROM table_16732659_2 WHERE rnd = 13
### Context: CREATE TABLE table_16732659_2 (race_name VARCHAR, rnd VARCHAR) ### Question: PLEASE LIST ALL RACES WHERE THE RND IS 13. ### Answer: SELECT race_name FROM table_16732659_2 WHERE rnd = 13
How many figures are there for Rank 07-11 when the world ranking is 4?
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"
### Context: CREATE TABLE table_167354_2 (rank_07_11 VARCHAR, world_ranking VARCHAR) ### Question: How many figures are there for Rank 07-11 when the world ranking is 4? ### Answer: SELECT COUNT(rank_07_11) FROM table_167354_2 WHERE world_ranking = "4"
How many figures are given for pubs 2011 in Chennai?
CREATE TABLE table_167354_2 (pubs_2011 VARCHAR, location VARCHAR)
SELECT COUNT(pubs_2011) FROM table_167354_2 WHERE location = "Chennai"
### Context: CREATE TABLE table_167354_2 (pubs_2011 VARCHAR, location VARCHAR) ### Question: How many figures are given for pubs 2011 in Chennai? ### Answer: SELECT COUNT(pubs_2011) FROM table_167354_2 WHERE location = "Chennai"
Name the number location of georgia perimeter college
CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
SELECT COUNT(location) FROM table_16734640_1 WHERE institution = "Georgia Perimeter College"
### Context: CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR) ### Question: Name the number location of georgia perimeter college ### Answer: SELECT COUNT(location) FROM table_16734640_1 WHERE institution = "Georgia Perimeter College"
Name the location for chattahoochee technical college
CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_16734640_1 WHERE institution = "Chattahoochee Technical College"
### Context: CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR) ### Question: Name the location for chattahoochee technical college ### Answer: SELECT location FROM table_16734640_1 WHERE institution = "Chattahoochee Technical College"
Name the location for abraham baldwin agricultural college
CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_16734640_1 WHERE institution = "Abraham Baldwin Agricultural College"
### Context: CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR) ### Question: Name the location for abraham baldwin agricultural college ### Answer: SELECT location FROM table_16734640_1 WHERE institution = "Abraham Baldwin Agricultural College"
Name the total number of nicknames for andrew college
CREATE TABLE table_16734640_1 (nickname VARCHAR, institution VARCHAR)
SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = "Andrew College"
### Context: CREATE TABLE table_16734640_1 (nickname VARCHAR, institution VARCHAR) ### Question: Name the total number of nicknames for andrew college ### Answer: SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = "Andrew College"
Name the most enrollment when nickname is hawks
CREATE TABLE table_16734640_1 (enrollment INTEGER, nickname VARCHAR)
SELECT MAX(enrollment) FROM table_16734640_1 WHERE nickname = "Hawks"
### Context: CREATE TABLE table_16734640_1 (enrollment INTEGER, nickname VARCHAR) ### Question: Name the most enrollment when nickname is hawks ### Answer: SELECT MAX(enrollment) FROM table_16734640_1 WHERE nickname = "Hawks"
WHAT WAS THE SURFACE MADE OF WHEN THE OPPONENT WAS GEORGE KHRIKADZE?
CREATE TABLE table_16741821_8 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_16741821_8 WHERE opponent = "George Khrikadze"
### Context: CREATE TABLE table_16741821_8 (surface VARCHAR, opponent VARCHAR) ### Question: WHAT WAS THE SURFACE MADE OF WHEN THE OPPONENT WAS GEORGE KHRIKADZE? ### Answer: SELECT surface FROM table_16741821_8 WHERE opponent = "George Khrikadze"
WHAT WERE ALL OF THE RESULTS WHEN THEY PLAYED AGAINST LITHUANIA AND THE SURFACE WAS MADE OF CLAY?
CREATE TABLE table_16741821_8 (result VARCHAR, surface VARCHAR, against VARCHAR)
SELECT result FROM table_16741821_8 WHERE surface = "Clay" AND against = "Lithuania"
### Context: CREATE TABLE table_16741821_8 (result VARCHAR, surface VARCHAR, against VARCHAR) ### Question: WHAT WERE ALL OF THE RESULTS WHEN THEY PLAYED AGAINST LITHUANIA AND THE SURFACE WAS MADE OF CLAY? ### Answer: SELECT result FROM table_16741821_8 WHERE surface = "Clay" AND against = "Lithuania"
Name the republican steve sauerberg where dates administered september 15-september 18, 2008
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"
### Context: CREATE TABLE table_16751596_2 (republican VARCHAR, dates_administered VARCHAR) ### Question: Name the republican steve sauerberg where dates administered september 15-september 18, 2008 ### Answer: SELECT republican AS :_steve_sauerberg FROM table_16751596_2 WHERE dates_administered = "September 15-Septemb...
Name the republican steve sauerberg for august 12, 2008
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"
### Context: CREATE TABLE table_16751596_2 (republican VARCHAR, dates_administered VARCHAR) ### Question: Name the republican steve sauerberg for august 12, 2008 ### Answer: SELECT republican AS :_steve_sauerberg FROM table_16751596_2 WHERE dates_administered = "August 12, 2008"
Name the poll source for july 12, 2008
CREATE TABLE table_16751596_2 (poll_source VARCHAR, dates_administered VARCHAR)
SELECT poll_source FROM table_16751596_2 WHERE dates_administered = "July 12, 2008"
### Context: CREATE TABLE table_16751596_2 (poll_source VARCHAR, dates_administered VARCHAR) ### Question: Name the poll source for july 12, 2008 ### Answer: SELECT poll_source FROM table_16751596_2 WHERE dates_administered = "July 12, 2008"
When the lead margin was 35, what were the Democrat: Vivian Davis Figures?
CREATE TABLE table_16751596_12 (democrat VARCHAR, lead_margin VARCHAR)
SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE lead_margin = 35
### Context: CREATE TABLE table_16751596_12 (democrat VARCHAR, lead_margin VARCHAR) ### Question: When the lead margin was 35, what were the Democrat: Vivian Davis Figures? ### Answer: SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE lead_margin = 35
On June 30, 2008 who what was the Republican: Jeff Sessions percentage?
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"
### Context: CREATE TABLE table_16751596_12 (republican VARCHAR, dates_administered VARCHAR) ### Question: On June 30, 2008 who what was the Republican: Jeff Sessions percentage? ### Answer: SELECT republican AS :_jeff_sessions FROM table_16751596_12 WHERE dates_administered = "June 30, 2008"
On November 14, 2007, how many different Republican: Jeff Sessions are there?
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"
### Context: CREATE TABLE table_16751596_12 (republican VARCHAR, dates_administered VARCHAR) ### Question: On November 14, 2007, how many different Republican: Jeff Sessions are there? ### Answer: SELECT COUNT(republican) AS :_jeff_sessions FROM table_16751596_12 WHERE dates_administered = "November 14, 2007"
On November 14, 2007, what are the Democrat: Vivian Davis Figures percentages?
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"
### Context: CREATE TABLE table_16751596_12 (democrat VARCHAR, dates_administered VARCHAR) ### Question: On November 14, 2007, what are the Democrat: Vivian Davis Figures percentages? ### Answer: SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE dates_administered = "November 14, 2007"
On July 31, 2008, what are the Democrat: Vivian Davis Figures percentages?
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"
### Context: CREATE TABLE table_16751596_12 (democrat VARCHAR, dates_administered VARCHAR) ### Question: On July 31, 2008, what are the Democrat: Vivian Davis Figures percentages? ### Answer: SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE dates_administered = "July 31, 2008"
What was Mark Begich polling on October 6, 2008?
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"
### Context: CREATE TABLE table_16751596_13 (democrat VARCHAR, dates_administered VARCHAR) ### Question: What was Mark Begich polling on October 6, 2008? ### Answer: SELECT democrat AS :_mark_begich FROM table_16751596_13 WHERE dates_administered = "October 6, 2008"
When the poll source is research 2000/daily kos, what is the total number of dates administered?
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"
### Context: CREATE TABLE table_16751596_13 (dates_administered VARCHAR, poll_source VARCHAR) ### Question: When the poll source is research 2000/daily kos, what is the total number of dates administered? ### Answer: SELECT COUNT(dates_administered) FROM table_16751596_13 WHERE poll_source = "Research 2000/Daily Kos"
On July 17, 2008, what was the total number of lead maragin?
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"
### Context: CREATE TABLE table_16751596_13 (lead_maragin VARCHAR, dates_administered VARCHAR) ### Question: On July 17, 2008, what was the total number of lead maragin? ### Answer: SELECT COUNT(lead_maragin) FROM table_16751596_13 WHERE dates_administered = "July 17, 2008"
What clubs had 608 points against?
CREATE TABLE table_1676073_12 (club VARCHAR, points_against VARCHAR)
SELECT club FROM table_1676073_12 WHERE points_against = "608"
### Context: CREATE TABLE table_1676073_12 (club VARCHAR, points_against VARCHAR) ### Question: What clubs had 608 points against? ### Answer: SELECT club FROM table_1676073_12 WHERE points_against = "608"
How many games played for the team with 48 points?
CREATE TABLE table_1676073_12 (played VARCHAR, points VARCHAR)
SELECT played FROM table_1676073_12 WHERE points = "48"
### Context: CREATE TABLE table_1676073_12 (played VARCHAR, points VARCHAR) ### Question: How many games played for the team with 48 points? ### Answer: SELECT played FROM table_1676073_12 WHERE points = "48"
How many games played for the team with 686 points against?
CREATE TABLE table_1676073_12 (played VARCHAR, points_against VARCHAR)
SELECT played FROM table_1676073_12 WHERE points_against = "686"
### Context: CREATE TABLE table_1676073_12 (played VARCHAR, points_against VARCHAR) ### Question: How many games played for the team with 686 points against? ### Answer: SELECT played FROM table_1676073_12 WHERE points_against = "686"
What clubs recorded 748 points to the good?
CREATE TABLE table_1676073_12 (club VARCHAR, points_for VARCHAR)
SELECT club FROM table_1676073_12 WHERE points_for = "748"
### Context: CREATE TABLE table_1676073_12 (club VARCHAR, points_for VARCHAR) ### Question: What clubs recorded 748 points to the good? ### Answer: SELECT club FROM table_1676073_12 WHERE points_for = "748"
How many teams had 632 points against?
CREATE TABLE table_1676073_12 (points_for VARCHAR, points_against VARCHAR)
SELECT COUNT(points_for) FROM table_1676073_12 WHERE points_against = "632"
### Context: CREATE TABLE table_1676073_12 (points_for VARCHAR, points_against VARCHAR) ### Question: How many teams had 632 points against? ### Answer: SELECT COUNT(points_for) FROM table_1676073_12 WHERE points_against = "632"
How many games drawn for the team that lost 11 and had 748 points?
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"
### Context: CREATE TABLE table_1676073_12 (drawn VARCHAR, lost VARCHAR, points_for VARCHAR) ### Question: How many games drawn for the team that lost 11 and had 748 points? ### Answer: SELECT drawn FROM table_1676073_12 WHERE lost = "11" AND points_for = "748"
How many times did Public Policy Polling under Republican: Jack Hoogendyk?
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"
### Context: CREATE TABLE table_16751596_6 (republican VARCHAR, poll_source VARCHAR) ### Question: How many times did Public Policy Polling under Republican: Jack Hoogendyk? ### Answer: SELECT COUNT(republican) AS :_jack_hoogendyk FROM table_16751596_6 WHERE poll_source = "Public Policy Polling"
What poll source had an administered date on July 10, 2008?
CREATE TABLE table_16751596_6 (poll_source VARCHAR, dates_administered VARCHAR)
SELECT poll_source FROM table_16751596_6 WHERE dates_administered = "July 10, 2008"
### Context: CREATE TABLE table_16751596_6 (poll_source VARCHAR, dates_administered VARCHAR) ### Question: What poll source had an administered date on July 10, 2008? ### Answer: SELECT poll_source FROM table_16751596_6 WHERE dates_administered = "July 10, 2008"
What is the latitude when the diameter is 184.0?
CREATE TABLE table_16768245_2 (latitude VARCHAR, diameter VARCHAR)
SELECT latitude FROM table_16768245_2 WHERE diameter = "184.0"
### Context: CREATE TABLE table_16768245_2 (latitude VARCHAR, diameter VARCHAR) ### Question: What is the latitude when the diameter is 184.0? ### Answer: SELECT latitude FROM table_16768245_2 WHERE diameter = "184.0"
How many longitudes have a diameter of 224.0?
CREATE TABLE table_16768245_2 (longitude VARCHAR, diameter VARCHAR)
SELECT COUNT(longitude) FROM table_16768245_2 WHERE diameter = "224.0"
### Context: CREATE TABLE table_16768245_2 (longitude VARCHAR, diameter VARCHAR) ### Question: How many longitudes have a diameter of 224.0? ### Answer: SELECT COUNT(longitude) FROM table_16768245_2 WHERE diameter = "224.0"
What is the namesake of the feature found at 189.5w longitude?
CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)
SELECT namesake FROM table_16768245_2 WHERE longitude = "189.5W"
### Context: CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR) ### Question: What is the namesake of the feature found at 189.5w longitude? ### Answer: SELECT namesake FROM table_16768245_2 WHERE longitude = "189.5W"
When the longitude is 147.1w what is the namesake of the feature?
CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)
SELECT namesake FROM table_16768245_2 WHERE longitude = "147.1W"
### Context: CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR) ### Question: When the longitude is 147.1w what is the namesake of the feature? ### Answer: SELECT namesake FROM table_16768245_2 WHERE longitude = "147.1W"
How many longitudes have a latitude of 9.9n?
CREATE TABLE table_16768245_2 (longitude VARCHAR, latitude VARCHAR)
SELECT COUNT(longitude) FROM table_16768245_2 WHERE latitude = "9.9N"
### Context: CREATE TABLE table_16768245_2 (longitude VARCHAR, latitude VARCHAR) ### Question: How many longitudes have a latitude of 9.9n? ### Answer: SELECT COUNT(longitude) FROM table_16768245_2 WHERE latitude = "9.9N"
What is the maximum points against when team's points are 10?
CREATE TABLE table_16770037_3 (points INTEGER, pts VARCHAR)
SELECT MAX(points) AS against FROM table_16770037_3 WHERE pts = 10
### Context: CREATE TABLE table_16770037_3 (points INTEGER, pts VARCHAR) ### Question: What is the maximum points against when team's points are 10? ### Answer: SELECT MAX(points) AS against FROM table_16770037_3 WHERE pts = 10
What are the tries against when they played against Bridgend?
CREATE TABLE table_16770037_3 (tries_against INTEGER, team VARCHAR, Bridgend VARCHAR)
SELECT MAX(tries_against) FROM table_16770037_3 WHERE team = Bridgend
### Context: CREATE TABLE table_16770037_3 (tries_against INTEGER, team VARCHAR, Bridgend VARCHAR) ### Question: What are the tries against when they played against Bridgend? ### Answer: SELECT MAX(tries_against) FROM table_16770037_3 WHERE team = Bridgend
What is the smallest number of tries for in a game?
CREATE TABLE table_16770037_3 (tries_for INTEGER)
SELECT MIN(tries_for) FROM table_16770037_3
### Context: CREATE TABLE table_16770037_3 (tries_for INTEGER) ### Question: What is the smallest number of tries for in a game? ### Answer: SELECT MIN(tries_for) FROM table_16770037_3
Philae Sulcus has a latitude of what?
CREATE TABLE table_16768245_5 (latitude VARCHAR, name VARCHAR)
SELECT latitude FROM table_16768245_5 WHERE name = "Philae Sulcus"
### Context: CREATE TABLE table_16768245_5 (latitude VARCHAR, name VARCHAR) ### Question: Philae Sulcus has a latitude of what? ### Answer: SELECT latitude FROM table_16768245_5 WHERE name = "Philae Sulcus"
Name the opponent for 12 may 2008
CREATE TABLE table_16776312_3 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_16776312_3 WHERE date = "12 May 2008"
### Context: CREATE TABLE table_16776312_3 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent for 12 may 2008 ### Answer: SELECT opponent FROM table_16776312_3 WHERE date = "12 May 2008"
how many points scored by sportivo luqueño
CREATE TABLE table_16788123_5 (points VARCHAR, team VARCHAR)
SELECT COUNT(points) FROM table_16788123_5 WHERE team = "Sportivo Luqueño"
### Context: CREATE TABLE table_16788123_5 (points VARCHAR, team VARCHAR) ### Question: how many points scored by sportivo luqueño ### Answer: SELECT COUNT(points) FROM table_16788123_5 WHERE team = "Sportivo Luqueño"
For team Atlético Nacional, what were the points?
CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)
SELECT points FROM table_16795394_3 WHERE team__number2 = "Atlético Nacional"
### Context: CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR) ### Question: For team Atlético Nacional, what were the points? ### Answer: SELECT points FROM table_16795394_3 WHERE team__number2 = "Atlético Nacional"
If team two is San Lorenzo, how many were on team one?
CREATE TABLE table_16795394_3 (team__number1 VARCHAR, team__number2 VARCHAR)
SELECT COUNT(team__number1) FROM table_16795394_3 WHERE team__number2 = "San Lorenzo"
### Context: CREATE TABLE table_16795394_3 (team__number1 VARCHAR, team__number2 VARCHAR) ### Question: If team two is San Lorenzo, how many were on team one? ### Answer: SELECT COUNT(team__number1) FROM table_16795394_3 WHERE team__number2 = "San Lorenzo"
If team two is Lanús, what was the total number of points?
CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)
SELECT COUNT(points) FROM table_16795394_3 WHERE team__number2 = "Lanús"
### Context: CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR) ### Question: If team two is Lanús, what was the total number of points? ### Answer: SELECT COUNT(points) FROM table_16795394_3 WHERE team__number2 = "Lanús"
What is the name origin of Nike Fossae?
CREATE TABLE table_16799784_11 (name VARCHAR)
SELECT name AS origin FROM table_16799784_11 WHERE name = "Nike Fossae"
### Context: CREATE TABLE table_16799784_11 (name VARCHAR) ### Question: What is the name origin of Nike Fossae? ### Answer: SELECT name AS origin FROM table_16799784_11 WHERE name = "Nike Fossae"