question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Find the salary and manager number for those employees who is working under a manager.
CREATE TABLE employees (salary VARCHAR, manager_id VARCHAR)
SELECT salary, manager_id FROM employees WHERE manager_id <> "null"
How many results are listed for week 13?
CREATE TABLE table_17782308_1 (result VARCHAR, week VARCHAR)
SELECT COUNT(result) FROM table_17782308_1 WHERE week = 13
Which Record has an Event of inoki bom-ba-ye 2002?
CREATE TABLE table_name_1 (record VARCHAR, event VARCHAR)
SELECT record FROM table_name_1 WHERE event = "inoki bom-ba-ye 2002"
Which dogs are owned by someone who lives in Virginia? List the owner's first name and the dog's name.
CREATE TABLE Dogs (name VARCHAR, owner_id VARCHAR); CREATE TABLE Owners (first_name VARCHAR, owner_id VARCHAR, state VARCHAR)
SELECT T1.first_name, T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T1.state = 'Virginia'
What is the average that has 2 for the rank?
CREATE TABLE table_name_3 (average VARCHAR, rank VARCHAR)
SELECT average FROM table_name_3 WHERE rank = "2"
What are first and last names of players participating in all star game in 1998?
CREATE TABLE all_star (player_id VARCHAR); CREATE TABLE player (player_id VARCHAR)
SELECT name_first, name_last FROM player AS T1 JOIN all_star AS T2 ON T1.player_id = T2.player_id WHERE YEAR = 1998
What is the earliest year that has fewer than 3852.1 cows and 3900.1 working horses?
CREATE TABLE table_name_97 (year INTEGER, working_horses VARCHAR, cows VARCHAR)
SELECT MIN(year) FROM table_name_97 WHERE working_horses = "3900.1" AND cows < 3852.1
What was the original air date of Stargate SG-1 written by Peter Deluise?
CREATE TABLE table_15431959_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_15431959_1 WHERE written_by = "Peter DeLuise"
Name the rufus guest for 15 december 2008
CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, first_broadcast VARCHAR)
SELECT COUNT(rufus_guest) FROM table_19930660_1 WHERE first_broadcast = "15 December 2008"
From what town was Steve Zakuani?
CREATE TABLE table_name_7 (home_town VARCHAR, player VARCHAR)
SELECT home_town FROM table_name_7 WHERE player = "steve zakuani"
How many new entries started in the round where winners from the previous round is 32?
CREATE TABLE table_18328569_1 (new_entries_this_round VARCHAR, winners_from_previous_round VARCHAR)
SELECT new_entries_this_round FROM table_18328569_1 WHERE winners_from_previous_round = "32"
What score did Ted Kroll get to come in at T2?
CREATE TABLE table_name_80 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_80 WHERE place = "t2" AND player = "ted kroll"
What is the score for the 2nd leg when Belasica is team 2?
CREATE TABLE table_name_75 (team_2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_75 WHERE team_2 = "belasica"
What is the Yogi Bear that aired on 1959.12.21?
CREATE TABLE table_19860361_3 (yogi_bear VARCHAR, air_date VARCHAR)
SELECT yogi_bear FROM table_19860361_3 WHERE air_date = "1959.12.21"
What c class engine did philipp eng and team hs technik motorsport use?
CREATE TABLE table_name_2 (engine VARCHAR, driver VARCHAR, class VARCHAR, team VARCHAR)
SELECT engine FROM table_name_2 WHERE class = "c" AND team = "hs technik motorsport" AND driver = "philipp eng"
Who's the Socialist ticket with a Republican ticket of john a. may?
CREATE TABLE table_name_2 (socialist_ticket VARCHAR, republican_ticket VARCHAR)
SELECT socialist_ticket FROM table_name_2 WHERE republican_ticket = "john a. may"
Which Notes have a Competition of world championships, and a Position of 2nd?
CREATE TABLE table_name_74 (notes VARCHAR, competition VARCHAR, position VARCHAR)
SELECT notes FROM table_name_74 WHERE competition = "world championships" AND position = "2nd"
Name the Weight which has a Name of balázs hárai category:articles with hcards?
CREATE TABLE table_name_10 (weight VARCHAR, name VARCHAR)
SELECT weight FROM table_name_10 WHERE name = "balázs hárai category:articles with hcards"
How much memory (RAM) does the Maemo 5 operating system have?
CREATE TABLE table_name_40 (memory___ram__ VARCHAR, operating_system_version VARCHAR)
SELECT memory___ram__ FROM table_name_40 WHERE operating_system_version = "maemo 5"
How many U.S. viewers in millions watched the number 7 episode in the series that was written by Jed Spingarn?
CREATE TABLE table_25246990_2 (us_viewers__millions_ VARCHAR, written_by VARCHAR, no_in_series VARCHAR)
SELECT us_viewers__millions_ FROM table_25246990_2 WHERE written_by = "Jed Spingarn" AND no_in_series = "7"
What is the highest Counties when Mitt Romney was the candidate with less than 0 delegates?
CREATE TABLE table_name_62 (counties INTEGER, candidate VARCHAR, delegates VARCHAR)
SELECT MAX(counties) FROM table_name_62 WHERE candidate = "mitt romney" AND delegates < 0
Which stadium is for football with the China League One?
CREATE TABLE table_name_34 (stadium VARCHAR, sport VARCHAR, league VARCHAR)
SELECT stadium FROM table_name_34 WHERE sport = "football" AND league = "china league one"
What was the original air date of a series number after 78, written by Jenee V. Giles?
CREATE TABLE table_name_85 (original_air_date VARCHAR, series__number VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_name_85 WHERE series__number > 78 AND written_by = "jenee v. giles"
Which Location has a Record of 0-1?
CREATE TABLE table_name_59 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_59 WHERE record = "0-1"
What is the average number of villages with a name of janapada of Punia?
CREATE TABLE table_name_86 (no_of_villages INTEGER, name_of_janapada VARCHAR)
SELECT AVG(no_of_villages) FROM table_name_86 WHERE name_of_janapada = "punia"
Which driver was number 2‡?
CREATE TABLE table_20159025_1 (driver VARCHAR, no VARCHAR)
SELECT driver FROM table_20159025_1 WHERE no = "2‡"
What was the capacity for the Denver Broncos?
CREATE TABLE table_28884858_2 (capacity_percentage VARCHAR, team VARCHAR)
SELECT capacity_percentage FROM table_28884858_2 WHERE team = "Denver Broncos"
Which title has a length of 4:22?
CREATE TABLE table_name_1 (title VARCHAR, time VARCHAR)
SELECT title FROM table_name_1 WHERE time = "4:22"
When was the appointment date for VFL Wolfsburg?
CREATE TABLE table_name_72 (date_of_appointment VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_name_72 WHERE team = "vfl wolfsburg"
Rood & Taylor of o, and a Buechel & Manhart spelling (pronunciation) of o had what university of Minnesota?
CREATE TABLE table_name_63 (university_of_minnesota VARCHAR, rood_ VARCHAR, _taylor VARCHAR, buechel_ VARCHAR, _manhart_spelling__pronunciation_ VARCHAR)
SELECT university_of_minnesota FROM table_name_63 WHERE rood_ & _taylor = "o" AND buechel_ & _manhart_spelling__pronunciation_ = "o"
What was the attendance at the St Kilda home game?
CREATE TABLE table_name_54 (crowd INTEGER, home_team VARCHAR)
SELECT AVG(crowd) FROM table_name_54 WHERE home_team = "st kilda"
Who trained the horse on post 11 with over 36 odds?
CREATE TABLE table_name_93 (trainer VARCHAR, odds VARCHAR, post VARCHAR)
SELECT trainer FROM table_name_93 WHERE odds > 36 AND post = 11
Who watches North Melbourne when they are away?
CREATE TABLE table_name_14 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_14 WHERE away_team = "north melbourne"
What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees?
CREATE TABLE table_name_55 (fiscal_year INTEGER, headquarters VARCHAR, employees VARCHAR)
SELECT AVG(fiscal_year) FROM table_name_55 WHERE headquarters = "noida" AND employees < 85 OFFSET 335
Name the player for fc dallas pick number less than 3
CREATE TABLE table_name_69 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR)
SELECT player FROM table_name_69 WHERE pick__number < 3 AND mls_team = "fc dallas"
What was Carlton's score as the home team?
CREATE TABLE table_name_65 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_65 WHERE home_team = "carlton"
What is the lowest number of goals with 8 (2) w-leagues?
CREATE TABLE table_name_52 (goals INTEGER, w_league VARCHAR)
SELECT MIN(goals) FROM table_name_52 WHERE w_league = "8 (2)"
Show the name, phone, and payment method code for all customers in descending order of customer number.
CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, payment_method_code VARCHAR, customer_number VARCHAR)
SELECT customer_name, customer_phone, payment_method_code FROM customers ORDER BY customer_number DESC
What is the total number of agriculatural panels of the composition with more than 3 National Universities of Ireland?
CREATE TABLE table_name_59 (agricultural_panel VARCHAR, national_university_of_ireland INTEGER)
SELECT COUNT(agricultural_panel) FROM table_name_59 WHERE national_university_of_ireland > 3
What are the dates of the outgoing manager colin hendry does appointments?
CREATE TABLE table_11207040_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_11207040_6 WHERE outgoing_manager = "Colin Hendry"
Who was the driver of the Ford EDB 3.0 v8 engine?
CREATE TABLE table_name_82 (driver VARCHAR, engine VARCHAR)
SELECT driver FROM table_name_82 WHERE engine = "ford edb 3.0 v8"
What is Outcome, when Opponent in The Final is "Bill Scanlon"?
CREATE TABLE table_name_98 (outcome VARCHAR, opponent_in_the_final VARCHAR)
SELECT outcome FROM table_name_98 WHERE opponent_in_the_final = "bill scanlon"
Who was the presenter on Friday of the series in which Alice Levine Jamie East presented on Sunday?
CREATE TABLE table_name_34 (friday VARCHAR, sunday VARCHAR)
SELECT friday FROM table_name_34 WHERE sunday = "alice levine jamie east"
What is the record of the buccaneers on December 4, 1983?
CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_9 WHERE date = "december 4, 1983"
Which built by HM Dockyard has September 1830 as the laid down?
CREATE TABLE table_name_43 (built_by_hm_dockyard VARCHAR, laid_down VARCHAR)
SELECT built_by_hm_dockyard FROM table_name_43 WHERE laid_down = "september 1830"
In what Wicket in the City of Eastbourne with a Score of less than 368?
CREATE TABLE table_name_60 (wicket VARCHAR, score VARCHAR, city VARCHAR)
SELECT wicket FROM table_name_60 WHERE score < 368 AND city = "eastbourne"
What were the notes during the distance of Men's Speed Skating?
CREATE TABLE table_name_57 (notes VARCHAR, distance VARCHAR)
SELECT notes FROM table_name_57 WHERE distance = "men's speed skating"
What are the fewest points that Roger Dutton/Tony Wright have received?
CREATE TABLE table_name_15 (points INTEGER, rider VARCHAR)
SELECT MIN(points) FROM table_name_15 WHERE rider = "roger dutton/tony wright"
What is the Date for the Away team University?
CREATE TABLE table_name_73 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_73 WHERE away_team = "university"
What is the lowest position with 32-6 points and less then 59 goals when there are more than 38 played?
CREATE TABLE table_name_37 (position INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR)
SELECT MIN(position) FROM table_name_37 WHERE points = "32-6" AND goals_against < 59 AND played > 38
Which Date has a Time of 12:00?
CREATE TABLE table_name_80 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_80 WHERE time = "12:00"
what is the least played when points is 36 and place is more than 2?
CREATE TABLE table_name_39 (played INTEGER, points VARCHAR, place VARCHAR)
SELECT MIN(played) FROM table_name_39 WHERE points = 36 AND place > 2
What is the score of the game home team gillingham played on 23 january 1982?
CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_67 WHERE date = "23 january 1982" AND home_team = "gillingham"
What was the attendance for the game on October 30, 1994 for a week after week 2?
CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_54 WHERE week > 2 AND date = "october 30, 1994"
What's the transfer window that ends in 2012?
CREATE TABLE table_name_19 (transfer_window VARCHAR, ends VARCHAR)
SELECT transfer_window FROM table_name_19 WHERE ends = "2012"
HOW MANY CARS HAD A CAR # SMALLER THAN 7 AND STARTED ON 2010?
CREATE TABLE table_name_38 (number_of_cars VARCHAR, car__number VARCHAR, year_started VARCHAR)
SELECT number_of_cars FROM table_name_38 WHERE car__number < 7 AND year_started = 2010
What is the total losses for the player with fewer than 51 pens, 3 tries and 45 starts?
CREATE TABLE table_name_19 (lost VARCHAR, start VARCHAR, pens VARCHAR, tries VARCHAR)
SELECT COUNT(lost) FROM table_name_19 WHERE pens < 51 AND tries = 3 AND start = 45
What is the to par for Bo Bae Song?
CREATE TABLE table_name_20 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_20 WHERE player = "bo bae song"
What is the Population of the Parish with an Area km 2 of 236.76?
CREATE TABLE table_name_85 (population INTEGER, area_km_2 VARCHAR)
SELECT MIN(population) FROM table_name_85 WHERE area_km_2 = 236.76
What was the other team in game 11?
CREATE TABLE table_27722408_6 (team VARCHAR, game VARCHAR)
SELECT team FROM table_27722408_6 WHERE game = 11
What is the venue in 2011, when the state is California?
CREATE TABLE table_name_5 (venue VARCHAR, state VARCHAR, year VARCHAR)
SELECT venue FROM table_name_5 WHERE state = "california" AND year = 2011
what is the sum of the year in rhode island
CREATE TABLE table_name_99 (year INTEGER, state VARCHAR)
SELECT SUM(year) FROM table_name_99 WHERE state = "rhode island"
What Picture Coding Types have Chroma Format of 4:2:2 or 4:2:0 and the Name of 4:2:2 profile?
CREATE TABLE table_name_57 (picture_coding_types VARCHAR, chroma_format VARCHAR, name VARCHAR)
SELECT picture_coding_types FROM table_name_57 WHERE chroma_format = "4:2:2 or 4:2:0" AND name = "4:2:2 profile"
What is the method where there is a loss with time 5:00?
CREATE TABLE table_name_76 (method VARCHAR, res VARCHAR, time VARCHAR)
SELECT method FROM table_name_76 WHERE res = "loss" AND time = "5:00"
Who was the builder for the USS cambridge?
CREATE TABLE table_name_98 (builder VARCHAR, name VARCHAR)
SELECT builder FROM table_name_98 WHERE name = "uss cambridge"
Which Draws have Losses smaller than 16, and a Team of university, and Wins larger than 0?
CREATE TABLE table_name_38 (draws INTEGER, wins VARCHAR, losses VARCHAR, team VARCHAR)
SELECT AVG(draws) FROM table_name_38 WHERE losses < 16 AND team = "university" AND wins > 0
What Championship has an Opponent in the final of aaron krickstein, and a Score in the final of 7–5, 6–2?
CREATE TABLE table_name_86 (championship VARCHAR, opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
SELECT championship FROM table_name_86 WHERE opponent_in_the_final = "aaron krickstein" AND score_in_the_final = "7–5, 6–2"
What is the smallest rank with a Total smaller than 1?
CREATE TABLE table_name_69 (rank INTEGER, total INTEGER)
SELECT MIN(rank) FROM table_name_69 WHERE total < 1
what is the ship with the date of 28.1.1915?
CREATE TABLE table_name_87 (ship VARCHAR, date VARCHAR)
SELECT ship FROM table_name_87 WHERE date = "28.1.1915"
What is the record where aaron brooks (6) is high assists?
CREATE TABLE table_23281862_9 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_23281862_9 WHERE high_assists = "Aaron Brooks (6)"
What was the score in the game where Carolina was the home team and Niittymaki received the decision?
CREATE TABLE table_name_90 (score VARCHAR, decision VARCHAR, home VARCHAR)
SELECT score FROM table_name_90 WHERE decision = "niittymaki" AND home = "carolina"
What is Score, when Competition is "Euro 2004 Qualifier"?
CREATE TABLE table_name_73 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_73 WHERE competition = "euro 2004 qualifier"
What's the fastest laps during the 1995 season having poles & podiums at 0?
CREATE TABLE table_name_2 (fastest_laps INTEGER, seasons VARCHAR, poles VARCHAR, podiums VARCHAR)
SELECT SUM(fastest_laps) FROM table_name_2 WHERE poles = 0 AND podiums = 0 AND seasons = "1995"
What is listed as the Date made with a Quantity made of 13?
CREATE TABLE table_name_5 (date_made VARCHAR, quantity_made VARCHAR)
SELECT date_made FROM table_name_5 WHERE quantity_made = 13
What is the tyre on the race where Bruce Mclaren had the fastest lap?
CREATE TABLE table_name_58 (tyre VARCHAR, fastest_lap VARCHAR)
SELECT tyre FROM table_name_58 WHERE fastest_lap = "bruce mclaren"
What is the leading scorer of the game with the Celtics as the visiting team?
CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR)
SELECT leading_scorer FROM table_name_59 WHERE visitor = "celtics"
Show all the buildings along with the number of faculty members the buildings have.
CREATE TABLE Faculty (building VARCHAR)
SELECT building, COUNT(*) FROM Faculty GROUP BY building
What is the nationality of the player with a transfer fee of £400k?
CREATE TABLE table_name_99 (nat VARCHAR, transfer_fee VARCHAR)
SELECT nat FROM table_name_99 WHERE transfer_fee = "£400k"
Tell me the sum of attendane for a result of w 12-3 and week more than 12
CREATE TABLE table_name_64 (attendance INTEGER, result VARCHAR, week VARCHAR)
SELECT SUM(attendance) FROM table_name_64 WHERE result = "w 12-3" AND week > 12
What's the sum of Top-10 that has Events that's larger than 16, and has a Top-5 that's also larger than 5?
CREATE TABLE table_name_87 (top_10 VARCHAR, events VARCHAR, top_5 VARCHAR)
SELECT COUNT(top_10) FROM table_name_87 WHERE events > 16 AND top_5 > 5
Builder H. K. Porter, inc who had a type of 0-4-4 Forney locomotive, has what works number?
CREATE TABLE table_name_88 (works_number VARCHAR, type VARCHAR, builder VARCHAR)
SELECT works_number FROM table_name_88 WHERE type = "0-4-4 forney locomotive" AND builder = "h. k. porter, inc"
Name the height for the center position from kansas
CREATE TABLE table_name_93 (height_in_ft VARCHAR, position VARCHAR, school_club_team_country VARCHAR)
SELECT height_in_ft FROM table_name_93 WHERE position = "center" AND school_club_team_country = "kansas"
Who was the leading scorer in the match when the Golden State Warriors were visiting the Dallas Mavericks?
CREATE TABLE table_name_43 (leading_scorer VARCHAR, visitor VARCHAR, home VARCHAR)
SELECT leading_scorer FROM table_name_43 WHERE visitor = "golden state warriors" AND home = "dallas mavericks"
What was the loss of the game that had a record of 63-52?
CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_7 WHERE record = "63-52"
What was the average rank for the team that had more than 5 medals and more than 6 gold medals?
CREATE TABLE table_name_9 (rank INTEGER, total VARCHAR, gold VARCHAR)
SELECT AVG(rank) FROM table_name_9 WHERE total > 5 AND gold > 6
What is the whole of Drawn that has a Lost of 4?
CREATE TABLE table_name_33 (drawn INTEGER, lost VARCHAR)
SELECT SUM(drawn) FROM table_name_33 WHERE lost = 4
On what date was the record 8–6–3?
CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_14 WHERE record = "8–6–3"
Name the team for mario somma
CREATE TABLE table_17275810_7 (team VARCHAR, replaced_by VARCHAR)
SELECT team FROM table_17275810_7 WHERE replaced_by = "Mario Somma"
What party did the incumbent of the Arkansas 6 district belong to?
CREATE TABLE table_1342249_5 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1342249_5 WHERE district = "Arkansas 6"
What Object Type has a °03′32″ Declination (J2000)?
CREATE TABLE table_name_58 (object_type VARCHAR, declination___j2000__ VARCHAR)
SELECT object_type FROM table_name_58 WHERE declination___j2000__ = "°03′32″"
How many goals did coe get?
CREATE TABLE table_name_80 (goals INTEGER, name VARCHAR)
SELECT MIN(goals) FROM table_name_80 WHERE name = "coe"
Name the date that has a friendly competition at rheinpark stadion, vaduz
CREATE TABLE table_name_71 (date VARCHAR, competition VARCHAR, venue VARCHAR)
SELECT date FROM table_name_71 WHERE competition = "friendly" AND venue = "rheinpark stadion, vaduz"
What is the series 3 with gavin duffy in series 5?
CREATE TABLE table_name_25 (series_3 VARCHAR, series_5 VARCHAR)
SELECT series_3 FROM table_name_25 WHERE series_5 = "gavin duffy"
What is the sum of the all around with a 37.75 total?
CREATE TABLE table_name_68 (all_around INTEGER, total VARCHAR)
SELECT SUM(all_around) FROM table_name_68 WHERE total = 37.75
Who was the game on July 7 played against?
CREATE TABLE table_19789597_6 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_19789597_6 WHERE date = "July 7"
If the runner-up is the Fort Lauderdale Strikers, what is the winner (number of titles)?
CREATE TABLE table_237757_3 (winner__number_of_titles_ VARCHAR, runners_up VARCHAR)
SELECT winner__number_of_titles_ FROM table_237757_3 WHERE runners_up = "Fort Lauderdale Strikers"
What is the earliest created year when the map# was 10?
CREATE TABLE table_name_33 (created INTEGER, map_number VARCHAR)
SELECT MIN(created) FROM table_name_33 WHERE map_number = 10
Show the names of journalists and the dates of the events they reported.
CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Date VARCHAR, Event_ID VARCHAR)
SELECT T3.Name, T2.Date FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID
Show the people that have been comptroller the most times and the corresponding number of times.
CREATE TABLE party (Comptroller VARCHAR)
SELECT Comptroller, COUNT(*) FROM party GROUP BY Comptroller ORDER BY COUNT(*) DESC LIMIT 1
Name the tournament venue for big sky conference
CREATE TABLE table_22849575_6 (tournament_venue__city_ VARCHAR, conference VARCHAR)
SELECT tournament_venue__city_ FROM table_22849575_6 WHERE conference = "Big Sky conference"