question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
How many runs when bangladesh was the fielding team? | CREATE TABLE table_1670921_2 (runs VARCHAR, fielding_team VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT position FROM table_16710541_2 WHERE motorcycle = \"KTM\""
} |
What is the lowest number of poles? | CREATE TABLE table_16710541_2 (poles INTEGER) | {
"SQL_Query": "SELECT MIN(poles) FROM table_16710541_2"
} |
Name the least top 5 | CREATE TABLE table_1671401_1 (top_5 INTEGER) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT COUNT(mens_u20) FROM table_16724844_1 WHERE womens_40 = \"Sydney Scorpions def North Queensland Cyclones\""
} |
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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT gpu_frequency FROM table_16729930_18 WHERE tdp = \"3.6 W\" AND part_number_s_ = \"CY80632007221AB\""
} |
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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT republican AS :_steve_sauerberg FROM table_16751596_2 WHERE dates_administered = \"September 15-September 18, 2008\""
} |
Name the republican steve sauerberg for august 12, 2008 | CREATE TABLE table_16751596_2 (republican VARCHAR, dates_administered VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT MIN(tries_for) FROM table_16770037_3"
} |
Philae Sulcus has a latitude of what? | CREATE TABLE table_16768245_5 (latitude VARCHAR, name VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT name AS origin FROM table_16799784_11 WHERE name = \"Nike Fossae\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.