question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
How many times was Mike McIntyre elected?
CREATE TABLE table_1805191_34 (results VARCHAR, incumbent VARCHAR)
SELECT COUNT(results) FROM table_1805191_34 WHERE incumbent = "Mike McIntyre"
Which party was elected first in 1998?
CREATE TABLE table_1805191_34 (party VARCHAR, first_elected VARCHAR)
SELECT party FROM table_1805191_34 WHERE first_elected = 1998
How many times did Robin Hayes run?
CREATE TABLE table_1805191_34 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1805191_34 WHERE incumbent = "Robin Hayes"
What district first elected a Democratic incumbent in 1998?
CREATE TABLE table_1805191_50 (district VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1805191_50 WHERE party = "Democratic" AND first_elected = 1998
How many tackle assists for the player who averages 23.7?
CREATE TABLE table_18064020_21 (ast VARCHAR, avg VARCHAR)
SELECT ast FROM table_18064020_21 WHERE avg = "23.7"
How many players named jake flaherty?
CREATE TABLE table_18064020_21 (solo VARCHAR, name VARCHAR)
SELECT COUNT(solo) FROM table_18064020_21 WHERE name = "Jake Flaherty"
What is the total brup for the team?
CREATE TABLE table_18064020_21 (brup VARCHAR, name VARCHAR)
SELECT brup FROM table_18064020_21 WHERE name = "total"
What is the largest number of tds scored for a player?
CREATE TABLE table_18064020_21 (td INTEGER)
SELECT MAX(td) FROM table_18064020_21
How many yards for the player with tfl-yds of 2.5-4?
CREATE TABLE table_18064020_21 (no_yds VARCHAR, tfl_yds VARCHAR)
SELECT no_yds FROM table_18064020_21 WHERE tfl_yds = "2.5-4"
What is the lowest number associated with Tonkolili?
CREATE TABLE table_18103265_1 (tonkolili INTEGER)
SELECT MIN(tonkolili) FROM table_18103265_1
What is the main service for the station with 14.849 million passengers 2011-12?
CREATE TABLE table_18118221_1 (main_services VARCHAR, total_passengers__millions__2011_12 VARCHAR)
SELECT main_services FROM table_18118221_1 WHERE total_passengers__millions__2011_12 = "14.849"
What is the lowest rank of Gatwick Airport?
CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR)
SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = "Gatwick Airport"
Which location has 103.534 million passengers in 2011-12?
CREATE TABLE table_18118221_1 (location VARCHAR, total_passengers__millions__2011_12 VARCHAR)
SELECT location FROM table_18118221_1 WHERE total_passengers__millions__2011_12 = "103.534"
How many annual interchanges in the millions occurred in 2011-12 when the number of annual entry/exits was 36.609 million?
CREATE TABLE table_18118221_1 (annual_interchanges__millions__2011_12 VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR)
SELECT annual_interchanges__millions__2011_12 FROM table_18118221_1 WHERE annual_entry_exit__millions__2011_12 = "36.609"
Who was the winning team on the circuit Zolder?
CREATE TABLE table_18095719_2 (winning_team VARCHAR, circuit VARCHAR)
SELECT winning_team FROM table_18095719_2 WHERE circuit = "Zolder"
What round was circuit Avus?
CREATE TABLE table_18095719_2 (round INTEGER, circuit VARCHAR)
SELECT MAX(round) FROM table_18095719_2 WHERE circuit = "AVUS"
Who had pole position in round 7?
CREATE TABLE table_18095719_2 (pole_position VARCHAR, round VARCHAR)
SELECT pole_position FROM table_18095719_2 WHERE round = 7
What is the english (bcp) phrase "for thine is the kingdom, the power" in modern german with standard wording?
CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, english___bcp__ VARCHAR)
SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE english___bcp__ = "For thine is the kingdom, the power"
What is the modern german standard wording for the german based writing system 2 phrase "wie mir die vergewwe wu uns schuldich sinn."?
CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, writing_system_2__german_based_ VARCHAR)
SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE writing_system_2__german_based_ = "wie mir die vergewwe wu uns schuldich sinn."
How many news stations opened on the date of June 24, 2000?
CREATE TABLE table_1817879_2 (_number_of_new_stations VARCHAR, date_opened VARCHAR)
SELECT _number_of_new_stations FROM table_1817879_2 WHERE date_opened = "June 24, 2000"
What is the length (miles) when pico to 7th st/metro center are the endpoints?
CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR)
SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = "Pico to 7th St/Metro Center"
How many lines have the segment description of red line mos-2 west?
CREATE TABLE table_1817879_2 (line_s_ VARCHAR, segment_description VARCHAR)
SELECT line_s_ FROM table_1817879_2 WHERE segment_description = "Red Line MOS-2 West"
What is the lenth (miles) of endpoints westlake/macarthur park to wilshire/western?
CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR)
SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = "Westlake/MacArthur Park to Wilshire/Western"
What date of segment description red line mos-2 north open?
CREATE TABLE table_1817879_2 (date_opened VARCHAR, segment_description VARCHAR)
SELECT date_opened FROM table_1817879_2 WHERE segment_description = "Red Line MOS-2 North"
How many new stations have a lenght (miles) of 6.0?
CREATE TABLE table_1817879_2 (_number_of_new_stations VARCHAR, length__miles_ VARCHAR)
SELECT COUNT(_number_of_new_stations) FROM table_1817879_2 WHERE length__miles_ = "6.0"
If there were 14 in 1990 and 6 survived how many were destroyed?
CREATE TABLE table_1817852_1 (destroyed VARCHAR, survived VARCHAR)
SELECT destroyed FROM table_1817852_1 WHERE 1990 = 14 AND survived = 6
If 4 went to iran and the amount that survived was less than 12.0 how many were there in 1990?
CREATE TABLE table_1817852_1 (to_iran VARCHAR, survived VARCHAR)
SELECT COUNT(1990) FROM table_1817852_1 WHERE to_iran = 4 AND survived < 12.0
If the aircraft was ussr mig-25 rb how many were destroyed?
CREATE TABLE table_1817852_1 (destroyed VARCHAR, aircraft VARCHAR)
SELECT destroyed FROM table_1817852_1 WHERE aircraft = "USSR MiG-25 RB"
What was the score when the opposing team was from Belgium?
CREATE TABLE table_18183850_12 (score VARCHAR, opponent_team VARCHAR)
SELECT score FROM table_18183850_12 WHERE opponent_team = "Belgium"
How many outcomes were there when the opponent was Aleksandra Wozniak?
CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR)
SELECT COUNT(outcome) FROM table_18183850_12 WHERE opponent = "Aleksandra Wozniak"
What was the score when the opponent was Dominika Cibulková?
CREATE TABLE table_18183850_12 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_18183850_12 WHERE opponent = "Dominika Cibulková"
What was the outcome of the game when the opponent was Magdaléna Rybáriková?
CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_18183850_12 WHERE opponent = "Magdaléna Rybáriková"
What was the game edition when they played on the clay (i) surface and the outcome was a winner?
CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT edition FROM table_18183850_12 WHERE surface = "Clay (i)" AND outcome = "Winner"
Who was the game attended by 60425 people played against?
CREATE TABLE table_18207285_2 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_18207285_2 WHERE attendance = 60425
How many different counts of the Raiders first downs are there for the game number 9?
CREATE TABLE table_18207285_2 (raiders_first_downs VARCHAR, game VARCHAR)
SELECT COUNT(raiders_first_downs) FROM table_18207285_2 WHERE game = 9
What's the record in the game played against 42?
CREATE TABLE table_18207285_2 (record VARCHAR, opponents VARCHAR)
SELECT record FROM table_18207285_2 WHERE opponents = 42
What was the result of the game seen by 31095 people?
CREATE TABLE table_18207285_2 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_18207285_2 WHERE attendance = 31095
How many opponents played 1 game with a result win?
CREATE TABLE table_18207285_2 (opponents INTEGER, result VARCHAR, game VARCHAR)
SELECT MAX(opponents) FROM table_18207285_2 WHERE result = "Win" AND game = 1
Which award-winning film has a screening number of 50 films 50 televised?
CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, number_of_screening VARCHAR)
SELECT award_winning_film FROM table_18220102_1 WHERE number_of_screening = "50 films 50 televised"
How many award-winning films have the opening film of encounters at the end of the world?
CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, opening_film VARCHAR)
SELECT COUNT(award_winning_film) FROM table_18220102_1 WHERE opening_film = "Encounters at the End of the World"
How many number of screenings have an opening film of the journey of vaan nguyen?
CREATE TABLE table_18220102_1 (number_of_screening VARCHAR, opening_film VARCHAR)
SELECT COUNT(number_of_screening) FROM table_18220102_1 WHERE opening_film = "The Journey of Vaan Nguyen"
Which opening film has the opening date of august 23?
CREATE TABLE table_18220102_1 (opening_film VARCHAR, date__opening_ VARCHAR)
SELECT opening_film FROM table_18220102_1 WHERE date__opening_ = "August 23"
Which award-winning film has a closing date of September 4?
CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, date__closing_ VARCHAR)
SELECT award_winning_film FROM table_18220102_1 WHERE date__closing_ = "September 4"
What series number garnered 20.64 million viewers?
CREATE TABLE table_18217750_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
SELECT series__number FROM table_18217750_1 WHERE us_viewers__millions_ = "20.64"
What position did Pranita Sahu's team get?
CREATE TABLE table_18278508_2 (position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT position FROM table_18278508_2 WHERE co_contestant__yaar_vs_pyaar_ = "Pranita Sahu"
What date did Jatin Shah and Shalini Chandran perform?
CREATE TABLE table_18278508_2 (date_performed VARCHAR, main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT date_performed FROM table_18278508_2 WHERE main_contestant = "Jatin Shah" AND co_contestant__yaar_vs_pyaar_ = "Shalini Chandran"
Who performed with Tina Parekh?
CREATE TABLE table_18278508_2 (main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT main_contestant FROM table_18278508_2 WHERE co_contestant__yaar_vs_pyaar_ = "Tina Parekh"
What position did the team with the total score of 41/60 get?
CREATE TABLE table_18278508_2 (position VARCHAR, total_score_week VARCHAR)
SELECT position FROM table_18278508_2 WHERE total_score_week = "41/60"
Which round 5 Grand Prix had Daijiro Hiura at pole position?
CREATE TABLE table_18303274_1 (grand_prix VARCHAR, pole_position VARCHAR, round VARCHAR)
SELECT grand_prix FROM table_18303274_1 WHERE pole_position = "Daijiro Hiura" AND round = 5
What grand prixs did Daijiro Hiura win?
CREATE TABLE table_18303274_1 (grand_prix VARCHAR, race_winner VARCHAR)
SELECT grand_prix FROM table_18303274_1 WHERE race_winner = "Daijiro Hiura"
Who had the fastest lap in the Dutch TT Grand Prix?
CREATE TABLE table_18303274_1 (fastest_lap VARCHAR, grand_prix VARCHAR)
SELECT fastest_lap FROM table_18303274_1 WHERE grand_prix = "Dutch TT"
Luis Salom had the fastest lap on which circuits?
CREATE TABLE table_18303274_1 (circuit VARCHAR, fastest_lap VARCHAR)
SELECT circuit FROM table_18303274_1 WHERE fastest_lap = "Luis Salom"
When 15 is the number overall what is the original air date?
CREATE TABLE table_18335117_3 (original_air_date VARCHAR, no_overall VARCHAR)
SELECT original_air_date FROM table_18335117_3 WHERE no_overall = 15
When 1 is the number in series who is the director?
CREATE TABLE table_18335117_3 (director VARCHAR, no_in_series VARCHAR)
SELECT director FROM table_18335117_3 WHERE no_in_series = 1
When did the episode first air that had a production code of 102?
CREATE TABLE table_18335117_2 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_18335117_2 WHERE production_code = 102
When did the episodes first air that had a production code of 107?
CREATE TABLE table_18335117_2 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_18335117_2 WHERE production_code = 107
What is the highest production code of an episode written by Tim Loane?
CREATE TABLE table_18335117_2 (production_code INTEGER, writer VARCHAR)
SELECT MAX(production_code) FROM table_18335117_2 WHERE writer = "Tim Loane"
How many editions have a most wins value of Franco Marvulli (4)?
CREATE TABLE table_1840433_2 (number_of_editions VARCHAR, most_wins_by VARCHAR)
SELECT COUNT(number_of_editions) FROM table_1840433_2 WHERE most_wins_by = "Franco Marvulli (4)"
Name the total number in the series written by john banas and directed by pino amenta
CREATE TABLE table_18428016_1 (no_in_series VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(no_in_series) FROM table_18428016_1 WHERE written_by = "John Banas" AND directed_by = "Pino Amenta"
What was the little league team from Kentucky when the little league team from Illinois was Rock Falls LL Rock Falls?
CREATE TABLE table_18461045_1 (kentucky VARCHAR, illinois VARCHAR)
SELECT kentucky FROM table_18461045_1 WHERE illinois = "Rock Falls LL Rock Falls"
What was the little league team from Indiana when the little league team from Michigan was Midland Northeast LL Midland?
CREATE TABLE table_18461045_1 (indiana VARCHAR, michigan VARCHAR)
SELECT indiana FROM table_18461045_1 WHERE michigan = "Midland Northeast LL Midland"
What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill?
CREATE TABLE table_18461045_1 (kentucky VARCHAR, indiana VARCHAR, wisconsin VARCHAR)
SELECT kentucky FROM table_18461045_1 WHERE indiana = "Brownsburg LL Brownsburg" AND wisconsin = "Merrill LL Merrill"
What was the little league team from Ohio when the little league team from Kentucky was Warren County South LL Bowling Green?
CREATE TABLE table_18461045_1 (ohio VARCHAR, kentucky VARCHAR)
SELECT ohio FROM table_18461045_1 WHERE kentucky = "Warren County South LL Bowling Green"
What was the little league team from Michigan when the little league team from Indiana was Terre Haute North LL Terre Haute?
CREATE TABLE table_18461045_1 (michigan VARCHAR, indiana VARCHAR)
SELECT michigan FROM table_18461045_1 WHERE indiana = "Terre Haute North LL Terre Haute"
What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms?
CREATE TABLE table_18461045_1 (kentucky VARCHAR, michigan VARCHAR)
SELECT kentucky FROM table_18461045_1 WHERE michigan = "Grosse Pointe Farms-City LL Grosse Pointe Farms"
How many table points are listed for the deficit is +194?
CREATE TABLE table_18505065_1 (table_points VARCHAR, difference VARCHAR)
SELECT COUNT(table_points) FROM table_18505065_1 WHERE difference = "+194"
How many games had a deficit of 175?
CREATE TABLE table_18505065_1 (played VARCHAR, against VARCHAR)
SELECT COUNT(played) FROM table_18505065_1 WHERE against = 175
What is the theme song for Magarikado no Kanojo?
CREATE TABLE table_18540104_1 (theme_song_s_ VARCHAR, romaji_title VARCHAR)
SELECT theme_song_s_ FROM table_18540104_1 WHERE romaji_title = "Magarikado no Kanojo"
Who is the star of the program on Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx?
CREATE TABLE table_18540104_1 (starring_actors VARCHAR, time_frame VARCHAR)
SELECT starring_actors FROM table_18540104_1 WHERE time_frame = "Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx"
What is the title with an average rating of 22.4%?
CREATE TABLE table_18540104_1 (romaji_title VARCHAR, average_ratings VARCHAR)
SELECT romaji_title FROM table_18540104_1 WHERE average_ratings = "22.4%"
What is maximum number of episodes for a show?
CREATE TABLE table_18540104_1 (episodes INTEGER)
SELECT MAX(episodes) FROM table_18540104_1
What is the Japanese title with an average rating of 11.6%?
CREATE TABLE table_18540104_1 (japanese_title VARCHAR, average_ratings VARCHAR)
SELECT japanese_title FROM table_18540104_1 WHERE average_ratings = "11.6%"
Who were the starting actors in the time frame of tuesday 22:00~22:54 8 april 2008 to 17 june 2008?
CREATE TABLE table_18539834_2 (starring_actors VARCHAR, time_frame VARCHAR)
SELECT starring_actors FROM table_18539834_2 WHERE time_frame = "Tuesday 22:00~22:54 8 April 2008 to 17 June 2008"
What are the japanese title(s) for tv asahi?
CREATE TABLE table_18539834_2 (japanese_title VARCHAR, tv_station VARCHAR)
SELECT japanese_title FROM table_18539834_2 WHERE tv_station = "TV Asahi"
How many titles had an average rating of 8.9%?
CREATE TABLE table_18539834_2 (romaji_title VARCHAR, average_ratings VARCHAR)
SELECT COUNT(romaji_title) FROM table_18539834_2 WHERE average_ratings = "8.9%"
What is the average rating for tv asahi?
CREATE TABLE table_18539834_2 (average_ratings VARCHAR, tv_station VARCHAR)
SELECT average_ratings FROM table_18539834_2 WHERE tv_station = "TV Asahi"
What is the top speed of a 4-speed automatic with production in 2002-2005?
CREATE TABLE table_1857216_1 (top_speed VARCHAR, transmission VARCHAR, production VARCHAR)
SELECT top_speed FROM table_1857216_1 WHERE transmission = "4-speed automatic" AND production = "2002-2005"
What is the top speed of a 5-speed manual transmission produced in 2006-2009?
CREATE TABLE table_1857216_1 (top_speed VARCHAR, production VARCHAR, transmission VARCHAR)
SELECT top_speed FROM table_1857216_1 WHERE production = "2006-2009" AND transmission = "5-speed manual"
What is the acceleration 0-100km/h that was produced in 2002-2006?
CREATE TABLE table_1857216_1 (acceleration_0_100km_h__0_62mph_ VARCHAR, production VARCHAR)
SELECT acceleration_0_100km_h__0_62mph_ FROM table_1857216_1 WHERE production = "2002-2006"
What was the township with a geo ID of 3807116660?
CREATE TABLE table_18600760_3 (township VARCHAR, geo_id VARCHAR)
SELECT township FROM table_18600760_3 WHERE geo_id = 3807116660
What was the county with a longitude of -102.302775?
CREATE TABLE table_18600760_3 (county VARCHAR, longitude VARCHAR)
SELECT county FROM table_18600760_3 WHERE longitude = "-102.302775"
What was the land area in sqmi that has a latitude of 48.763937?
CREATE TABLE table_18600760_3 (land___sqmi__ VARCHAR, latitude VARCHAR)
SELECT land___sqmi__ FROM table_18600760_3 WHERE latitude = "48.763937"
What was the county with a latitude of 46.770977?
CREATE TABLE table_18600760_3 (county VARCHAR, latitude VARCHAR)
SELECT county FROM table_18600760_3 WHERE latitude = "46.770977"
What was the latitude of the Clearwater townsship?
CREATE TABLE table_18600760_3 (latitude VARCHAR, township VARCHAR)
SELECT latitude FROM table_18600760_3 WHERE township = "Clearwater"
What was the longitude of the township with a latitude of 48.075823?
CREATE TABLE table_18600760_3 (longitude VARCHAR, latitude VARCHAR)
SELECT longitude FROM table_18600760_3 WHERE latitude = "48.075823"
Who is the player with 41 legs lost?
CREATE TABLE table_18621456_22 (player VARCHAR, legs_lost VARCHAR)
SELECT player FROM table_18621456_22 WHERE legs_lost = 41
What is the most legs lost of all?
CREATE TABLE table_18621456_22 (legs_lost INTEGER)
SELECT MAX(legs_lost) FROM table_18621456_22
If the floor number is 14.200, what is the number for the parallel bars?
CREATE TABLE table_18662026_10 (parallel_bars VARCHAR, floor VARCHAR)
SELECT parallel_bars FROM table_18662026_10 WHERE floor = "14.200"
If the parallel bars is 16.150, who is the gymnast?
CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR)
SELECT gymnast FROM table_18662026_10 WHERE parallel_bars = "16.150"
If the parallel bars is 14.025, what is the total number of gymnasts?
CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR)
SELECT COUNT(gymnast) FROM table_18662026_10 WHERE parallel_bars = "14.025"
If the horizontal bar is n/a and the floor is 14.175, what is the number for the parallel bars?
CREATE TABLE table_18662026_10 (parallel_bars VARCHAR, floor VARCHAR, horizontal_bar VARCHAR)
SELECT parallel_bars FROM table_18662026_10 WHERE floor = "14.175" AND horizontal_bar = "N/A"
When 19 is the stage who is the points classification?
CREATE TABLE table_18733814_2 (points_classification VARCHAR, stage VARCHAR)
SELECT points_classification FROM table_18733814_2 WHERE stage = 19
When thomas löfkvist is the young rider classification and alessandro petacchi is the points classification who are the general classifications?
CREATE TABLE table_18733814_2 (general_classification VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR)
SELECT general_classification FROM table_18733814_2 WHERE points_classification = "Alessandro Petacchi" AND young_rider_classification = "Thomas Löfkvist"
When thomas löfkvist is the general classification who is the winner?
CREATE TABLE table_18733814_2 (winner VARCHAR, general_classification VARCHAR)
SELECT winner FROM table_18733814_2 WHERE general_classification = "Thomas Löfkvist"
When philippe gilbert is the winner who is the points classification?
CREATE TABLE table_18733814_2 (points_classification VARCHAR, winner VARCHAR)
SELECT points_classification FROM table_18733814_2 WHERE winner = "Philippe Gilbert"
When danilo di luca is the winner who is the general classification?
CREATE TABLE table_18733814_2 (general_classification VARCHAR, winner VARCHAR)
SELECT general_classification FROM table_18733814_2 WHERE winner = "Danilo Di Luca"
Name the minimum number of reservoir for gnis query link where numbers lake gnis query link being 60
CREATE TABLE table_18760137_2 (_number_s_reservoir_and_gnis_query_link INTEGER, _number_s_lake_and_gnis_query_link VARCHAR)
SELECT MIN(_number_s_reservoir_and_gnis_query_link) FROM table_18760137_2 WHERE _number_s_lake_and_gnis_query_link = 60
Name the most numbers dam and gnis query link for borough or census area for fairbanks north star
CREATE TABLE table_18760137_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)
SELECT MAX(_number_s_dam_and_gnis_query_link) FROM table_18760137_2 WHERE borough_or_census_area = "Fairbanks North Star"
What is the location for the club with the nickname the bears?
CREATE TABLE table_18752986_1 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_18752986_1 WHERE nickname = "Bears"
What is the code nickname where Steve Mayne is the coach?
CREATE TABLE table_18752986_1 (nickname VARCHAR, coach VARCHAR)
SELECT nickname FROM table_18752986_1 WHERE coach = "Steve Mayne"