question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
How many cores does the processor released in April 2012 with a price of $393 and part number av8063801117503 have?
CREATE TABLE table_name_3 (cores VARCHAR, part_number_s_ VARCHAR, release_date VARCHAR, release_price___usd__ VARCHAR)
SELECT cores FROM table_name_3 WHERE release_date = "april 2012" AND release_price___usd__ = "$393" AND part_number_s_ = "av8063801117503"
What is Japan's Area km²?
CREATE TABLE table_name_45 (area_km² VARCHAR, country VARCHAR)
SELECT area_km² FROM table_name_45 WHERE country = "japan"
Which island has a density (per km²) of 1,368?
CREATE TABLE table_name_98 (island VARCHAR, density__per_km²_ VARCHAR)
SELECT island FROM table_name_98 WHERE density__per_km²_ = "1,368"
Which country has a density (per km²) of 6,814?
CREATE TABLE table_name_32 (country VARCHAR, density__per_km²_ VARCHAR)
SELECT country FROM table_name_32 WHERE density__per_km²_ = "6,814"
Which island has a population of 9,520 (2000)?
CREATE TABLE table_name_20 (island VARCHAR, population VARCHAR)
SELECT island FROM table_name_20 WHERE population = "9,520 (2000)"
What is the area km² for a population of 99,685 (2008)?
CREATE TABLE table_name_99 (area_km² VARCHAR, population VARCHAR)
SELECT area_km² FROM table_name_99 WHERE population = "99,685 (2008)"
Which island is in the United Kingdom?
CREATE TABLE table_name_43 (island VARCHAR, country VARCHAR)
SELECT island FROM table_name_43 WHERE country = "united kingdom"
Who is the pitcher from the 1983 season in location Kingdome?
CREATE TABLE table_name_40 (pitcher VARCHAR, location VARCHAR, season VARCHAR)
SELECT pitcher FROM table_name_40 WHERE location = "kingdome" AND season = "1983"
Who is the pitcher from the 1994 season that had the Cleveland Indians as an opponent?
CREATE TABLE table_name_5 (pitcher VARCHAR, opponent VARCHAR, season VARCHAR)
SELECT pitcher FROM table_name_5 WHERE opponent = "cleveland indians" AND season = "1994"
Who is the opponent for the 2011 season with a decision of W?
CREATE TABLE table_name_11 (opponent VARCHAR, decision VARCHAR, season VARCHAR)
SELECT opponent FROM table_name_11 WHERE decision = "w" AND season = "2011"
What season was played at Safeco Field, against the Boston Red Sox, with a decision of L?
CREATE TABLE table_name_60 (season VARCHAR, opponent VARCHAR, location VARCHAR, decision VARCHAR)
SELECT season FROM table_name_60 WHERE location = "safeco field" AND decision = "l" AND opponent = "boston red sox"
What was the decision for the 1983 season for the game played against the New York Yankees?
CREATE TABLE table_name_35 (decision VARCHAR, opponent VARCHAR, season VARCHAR)
SELECT decision FROM table_name_35 WHERE opponent = "new york yankees" AND season = "1983"
what is the encoding when the tracks/side is 80 and sectors/track is 11?
CREATE TABLE table_name_44 (encoding VARCHAR, tracks__side VARCHAR, sectors__track VARCHAR)
SELECT encoding FROM table_name_44 WHERE tracks__side = "80" AND sectors__track = "11"
What is the highest bronze for less than 2 total trophies?
CREATE TABLE table_name_16 (bronze INTEGER, total INTEGER)
SELECT MAX(bronze) FROM table_name_16 WHERE total < 2
Which Total has a Finish of t64, and a Year won larger than 2006?
CREATE TABLE table_name_64 (total INTEGER, finish VARCHAR, year_won VARCHAR)
SELECT MAX(total) FROM table_name_64 WHERE finish = "t64" AND year_won > 2006
Which year won has a Finish of t24, and a Country of england?
CREATE TABLE table_name_6 (year_won INTEGER, finish VARCHAR, country VARCHAR)
SELECT AVG(year_won) FROM table_name_6 WHERE finish = "t24" AND country = "england"
What is the smallest bronze value for countries with totals over 2, golds of 0, silvers under 1, and ranks over 10?
CREATE TABLE table_name_45 (bronze INTEGER, gold VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT MIN(bronze) FROM table_name_45 WHERE total > 2 AND silver < 1 AND rank > 10 AND gold < 0
Which school has an enrollment of A and had lost river as their previous conference?
CREATE TABLE table_name_53 (school VARCHAR, previous_conference VARCHAR, enrollment VARCHAR)
SELECT school FROM table_name_53 WHERE previous_conference = "lost river" AND enrollment = "a"
What is the average year joined of the 277 county?
CREATE TABLE table_name_43 (year_joined INTEGER, county VARCHAR)
SELECT AVG(year_joined) FROM table_name_43 WHERE county = 277
What is the IHSAA class of the county that is less than 228?
CREATE TABLE table_name_71 (ihsaa_class VARCHAR, county INTEGER)
SELECT ihsaa_class FROM table_name_71 WHERE county < 228
What is the engine when the transmission was 4-speed automatic, and acceleration 0–100km/h (0–62mph) was 10.4 s?
CREATE TABLE table_name_12 (engine VARCHAR, transmission VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)
SELECT engine FROM table_name_12 WHERE transmission = "4-speed automatic" AND acceleration_0_100km_h__0_62mph_ = "10.4 s"
What is the Power when the acceleration 0–100km/h (0–62mph) is 9.1 s?
CREATE TABLE table_name_49 (power VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)
SELECT power FROM table_name_49 WHERE acceleration_0_100km_h__0_62mph_ = "9.1 s"
What is the transmission when the engine is 2.0l, and acceleration 0–100km/h (0–62mph) is 10.5 s?
CREATE TABLE table_name_99 (transmission VARCHAR, engine VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)
SELECT transmission FROM table_name_99 WHERE engine = "2.0l" AND acceleration_0_100km_h__0_62mph_ = "10.5 s"
What is the production when engine is 2.7l, and acceleration 0–100km/h (0–62mph) is 8.5 s?
CREATE TABLE table_name_5 (production VARCHAR, engine VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)
SELECT production FROM table_name_5 WHERE engine = "2.7l" AND acceleration_0_100km_h__0_62mph_ = "8.5 s"
What is the transmission when the production was 2002-2005?
CREATE TABLE table_name_29 (transmission VARCHAR, production VARCHAR)
SELECT transmission FROM table_name_29 WHERE production = "2002-2005"
What is the acceleration 0–100km/h (0–62mph) when the transmission is 5-speed manual?
CREATE TABLE table_name_69 (acceleration_0_100km_h__0_62mph_ VARCHAR, transmission VARCHAR)
SELECT acceleration_0_100km_h__0_62mph_ FROM table_name_69 WHERE transmission = "5-speed manual"
What is the highest year for the Bethesda Game Studios Developer?
CREATE TABLE table_name_68 (year INTEGER, developer_s_ VARCHAR)
SELECT MAX(year) FROM table_name_68 WHERE developer_s_ = "bethesda game studios"
What is the lowest year for the game called The Elder Scrolls v: Skyrim?
CREATE TABLE table_name_99 (year INTEGER, game VARCHAR)
SELECT MIN(year) FROM table_name_99 WHERE game = "the elder scrolls v: skyrim"
What game was developed by Naughty Dog?
CREATE TABLE table_name_33 (genre VARCHAR, developer_s_ VARCHAR)
SELECT genre FROM table_name_33 WHERE developer_s_ = "naughty dog"
What is the imed/avicenna listed for a medical school offshore in saint kitts and nevis which was established before 2000 and will give you an MD?
CREATE TABLE table_name_31 (imed_avicenna_listed VARCHAR, established VARCHAR, degree VARCHAR, regional_offshore VARCHAR, country_territory VARCHAR)
SELECT imed_avicenna_listed FROM table_name_31 WHERE regional_offshore = "offshore" AND country_territory = "saint kitts and nevis" AND degree = "md" AND established < 2000
What country has a medical school established in 1969 with both an IMED and avicenna?
CREATE TABLE table_name_15 (country_territory VARCHAR, imed_avicenna_listed VARCHAR, established VARCHAR)
SELECT country_territory FROM table_name_15 WHERE imed_avicenna_listed = "both" AND established = 1969
What is the average year that the medical school in dominican republic was established?
CREATE TABLE table_name_86 (established INTEGER, country_territory VARCHAR)
SELECT AVG(established) FROM table_name_86 WHERE country_territory = "dominican republic"
What are the most wins with byes more than 0 and 1637 against?
CREATE TABLE table_name_99 (wins INTEGER, against VARCHAR, byes VARCHAR)
SELECT MAX(wins) FROM table_name_99 WHERE against = 1637 AND byes > 0
What are the total byes for the Red Cliffs with more than 4 losses and more than 2422 against?
CREATE TABLE table_name_78 (byes VARCHAR, against VARCHAR, losses VARCHAR, sunrayia_fl VARCHAR)
SELECT COUNT(byes) FROM table_name_78 WHERE losses > 4 AND sunrayia_fl = "red cliffs" AND against > 2422
What's the total wins for Wentworth with less than 0 byes?
CREATE TABLE table_name_45 (wins VARCHAR, sunrayia_fl VARCHAR, byes VARCHAR)
SELECT COUNT(wins) FROM table_name_45 WHERE sunrayia_fl = "wentworth" AND byes < 0
Which venue had an opponent of Sunderland and a result of a 1-1 draw?
CREATE TABLE table_name_40 (venue VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT venue FROM table_name_40 WHERE opponent = "sunderland" AND result = "1-1"
What is the number of attendance values for ties having an opponent of Middlesbrough and result of 3-1?
CREATE TABLE table_name_2 (attendance VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT COUNT(attendance) FROM table_name_2 WHERE opponent = "middlesbrough" AND result = "3-1"
Which venue ended in a 3-0 result?
CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_35 WHERE result = "3-0"
Where was a 0-5 game played?
CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_7 WHERE result = "0-5"
What is the average rank of a player with fewer than 3 matches?
CREATE TABLE table_name_38 (rank INTEGER, matches INTEGER)
SELECT AVG(rank) FROM table_name_38 WHERE matches < 3
Who was the opponent on April 21?
CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_24 WHERE date = "april 21"
What's the record on April 12 when the location was The Omni?
CREATE TABLE table_name_25 (record VARCHAR, location_attendance VARCHAR, date VARCHAR)
SELECT record FROM table_name_25 WHERE location_attendance = "the omni" AND date = "april 12"
What date was the score "score"?
CREATE TABLE table_name_91 (date VARCHAR)
SELECT date FROM table_name_91 WHERE "score" = "score"
What's the score of game 77?
CREATE TABLE table_name_20 (score VARCHAR, game VARCHAR)
SELECT score FROM table_name_20 WHERE game = "77"
What date had a record of 43-34?
CREATE TABLE table_name_17 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_17 WHERE record = "43-34"
What Artist had a Percentage of 17.14%?
CREATE TABLE table_name_5 (artist VARCHAR, percentage VARCHAR)
SELECT artist FROM table_name_5 WHERE percentage = "17.14%"
What Percentage has a Place of 5?
CREATE TABLE table_name_73 (percentage VARCHAR, place VARCHAR)
SELECT percentage FROM table_name_73 WHERE place = 5
Which BR number has an LMS number over 14768?
CREATE TABLE table_name_5 (br_number VARCHAR, lms_number INTEGER)
SELECT br_number FROM table_name_5 WHERE lms_number > 14768
what is the frequency when the city of license is belleville?
CREATE TABLE table_name_42 (frequency VARCHAR, city_of_license VARCHAR)
SELECT frequency FROM table_name_42 WHERE city_of_license = "belleville"
what is the class when the power is 22500 watts?
CREATE TABLE table_name_17 (class VARCHAR, power VARCHAR)
SELECT class FROM table_name_17 WHERE power = "22500 watts"
what is the class when the identifier is cjbc-1-fm?
CREATE TABLE table_name_60 (class VARCHAR, identifier VARCHAR)
SELECT class FROM table_name_60 WHERE identifier = "cjbc-1-fm"
what is the recnet when the city of license is peterborough?
CREATE TABLE table_name_68 (recnet VARCHAR, city_of_license VARCHAR)
SELECT recnet FROM table_name_68 WHERE city_of_license = "peterborough"
what is the power when the city of license is belleville?
CREATE TABLE table_name_71 (power VARCHAR, city_of_license VARCHAR)
SELECT power FROM table_name_71 WHERE city_of_license = "belleville"
what is the identifier when the power is 22500 watts?
CREATE TABLE table_name_17 (identifier VARCHAR, power VARCHAR)
SELECT identifier FROM table_name_17 WHERE power = "22500 watts"
What is the Opponents in the game with a Date of nov. 25?
CREATE TABLE table_name_80 (opponents INTEGER, date VARCHAR)
SELECT MIN(opponents) FROM table_name_80 WHERE date = "nov. 25"
How many games does leandro love have?
CREATE TABLE table_name_96 (games VARCHAR, name VARCHAR)
SELECT games FROM table_name_96 WHERE name = "leandro love"
What is the lowest number of goals joe keenan, who has more than 1 assists, had in 2007/08?
CREATE TABLE table_name_84 (goals INTEGER, assists VARCHAR, years VARCHAR, name VARCHAR)
SELECT MIN(goals) FROM table_name_84 WHERE years = "2007/08" AND name = "joe keenan" AND assists > 1
What is the lowest number of goals of the player with 9 (0) games and less than 0 assists?
CREATE TABLE table_name_37 (goals INTEGER, games VARCHAR, assists VARCHAR)
SELECT MIN(goals) FROM table_name_37 WHERE games = "9 (0)" AND assists < 0
How many finals had more than 0 goals and 8 assists?
CREATE TABLE table_name_14 (finals VARCHAR, goals VARCHAR, assists VARCHAR)
SELECT finals FROM table_name_14 WHERE goals > 0 AND assists = 8
When the nationality is united states, and the time is 58.06, and the heat is larger than 5 what is the lowest rank?
CREATE TABLE table_name_6 (rank INTEGER, heat VARCHAR, nationality VARCHAR, time VARCHAR)
SELECT MIN(rank) FROM table_name_6 WHERE nationality = "united states" AND time = "58.06" AND heat > 5
What is the highest rank when the lane is larger than 6, and the heat is 3, and the nationality is colombia?
CREATE TABLE table_name_67 (rank INTEGER, nationality VARCHAR, lane VARCHAR, heat VARCHAR)
SELECT MAX(rank) FROM table_name_67 WHERE lane > 6 AND heat = 3 AND nationality = "colombia"
What is the total lane for a heat larger than 7?
CREATE TABLE table_name_16 (lane VARCHAR, heat INTEGER)
SELECT COUNT(lane) FROM table_name_16 WHERE heat > 7
What is the highest heat when the nationality is poland, and the lane is smaller than 6?
CREATE TABLE table_name_22 (heat INTEGER, nationality VARCHAR, lane VARCHAR)
SELECT MAX(heat) FROM table_name_22 WHERE nationality = "poland" AND lane < 6
Which Lead Pitch/mm has a Body Width/mm larger than 10.16?
CREATE TABLE table_name_28 (lead_pitch_mm INTEGER, body_width_mm INTEGER)
SELECT SUM(lead_pitch_mm) FROM table_name_28 WHERE body_width_mm > 10.16
How much Body Width/mm has a Part Number of tsop40/44, and a Body Length/mm smaller than 18.42?
CREATE TABLE table_name_66 (body_width_mm INTEGER, part_number VARCHAR, body_length_mm VARCHAR)
SELECT SUM(body_width_mm) FROM table_name_66 WHERE part_number = "tsop40/44" AND body_length_mm < 18.42
Which Lead Pitch/mm has a Part Number of tsop24/28?
CREATE TABLE table_name_13 (lead_pitch_mm INTEGER, part_number VARCHAR)
SELECT MAX(lead_pitch_mm) FROM table_name_13 WHERE part_number = "tsop24/28"
What is the highest amount of silver when gold is 1 and bronze larger than 0?
CREATE TABLE table_name_40 (silver INTEGER, gold VARCHAR, bronze VARCHAR)
SELECT MAX(silver) FROM table_name_40 WHERE gold = 1 AND bronze > 0
What is the Time of the Athlete with a Reaction time of 0.164?
CREATE TABLE table_name_48 (time INTEGER, reaction_time VARCHAR)
SELECT SUM(time) FROM table_name_48 WHERE reaction_time = 0.164
What is the Time of the Athlete in Lane 4?
CREATE TABLE table_name_34 (time VARCHAR, lane VARCHAR)
SELECT COUNT(time) FROM table_name_34 WHERE lane = 4
What is the Lane of the Athlete from Great Britain with a Reaction time of less than 0.218 and a Time larger than 44.74?
CREATE TABLE table_name_82 (lane INTEGER, nationality VARCHAR, reaction_time VARCHAR, time VARCHAR)
SELECT SUM(lane) FROM table_name_82 WHERE reaction_time < 0.218 AND time > 44.74 AND nationality = "great britain"
What is the time in week 3?
CREATE TABLE table_name_29 (tv_time VARCHAR, week VARCHAR)
SELECT tv_time FROM table_name_29 WHERE week = 3
What is the week with attendance of 73,572?
CREATE TABLE table_name_61 (week INTEGER, attendance VARCHAR)
SELECT MAX(week) FROM table_name_61 WHERE attendance = "73,572"
What week was the opponent the San Diego Chargers?
CREATE TABLE table_name_94 (week VARCHAR, opponent VARCHAR)
SELECT COUNT(week) FROM table_name_94 WHERE opponent = "san diego chargers"
What week was the result of l 38–21?
CREATE TABLE table_name_63 (week INTEGER, result VARCHAR)
SELECT MAX(week) FROM table_name_63 WHERE result = "l 38–21"
What's the total of Rank for the County of Galway and has a Total that's larger than 13?
CREATE TABLE table_name_60 (rank INTEGER, county VARCHAR, total VARCHAR)
SELECT SUM(rank) FROM table_name_60 WHERE county = "galway" AND total > 13
What County has an Opposition of Antrim and the Player Bernie Forde?
CREATE TABLE table_name_53 (county VARCHAR, opposition VARCHAR, player VARCHAR)
SELECT county FROM table_name_53 WHERE opposition = "antrim" AND player = "bernie forde"
What's the highest Rank for the County of Offaly, the Player of Mark Corrigan, and the Total that is smaller than 8?
CREATE TABLE table_name_49 (rank INTEGER, total VARCHAR, county VARCHAR, player VARCHAR)
SELECT MAX(rank) FROM table_name_49 WHERE county = "offaly" AND player = "mark corrigan" AND total < 8
Which Channel has an Opponent of washington redskins?
CREATE TABLE table_name_41 (channel VARCHAR, opponent VARCHAR)
SELECT channel FROM table_name_41 WHERE opponent = "washington redskins"
Which attendance has a Channel of espn, and a Date of september 5, 2002?
CREATE TABLE table_name_57 (attendance VARCHAR, channel VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_57 WHERE channel = "espn" AND date = "september 5, 2002"
Which Date has a Result of w 27–20?
CREATE TABLE table_name_30 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_30 WHERE result = "w 27–20"
Which Week has an Attendance of 63,447?
CREATE TABLE table_name_35 (week VARCHAR, attendance VARCHAR)
SELECT week FROM table_name_35 WHERE attendance = "63,447"
Which Date has a Stadium of giants stadium, and a Week smaller than 13, and an Opponent of seattle seahawks?
CREATE TABLE table_name_79 (date VARCHAR, opponent VARCHAR, stadium VARCHAR, week VARCHAR)
SELECT date FROM table_name_79 WHERE stadium = "giants stadium" AND week < 13 AND opponent = "seattle seahawks"
Who was the athlete with react of 0.185?
CREATE TABLE table_name_79 (athlete VARCHAR, react VARCHAR)
SELECT athlete FROM table_name_79 WHERE react = 0.185
What's the smallest react of Zimbabwe, ranked after 1 in a lane after 3 and a time less than 20.3?
CREATE TABLE table_name_90 (react INTEGER, rank VARCHAR, nationality VARCHAR, lane VARCHAR, time VARCHAR)
SELECT MIN(react) FROM table_name_90 WHERE lane > 3 AND time < 20.3 AND nationality = "zimbabwe" AND rank > 1
What is the total number of white (Hispanic/Non-Hispanic) having a black (Hispanic/Non-Hispanic) of 9.9 and Hispanic under 99.5?
CREATE TABLE table_name_77 (white__both_hispanic_and_non_hispanic_ VARCHAR, black__both_hispanic_and_non_hispanic_ VARCHAR, hispanic__of_any_race_ VARCHAR)
SELECT COUNT(white__both_hispanic_and_non_hispanic_) FROM table_name_77 WHERE black__both_hispanic_and_non_hispanic_ = 9.9 AND hispanic__of_any_race_ < 99.5
What is the average black value (Hispanic/Non-Hispanic) having a white (Hispanic/Non-Hispanic) under 61.9, Multiracial (Hispanic/Non-Hispanic) under 12.5 and Hispanic under 99.4?
CREATE TABLE table_name_99 (black__both_hispanic_and_non_hispanic_ INTEGER, hispanic__of_any_race_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR, multiracial__both_hispanic_and_non_hispanic_ VARCHAR)
SELECT AVG(black__both_hispanic_and_non_hispanic_) FROM table_name_99 WHERE white__both_hispanic_and_non_hispanic_ < 61.9 AND multiracial__both_hispanic_and_non_hispanic_ < 12.5 AND hispanic__of_any_race_ < 99.4
What is the highest Amerindian (Hispanic/Non-Hispanic) value having a Black (Hispanic/Non-Hispanic) of 15.7 and White (Hispanic/Non-Hispanic) over 69.5?
CREATE TABLE table_name_67 (amerindian__both_hispanic_and_non_hispanic_ INTEGER, black__both_hispanic_and_non_hispanic_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR)
SELECT MAX(amerindian__both_hispanic_and_non_hispanic_) FROM table_name_67 WHERE black__both_hispanic_and_non_hispanic_ = 15.7 AND white__both_hispanic_and_non_hispanic_ > 69.5
What is the Black (Hispanic/Non-Hispanic) value having a white (Hispanic/Non-Hispanic) under 80.6, Asian (Hispanic/Non-Hispanic) of 0.1, Amerindian (Hispanic/Non-Hispanic) under 0.6000000000000001, and municipality of Vega Baja?
CREATE TABLE table_name_63 (black__both_hispanic_and_non_hispanic_ VARCHAR, municipality__2010_ VARCHAR, amerindian__both_hispanic_and_non_hispanic_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR, n_asia__both_hispanic_and_non_hispanic_ VARCHAR)
SELECT black__both_hispanic_and_non_hispanic_ FROM table_name_63 WHERE white__both_hispanic_and_non_hispanic_ < 80.6 AND n_asia__both_hispanic_and_non_hispanic_ = 0.1 AND amerindian__both_hispanic_and_non_hispanic_ < 0.6000000000000001 AND municipality__2010_ = "vega baja"
What season had 3rd position, a 36 pld, and a bbl div?
CREATE TABLE table_name_81 (season VARCHAR, div VARCHAR, pos VARCHAR, pld VARCHAR)
SELECT season FROM table_name_81 WHERE pos = "3rd" AND pld = "36" AND div = "bbl"
What season has 36 pld, a bbl div, and 6th position?
CREATE TABLE table_name_87 (season VARCHAR, pos VARCHAR, pld VARCHAR, div VARCHAR)
SELECT season FROM table_name_87 WHERE pld = "36" AND div = "bbl" AND pos = "6th"
What season had 6th position and 36 points?
CREATE TABLE table_name_40 (season VARCHAR, pos VARCHAR, pts VARCHAR)
SELECT season FROM table_name_40 WHERE pos = "6th" AND pts = "36"
What season had 1st position, 33 pld, and 58 points?
CREATE TABLE table_name_21 (season VARCHAR, pts VARCHAR, pos VARCHAR, pld VARCHAR)
SELECT season FROM table_name_21 WHERE pos = "1st" AND pld = "33" AND pts = "58"
Which School has a Mascot of generals?
CREATE TABLE table_name_21 (school VARCHAR, mascot VARCHAR)
SELECT school FROM table_name_21 WHERE mascot = "generals"
Which School has an IHSAA Class of aaa, and a Mascot of saints?
CREATE TABLE table_name_76 (school VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)
SELECT school FROM table_name_76 WHERE ihsaa_class = "aaa" AND mascot = "saints"
What is the highest enrollment in Lagrange where the mascot is panthers?
CREATE TABLE table_name_48 (enrollment INTEGER, location VARCHAR, mascot VARCHAR)
SELECT MAX(enrollment) FROM table_name_48 WHERE location = "lagrange" AND mascot = "panthers"
What is the enrollment at the school of Hamilton community?
CREATE TABLE table_name_3 (enrollment INTEGER, school VARCHAR)
SELECT AVG(enrollment) FROM table_name_3 WHERE school = "hamilton community"
What school that has a IHSAA Class of AA, in Butler?
CREATE TABLE table_name_62 (school VARCHAR, ihsaa_class VARCHAR, location VARCHAR)
SELECT school FROM table_name_62 WHERE ihsaa_class = "aa" AND location = "butler"
What is the mascot at Hamilton Community?
CREATE TABLE table_name_62 (mascot VARCHAR, school VARCHAR)
SELECT mascot FROM table_name_62 WHERE school = "hamilton community"
What school is in Lagrange, with an IHSAA Class of aaa?
CREATE TABLE table_name_80 (school VARCHAR, location VARCHAR, ihsaa_class VARCHAR)
SELECT school FROM table_name_80 WHERE location = "lagrange" AND ihsaa_class = "aaa"
What school is in Ligonier?
CREATE TABLE table_name_11 (school VARCHAR, location VARCHAR)
SELECT school FROM table_name_11 WHERE location = "ligonier"