question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the maximum number of 2006 subscribers for Mobilis? | CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR) | SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Mobilis" |
What's the lowest gold with a total of 4 and less than 2 silver for liechtenstein? | CREATE TABLE table_name_16 (gold INTEGER, silver VARCHAR, total VARCHAR, nation VARCHAR) | SELECT MIN(gold) FROM table_name_16 WHERE total = 4 AND nation = "liechtenstein" AND silver < 2 |
Who was the away team at the game held at Arden Street Oval? | CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_53 WHERE venue = "arden street oval" |
What is Money ( $ ), when Score is "75-71-72-70=288"? | CREATE TABLE table_name_35 (money___$__ VARCHAR, score VARCHAR) | SELECT money___$__ FROM table_name_35 WHERE score = 75 - 71 - 72 - 70 = 288 |
Which Written by has a Code of 1.2 1.3? | CREATE TABLE table_name_57 (written_by VARCHAR, code VARCHAR) | SELECT written_by FROM table_name_57 WHERE code = "1.2 1.3" |
What is the name of the player with an overall score of 70-69-69=208? | CREATE TABLE table_name_41 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_41 WHERE score = 70 - 69 - 69 = 208 |
What is the fare to Kalamazoo during the time frame when Saginaw's was $481.39? | CREATE TABLE table_1637981_7 (kalamazoo__azo_ VARCHAR, saginaw__mbs_ VARCHAR) | SELECT kalamazoo__azo_ FROM table_1637981_7 WHERE saginaw__mbs_ = "$481.39" |
what's the introduced where notes is 9 withdrawn in 1946 after fire | CREATE TABLE table_1181375_1 (introduced VARCHAR, notes VARCHAR) | SELECT introduced FROM table_1181375_1 WHERE notes = "9 withdrawn in 1946 after fire" |
What was the season number episode directed by John David Coles? | CREATE TABLE table_21781578_2 (season_no VARCHAR, directed_by VARCHAR) | SELECT season_no FROM table_21781578_2 WHERE directed_by = "John David Coles" |
Which Wins have a Rank of 3? | CREATE TABLE table_name_77 (wins INTEGER, rank VARCHAR) | SELECT AVG(wins) FROM table_name_77 WHERE rank = 3 |
How tall was Player #10? | CREATE TABLE table_12962773_10 (height VARCHAR, no VARCHAR) | SELECT height FROM table_12962773_10 WHERE no = 10 |
Name the points with tries for of 40 | CREATE TABLE table_name_62 (points_for VARCHAR, tries_for VARCHAR) | SELECT points_for FROM table_name_62 WHERE tries_for = "40" |
Who is the co-presenter of the series Seven (2007)? | CREATE TABLE table_14345690_15 (co_presenter VARCHAR, series VARCHAR) | SELECT co_presenter FROM table_14345690_15 WHERE series = "Seven (2007)" |
What is the highest amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63? | CREATE TABLE table_name_63 (points INTEGER, goals_for VARCHAR, goal_average VARCHAR, draws VARCHAR) | SELECT MAX(points) FROM table_name_63 WHERE goal_average > 4 AND draws < 12 AND goals_for = 63 |
what's the alloy with series being ii series | CREATE TABLE table_12284476_8 (alloy VARCHAR, series VARCHAR) | SELECT alloy FROM table_12284476_8 WHERE series = "II series" |
Who is the away team at junction oval? | CREATE TABLE table_name_74 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_74 WHERE venue = "junction oval" |
What was the result when there were less than 3 rounds against Gil Rael? | CREATE TABLE table_name_16 (res VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT res FROM table_name_16 WHERE round < 3 AND opponent = "gil rael" |
What is the lowest Lost for são paulo railway, Points more than 21? | CREATE TABLE table_name_46 (lost INTEGER, team VARCHAR, points VARCHAR) | SELECT MIN(lost) FROM table_name_46 WHERE team = "são paulo railway" AND points > 21 |
Name the number of semifinalists for 19 rank | CREATE TABLE table_30007505_1 (semifinalists VARCHAR, rank VARCHAR) | SELECT COUNT(semifinalists) FROM table_30007505_1 WHERE rank = 19 |
How many positive votes for Tennessee in 2006? | CREATE TABLE table_name_73 (yes_vote VARCHAR, date VARCHAR, state VARCHAR) | SELECT yes_vote FROM table_name_73 WHERE date = "2006" AND state = "tennessee" |
What is Lee Ka Man's Time? | CREATE TABLE table_name_95 (time VARCHAR, rower VARCHAR) | SELECT time FROM table_name_95 WHERE rower = "lee ka man" |
Which team has a qualifying 2 time under 59.612 and a best of 59.14? | CREATE TABLE table_name_58 (team VARCHAR, qual_2 VARCHAR, best VARCHAR) | SELECT team FROM table_name_58 WHERE qual_2 < 59.612 AND best = 59.14 |
What is Tournament, when Date is "6 October 2008"? | CREATE TABLE table_name_82 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_82 WHERE date = "6 october 2008" |
Name the most games for standing of 5th, lebel and goals against larger than 220 with lost more than 52 | CREATE TABLE table_name_2 (games INTEGER, lost VARCHAR, standing VARCHAR, goals_against VARCHAR) | SELECT MAX(games) FROM table_name_2 WHERE standing = "5th, lebel" AND goals_against > 220 AND lost > 52 |
What is Set 4, when Set 5 is NA, and when Set 3 is 19-25? | CREATE TABLE table_name_10 (set_4 VARCHAR, set_5 VARCHAR, set_3 VARCHAR) | SELECT set_4 FROM table_name_10 WHERE set_5 = "na" AND set_3 = "19-25" |
How many pole positions for round 20? | CREATE TABLE table_26137666_3 (pole_position VARCHAR, round VARCHAR) | SELECT COUNT(pole_position) FROM table_26137666_3 WHERE round = 20 |
What is the lowest value of a team with revenue less than 374 and a debt of 84%? | CREATE TABLE table_name_26 (value__ INTEGER, revenue__$m_ VARCHAR, debt_as__percentageof_value VARCHAR) | SELECT MIN(value__) AS $m_ FROM table_name_26 WHERE revenue__$m_ < 374 AND debt_as__percentageof_value = "84" |
Which Tie # has an Away team of slough town? | CREATE TABLE table_name_66 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_66 WHERE away_team = "slough town" |
Listed with a continent of Africa and before 2009 this structure is called what? | CREATE TABLE table_name_83 (structure VARCHAR, year VARCHAR, continent VARCHAR) | SELECT structure FROM table_name_83 WHERE year < 2009 AND continent = "africa" |
What is the number of enrollments for teams named the Buccaneers founded before 1911? | CREATE TABLE table_name_23 (enrollment VARCHAR, nickname VARCHAR, founded VARCHAR) | SELECT COUNT(enrollment) FROM table_name_23 WHERE nickname = "buccaneers" AND founded < 1911 |
What gender is Quentin? | CREATE TABLE table_2933761_1 (gender VARCHAR, name VARCHAR) | SELECT gender FROM table_2933761_1 WHERE name = "Quentin" |
What was the average pick with Ed O'Bannon and a round smaller than 1? | CREATE TABLE table_name_74 (pick INTEGER, player VARCHAR, round VARCHAR) | SELECT AVG(pick) FROM table_name_74 WHERE player = "ed o'bannon" AND round < 1 |
Tell me the surface for november 28, 2010 | CREATE TABLE table_name_34 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_34 WHERE date = "november 28, 2010" |
What is the time recorded by David Salom on his Yamaha yzf-r6 when his grid was larger than 1? | CREATE TABLE table_name_81 (time VARCHAR, rider VARCHAR, bike VARCHAR, grid VARCHAR) | SELECT time FROM table_name_81 WHERE bike = "yamaha yzf-r6" AND grid > 1 AND rider = "david salom" |
Name the population of maryborough when population of woocoo is 2700 | CREATE TABLE table_12576536_1 (population__maryborough_ VARCHAR, population__woocoo_ VARCHAR) | SELECT population__maryborough_ FROM table_12576536_1 WHERE population__woocoo_ = 2700 |
When Grand Rapids's fare was $377.29, what is the fare to Detroit? | CREATE TABLE table_1637981_7 (detroit__dtw_ VARCHAR, grand_rapids__grr_ VARCHAR) | SELECT detroit__dtw_ FROM table_1637981_7 WHERE grand_rapids__grr_ = "$377.29" |
Who was the Away Captain at The Oval? | CREATE TABLE table_name_86 (away_captain VARCHAR, venue VARCHAR) | SELECT away_captain FROM table_name_86 WHERE venue = "the oval" |
Which Selection has a Player of jamaar taylor, and a Round larger than 6? | CREATE TABLE table_name_33 (selection INTEGER, player VARCHAR, round VARCHAR) | SELECT MIN(selection) FROM table_name_33 WHERE player = "jamaar taylor" AND round > 6 |
What is the result of the game at Bishop Kearney Field on August 2? | CREATE TABLE table_name_24 (result VARCHAR, field VARCHAR, date VARCHAR) | SELECT result FROM table_name_24 WHERE field = "bishop kearney field" AND date = "august 2" |
What are the total freights in metric tonnes when the total transit passengers is 147791? | CREATE TABLE table_13836704_7 (freight___metric_tonnes__ VARCHAR, transit_passengers VARCHAR) | SELECT freight___metric_tonnes__ FROM table_13836704_7 WHERE transit_passengers = 147791 |
What is the Record with a Date that is may 20, 1961? | CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_73 WHERE date = "may 20, 1961" |
What is Date to [H], when Position [F] is "Defender", when Goals is less than 3, when Appearances is greater than 113, and when Date From [G] is "1997"? | CREATE TABLE table_name_38 (date_to_ VARCHAR, h_ VARCHAR, appearances VARCHAR, date_from_ VARCHAR, g_ VARCHAR, goals VARCHAR, position_ VARCHAR, f_ VARCHAR) | SELECT date_to_[h_] FROM table_name_38 WHERE position_[f_] = "defender" AND goals < 3 AND appearances > 113 AND date_from_[g_] = "1997" |
What is the purpose of Euromarine? | CREATE TABLE table_name_52 (purpose VARCHAR, payee VARCHAR) | SELECT purpose FROM table_name_52 WHERE payee = "euromarine" |
What is the largest number of goals with less than 101 assists and 172 points? | CREATE TABLE table_name_97 (goals INTEGER, assists VARCHAR, points VARCHAR) | SELECT MAX(goals) FROM table_name_97 WHERE assists < 101 AND points < 172 |
give me names of all compatible browsers and accelerators in the descending order of compatible year | CREATE TABLE accelerator_compatible_browser (browser_id VARCHAR, accelerator_id VARCHAR, compatible_since_year VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, id VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR) | SELECT T2.name, T3.name FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id ORDER BY T1.compatible_since_year DESC |
what is the correct year for # / county of 09 cass? | CREATE TABLE table_name_65 (year_joined VARCHAR, _number___county VARCHAR) | SELECT year_joined FROM table_name_65 WHERE _number___county = "09 cass" |
What 1st leg has 52-70 as the agg.? | CREATE TABLE table_name_8 (agg VARCHAR) | SELECT 1 AS st_leg FROM table_name_8 WHERE agg = "52-70" |
Find the average age of students who are living in the dorm with the largest capacity. | CREATE TABLE dorm (student_capacity INTEGER); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, student_capacity INTEGER) | SELECT AVG(T1.age) FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.student_capacity = (SELECT MAX(student_capacity) FROM dorm) |
Who was the sound producer that worked under Executive Producer JL? | CREATE TABLE table_name_77 (sound VARCHAR, producer_executive_producer VARCHAR) | SELECT sound FROM table_name_77 WHERE producer_executive_producer = "jl" |
What is the Kana of the Province with a Korean name of Chungcheong-Namdo? | CREATE TABLE table_name_2 (kana VARCHAR, korean_name VARCHAR) | SELECT kana FROM table_name_2 WHERE korean_name = "chungcheong-namdo" |
What candidates ran in the election with don fuqua? | CREATE TABLE table_1341690_9 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1341690_9 WHERE incumbent = "Don Fuqua" |
How many episodes have a duration of 3? | CREATE TABLE table_name_35 (episodes VARCHAR, duration VARCHAR) | SELECT COUNT(episodes) FROM table_name_35 WHERE duration = "3" |
When has a Status of five nations, and a Against of 7? | CREATE TABLE table_name_71 (date VARCHAR, status VARCHAR, against VARCHAR) | SELECT date FROM table_name_71 WHERE status = "five nations" AND against = 7 |
If the amount of U.S. viewers is 2.05 milliom, who was the episode directed by? | CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR) | SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.05" |
Who is the thursday presenter of the show Big Brother 13? | CREATE TABLE table_11748792_2 (thursday VARCHAR, series VARCHAR) | SELECT thursday FROM table_11748792_2 WHERE series = "Big Brother 13" |
Who had the fastest lap in round 15? | CREATE TABLE table_2911781_3 (fastest_lap VARCHAR, rd VARCHAR) | SELECT fastest_lap FROM table_2911781_3 WHERE rd = 15 |
Tell me the game site for week of 1 | CREATE TABLE table_name_98 (game_site VARCHAR, week VARCHAR) | SELECT game_site FROM table_name_98 WHERE week = "1" |
On the date november 24-december 6 what's the winner when the country is united states? | CREATE TABLE table_name_35 (winner VARCHAR, country VARCHAR, date VARCHAR) | SELECT winner FROM table_name_35 WHERE country = "united states" AND date = "november 24-december 6" |
What is the launch date odds of winning 1 in 4.44? | CREATE TABLE table_name_92 (launch_date VARCHAR, odds_of_winning VARCHAR) | SELECT launch_date FROM table_name_92 WHERE odds_of_winning = "1 in 4.44" |
What's the finish for car number 6? | CREATE TABLE table_name_33 (finish VARCHAR, car_number VARCHAR) | SELECT finish FROM table_name_33 WHERE car_number = "6" |
What is the total number of points where there were 3 losses and a played number bigger than 12? | CREATE TABLE table_name_40 (points INTEGER, lost VARCHAR, played VARCHAR) | SELECT SUM(points) FROM table_name_40 WHERE lost = 3 AND played > 12 |
When first elected was 2006, who was the delegate? | CREATE TABLE table_name_99 (delegate VARCHAR, first_elected VARCHAR) | SELECT delegate FROM table_name_99 WHERE first_elected = 2006 |
What language has 20th century fox as the publisher? | CREATE TABLE table_name_52 (language VARCHAR, publisher VARCHAR) | SELECT language FROM table_name_52 WHERE publisher = "20th century fox" |
What is the total number of semi-final losses for the Kitchener Rangers? | CREATE TABLE table_17751942_4 (final_losses VARCHAR, Semi INTEGER, team VARCHAR) | SELECT MAX(Semi) - final_losses FROM table_17751942_4 WHERE team = "Kitchener Rangers" |
What is the total number of Round(s), when Time is "N/A", when Location is "Alabama , United States", and when Record is "1-2-0"? | CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR, time VARCHAR, location VARCHAR) | SELECT COUNT(round) FROM table_name_53 WHERE time = "n/a" AND location = "alabama , united states" AND record = "1-2-0" |
How many points did robert stenberg have? | CREATE TABLE table_25647137_2 (points INTEGER, player VARCHAR) | SELECT MIN(points) FROM table_25647137_2 WHERE player = "Robert Stenberg" |
Name the venue for 2004 and position of 25th | CREATE TABLE table_name_4 (venue VARCHAR, position VARCHAR, year VARCHAR) | SELECT venue FROM table_name_4 WHERE position = "25th" AND year = 2004 |
If the language is only native, what is the percentage of the San Antonio de Lomerio municipality? | CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, language VARCHAR) | SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE language = "Only native" |
What is the average 2010 population having longitude over -102.353035, latitude over 46.937841, and 0.034 sqmi of water? | CREATE TABLE table_name_30 (pop__2010_ INTEGER, water__sqmi_ VARCHAR, longitude VARCHAR, latitude VARCHAR) | SELECT AVG(pop__2010_) FROM table_name_30 WHERE longitude > -102.353035 AND latitude > 46.937841 AND water__sqmi_ = 0.034 |
What is the venue when the score is 1 goal, and the date is August 27, 1980? | CREATE TABLE table_name_94 (venue VARCHAR, score VARCHAR, date VARCHAR) | SELECT venue FROM table_name_94 WHERE score = "1 goal" AND date = "august 27, 1980" |
What band does 4cca use? | CREATE TABLE table_name_52 (band VARCHAR, callsign VARCHAR) | SELECT band FROM table_name_52 WHERE callsign = "4cca" |
What are the names and year of construction for the mills of 'Grondzeiler' type? | CREATE TABLE mill (name VARCHAR, built_year VARCHAR, TYPE VARCHAR) | SELECT name, built_year FROM mill WHERE TYPE = 'Grondzeiler' |
What was the run 3 for the team with a run 1 of 1:17.6? | CREATE TABLE table_name_40 (run_3 VARCHAR, run_1 VARCHAR) | SELECT run_3 FROM table_name_40 WHERE run_1 = "1:17.6" |
How many clubs have a tries against count of 41? | CREATE TABLE table_12886178_5 (try_bonus VARCHAR, tries_against VARCHAR) | SELECT COUNT(try_bonus) FROM table_12886178_5 WHERE tries_against = "41" |
What is the total number of Losses, when Last Appearance is 2003, and when Wins is greater than 2? | CREATE TABLE table_name_85 (losses VARCHAR, last_appearance VARCHAR, wins VARCHAR) | SELECT COUNT(losses) FROM table_name_85 WHERE last_appearance = "2003" AND wins > 2 |
What is the fewest shots a glazing can handle? | CREATE TABLE table_21538523_1 (shots INTEGER) | SELECT MIN(shots) FROM table_21538523_1 |
What is the rank of the person with a time of 1:44.757? | CREATE TABLE table_name_62 (rank INTEGER, time VARCHAR) | SELECT MAX(rank) FROM table_name_62 WHERE time = "1:44.757" |
What is Builder, when Ship is "Arizona"? | CREATE TABLE table_name_67 (builder VARCHAR, ship VARCHAR) | SELECT builder FROM table_name_67 WHERE ship = "arizona" |
Which Wins is the highest one that has a Pos of 2nd, and Poles larger than 2? | CREATE TABLE table_name_3 (wins INTEGER, pos VARCHAR, poles VARCHAR) | SELECT MAX(wins) FROM table_name_3 WHERE pos = "2nd" AND poles > 2 |
How many years has there been a competition in Helsinki? | CREATE TABLE table_name_78 (year VARCHAR, location VARCHAR) | SELECT COUNT(year) FROM table_name_78 WHERE location = "helsinki" |
Which FCC info has a City of license of burley, idaho, and a Frequency MHz of 89.5? | CREATE TABLE table_name_65 (fcc_info VARCHAR, city_of_license VARCHAR, frequency_mhz VARCHAR) | SELECT fcc_info FROM table_name_65 WHERE city_of_license = "burley, idaho" AND frequency_mhz = 89.5 |
Name the party for virginia 12 | CREATE TABLE table_2668367_21 (party VARCHAR, district VARCHAR) | SELECT party FROM table_2668367_21 WHERE district = "Virginia 12" |
What is the state of the team who plays in Mumbai? | CREATE TABLE table_name_43 (state VARCHAR, team VARCHAR) | SELECT state FROM table_name_43 WHERE team = "mumbai" |
Name the drivers for chassis of season cancelled | CREATE TABLE table_name_88 (drivers VARCHAR, chassis VARCHAR) | SELECT drivers FROM table_name_88 WHERE chassis = "season cancelled" |
What is the highest total number of finals a club with more than 2 runners-up and fewer than 1 winner went to? | CREATE TABLE table_name_56 (total_finals INTEGER, runners_up VARCHAR, winners VARCHAR) | SELECT MAX(total_finals) FROM table_name_56 WHERE runners_up > 2 AND winners < 1 |
what's the others% with parbeingh being tangipahoa | CREATE TABLE table_13608101_1 (others_percentage VARCHAR, parish VARCHAR) | SELECT others_percentage FROM table_13608101_1 WHERE parish = "Tangipahoa" |
What is the latest episode in the season directed by Chris Long? | CREATE TABLE table_21312845_1 (no_in_season INTEGER, directed_by VARCHAR) | SELECT MAX(no_in_season) FROM table_21312845_1 WHERE directed_by = "Chris Long" |
Waht was the away team when the home team is colchester united? | CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_95 WHERE home_team = "colchester united" |
What is the name of the building listed on 1977-11-23? | CREATE TABLE table_name_81 (name VARCHAR, listed VARCHAR) | SELECT name FROM table_name_81 WHERE listed = "1977-11-23" |
How many wins for the team with points less than 6 and a 350cc class? | CREATE TABLE table_name_35 (wins VARCHAR, points VARCHAR, class VARCHAR) | SELECT wins FROM table_name_35 WHERE points < 6 AND class = "350cc" |
who is the candidate where district is louisiana 3? | CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342198_18 WHERE district = "Louisiana 3" |
What was the 2012 result associated with a 2007 finish of 2R and a 2009 of 1R? | CREATE TABLE table_name_18 (Id VARCHAR) | SELECT 2012 FROM table_name_18 WHERE 2007 = "2r" AND 2009 = "1r" |
In the Tennis Masters Cup, how did Jiří Novák do in 1997? | CREATE TABLE table_name_75 (tournament VARCHAR) | SELECT 1997 FROM table_name_75 WHERE tournament = "tennis masters cup" |
who is the the pole position with rnd being 16 | CREATE TABLE table_14638077_2 (pole_position VARCHAR, rnd VARCHAR) | SELECT pole_position FROM table_14638077_2 WHERE rnd = 16 |
What Away team is visiting Carlton? | CREATE TABLE table_name_27 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_27 WHERE home_team = "carlton" |
What amount is the number of hk viewers where chinese title is 十兄弟? | CREATE TABLE table_11173827_1 (hk_viewers VARCHAR, chinese_title VARCHAR) | SELECT hk_viewers FROM table_11173827_1 WHERE chinese_title = "十兄弟" |
What is the Attendance of the game against the Florida Panthers? | CREATE TABLE table_name_8 (attendance INTEGER, opponent VARCHAR) | SELECT SUM(attendance) FROM table_name_8 WHERE opponent = "florida panthers" |
What is the sum of the 2010 population with a latitude greater than 47.710905, a longitude of -101.79876, and less than 35.695 sq mi of land? | CREATE TABLE table_name_64 (pop__2010_ INTEGER, land___sqmi__ VARCHAR, latitude VARCHAR, longitude VARCHAR) | SELECT SUM(pop__2010_) FROM table_name_64 WHERE latitude > 47.710905 AND longitude = -101.79876 AND land___sqmi__ < 35.695 |
which Province has a ICAO of vmmc? | CREATE TABLE table_name_56 (province VARCHAR, icao VARCHAR) | SELECT province FROM table_name_56 WHERE icao = "vmmc" |
List the forenames of all distinct drivers in alphabetical order? | CREATE TABLE drivers (forename VARCHAR) | SELECT DISTINCT forename FROM drivers ORDER BY forename |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.