question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What was the place and how many people attended the game on July 11? | CREATE TABLE table_18813011_6 (location_attendance VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT location_attendance FROM table_18813011_6 WHERE date = \"July 11\""
} |
Who had the most assist and how many on July 26? | CREATE TABLE table_18813011_6 (high_assists VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT high_assists FROM table_18813011_6 WHERE date = \"July 26\""
} |
Who had the high assist in the game where the record is 13-11? | CREATE TABLE table_18813011_6 (high_assists VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT high_assists FROM table_18813011_6 WHERE record = \"13-11\""
} |
At what date did the 23rd manager vacate the position? | CREATE TABLE table_18795125_6 (date_of_vacancy VARCHAR, position_in_table VARCHAR) | {
"SQL_Query": "SELECT date_of_vacancy FROM table_18795125_6 WHERE position_in_table = \"23rd\""
} |
What was the date of appointment for the manager that replaced Simon Davies? | CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) | {
"SQL_Query": "SELECT date_of_appointment FROM table_18795125_6 WHERE outgoing_manager = \"Simon Davies\""
} |
What was the date of appointment for the manager of the 23rd team? | CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, position_in_table VARCHAR) | {
"SQL_Query": "SELECT date_of_appointment FROM table_18795125_6 WHERE position_in_table = \"23rd\""
} |
How many categories for, replaced by, exist when the outgoing manager is Alan Buckley? | CREATE TABLE table_18795125_6 (replaced_by VARCHAR, outgoing_manager VARCHAR) | {
"SQL_Query": "SELECT COUNT(replaced_by) FROM table_18795125_6 WHERE outgoing_manager = \"Alan Buckley\""
} |
Which driver starts 3? | CREATE TABLE table_18811741_15 (driver VARCHAR, starts VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_18811741_15 WHERE starts = 3"
} |
How many podiums for the driver with 18 stage wins? | CREATE TABLE table_18811741_15 (podiums VARCHAR, stage_wins VARCHAR) | {
"SQL_Query": "SELECT COUNT(podiums) FROM table_18811741_15 WHERE stage_wins = 18"
} |
What is the highest pos for a driver with 1 podium? | CREATE TABLE table_18811741_15 (pos INTEGER, podiums VARCHAR) | {
"SQL_Query": "SELECT MAX(pos) FROM table_18811741_15 WHERE podiums = 1"
} |
What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm? | CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, weekly_schedule VARCHAR) | {
"SQL_Query": "SELECT tv_network_s_ FROM table_18821196_1 WHERE weekly_schedule = \"Monday to Thursday @ 11:00 pm\""
} |
What is every country with a TV network of AXN India? | CREATE TABLE table_18821196_1 (country VARCHAR, tv_network_s_ VARCHAR) | {
"SQL_Query": "SELECT country FROM table_18821196_1 WHERE tv_network_s_ = \"AXN India\""
} |
What is every weekly schedule in the country of Norway? | CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT weekly_schedule FROM table_18821196_1 WHERE country = \"Norway\""
} |
What is every TV network in Belgium? | CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT tv_network_s_ FROM table_18821196_1 WHERE country = \"Belgium\""
} |
What is every status with a weekly schedule of Monday to Thursday @ 11:00 pm? | CREATE TABLE table_18821196_1 (status VARCHAR, weekly_schedule VARCHAR) | {
"SQL_Query": "SELECT status FROM table_18821196_1 WHERE weekly_schedule = \"Monday to Thursday @ 11:00 pm\""
} |
What is every weekly schedule of TV network Viasat 4? | CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, tv_network_s_ VARCHAR) | {
"SQL_Query": "SELECT weekly_schedule FROM table_18821196_1 WHERE tv_network_s_ = \"Viasat 4\""
} |
How much was the prize money for rwe-sporthalle, mülheim ? | CREATE TABLE table_18828487_1 (prize_fund VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT prize_fund FROM table_18828487_1 WHERE venue = \"RWE-Sporthalle, Mülheim\""
} |
In 2009, how many were runner-up? | CREATE TABLE table_18828487_1 (runner_up VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT COUNT(runner_up) FROM table_18828487_1 WHERE year = 2009"
} |
How much does the champion get for stadthalle dinslaken, dinslaken? | CREATE TABLE table_18828487_1 (champion VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT champion FROM table_18828487_1 WHERE venue = \"Stadthalle Dinslaken, Dinslaken\""
} |
When by80607002529af is the part number and september 2009 is the release date what is the l2 cache? | CREATE TABLE table_18823880_10 (l2_cache VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR) | {
"SQL_Query": "SELECT l2_cache FROM table_18823880_10 WHERE release_date = \"September 2009\" AND part_number_s_ = \"BY80607002529AF\""
} |
When by80607002907ahbx80607i7720qm is the part number what is the socket? | CREATE TABLE table_18823880_10 (socket VARCHAR, part_number_s_ VARCHAR) | {
"SQL_Query": "SELECT socket FROM table_18823880_10 WHERE part_number_s_ = \"BY80607002907AHBX80607I7720QM\""
} |
When slblw(b1) is the sspec number what is the mult.? | CREATE TABLE table_18823880_10 (mult VARCHAR, sspec_number VARCHAR) | {
"SQL_Query": "SELECT mult FROM table_18823880_10 WHERE sspec_number = \"SLBLW(B1)\""
} |
When socketg1 is the socket what is the release price in dollars? | CREATE TABLE table_18823880_10 (release_price___usd__ VARCHAR, socket VARCHAR) | {
"SQL_Query": "SELECT release_price___usd__ FROM table_18823880_10 WHERE socket = \"socketG1\""
} |
How many points did the opposing team score on Dec. 19, 1982? | CREATE TABLE table_18847456_2 (opponents INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT MAX(opponents) FROM table_18847456_2 WHERE date = \"Dec. 19\""
} |
How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0? | CREATE TABLE table_18852984_2 (bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR) | {
"SQL_Query": "SELECT bills_originally_cosponsored FROM table_18852984_2 WHERE all_amendments_cosponsored = 0"
} |
How many bill cosponsored during those years where bills originally cosponsored is 113? | CREATE TABLE table_18852984_2 (all_bills_cosponsored VARCHAR, bills_originally_cosponsored VARCHAR) | {
"SQL_Query": "SELECT all_bills_cosponsored FROM table_18852984_2 WHERE bills_originally_cosponsored = 113"
} |
What is the greatest number of bills sponsored in any year? | CREATE TABLE table_18852984_2 (all_bills_sponsored INTEGER) | {
"SQL_Query": "SELECT MAX(all_bills_sponsored) FROM table_18852984_2"
} |
What is the lowest cr number? | CREATE TABLE table_1886270_1 (cr_no INTEGER) | {
"SQL_Query": "SELECT MIN(cr_no) FROM table_1886270_1"
} |
When 2/1939 is the withdrawn when was it built? | CREATE TABLE table_1886270_1 (built VARCHAR, withdrawn VARCHAR) | {
"SQL_Query": "SELECT built FROM table_1886270_1 WHERE withdrawn = \"2/1939\""
} |
When river ness is the hr name what is the hr number? | CREATE TABLE table_1886270_1 (hr_no VARCHAR, hr_name VARCHAR) | {
"SQL_Query": "SELECT hr_no FROM table_1886270_1 WHERE hr_name = \"River Ness\""
} |
When (river garry) is the hr name how many builts are there? | CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR) | {
"SQL_Query": "SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = \"(River Garry)\""
} |
What is the highest cr number? | CREATE TABLE table_1886270_1 (cr_no INTEGER) | {
"SQL_Query": "SELECT MAX(cr_no) FROM table_1886270_1"
} |
When river ness is the hr name how many builts are there? | CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR) | {
"SQL_Query": "SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = \"River Ness\""
} |
How many opponents are at Minnesota Vikings? | CREATE TABLE table_18847736_2 (opponents INTEGER, opponent VARCHAR) | {
"SQL_Query": "SELECT MAX(opponents) FROM table_18847736_2 WHERE opponent = \"at Minnesota Vikings\""
} |
What is the date when the opponent is the New England Patriots? | CREATE TABLE table_18847736_2 (date VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT date FROM table_18847736_2 WHERE opponent = \"New England Patriots\""
} |
How many dates do the dolphins have 6 points? | CREATE TABLE table_18847736_2 (date VARCHAR, dolphins_points VARCHAR) | {
"SQL_Query": "SELECT date FROM table_18847736_2 WHERE dolphins_points = 6"
} |
What country does robert allenby represent? | CREATE TABLE table_18862490_2 (country VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT country FROM table_18862490_2 WHERE player = \"Robert Allenby\""
} |
What score to par won in 1998? | CREATE TABLE table_18862490_2 (to_par VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_18862490_2 WHERE year = 1998"
} |
What player(s) had the score of 64-70-67-69=270? | CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT player FROM table_18862490_2 WHERE score = 64 - 70 - 67 - 69 = 270"
} |
What players had teh score of 64-71-67-67=269? | CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT player FROM table_18862490_2 WHERE score = 64 - 71 - 67 - 67 = 269"
} |
What is the first yar that someone won with a score of 68-66-68-71=273? | CREATE TABLE table_18862490_2 (year INTEGER, score VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_18862490_2 WHERE score = 68 - 66 - 68 - 71 = 273"
} |
How many socialist have a lead of 12.6%? | CREATE TABLE table_1886589_1 (socialist VARCHAR, lead VARCHAR) | {
"SQL_Query": "SELECT COUNT(socialist) FROM table_1886589_1 WHERE lead = \"12.6%\""
} |
What is the lowest SOL? | CREATE TABLE table_1888157_1 (SOl INTEGER) | {
"SQL_Query": "SELECT MIN(SOl) FROM table_1888157_1"
} |
What is the highest GA when GF is 39? | CREATE TABLE table_1888157_1 (ga INTEGER, gf VARCHAR) | {
"SQL_Query": "SELECT MAX(ga) FROM table_1888157_1 WHERE gf = 39"
} |
How many different records were there in the games that ended in w 70-66? | CREATE TABLE table_18904831_5 (record VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT COUNT(record) FROM table_18904831_5 WHERE score = \"W 70-66\""
} |
What was the record of the game in which Dydek (10) did the most high rebounds? | CREATE TABLE table_18904831_5 (record VARCHAR, high_rebounds VARCHAR) | {
"SQL_Query": "SELECT record FROM table_18904831_5 WHERE high_rebounds = \"Dydek (10)\""
} |
Who did the most high rebounds in the game where Sales (17) did the high points? | CREATE TABLE table_18904831_5 (high_rebounds VARCHAR, high_points VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_18904831_5 WHERE high_points = \"Sales (17)\""
} |
When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)? | CREATE TABLE table_1889619_5 (total_footage_remaining_from_missing_episodes__mm VARCHAR, story_no VARCHAR, source VARCHAR) | {
"SQL_Query": "SELECT total_footage_remaining_from_missing_episodes__mm AS :ss_ FROM table_1889619_5 WHERE story_no = \"018\" AND source = \"Private individual\""
} |
When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory? | CREATE TABLE table_1889619_5 (country_territory VARCHAR, story_no VARCHAR, missing_episodes_with_recovered_footage VARCHAR) | {
"SQL_Query": "SELECT country_territory FROM table_1889619_5 WHERE story_no = \"032\" AND missing_episodes_with_recovered_footage = \"Episode 4\""
} |
Name the least game for 8-3 | CREATE TABLE table_18894744_5 (game INTEGER, record VARCHAR) | {
"SQL_Query": "SELECT MIN(game) FROM table_18894744_5 WHERE record = \"8-3\""
} |
Name the opponent for record 10-4 | CREATE TABLE table_18894744_5 (opponent VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_18894744_5 WHERE record = \"10-4\""
} |
Name the high rebounds for record 7-1 | CREATE TABLE table_18894744_5 (high_rebounds VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_18894744_5 WHERE record = \"7-1\""
} |
Name the game for june 16 | CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT game FROM table_18894744_5 WHERE date = \"June 16\""
} |
Name the game for june 7 | CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT game FROM table_18894744_5 WHERE date = \"June 7\""
} |
Who did the high rebounds in the game with a 19-6 record? | CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_18894744_6 WHERE record = \"19-6\""
} |
Where was the game with a 13-5 record played, and in front of how many people? | CREATE TABLE table_18894744_6 (location_attendance VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT location_attendance FROM table_18894744_6 WHERE record = \"13-5\""
} |
Who did the high rebounds in the game where Douglas (28) did the high points? | CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, high_points VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_18894744_6 WHERE high_points = \"Douglas (28)\""
} |
What was the record on the game played on July 1? | CREATE TABLE table_18894744_6 (record VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT record FROM table_18894744_6 WHERE date = \"July 1\""
} |
How many opponents was a game with a record 17-6 played against? | CREATE TABLE table_18894744_6 (opponent VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT COUNT(opponent) FROM table_18894744_6 WHERE record = \"17-6\""
} |
What was the career duration of the bowler who played 60 matches? | CREATE TABLE table_18914438_1 (career VARCHAR, matches VARCHAR) | {
"SQL_Query": "SELECT career FROM table_18914438_1 WHERE matches = 60"
} |
What is the Best score if the Maidens is 547 and Overs is 2755.1? | CREATE TABLE table_18914438_1 (best VARCHAR, maidens VARCHAR, overs VARCHAR) | {
"SQL_Query": "SELECT best FROM table_18914438_1 WHERE maidens = 547 AND overs = \"2755.1\""
} |
What was the Overs score of the career played from 1993-2007? | CREATE TABLE table_18914438_1 (overs VARCHAR, career VARCHAR) | {
"SQL_Query": "SELECT overs FROM table_18914438_1 WHERE career = \"1993-2007\""
} |
What was the Best score during the game played from 1971-1984? | CREATE TABLE table_18914438_1 (best VARCHAR, career VARCHAR) | {
"SQL_Query": "SELECT best FROM table_18914438_1 WHERE career = \"1971-1984\""
} |
When dydek (11) has the highest rebounds what is the date? | CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR) | {
"SQL_Query": "SELECT date FROM table_18904831_6 WHERE high_rebounds = \"Dydek (11)\""
} |
When mcwilliams-franklin (8) has the highest rebounds what is the date? | CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR) | {
"SQL_Query": "SELECT date FROM table_18904831_6 WHERE high_rebounds = \"McWilliams-Franklin (8)\""
} |
When dydek (8) has the highest rebounds who has the highest amount of points? | CREATE TABLE table_18904831_6 (high_points VARCHAR, high_rebounds VARCHAR) | {
"SQL_Query": "SELECT high_points FROM table_18904831_6 WHERE high_rebounds = \"Dydek (8)\""
} |
When w 73-70 is the score what is the location? | CREATE TABLE table_18904831_6 (location VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT location FROM table_18904831_6 WHERE score = \"W 73-70\""
} |
What was the score in the game that had a record of 25-8? | CREATE TABLE table_18904831_7 (score VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT score FROM table_18904831_7 WHERE record = \"25-8\""
} |
What was # of the first game played on August 20? | CREATE TABLE table_18904831_7 (game INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT MIN(game) FROM table_18904831_7 WHERE date = \"August 20\""
} |
What were the high points for the game played at the MCI Center? | CREATE TABLE table_18904831_7 (high_points VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT COUNT(high_points) FROM table_18904831_7 WHERE location = \"MCI Center\""
} |
Where was the game played that had a record of 19-6? | CREATE TABLE table_18904831_7 (location VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT location FROM table_18904831_7 WHERE record = \"19-6\""
} |
What is the col (m) of the Barurumea Ridge peak? | CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR) | {
"SQL_Query": "SELECT MAX(col__m_) FROM table_18946749_2 WHERE peak = \"Barurumea Ridge\""
} |
What is the elevation (m) of the Mount Wilhelm peak? | CREATE TABLE table_18946749_2 (elevation__m_ INTEGER, peak VARCHAR) | {
"SQL_Query": "SELECT MAX(elevation__m_) FROM table_18946749_2 WHERE peak = \"Mount Wilhelm\""
} |
What is the col (m) of the Bewani Mountains High Point peak? | CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR) | {
"SQL_Query": "SELECT MIN(col__m_) FROM table_18946749_2 WHERE peak = \"Bewani Mountains High Point\""
} |
When mount wondiwoi is the peak what is the island? | CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR) | {
"SQL_Query": "SELECT island FROM table_18946749_1 WHERE peak = \"Mount Wondiwoi\""
} |
When mount gauttier is the peak what is the island? | CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR) | {
"SQL_Query": "SELECT island FROM table_18946749_1 WHERE peak = \"Mount Gauttier\""
} |
When mount kobowre is the peak what is the highest elevation in meters? | CREATE TABLE table_18946749_1 (elevation__m_ INTEGER, peak VARCHAR) | {
"SQL_Query": "SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = \"Mount Kobowre\""
} |
When mount gauttier is the peak what is the highest prominence in meters? | CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR) | {
"SQL_Query": "SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = \"Mount Gauttier\""
} |
When 44 is the col in meters what is the country? | CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR) | {
"SQL_Query": "SELECT country FROM table_18946749_1 WHERE col__m_ = 44"
} |
Name the release date for album # 2nd | CREATE TABLE table_1893815_1 (release_date VARCHAR, album_number VARCHAR) | {
"SQL_Query": "SELECT release_date FROM table_1893815_1 WHERE album_number = \"2nd\""
} |
Name the label for grown up overnight | CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR) | {
"SQL_Query": "SELECT label FROM table_1893815_1 WHERE english_title = \"Grown Up Overnight\""
} |
Name the label for traditional chinese 情歌沒有告訴你 | CREATE TABLE table_1893815_1 (label VARCHAR, chinese__traditional_ VARCHAR) | {
"SQL_Query": "SELECT label FROM table_1893815_1 WHERE chinese__traditional_ = \"情歌沒有告訴你\""
} |
Name the number of traditional chinese for album number 6th | CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR) | {
"SQL_Query": "SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = \"6th\""
} |
Name the chinese traditional for 美丽人生 | CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR) | {
"SQL_Query": "SELECT chinese__traditional_ FROM table_1893815_1 WHERE chinese__simplified_ = \"美丽人生\""
} |
Name the english title for album # 2nd | CREATE TABLE table_1893815_1 (english_title VARCHAR, album_number VARCHAR) | {
"SQL_Query": "SELECT english_title FROM table_1893815_1 WHERE album_number = \"2nd\""
} |
How many samples were taken of 嬰幼兒配方乳粉2段基粉 ? | CREATE TABLE table_18943444_1 (samples_taken VARCHAR, product VARCHAR) | {
"SQL_Query": "SELECT COUNT(samples_taken) FROM table_18943444_1 WHERE product = \"嬰幼兒配方乳粉2段基粉\""
} |
What are the producers of 磊磊牌嬰幼兒配方乳粉 ? | CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR) | {
"SQL_Query": "SELECT producer FROM table_18943444_1 WHERE product = \"磊磊牌嬰幼兒配方乳粉\""
} |
What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ? | CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR) | {
"SQL_Query": "SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = \"蒙牛牌嬰幼兒配方乳粉\""
} |
Who is the producer of 金必氏牌嬰幼兒配方乳粉 ? | CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR) | {
"SQL_Query": "SELECT producer FROM table_18943444_1 WHERE product = \"金必氏牌嬰幼兒配方乳粉\""
} |
How many live births per year are there in the period where the life expectancy for females is 73.3? | CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, life_expectancy_females VARCHAR) | {
"SQL_Query": "SELECT live_births_per_year FROM table_18950570_2 WHERE life_expectancy_females = \"73.3\""
} |
How many births per year are there for the period with 998 000 deaths per year? | CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, deaths_per_year VARCHAR) | {
"SQL_Query": "SELECT live_births_per_year FROM table_18950570_2 WHERE deaths_per_year = \"998 000\""
} |
What is the highest value for col(m) when prominence(m) is 3755? | CREATE TABLE table_18946749_4 (col__m_ INTEGER, prominence__m_ VARCHAR) | {
"SQL_Query": "SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755"
} |
What is the highest value for col(m) at North Island? | CREATE TABLE table_18946749_4 (col__m_ INTEGER, island VARCHAR) | {
"SQL_Query": "SELECT MAX(col__m_) FROM table_18946749_4 WHERE island = \"North island\""
} |
What is the lowest elevation(m) for the peak Mount Taylor? | CREATE TABLE table_18946749_4 (elevation__m_ INTEGER, peak VARCHAR) | {
"SQL_Query": "SELECT MIN(elevation__m_) FROM table_18946749_4 WHERE peak = \"Mount Taylor\""
} |
How many values of prominence(m) occur at rank 5? | CREATE TABLE table_18946749_4 (prominence__m_ VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT COUNT(prominence__m_) FROM table_18946749_4 WHERE rank = 5"
} |
what ae all of the brazil 100% where the age group is 15-17? | CREATE TABLE table_18950570_4 (brazil_100_percentage__percent_of_the_population_ VARCHAR, age_group VARCHAR) | {
"SQL_Query": "SELECT brazil_100_percentage__percent_of_the_population_ FROM table_18950570_4 WHERE age_group = \"15-17\""
} |
If the just ratio is 11:8 and the cents size is 560, what is the interval name? | CREATE TABLE table_18955077_1 (interval_name VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR) | {
"SQL_Query": "SELECT interval_name FROM table_18955077_1 WHERE size__cents_ = 560 AND just_ratio = \"11:8\""
} |
If the just cents is 84.46, what is the just ratio? | CREATE TABLE table_18955077_1 (just_ratio VARCHAR, just__cents_ VARCHAR) | {
"SQL_Query": "SELECT just_ratio FROM table_18955077_1 WHERE just__cents_ = \"84.46\""
} |
If the just cents is 701.96, what is the interval name? | CREATE TABLE table_18955077_1 (interval_name VARCHAR, just__cents_ VARCHAR) | {
"SQL_Query": "SELECT interval_name FROM table_18955077_1 WHERE just__cents_ = \"701.96\""
} |
Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa | CREATE TABLE table_18963843_1 (asian_american_population__2010_ INTEGER, combined_statistical_area VARCHAR) | {
"SQL_Query": "SELECT MAX(asian_american_population__2010_) FROM table_18963843_1 WHERE combined_statistical_area = \"Kansas City-Overland Park-Kansas City, MO-KS CSA\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.