Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
31,600
<question>: How many runs when bangladesh was the fielding team? <context>: CREATE TABLE table_1670921_2 (runs VARCHAR, fielding_team VARCHAR)
SELECT runs FROM table_1670921_2 WHERE fielding_team = "Bangladesh"
31,601
<question>: What are the wickets when there are 451 runs and india is the fielding team? <context>: 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"
31,602
<question>: What batting partners played in sydney? <context>: CREATE TABLE table_1670921_2 (batting_partners VARCHAR, venue VARCHAR)
SELECT batting_partners FROM table_1670921_2 WHERE venue = "Sydney"
31,603
<question>: What batting partners were the most successful in 2004? <context>: CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR)
SELECT batting_partners FROM table_1670921_2 WHERE season = "2004"
31,604
<question>: Name the falcons points for record of 3-2 <context>: CREATE TABLE table_16710829_2 (falcons_points VARCHAR, record VARCHAR)
SELECT falcons_points FROM table_16710829_2 WHERE record = "3-2"
31,605
<question>: Name the date for game 9 <context>: CREATE TABLE table_16710829_2 (date VARCHAR, game VARCHAR)
SELECT date FROM table_16710829_2 WHERE game = 9
31,606
<question>: Name the max game for attendance being 54774 <context>: CREATE TABLE table_16710829_2 (game INTEGER, attendance VARCHAR)
SELECT MAX(game) FROM table_16710829_2 WHERE attendance = 54774
31,607
<question>: Name the total number of results for new orleans saints <context>: CREATE TABLE table_16710829_2 (result VARCHAR, opponent VARCHAR)
SELECT COUNT(result) FROM table_16710829_2 WHERE opponent = "New Orleans Saints"
31,608
<question>: What is the total number of opponents for the game recorded as 1-3? <context>: CREATE TABLE table_16710971_2 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_16710971_2 WHERE record = "1-3"
31,609
<question>: What was the result of the 1978 Atlanta Falcons season when the record was 1-2? <context>: CREATE TABLE table_16710971_2 (result VARCHAR, record VARCHAR)
SELECT result FROM table_16710971_2 WHERE record = "1-2"
31,610
<question>: How many points did the Falcons score when the record was 4-4? <context>: CREATE TABLE table_16710971_2 (falcons_points VARCHAR, record VARCHAR)
SELECT falcons_points FROM table_16710971_2 WHERE record = "4-4"
31,611
<question>: How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season? <context>: CREATE TABLE table_16710971_2 (opponents VARCHAR, record VARCHAR)
SELECT COUNT(opponents) FROM table_16710971_2 WHERE record = "6-4"
31,612
<question>: In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored? <context>: CREATE TABLE table_16710971_2 (falcons_points INTEGER, opponent VARCHAR)
SELECT MIN(falcons_points) FROM table_16710971_2 WHERE opponent = "San Francisco 49ers"
31,613
<question>: How many points did kiefer-bos-castrol honda have? <context>: CREATE TABLE table_16710541_2 (pts VARCHAR, team VARCHAR)
SELECT pts FROM table_16710541_2 WHERE team = "Kiefer-Bos-Castrol Honda"
31,614
<question>: What result did the ktm motorcycle achieve? <context>: CREATE TABLE table_16710541_2 (position VARCHAR, motorcycle VARCHAR)
SELECT position FROM table_16710541_2 WHERE motorcycle = "KTM"
31,615
<question>: What is the lowest number of poles? <context>: CREATE TABLE table_16710541_2 (poles INTEGER)
SELECT MIN(poles) FROM table_16710541_2
31,616
<question>: Name the least top 5 <context>: CREATE TABLE table_1671401_1 (top_5 INTEGER)
SELECT MIN(top_5) FROM table_1671401_1
31,617
<question>: name the top 5 where the winnings is $52,595 <context>: CREATE TABLE table_1671401_3 (top_5 VARCHAR, winnings VARCHAR)
SELECT top_5 FROM table_1671401_3 WHERE winnings = "$52,595"
31,618
<question>: name the total number of top 10 also where the position is 51st <context>: CREATE TABLE table_1671401_3 (top_10 VARCHAR, position VARCHAR)
SELECT COUNT(top_10) FROM table_1671401_3 WHERE position = "51st"
31,619
<question>: name all the winnings that the start appears to be 7 <context>: CREATE TABLE table_1671401_3 (winnings VARCHAR, starts VARCHAR)
SELECT winnings FROM table_1671401_3 WHERE starts = 7
31,620
<question>: Name the total number of winnings for 1995 <context>: CREATE TABLE table_1671401_2 (winnings VARCHAR, year VARCHAR)
SELECT COUNT(winnings) FROM table_1671401_2 WHERE year = 1995
31,621
<question>: Name the max top 5 for 5.0 avg finish <context>: CREATE TABLE table_1671401_2 (top_5 INTEGER, avg_finish VARCHAR)
SELECT MAX(top_5) FROM table_1671401_2 WHERE avg_finish = "5.0"
31,622
<question>: Name the poles for avg finish is 26.8 <context>: CREATE TABLE table_1671401_2 (poles VARCHAR, avg_finish VARCHAR)
SELECT poles FROM table_1671401_2 WHERE avg_finish = "26.8"
31,623
<question>: Name the total number of teams for top 10 being 5 <context>: CREATE TABLE table_1671401_2 (team_s_ VARCHAR, top_10 VARCHAR)
SELECT COUNT(team_s_) FROM table_1671401_2 WHERE top_10 = 5
31,624
<question>: How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones? <context>: 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"
31,625
<question>: What were the results for mens 40 when the mens u20 was Southern Suns def Gold Coast Sharks? <context>: 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"
31,626
<question>: What were the results of the mens open when the womens 40 was Sydney Scorpions defeated Hunter Hornets? <context>: 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"
31,627
<question>: What were the results of the womens u20 when the mens 45 was Sunwest Razorbacks def Northern Eagles? <context>: 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"
31,628
<question>: What was the mens 45 when mens 40 was Sunwest Razorbacks def Sydney Mets? <context>: 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"
31,629
<question>: What was the mens open when the mens u20 was Qld Country Rustlers def Southern Suns? <context>: 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"
31,630
<question>: What date was the opponent the Los Angeles Raiders? <context>: CREATE TABLE table_16729063_2 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_16729063_2 WHERE opponent = "Los Angeles Raiders"
31,631
<question>: How many games were played at Cleveland Stadium? <context>: CREATE TABLE table_16729063_2 (date VARCHAR, game_site VARCHAR)
SELECT COUNT(date) FROM table_16729063_2 WHERE game_site = "Cleveland Stadium"
31,632
<question>: In what week number was the attendance 74716? <context>: CREATE TABLE table_16729063_2 (week VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_16729063_2 WHERE attendance = 74716
31,633
<question>: What is the region where Iquitos is located? <context>: CREATE TABLE table_1672804_2 (region VARCHAR, name_of_city VARCHAR)
SELECT region FROM table_1672804_2 WHERE name_of_city = "Iquitos"
31,634
<question>: What is the region containing the Constitutional Province of Callao? <context>: CREATE TABLE table_1672804_2 (region VARCHAR, province VARCHAR)
SELECT region FROM table_1672804_2 WHERE province = "Constitutional province of Callao"
31,635
<question>: How did the game end against the New Orleans Saints? <context>: CREATE TABLE table_16729071_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_16729071_1 WHERE opponent = "New Orleans Saints"
31,636
<question>: How many weeks had an attendance of 60038? <context>: CREATE TABLE table_16729071_1 (week VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_16729071_1 WHERE attendance = 60038
31,637
<question>: Name the least points for daniël willemsen / kenny van gaalen <context>: 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"
31,638
<question>: Name the driver passenger for position 4 <context>: CREATE TABLE table_16729457_17 (driver___passenger VARCHAR, position VARCHAR)
SELECT driver___passenger FROM table_16729457_17 WHERE position = 4
31,639
<question>: Name the driver/passenger for position 8 <context>: CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)
SELECT driver___passenger FROM table_16729457_16 WHERE position = 8
31,640
<question>: Name the driver/passenger for 6 position <context>: CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR)
SELECT driver___passenger FROM table_16729457_16 WHERE position = 6
31,641
<question>: Who was the winner when the total attendance was 16597? <context>: CREATE TABLE table_1672976_5 (winner VARCHAR, attendance VARCHAR)
SELECT winner FROM table_1672976_5 WHERE attendance = 16597
31,642
<question>: What is the socket for microprocessors with a frequency of 1.3 ghz? <context>: CREATE TABLE table_16729930_18 (socket VARCHAR, frequency VARCHAR)
SELECT socket FROM table_16729930_18 WHERE frequency = "1.3 GHz"
31,643
<question>: For a release price of $72, what is the TDP of the microprocessor? <context>: CREATE TABLE table_16729930_18 (tdp VARCHAR, release_price___usd__ VARCHAR)
SELECT tdp FROM table_16729930_18 WHERE release_price___usd__ = "$72"
31,644
<question>: For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU frequencies? <context>: 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"
31,645
<question>: For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number? <context>: 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"
31,646
<question>: What is the release price for a processor with part number cy80632007227ab? <context>: 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"
31,647
<question>: Name the fsb for atom z540 <context>: CREATE TABLE table_16729930_11 (fsb VARCHAR, model_number VARCHAR)
SELECT fsb FROM table_16729930_11 WHERE model_number = "Atom Z540"
31,648
<question>: Name the frequency for part number of ac80566ue041dw <context>: CREATE TABLE table_16729930_11 (frequency VARCHAR, part_number_s_ VARCHAR)
SELECT frequency FROM table_16729930_11 WHERE part_number_s_ = "AC80566UE041DW"
31,649
<question>: Name the memory for part number of ct80618003201aa <context>: CREATE TABLE table_16729930_17 (memory VARCHAR, part_number_s_ VARCHAR)
SELECT memory FROM table_16729930_17 WHERE part_number_s_ = "CT80618003201AA"
31,650
<question>: Name the memory for meodel number for atom e640t <context>: CREATE TABLE table_16729930_17 (memory VARCHAR, model_number VARCHAR)
SELECT memory FROM table_16729930_17 WHERE model_number = "Atom E640T"
31,651
<question>: Name the memory for frequency of 1.6 ghz <context>: CREATE TABLE table_16729930_17 (memory VARCHAR, frequency VARCHAR)
SELECT memory FROM table_16729930_17 WHERE frequency = "1.6 GHz"
31,652
<question>: Who won the game where the Challenge Leader is ACC (2-1)? <context>: CREATE TABLE table_1672976_6 (winner VARCHAR, challenge_leader VARCHAR)
SELECT winner FROM table_1672976_6 WHERE challenge_leader = "ACC (2-1)"
31,653
<question>: What station aired a game at 9:00pm? <context>: CREATE TABLE table_1672976_6 (television VARCHAR, time VARCHAR)
SELECT television FROM table_1672976_6 WHERE time = "9:00PM"
31,654
<question>: ON JUNE 11, WHAT WAS THE NUMBER OF RNDS ? <context>: CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)
SELECT MIN(rnd) FROM table_16732659_2 WHERE date = "June 11"
31,655
<question>: FOR AUGUST 13 WHAT IS THE RND ? <context>: CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR)
SELECT MAX(rnd) FROM table_16732659_2 WHERE date = "August 13"
31,656
<question>: PLEASE LIST ALL RACES WHERE THE RND IS 13. <context>: CREATE TABLE table_16732659_2 (race_name VARCHAR, rnd VARCHAR)
SELECT race_name FROM table_16732659_2 WHERE rnd = 13
31,657
<question>: How many figures are there for Rank 07-11 when the world ranking is 4? <context>: 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"
31,658
<question>: How many figures are given for pubs 2011 in Chennai? <context>: CREATE TABLE table_167354_2 (pubs_2011 VARCHAR, location VARCHAR)
SELECT COUNT(pubs_2011) FROM table_167354_2 WHERE location = "Chennai"
31,659
<question>: Name the number location of georgia perimeter college <context>: CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
SELECT COUNT(location) FROM table_16734640_1 WHERE institution = "Georgia Perimeter College"
31,660
<question>: Name the location for chattahoochee technical college <context>: CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_16734640_1 WHERE institution = "Chattahoochee Technical College"
31,661
<question>: Name the location for abraham baldwin agricultural college <context>: CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_16734640_1 WHERE institution = "Abraham Baldwin Agricultural College"
31,662
<question>: Name the total number of nicknames for andrew college <context>: CREATE TABLE table_16734640_1 (nickname VARCHAR, institution VARCHAR)
SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = "Andrew College"
31,663
<question>: Name the most enrollment when nickname is hawks <context>: CREATE TABLE table_16734640_1 (enrollment INTEGER, nickname VARCHAR)
SELECT MAX(enrollment) FROM table_16734640_1 WHERE nickname = "Hawks"
31,664
<question>: WHAT WAS THE SURFACE MADE OF WHEN THE OPPONENT WAS GEORGE KHRIKADZE? <context>: CREATE TABLE table_16741821_8 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_16741821_8 WHERE opponent = "George Khrikadze"
31,665
<question>: WHAT WERE ALL OF THE RESULTS WHEN THEY PLAYED AGAINST LITHUANIA AND THE SURFACE WAS MADE OF CLAY? <context>: CREATE TABLE table_16741821_8 (result VARCHAR, surface VARCHAR, against VARCHAR)
SELECT result FROM table_16741821_8 WHERE surface = "Clay" AND against = "Lithuania"
31,666
<question>: Name the republican steve sauerberg where dates administered september 15-september 18, 2008 <context>: 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"
31,667
<question>: Name the republican steve sauerberg for august 12, 2008 <context>: 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"
31,668
<question>: Name the poll source for july 12, 2008 <context>: CREATE TABLE table_16751596_2 (poll_source VARCHAR, dates_administered VARCHAR)
SELECT poll_source FROM table_16751596_2 WHERE dates_administered = "July 12, 2008"
31,669
<question>: When the lead margin was 35, what were the Democrat: Vivian Davis Figures? <context>: CREATE TABLE table_16751596_12 (democrat VARCHAR, lead_margin VARCHAR)
SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE lead_margin = 35
31,670
<question>: On June 30, 2008 who what was the Republican: Jeff Sessions percentage? <context>: 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"
31,671
<question>: On November 14, 2007, how many different Republican: Jeff Sessions are there? <context>: 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"
31,672
<question>: On November 14, 2007, what are the Democrat: Vivian Davis Figures percentages? <context>: 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"
31,673
<question>: On July 31, 2008, what are the Democrat: Vivian Davis Figures percentages? <context>: 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"
31,674
<question>: What was Mark Begich polling on October 6, 2008? <context>: 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"
31,675
<question>: When the poll source is research 2000/daily kos, what is the total number of dates administered? <context>: 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"
31,676
<question>: On July 17, 2008, what was the total number of lead maragin? <context>: 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"
31,677
<question>: What clubs had 608 points against? <context>: CREATE TABLE table_1676073_12 (club VARCHAR, points_against VARCHAR)
SELECT club FROM table_1676073_12 WHERE points_against = "608"
31,678
<question>: How many games played for the team with 48 points? <context>: CREATE TABLE table_1676073_12 (played VARCHAR, points VARCHAR)
SELECT played FROM table_1676073_12 WHERE points = "48"
31,679
<question>: How many games played for the team with 686 points against? <context>: CREATE TABLE table_1676073_12 (played VARCHAR, points_against VARCHAR)
SELECT played FROM table_1676073_12 WHERE points_against = "686"
31,680
<question>: What clubs recorded 748 points to the good? <context>: CREATE TABLE table_1676073_12 (club VARCHAR, points_for VARCHAR)
SELECT club FROM table_1676073_12 WHERE points_for = "748"
31,681
<question>: How many teams had 632 points against? <context>: CREATE TABLE table_1676073_12 (points_for VARCHAR, points_against VARCHAR)
SELECT COUNT(points_for) FROM table_1676073_12 WHERE points_against = "632"
31,682
<question>: How many games drawn for the team that lost 11 and had 748 points? <context>: 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"
31,683
<question>: How many times did Public Policy Polling under Republican: Jack Hoogendyk? <context>: 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"
31,684
<question>: What poll source had an administered date on July 10, 2008? <context>: CREATE TABLE table_16751596_6 (poll_source VARCHAR, dates_administered VARCHAR)
SELECT poll_source FROM table_16751596_6 WHERE dates_administered = "July 10, 2008"
31,685
<question>: What is the latitude when the diameter is 184.0? <context>: CREATE TABLE table_16768245_2 (latitude VARCHAR, diameter VARCHAR)
SELECT latitude FROM table_16768245_2 WHERE diameter = "184.0"
31,686
<question>: How many longitudes have a diameter of 224.0? <context>: CREATE TABLE table_16768245_2 (longitude VARCHAR, diameter VARCHAR)
SELECT COUNT(longitude) FROM table_16768245_2 WHERE diameter = "224.0"
31,687
<question>: What is the namesake of the feature found at 189.5w longitude? <context>: CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)
SELECT namesake FROM table_16768245_2 WHERE longitude = "189.5W"
31,688
<question>: When the longitude is 147.1w what is the namesake of the feature? <context>: CREATE TABLE table_16768245_2 (namesake VARCHAR, longitude VARCHAR)
SELECT namesake FROM table_16768245_2 WHERE longitude = "147.1W"
31,689
<question>: How many longitudes have a latitude of 9.9n? <context>: CREATE TABLE table_16768245_2 (longitude VARCHAR, latitude VARCHAR)
SELECT COUNT(longitude) FROM table_16768245_2 WHERE latitude = "9.9N"
31,690
<question>: What is the maximum points against when team's points are 10? <context>: CREATE TABLE table_16770037_3 (points INTEGER, pts VARCHAR)
SELECT MAX(points) AS against FROM table_16770037_3 WHERE pts = 10
31,691
<question>: What are the tries against when they played against Bridgend? <context>: CREATE TABLE table_16770037_3 (tries_against INTEGER, team VARCHAR, Bridgend VARCHAR)
SELECT MAX(tries_against) FROM table_16770037_3 WHERE team = Bridgend
31,692
<question>: What is the smallest number of tries for in a game? <context>: CREATE TABLE table_16770037_3 (tries_for INTEGER)
SELECT MIN(tries_for) FROM table_16770037_3
31,693
<question>: Philae Sulcus has a latitude of what? <context>: CREATE TABLE table_16768245_5 (latitude VARCHAR, name VARCHAR)
SELECT latitude FROM table_16768245_5 WHERE name = "Philae Sulcus"
31,694
<question>: Name the opponent for 12 may 2008 <context>: CREATE TABLE table_16776312_3 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_16776312_3 WHERE date = "12 May 2008"
31,695
<question>: how many points scored by sportivo luqueño <context>: CREATE TABLE table_16788123_5 (points VARCHAR, team VARCHAR)
SELECT COUNT(points) FROM table_16788123_5 WHERE team = "Sportivo Luqueño"
31,696
<question>: For team Atlético Nacional, what were the points? <context>: CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)
SELECT points FROM table_16795394_3 WHERE team__number2 = "Atlético Nacional"
31,697
<question>: If team two is San Lorenzo, how many were on team one? <context>: CREATE TABLE table_16795394_3 (team__number1 VARCHAR, team__number2 VARCHAR)
SELECT COUNT(team__number1) FROM table_16795394_3 WHERE team__number2 = "San Lorenzo"
31,698
<question>: If team two is Lanús, what was the total number of points? <context>: CREATE TABLE table_16795394_3 (points VARCHAR, team__number2 VARCHAR)
SELECT COUNT(points) FROM table_16795394_3 WHERE team__number2 = "Lanús"
31,699
<question>: What is the name origin of Nike Fossae? <context>: CREATE TABLE table_16799784_11 (name VARCHAR)
SELECT name AS origin FROM table_16799784_11 WHERE name = "Nike Fossae"