question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which name is at latitude 10.0s? | CREATE TABLE table_16799784_11 (name VARCHAR, latitude VARCHAR) | SELECT name FROM table_16799784_11 WHERE latitude = "10.0S" | ### Context: CREATE TABLE table_16799784_11 (name VARCHAR, latitude VARCHAR) ### Question: Which name is at latitude 10.0s? ### Answer: SELECT name FROM table_16799784_11 WHERE latitude = "10.0S" |
At what latitude can the name origin of yuzut-arkh fossae be found? | CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR) | SELECT latitude FROM table_16799784_11 WHERE name = "Yuzut-Arkh Fossae" | ### Context: CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR) ### Question: At what latitude can the name origin of yuzut-arkh fossae be found? ### Answer: SELECT latitude FROM table_16799784_11 WHERE name = "Yuzut-Arkh Fossae" |
At what latitude can the name origin of naijok fossae be found? | CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR) | SELECT latitude FROM table_16799784_11 WHERE name = "Naijok Fossae" | ### Context: CREATE TABLE table_16799784_11 (latitude VARCHAR, name VARCHAR) ### Question: At what latitude can the name origin of naijok fossae be found? ### Answer: SELECT latitude FROM table_16799784_11 WHERE name = "Naijok Fossae" |
At what latitude can you find the diameter (km) of 500.0? | CREATE TABLE table_16799784_11 (latitude VARCHAR, diameter__km_ VARCHAR) | SELECT latitude FROM table_16799784_11 WHERE diameter__km_ = "500.0" | ### Context: CREATE TABLE table_16799784_11 (latitude VARCHAR, diameter__km_ VARCHAR) ### Question: At what latitude can you find the diameter (km) of 500.0? ### Answer: SELECT latitude FROM table_16799784_11 WHERE diameter__km_ = "500.0" |
How many numbers are listed under diameter with a lattitude of 5.0n? | CREATE TABLE table_16799784_14 (diameter__km_ VARCHAR, latitude VARCHAR) | SELECT COUNT(diameter__km_) FROM table_16799784_14 WHERE latitude = "5.0N" | ### Context: CREATE TABLE table_16799784_14 (diameter__km_ VARCHAR, latitude VARCHAR) ### Question: How many numbers are listed under diameter with a lattitude of 5.0n? ### Answer: SELECT COUNT(diameter__km_) FROM table_16799784_14 WHERE latitude = "5.0N" |
What is the name origin with a diameter of 220.0 kilometers? | CREATE TABLE table_16799784_14 (name VARCHAR, diameter__km_ VARCHAR) | SELECT name AS origin FROM table_16799784_14 WHERE diameter__km_ = "220.0" | ### Context: CREATE TABLE table_16799784_14 (name VARCHAR, diameter__km_ VARCHAR) ### Question: What is the name origin with a diameter of 220.0 kilometers? ### Answer: SELECT name AS origin FROM table_16799784_14 WHERE diameter__km_ = "220.0" |
What is the name of feature with a longitude 246.0e? | CREATE TABLE table_16799784_14 (name VARCHAR, longitude VARCHAR) | SELECT name FROM table_16799784_14 WHERE longitude = "246.0E" | ### Context: CREATE TABLE table_16799784_14 (name VARCHAR, longitude VARCHAR) ### Question: What is the name of feature with a longitude 246.0e? ### Answer: SELECT name FROM table_16799784_14 WHERE longitude = "246.0E" |
What is every name origin with the name Ovda Fluctus? | CREATE TABLE table_16799784_12 (name VARCHAR) | SELECT name AS origin FROM table_16799784_12 WHERE name = "Ovda Fluctus" | ### Context: CREATE TABLE table_16799784_12 (name VARCHAR) ### Question: What is every name origin with the name Ovda Fluctus? ### Answer: SELECT name AS origin FROM table_16799784_12 WHERE name = "Ovda Fluctus" |
What is the highest year named for the name Tie Fluctus? | CREATE TABLE table_16799784_12 (year_named INTEGER, name VARCHAR) | SELECT MAX(year_named) FROM table_16799784_12 WHERE name = "Tie Fluctus" | ### Context: CREATE TABLE table_16799784_12 (year_named INTEGER, name VARCHAR) ### Question: What is the highest year named for the name Tie Fluctus? ### Answer: SELECT MAX(year_named) FROM table_16799784_12 WHERE name = "Tie Fluctus" |
What is every year named for the latitude of 66.5N? | CREATE TABLE table_16799784_12 (year_named VARCHAR, latitude VARCHAR) | SELECT year_named FROM table_16799784_12 WHERE latitude = "66.5N" | ### Context: CREATE TABLE table_16799784_12 (year_named VARCHAR, latitude VARCHAR) ### Question: What is every year named for the latitude of 66.5N? ### Answer: SELECT year_named FROM table_16799784_12 WHERE latitude = "66.5N" |
What is every name for longitude of 152.0E? | CREATE TABLE table_16799784_12 (name VARCHAR, longitude VARCHAR) | SELECT name FROM table_16799784_12 WHERE longitude = "152.0E" | ### Context: CREATE TABLE table_16799784_12 (name VARCHAR, longitude VARCHAR) ### Question: What is every name for longitude of 152.0E? ### Answer: SELECT name FROM table_16799784_12 WHERE longitude = "152.0E" |
What is the diameter of the feature with longitude 8.0e? | CREATE TABLE table_16799784_13 (diameter__km_ VARCHAR, longitude VARCHAR) | SELECT diameter__km_ FROM table_16799784_13 WHERE longitude = "8.0E" | ### Context: CREATE TABLE table_16799784_13 (diameter__km_ VARCHAR, longitude VARCHAR) ### Question: What is the diameter of the feature with longitude 8.0e? ### Answer: SELECT diameter__km_ FROM table_16799784_13 WHERE longitude = "8.0E" |
What feature is at latitude 23.9S? | CREATE TABLE table_16799784_13 (name VARCHAR, latitude VARCHAR) | SELECT name FROM table_16799784_13 WHERE latitude = "23.9S" | ### Context: CREATE TABLE table_16799784_13 (name VARCHAR, latitude VARCHAR) ### Question: What feature is at latitude 23.9S? ### Answer: SELECT name FROM table_16799784_13 WHERE latitude = "23.9S" |
When was the most recently named feature named? | CREATE TABLE table_16799784_13 (year_named INTEGER) | SELECT MAX(year_named) FROM table_16799784_13 | ### Context: CREATE TABLE table_16799784_13 (year_named INTEGER) ### Question: When was the most recently named feature named? ### Answer: SELECT MAX(year_named) FROM table_16799784_13 |
Name the name of 36.0n | CREATE TABLE table_16799784_2 (name VARCHAR, latitude VARCHAR) | SELECT name FROM table_16799784_2 WHERE latitude = "36.0N" | ### Context: CREATE TABLE table_16799784_2 (name VARCHAR, latitude VARCHAR) ### Question: Name the name of 36.0n ### Answer: SELECT name FROM table_16799784_2 WHERE latitude = "36.0N" |
Name the latitude of laima tessera | CREATE TABLE table_16799784_2 (latitude VARCHAR, name VARCHAR) | SELECT latitude FROM table_16799784_2 WHERE name = "Laima Tessera" | ### Context: CREATE TABLE table_16799784_2 (latitude VARCHAR, name VARCHAR) ### Question: Name the latitude of laima tessera ### Answer: SELECT latitude FROM table_16799784_2 WHERE name = "Laima Tessera" |
Name the name origin for 54.0e | CREATE TABLE table_16799784_2 (name VARCHAR, longitude VARCHAR) | SELECT name AS origin FROM table_16799784_2 WHERE longitude = "54.0E" | ### Context: CREATE TABLE table_16799784_2 (name VARCHAR, longitude VARCHAR) ### Question: Name the name origin for 54.0e ### Answer: SELECT name AS origin FROM table_16799784_2 WHERE longitude = "54.0E" |
Grechukha Tholi has what longitude? | CREATE TABLE table_16799784_4 (longitude VARCHAR, name VARCHAR) | SELECT longitude FROM table_16799784_4 WHERE name = "Grechukha Tholi" | ### Context: CREATE TABLE table_16799784_4 (longitude VARCHAR, name VARCHAR) ### Question: Grechukha Tholi has what longitude? ### Answer: SELECT longitude FROM table_16799784_4 WHERE name = "Grechukha Tholi" |
Where is longitude 202.9e? | CREATE TABLE table_16799784_4 (name VARCHAR, longitude VARCHAR) | SELECT name FROM table_16799784_4 WHERE longitude = "202.9E" | ### Context: CREATE TABLE table_16799784_4 (name VARCHAR, longitude VARCHAR) ### Question: Where is longitude 202.9e? ### Answer: SELECT name FROM table_16799784_4 WHERE longitude = "202.9E" |
How many schools are named otafuku tholi? | CREATE TABLE table_16799784_4 (year_named VARCHAR, name VARCHAR) | SELECT COUNT(year_named) FROM table_16799784_4 WHERE name = "Otafuku Tholi" | ### Context: CREATE TABLE table_16799784_4 (year_named VARCHAR, name VARCHAR) ### Question: How many schools are named otafuku tholi? ### Answer: SELECT COUNT(year_named) FROM table_16799784_4 WHERE name = "Otafuku Tholi" |
What year was Norterma Tholus created? | CREATE TABLE table_16799784_4 (year_named INTEGER, name VARCHAR) | SELECT MAX(year_named) FROM table_16799784_4 WHERE name = "Norterma Tholus" | ### Context: CREATE TABLE table_16799784_4 (year_named INTEGER, name VARCHAR) ### Question: What year was Norterma Tholus created? ### Answer: SELECT MAX(year_named) FROM table_16799784_4 WHERE name = "Norterma Tholus" |
What was Great Britain's Round 1 score? | CREATE TABLE table_16815824_1 (round1 VARCHAR, team VARCHAR) | SELECT round1 FROM table_16815824_1 WHERE team = "Great Britain" | ### Context: CREATE TABLE table_16815824_1 (round1 VARCHAR, team VARCHAR) ### Question: What was Great Britain's Round 1 score? ### Answer: SELECT round1 FROM table_16815824_1 WHERE team = "Great Britain" |
What was team Toshiba's round 4 score? | CREATE TABLE table_16815824_1 (round4 INTEGER, team VARCHAR) | SELECT MIN(round4) FROM table_16815824_1 WHERE team = "team Toshiba" | ### Context: CREATE TABLE table_16815824_1 (round4 INTEGER, team VARCHAR) ### Question: What was team Toshiba's round 4 score? ### Answer: SELECT MIN(round4) FROM table_16815824_1 WHERE team = "team Toshiba" |
What was the highest score for round 2? | CREATE TABLE table_16815824_1 (round2 INTEGER) | SELECT MAX(round2) FROM table_16815824_1 | ### Context: CREATE TABLE table_16815824_1 (round2 INTEGER) ### Question: What was the highest score for round 2? ### Answer: SELECT MAX(round2) FROM table_16815824_1 |
What was the round 5 score if the team's total points where 212? | CREATE TABLE table_16815824_1 (round5 VARCHAR, total_points VARCHAR) | SELECT round5 FROM table_16815824_1 WHERE total_points = 212 | ### Context: CREATE TABLE table_16815824_1 (round5 VARCHAR, total_points VARCHAR) ### Question: What was the round 5 score if the team's total points where 212? ### Answer: SELECT round5 FROM table_16815824_1 WHERE total_points = 212 |
What is the score for round 2 for team Toshiba? | CREATE TABLE table_16815824_1 (round2 VARCHAR, team VARCHAR) | SELECT COUNT(round2) FROM table_16815824_1 WHERE team = "team Toshiba" | ### Context: CREATE TABLE table_16815824_1 (round2 VARCHAR, team VARCHAR) ### Question: What is the score for round 2 for team Toshiba? ### Answer: SELECT COUNT(round2) FROM table_16815824_1 WHERE team = "team Toshiba" |
At the longitude of 355.0e, what is the name origin? | CREATE TABLE table_16799784_9 (name VARCHAR, longitude VARCHAR) | SELECT name AS origin FROM table_16799784_9 WHERE longitude = "355.0E" | ### Context: CREATE TABLE table_16799784_9 (name VARCHAR, longitude VARCHAR) ### Question: At the longitude of 355.0e, what is the name origin? ### Answer: SELECT name AS origin FROM table_16799784_9 WHERE longitude = "355.0E" |
What is the name origin of Morrigan Linea? | CREATE TABLE table_16799784_9 (name VARCHAR) | SELECT name AS origin FROM table_16799784_9 WHERE name = "Morrigan Linea" | ### Context: CREATE TABLE table_16799784_9 (name VARCHAR) ### Question: What is the name origin of Morrigan Linea? ### Answer: SELECT name AS origin FROM table_16799784_9 WHERE name = "Morrigan Linea" |
How many years have a longitude measure of 20.0e? | CREATE TABLE table_16799784_9 (year_named VARCHAR, longitude VARCHAR) | SELECT COUNT(year_named) FROM table_16799784_9 WHERE longitude = "20.0E" | ### Context: CREATE TABLE table_16799784_9 (year_named VARCHAR, longitude VARCHAR) ### Question: How many years have a longitude measure of 20.0e? ### Answer: SELECT COUNT(year_named) FROM table_16799784_9 WHERE longitude = "20.0E" |
At a longitude of 293.0e, what is the diameter, in km? | CREATE TABLE table_16799784_9 (diameter__km_ VARCHAR, longitude VARCHAR) | SELECT diameter__km_ FROM table_16799784_9 WHERE longitude = "293.0E" | ### Context: CREATE TABLE table_16799784_9 (diameter__km_ VARCHAR, longitude VARCHAR) ### Question: At a longitude of 293.0e, what is the diameter, in km? ### Answer: SELECT diameter__km_ FROM table_16799784_9 WHERE longitude = "293.0E" |
What is the release date of the bonus interview with Peter Purves? | CREATE TABLE table_1681535_1 (release_date VARCHAR, notes VARCHAR) | SELECT release_date FROM table_1681535_1 WHERE notes = "Bonus interview with Peter Purves" | ### Context: CREATE TABLE table_1681535_1 (release_date VARCHAR, notes VARCHAR) ### Question: What is the release date of the bonus interview with Peter Purves? ### Answer: SELECT release_date FROM table_1681535_1 WHERE notes = "Bonus interview with Peter Purves" |
Which narrator has the bonus interview with Frazer Hines? | CREATE TABLE table_1681535_1 (narrator VARCHAR, notes VARCHAR) | SELECT narrator FROM table_1681535_1 WHERE notes = "Bonus interview with Frazer Hines" | ### Context: CREATE TABLE table_1681535_1 (narrator VARCHAR, notes VARCHAR) ### Question: Which narrator has the bonus interview with Frazer Hines? ### Answer: SELECT narrator FROM table_1681535_1 WHERE notes = "Bonus interview with Frazer Hines" |
What is the release date for Destiny of the Daleks? | CREATE TABLE table_1681535_1 (release_date VARCHAR, title VARCHAR) | SELECT release_date FROM table_1681535_1 WHERE title = "Destiny of the Daleks" | ### Context: CREATE TABLE table_1681535_1 (release_date VARCHAR, title VARCHAR) ### Question: What is the release date for Destiny of the Daleks? ### Answer: SELECT release_date FROM table_1681535_1 WHERE title = "Destiny of the Daleks" |
What are the profits of Wells Fargo (in billions)? | CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, company VARCHAR) | SELECT profits__billion_$_ FROM table_1682026_3 WHERE company = "Wells Fargo" | ### Context: CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, company VARCHAR) ### Question: What are the profits of Wells Fargo (in billions)? ### Answer: SELECT profits__billion_$_ FROM table_1682026_3 WHERE company = "Wells Fargo" |
What is the ranking of BNP Paribas? | CREATE TABLE table_1682026_3 (rank INTEGER, company VARCHAR) | SELECT MIN(rank) FROM table_1682026_3 WHERE company = "BNP Paribas" | ### Context: CREATE TABLE table_1682026_3 (rank INTEGER, company VARCHAR) ### Question: What is the ranking of BNP Paribas? ### Answer: SELECT MIN(rank) FROM table_1682026_3 WHERE company = "BNP Paribas" |
Where are the headquarters of the company whose sales were 69.2 billion? | CREATE TABLE table_1682026_3 (headquarters VARCHAR, sales__billion_$_ VARCHAR) | SELECT headquarters FROM table_1682026_3 WHERE sales__billion_$_ = "69.2" | ### Context: CREATE TABLE table_1682026_3 (headquarters VARCHAR, sales__billion_$_ VARCHAR) ### Question: Where are the headquarters of the company whose sales were 69.2 billion? ### Answer: SELECT headquarters FROM table_1682026_3 WHERE sales__billion_$_ = "69.2" |
What are the assets (in billions) of the company headquartered in China and whose profits are 21.2 billion? | CREATE TABLE table_1682026_3 (assets__billion_$_ VARCHAR, headquarters VARCHAR, profits__billion_$_ VARCHAR) | SELECT assets__billion_$_ FROM table_1682026_3 WHERE headquarters = "China" AND profits__billion_$_ = "21.2" | ### Context: CREATE TABLE table_1682026_3 (assets__billion_$_ VARCHAR, headquarters VARCHAR, profits__billion_$_ VARCHAR) ### Question: What are the assets (in billions) of the company headquartered in China and whose profits are 21.2 billion? ### Answer: SELECT assets__billion_$_ FROM table_1682026_3 WHERE headquarter... |
What are the profits (in billions) of the company with a market value of 172.9 billion? | CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR) | SELECT profits__billion_$_ FROM table_1682026_3 WHERE market_value__billion_$_ = "172.9" | ### Context: CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR) ### Question: What are the profits (in billions) of the company with a market value of 172.9 billion? ### Answer: SELECT profits__billion_$_ FROM table_1682026_3 WHERE market_value__billion_$_ = "172.9" |
What are the profits (in billions) where the assets are 192.8 billion? | CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR) | SELECT profits__billion_$_ FROM table_1682026_3 WHERE assets__billion_$_ = "192.8" | ### Context: CREATE TABLE table_1682026_3 (profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR) ### Question: What are the profits (in billions) where the assets are 192.8 billion? ### Answer: SELECT profits__billion_$_ FROM table_1682026_3 WHERE assets__billion_$_ = "192.8" |
Name the total number of index weighting % at 17 january 2013 for bouygues | CREATE TABLE table_168274_1 (index_weighting___percentage__at_17_january_2013 VARCHAR, company VARCHAR) | SELECT COUNT(index_weighting___percentage__at_17_january_2013) FROM table_168274_1 WHERE company = "Bouygues" | ### Context: CREATE TABLE table_168274_1 (index_weighting___percentage__at_17_january_2013 VARCHAR, company VARCHAR) ### Question: Name the total number of index weighting % at 17 january 2013 for bouygues ### Answer: SELECT COUNT(index_weighting___percentage__at_17_january_2013) FROM table_168274_1 WHERE company = "Bo... |
Name the icb sector for ai | CREATE TABLE table_168274_1 (icb_sector VARCHAR, ticker_symbol VARCHAR) | SELECT icb_sector FROM table_168274_1 WHERE ticker_symbol = "AI" | ### Context: CREATE TABLE table_168274_1 (icb_sector VARCHAR, ticker_symbol VARCHAR) ### Question: Name the icb sector for ai ### Answer: SELECT icb_sector FROM table_168274_1 WHERE ticker_symbol = "AI" |
Name the company where index weighting % is 11.96 | CREATE TABLE table_168274_1 (company VARCHAR, index_weighting___percentage__at_17_january_2013 VARCHAR) | SELECT company FROM table_168274_1 WHERE index_weighting___percentage__at_17_january_2013 = "11.96" | ### Context: CREATE TABLE table_168274_1 (company VARCHAR, index_weighting___percentage__at_17_january_2013 VARCHAR) ### Question: Name the company where index weighting % is 11.96 ### Answer: SELECT company FROM table_168274_1 WHERE index_weighting___percentage__at_17_january_2013 = "11.96" |
Name the index weighting % for 17 januaary 2013 for rno | CREATE TABLE table_168274_1 (index_weighting___percentage__at_17_january_2013 VARCHAR, ticker_symbol VARCHAR) | SELECT index_weighting___percentage__at_17_january_2013 FROM table_168274_1 WHERE ticker_symbol = "RNO" | ### Context: CREATE TABLE table_168274_1 (index_weighting___percentage__at_17_january_2013 VARCHAR, ticker_symbol VARCHAR) ### Question: Name the index weighting % for 17 januaary 2013 for rno ### Answer: SELECT index_weighting___percentage__at_17_january_2013 FROM table_168274_1 WHERE ticker_symbol = "RNO" |
How many headquarters are there listed for HSBC? | CREATE TABLE table_1682026_7 (headquarters VARCHAR, company VARCHAR) | SELECT COUNT(headquarters) FROM table_1682026_7 WHERE company = "HSBC" | ### Context: CREATE TABLE table_1682026_7 (headquarters VARCHAR, company VARCHAR) ### Question: How many headquarters are there listed for HSBC? ### Answer: SELECT COUNT(headquarters) FROM table_1682026_7 WHERE company = "HSBC" |
What is the market value in billions when the assets totaled 1,380.88? | CREATE TABLE table_1682026_7 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR) | SELECT market_value__billion_$_ FROM table_1682026_7 WHERE assets__billion_$_ = "1,380.88" | ### Context: CREATE TABLE table_1682026_7 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR) ### Question: What is the market value in billions when the assets totaled 1,380.88? ### Answer: SELECT market_value__billion_$_ FROM table_1682026_7 WHERE assets__billion_$_ = "1,380.88" |
What is the highest rank of a company in the oil and gas industry headquartered in Netherlands? | CREATE TABLE table_1682026_7 (rank INTEGER, industry VARCHAR, headquarters VARCHAR) | SELECT MAX(rank) FROM table_1682026_7 WHERE industry = "Oil and gas" AND headquarters = "Netherlands" | ### Context: CREATE TABLE table_1682026_7 (rank INTEGER, industry VARCHAR, headquarters VARCHAR) ### Question: What is the highest rank of a company in the oil and gas industry headquartered in Netherlands? ### Answer: SELECT MAX(rank) FROM table_1682026_7 WHERE industry = "Oil and gas" AND headquarters = "Netherlands" |
What is the lowest rank of a company with 248.44 billions of dollars in assets? | CREATE TABLE table_1682026_7 (rank INTEGER, assets__billion_$_ VARCHAR) | SELECT MIN(rank) FROM table_1682026_7 WHERE assets__billion_$_ = "248.44" | ### Context: CREATE TABLE table_1682026_7 (rank INTEGER, assets__billion_$_ VARCHAR) ### Question: What is the lowest rank of a company with 248.44 billions of dollars in assets? ### Answer: SELECT MIN(rank) FROM table_1682026_7 WHERE assets__billion_$_ = "248.44" |
In what industry was the company that had 89.16 billions of dollars in sales? | CREATE TABLE table_1682026_7 (industry VARCHAR, sales__billion_$_ VARCHAR) | SELECT industry FROM table_1682026_7 WHERE sales__billion_$_ = "89.16" | ### Context: CREATE TABLE table_1682026_7 (industry VARCHAR, sales__billion_$_ VARCHAR) ### Question: In what industry was the company that had 89.16 billions of dollars in sales? ### Answer: SELECT industry FROM table_1682026_7 WHERE sales__billion_$_ = "89.16" |
Name the number of rank for 9.52 profits | CREATE TABLE table_1682026_9 (rank VARCHAR, profits__billion_$_ VARCHAR) | SELECT COUNT(rank) FROM table_1682026_9 WHERE profits__billion_$_ = "9.52" | ### Context: CREATE TABLE table_1682026_9 (rank VARCHAR, profits__billion_$_ VARCHAR) ### Question: Name the number of rank for 9.52 profits ### Answer: SELECT COUNT(rank) FROM table_1682026_9 WHERE profits__billion_$_ = "9.52" |
Name the country for 188.77 market value | CREATE TABLE table_1682026_9 (country VARCHAR, market_value__billion_$_ VARCHAR) | SELECT country FROM table_1682026_9 WHERE market_value__billion_$_ = "188.77" | ### Context: CREATE TABLE table_1682026_9 (country VARCHAR, market_value__billion_$_ VARCHAR) ### Question: Name the country for 188.77 market value ### Answer: SELECT country FROM table_1682026_9 WHERE market_value__billion_$_ = "188.77" |
What is the numeral where the English name is Florin? | CREATE TABLE table_1682865_1 (numeral VARCHAR, english_name VARCHAR) | SELECT numeral FROM table_1682865_1 WHERE english_name = "Florin" | ### Context: CREATE TABLE table_1682865_1 (numeral VARCHAR, english_name VARCHAR) ### Question: What is the numeral where the English name is Florin? ### Answer: SELECT numeral FROM table_1682865_1 WHERE english_name = "Florin" |
What is the £1 fraction when the reverse is hare? | CREATE TABLE table_1682865_1 (£1_fraction VARCHAR, reverse VARCHAR) | SELECT £1_fraction FROM table_1682865_1 WHERE reverse = "Hare" | ### Context: CREATE TABLE table_1682865_1 (£1_fraction VARCHAR, reverse VARCHAR) ### Question: What is the £1 fraction when the reverse is hare? ### Answer: SELECT £1_fraction FROM table_1682865_1 WHERE reverse = "Hare" |
What date was the 6d introduced? | CREATE TABLE table_1682865_1 (introduction VARCHAR, numeral VARCHAR) | SELECT introduction FROM table_1682865_1 WHERE numeral = "6d" | ### Context: CREATE TABLE table_1682865_1 (introduction VARCHAR, numeral VARCHAR) ### Question: What date was the 6d introduced? ### Answer: SELECT introduction FROM table_1682865_1 WHERE numeral = "6d" |
What is the Irish name for the £1 fraction of 1/240? | CREATE TABLE table_1682865_1 (irish_name VARCHAR, £1_fraction VARCHAR) | SELECT irish_name FROM table_1682865_1 WHERE £1_fraction = "1/240" | ### Context: CREATE TABLE table_1682865_1 (irish_name VARCHAR, £1_fraction VARCHAR) ### Question: What is the Irish name for the £1 fraction of 1/240? ### Answer: SELECT irish_name FROM table_1682865_1 WHERE £1_fraction = "1/240" |
What is the reverse when the £1 fraction is 1/480? | CREATE TABLE table_1682865_1 (reverse VARCHAR, £1_fraction VARCHAR) | SELECT reverse FROM table_1682865_1 WHERE £1_fraction = "1/480" | ### Context: CREATE TABLE table_1682865_1 (reverse VARCHAR, £1_fraction VARCHAR) ### Question: What is the reverse when the £1 fraction is 1/480? ### Answer: SELECT reverse FROM table_1682865_1 WHERE £1_fraction = "1/480" |
What is the largest number of seats won? | CREATE TABLE table_168482_1 (_number_of_seats_won INTEGER) | SELECT MAX(_number_of_seats_won) FROM table_168482_1 | ### Context: CREATE TABLE table_168482_1 (_number_of_seats_won INTEGER) ### Question: What is the largest number of seats won? ### Answer: SELECT MAX(_number_of_seats_won) FROM table_168482_1 |
How many percentages are listed for the election in 1983? | CREATE TABLE table_168482_1 (_percentage_of_popular_vote VARCHAR, election VARCHAR) | SELECT COUNT(_percentage_of_popular_vote) FROM table_168482_1 WHERE election = 1983 | ### Context: CREATE TABLE table_168482_1 (_percentage_of_popular_vote VARCHAR, election VARCHAR) ### Question: How many percentages are listed for the election in 1983? ### Answer: SELECT COUNT(_percentage_of_popular_vote) FROM table_168482_1 WHERE election = 1983 |
What place did the party finish in the year when they earned 0.86% of the vote? | CREATE TABLE table_168482_1 (place VARCHAR, _percentage_of_popular_vote VARCHAR) | SELECT place FROM table_168482_1 WHERE _percentage_of_popular_vote = "0.86%" | ### Context: CREATE TABLE table_168482_1 (place VARCHAR, _percentage_of_popular_vote VARCHAR) ### Question: What place did the party finish in the year when they earned 0.86% of the vote? ### Answer: SELECT place FROM table_168482_1 WHERE _percentage_of_popular_vote = "0.86%" |
What is the NCBI Accession Number for the length of 5304bp/377aa? | CREATE TABLE table_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, length__bp_aa_ VARCHAR) | SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE length__bp_aa_ = "5304bp/377aa" | ### Context: CREATE TABLE table_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, length__bp_aa_ VARCHAR) ### Question: What is the NCBI Accession Number for the length of 5304bp/377aa? ### Answer: SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE length__bp_aa_ = "5304bp/377aa" |
What is the NCBI Accession Number of the Homo Sapiens species? | CREATE TABLE table_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR) | SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE species = "Homo sapiens" | ### Context: CREATE TABLE table_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR) ### Question: What is the NCBI Accession Number of the Homo Sapiens species? ### Answer: SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE species = "Homo sapiens" |
What is the protein identity with a length of 5304bp/377aa? | CREATE TABLE table_16849531_2 (protein_identity VARCHAR, length__bp_aa_ VARCHAR) | SELECT protein_identity FROM table_16849531_2 WHERE length__bp_aa_ = "5304bp/377aa" | ### Context: CREATE TABLE table_16849531_2 (protein_identity VARCHAR, length__bp_aa_ VARCHAR) ### Question: What is the protein identity with a length of 5304bp/377aa? ### Answer: SELECT protein_identity FROM table_16849531_2 WHERE length__bp_aa_ = "5304bp/377aa" |
When was "Tell You When" released? | CREATE TABLE table_16859758_1 (release_date VARCHAR, title VARCHAR) | SELECT release_date FROM table_16859758_1 WHERE title = "Tell You When" | ### Context: CREATE TABLE table_16859758_1 (release_date VARCHAR, title VARCHAR) ### Question: When was "Tell You When" released? ### Answer: SELECT release_date FROM table_16859758_1 WHERE title = "Tell You When" |
Where was game 62 played? | CREATE TABLE table_16864968_7 (location VARCHAR, game VARCHAR) | SELECT location FROM table_16864968_7 WHERE game = 62 | ### Context: CREATE TABLE table_16864968_7 (location VARCHAR, game VARCHAR) ### Question: Where was game 62 played? ### Answer: SELECT location FROM table_16864968_7 WHERE game = 62 |
What was the final score when the Maple Leafs played the Columbus Blue Jackets? | CREATE TABLE table_16864968_7 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_16864968_7 WHERE opponent = "Columbus Blue Jackets" | ### Context: CREATE TABLE table_16864968_7 (score VARCHAR, opponent VARCHAR) ### Question: What was the final score when the Maple Leafs played the Columbus Blue Jackets? ### Answer: SELECT score FROM table_16864968_7 WHERE opponent = "Columbus Blue Jackets" |
Name the network for dré steemans ann van elsen | CREATE TABLE table_16884579_1 (network VARCHAR, host_s_ VARCHAR) | SELECT network FROM table_16884579_1 WHERE host_s_ = "Dré Steemans Ann Van Elsen" | ### Context: CREATE TABLE table_16884579_1 (network VARCHAR, host_s_ VARCHAR) ### Question: Name the network for dré steemans ann van elsen ### Answer: SELECT network FROM table_16884579_1 WHERE host_s_ = "Dré Steemans Ann Van Elsen" |
Name the seasons and winners that airs 28 january 2007 | CREATE TABLE table_16884579_1 (seasons_and_winners VARCHAR, premiere VARCHAR) | SELECT seasons_and_winners FROM table_16884579_1 WHERE premiere = "28 January 2007" | ### Context: CREATE TABLE table_16884579_1 (seasons_and_winners VARCHAR, premiere VARCHAR) ### Question: Name the seasons and winners that airs 28 january 2007 ### Answer: SELECT seasons_and_winners FROM table_16884579_1 WHERE premiere = "28 January 2007" |
Name the host for prime | CREATE TABLE table_16884579_1 (host_s_ VARCHAR, network VARCHAR) | SELECT host_s_ FROM table_16884579_1 WHERE network = "Prime" | ### Context: CREATE TABLE table_16884579_1 (host_s_ VARCHAR, network VARCHAR) ### Question: Name the host for prime ### Answer: SELECT host_s_ FROM table_16884579_1 WHERE network = "Prime" |
Name the number of judges for dré steemans ann van elsen | CREATE TABLE table_16884579_1 (judges VARCHAR, host_s_ VARCHAR) | SELECT COUNT(judges) FROM table_16884579_1 WHERE host_s_ = "Dré Steemans Ann Van Elsen" | ### Context: CREATE TABLE table_16884579_1 (judges VARCHAR, host_s_ VARCHAR) ### Question: Name the number of judges for dré steemans ann van elsen ### Answer: SELECT COUNT(judges) FROM table_16884579_1 WHERE host_s_ = "Dré Steemans Ann Van Elsen" |
Name the website for car number of 92 | CREATE TABLE table_1688640_4 (website VARCHAR, car__number VARCHAR) | SELECT website FROM table_1688640_4 WHERE car__number = "92" | ### Context: CREATE TABLE table_1688640_4 (website VARCHAR, car__number VARCHAR) ### Question: Name the website for car number of 92 ### Answer: SELECT website FROM table_1688640_4 WHERE car__number = "92" |
Name the year started where car number is 55 | CREATE TABLE table_1688640_4 (year_started INTEGER, car__number VARCHAR) | SELECT MAX(year_started) FROM table_1688640_4 WHERE car__number = "55" | ### Context: CREATE TABLE table_1688640_4 (year_started INTEGER, car__number VARCHAR) ### Question: Name the year started where car number is 55 ### Answer: SELECT MAX(year_started) FROM table_1688640_4 WHERE car__number = "55" |
Name the car number for 1997 | CREATE TABLE table_1688640_4 (car__number VARCHAR, year_started VARCHAR) | SELECT car__number FROM table_1688640_4 WHERE year_started = 1997 | ### Context: CREATE TABLE table_1688640_4 (car__number VARCHAR, year_started VARCHAR) ### Question: Name the car number for 1997 ### Answer: SELECT car__number FROM table_1688640_4 WHERE year_started = 1997 |
Name the nickerie for marowijne being 4.7% | CREATE TABLE table_16886076_1 (nickerie VARCHAR, marowijne VARCHAR) | SELECT COUNT(nickerie) FROM table_16886076_1 WHERE marowijne = "4.7%" | ### Context: CREATE TABLE table_16886076_1 (nickerie VARCHAR, marowijne VARCHAR) ### Question: Name the nickerie for marowijne being 4.7% ### Answer: SELECT COUNT(nickerie) FROM table_16886076_1 WHERE marowijne = "4.7%" |
Name the coronie for marowijne being 6.8% | CREATE TABLE table_16886076_1 (coronie VARCHAR, marowijne VARCHAR) | SELECT coronie FROM table_16886076_1 WHERE marowijne = "6.8%" | ### Context: CREATE TABLE table_16886076_1 (coronie VARCHAR, marowijne VARCHAR) ### Question: Name the coronie for marowijne being 6.8% ### Answer: SELECT coronie FROM table_16886076_1 WHERE marowijne = "6.8%" |
Name the para for 1.5% commewijne | CREATE TABLE table_16886076_1 (para VARCHAR, commewijne VARCHAR) | SELECT para FROM table_16886076_1 WHERE commewijne = "1.5%" | ### Context: CREATE TABLE table_16886076_1 (para VARCHAR, commewijne VARCHAR) ### Question: Name the para for 1.5% commewijne ### Answer: SELECT para FROM table_16886076_1 WHERE commewijne = "1.5%" |
Name the least amount of races for 2 poles | CREATE TABLE table_16908657_1 (races INTEGER, poles VARCHAR) | SELECT MIN(races) FROM table_16908657_1 WHERE poles = 2 | ### Context: CREATE TABLE table_16908657_1 (races INTEGER, poles VARCHAR) ### Question: Name the least amount of races for 2 poles ### Answer: SELECT MIN(races) FROM table_16908657_1 WHERE poles = 2 |
Name the motorcycle for season 2012 | CREATE TABLE table_16908657_1 (motorcycle VARCHAR, season VARCHAR) | SELECT motorcycle FROM table_16908657_1 WHERE season = 2012 | ### Context: CREATE TABLE table_16908657_1 (motorcycle VARCHAR, season VARCHAR) ### Question: Name the motorcycle for season 2012 ### Answer: SELECT motorcycle FROM table_16908657_1 WHERE season = 2012 |
Name the number of flaps for 63 points | CREATE TABLE table_16908657_1 (flaps VARCHAR, points VARCHAR) | SELECT COUNT(flaps) FROM table_16908657_1 WHERE points = "63" | ### Context: CREATE TABLE table_16908657_1 (flaps VARCHAR, points VARCHAR) ### Question: Name the number of flaps for 63 points ### Answer: SELECT COUNT(flaps) FROM table_16908657_1 WHERE points = "63" |
Name the least flaps | CREATE TABLE table_16908657_1 (flaps INTEGER) | SELECT MIN(flaps) FROM table_16908657_1 | ### Context: CREATE TABLE table_16908657_1 (flaps INTEGER) ### Question: Name the least flaps ### Answer: SELECT MIN(flaps) FROM table_16908657_1 |
How many p.ret are there when kr avg is 11.3 ? | CREATE TABLE table_16912000_13 (p_ret VARCHAR, kr_avg VARCHAR) | SELECT COUNT(p_ret) FROM table_16912000_13 WHERE kr_avg = "11.3" | ### Context: CREATE TABLE table_16912000_13 (p_ret VARCHAR, kr_avg VARCHAR) ### Question: How many p.ret are there when kr avg is 11.3 ? ### Answer: SELECT COUNT(p_ret) FROM table_16912000_13 WHERE kr_avg = "11.3" |
What is the kr td when mfg lg is 64? | CREATE TABLE table_16912000_13 (kr_td VARCHAR, mfg_lg VARCHAR) | SELECT kr_td FROM table_16912000_13 WHERE mfg_lg = 64 | ### Context: CREATE TABLE table_16912000_13 (kr_td VARCHAR, mfg_lg VARCHAR) ### Question: What is the kr td when mfg lg is 64? ### Answer: SELECT kr_td FROM table_16912000_13 WHERE mfg_lg = 64 |
Who's average is 24.8? | CREATE TABLE table_16912000_13 (player VARCHAR, kr_avg VARCHAR) | SELECT player FROM table_16912000_13 WHERE kr_avg = "24.8" | ### Context: CREATE TABLE table_16912000_13 (player VARCHAR, kr_avg VARCHAR) ### Question: Who's average is 24.8? ### Answer: SELECT player FROM table_16912000_13 WHERE kr_avg = "24.8" |
What is the pr avg, when kr lg is 49? | CREATE TABLE table_16912000_13 (pr_avg VARCHAR, kr_lg VARCHAR) | SELECT pr_avg FROM table_16912000_13 WHERE kr_lg = 49 | ### Context: CREATE TABLE table_16912000_13 (pr_avg VARCHAR, kr_lg VARCHAR) ### Question: What is the pr avg, when kr lg is 49? ### Answer: SELECT pr_avg FROM table_16912000_13 WHERE kr_lg = 49 |
what is the population where municipality is san jacinto? | CREATE TABLE table_1691800_2 (population__2010_ VARCHAR, municipality VARCHAR) | SELECT population__2010_ FROM table_1691800_2 WHERE municipality = "San Jacinto" | ### Context: CREATE TABLE table_1691800_2 (population__2010_ VARCHAR, municipality VARCHAR) ### Question: what is the population where municipality is san jacinto? ### Answer: SELECT population__2010_ FROM table_1691800_2 WHERE municipality = "San Jacinto" |
what is the income class for area 75? | CREATE TABLE table_1691800_2 (income_class VARCHAR, area__km²_ VARCHAR) | SELECT income_class FROM table_1691800_2 WHERE area__km²_ = 75 | ### Context: CREATE TABLE table_1691800_2 (income_class VARCHAR, area__km²_ VARCHAR) ### Question: what is the income class for area 75? ### Answer: SELECT income_class FROM table_1691800_2 WHERE area__km²_ = 75 |
what is th area where the municipaity is labrador? | CREATE TABLE table_1691800_2 (area__km²_ VARCHAR, municipality VARCHAR) | SELECT area__km²_ FROM table_1691800_2 WHERE municipality = "Labrador" | ### Context: CREATE TABLE table_1691800_2 (area__km²_ VARCHAR, municipality VARCHAR) ### Question: what is th area where the municipaity is labrador? ### Answer: SELECT area__km²_ FROM table_1691800_2 WHERE municipality = "Labrador" |
what is the municipality where the area is 73? | CREATE TABLE table_1691800_2 (municipality VARCHAR, area__km²_ VARCHAR) | SELECT municipality FROM table_1691800_2 WHERE area__km²_ = 73 | ### Context: CREATE TABLE table_1691800_2 (municipality VARCHAR, area__km²_ VARCHAR) ### Question: what is the municipality where the area is 73? ### Answer: SELECT municipality FROM table_1691800_2 WHERE area__km²_ = 73 |
Name the equipment for bike number 6 | CREATE TABLE table_16941304_4 (equipment VARCHAR, bike_no VARCHAR) | SELECT equipment FROM table_16941304_4 WHERE bike_no = 6 | ### Context: CREATE TABLE table_16941304_4 (equipment VARCHAR, bike_no VARCHAR) ### Question: Name the equipment for bike number 6 ### Answer: SELECT equipment FROM table_16941304_4 WHERE bike_no = 6 |
Name the driver passenger for 394 points | CREATE TABLE table_16941304_4 (driver___passenger VARCHAR, points VARCHAR) | SELECT driver___passenger FROM table_16941304_4 WHERE points = 394 | ### Context: CREATE TABLE table_16941304_4 (driver___passenger VARCHAR, points VARCHAR) ### Question: Name the driver passenger for 394 points ### Answer: SELECT driver___passenger FROM table_16941304_4 WHERE points = 394 |
Name the equipment for bike number being 3 | CREATE TABLE table_16941304_4 (equipment VARCHAR, bike_no VARCHAR) | SELECT equipment FROM table_16941304_4 WHERE bike_no = 3 | ### Context: CREATE TABLE table_16941304_4 (equipment VARCHAR, bike_no VARCHAR) ### Question: Name the equipment for bike number being 3 ### Answer: SELECT equipment FROM table_16941304_4 WHERE bike_no = 3 |
In district New York 10th, what was the reason for change? | CREATE TABLE table_1694492_2 (reason_for_change VARCHAR, district VARCHAR) | SELECT reason_for_change FROM table_1694492_2 WHERE district = "New York 10th" | ### Context: CREATE TABLE table_1694492_2 (reason_for_change VARCHAR, district VARCHAR) ### Question: In district New York 10th, what was the reason for change? ### Answer: SELECT reason_for_change FROM table_1694492_2 WHERE district = "New York 10th" |
In the district Wisconsin 2nd, what was the reason for change? | CREATE TABLE table_1694505_4 (reason_for_change VARCHAR, district VARCHAR) | SELECT reason_for_change FROM table_1694505_4 WHERE district = "Wisconsin 2nd" | ### Context: CREATE TABLE table_1694505_4 (reason_for_change VARCHAR, district VARCHAR) ### Question: In the district Wisconsin 2nd, what was the reason for change? ### Answer: SELECT reason_for_change FROM table_1694505_4 WHERE district = "Wisconsin 2nd" |
Name the least age 30-39 where age 20-29 is 593 | CREATE TABLE table_169693_1 (age_30_39 INTEGER, age_20_29 VARCHAR) | SELECT MIN(age_30_39) FROM table_169693_1 WHERE age_20_29 = 593 | ### Context: CREATE TABLE table_169693_1 (age_30_39 INTEGER, age_20_29 VARCHAR) ### Question: Name the least age 30-39 where age 20-29 is 593 ### Answer: SELECT MIN(age_30_39) FROM table_169693_1 WHERE age_20_29 = 593 |
Name the least age 40-49 | CREATE TABLE table_169693_1 (age_40_49 INTEGER) | SELECT MIN(age_40_49) FROM table_169693_1 | ### Context: CREATE TABLE table_169693_1 (age_40_49 INTEGER) ### Question: Name the least age 40-49 ### Answer: SELECT MIN(age_40_49) FROM table_169693_1 |
Name the age 30-39 and age 10-19 380 | CREATE TABLE table_169693_1 (age_30_39 VARCHAR, age_10_19 VARCHAR) | SELECT age_30_39 FROM table_169693_1 WHERE age_10_19 = 380 | ### Context: CREATE TABLE table_169693_1 (age_30_39 VARCHAR, age_10_19 VARCHAR) ### Question: Name the age 30-39 and age 10-19 380 ### Answer: SELECT age_30_39 FROM table_169693_1 WHERE age_10_19 = 380 |
Name the score for number 4 | CREATE TABLE table_16967990_1 (score VARCHAR, _number VARCHAR) | SELECT score FROM table_16967990_1 WHERE _number = "4" | ### Context: CREATE TABLE table_16967990_1 (score VARCHAR, _number VARCHAR) ### Question: Name the score for number 4 ### Answer: SELECT score FROM table_16967990_1 WHERE _number = "4" |
How many numbers were recorded for Chester when the religion was Hindu? | CREATE TABLE table_16974228_1 (chester VARCHAR, religion VARCHAR) | SELECT COUNT(chester) FROM table_16974228_1 WHERE religion = "Hindu" | ### Context: CREATE TABLE table_16974228_1 (chester VARCHAR, religion VARCHAR) ### Question: How many numbers were recorded for Chester when the religion was Hindu? ### Answer: SELECT COUNT(chester) FROM table_16974228_1 WHERE religion = "Hindu" |
what was Casey Martin's minimum yearly earnings? | CREATE TABLE table_1697190_2 (earnings___ INTEGER) | SELECT MIN(earnings___) AS $__ FROM table_1697190_2 | ### Context: CREATE TABLE table_1697190_2 (earnings___ INTEGER) ### Question: what was Casey Martin's minimum yearly earnings? ### Answer: SELECT MIN(earnings___) AS $__ FROM table_1697190_2 |
when Casey Martin's best finish was t-65, where did he land in the money list rankings? | CREATE TABLE table_1697190_2 (money_list_rank VARCHAR, best_finish VARCHAR) | SELECT money_list_rank FROM table_1697190_2 WHERE best_finish = "T-65" | ### Context: CREATE TABLE table_1697190_2 (money_list_rank VARCHAR, best_finish VARCHAR) ### Question: when Casey Martin's best finish was t-65, where did he land in the money list rankings? ### Answer: SELECT money_list_rank FROM table_1697190_2 WHERE best_finish = "T-65" |
how many times did Casey Martin win? | CREATE TABLE table_1697190_2 (wins INTEGER) | SELECT MAX(wins) FROM table_1697190_2 | ### Context: CREATE TABLE table_1697190_2 (wins INTEGER) ### Question: how many times did Casey Martin win? ### Answer: SELECT MAX(wins) FROM table_1697190_2 |
Name the total number of air dates for 05 cycle | CREATE TABLE table_16976547_2 (air_dates VARCHAR, cycle_no VARCHAR) | SELECT COUNT(air_dates) FROM table_16976547_2 WHERE cycle_no = "05" | ### Context: CREATE TABLE table_16976547_2 (air_dates VARCHAR, cycle_no VARCHAR) ### Question: Name the total number of air dates for 05 cycle ### Answer: SELECT COUNT(air_dates) FROM table_16976547_2 WHERE cycle_no = "05" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.