answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT policy_type_code FROM available_policies GROUP BY policy_type_code HAVING COUNT(*) > 4
|
Find the policy type used by more than 4 customers.
|
CREATE TABLE available_policies (policy_type_code VARCHAR)
|
SELECT home_team AS score FROM table_name_25 WHERE away_team = "north melbourne"
|
Who was the home team in the game where North Melbourne was the away team?
|
CREATE TABLE table_name_25 (home_team VARCHAR, away_team VARCHAR)
|
SELECT original_air_date FROM table_18335117_2 WHERE production_code = 107
|
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 cost___us$__ FROM table_name_66 WHERE open_source = "no"
|
What is the cost of an Open Source that is no?
|
CREATE TABLE table_name_66 (cost___us$__ VARCHAR, open_source VARCHAR)
|
SELECT MAX(attendance) FROM table_name_92 WHERE date = "september 28"
|
What was the attendance on September 28?
|
CREATE TABLE table_name_92 (attendance INTEGER, date VARCHAR)
|
SELECT MAX(rushing_yards) FROM table_28697228_4 WHERE opponent = "Indiana" AND player = "Denard Robinson"
|
What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson?
|
CREATE TABLE table_28697228_4 (rushing_yards INTEGER, opponent VARCHAR, player VARCHAR)
|
SELECT final_episode FROM table_11210576_3 WHERE position = "DEA Agent"
|
What was the final episode for Dea Agent?
|
CREATE TABLE table_11210576_3 (final_episode VARCHAR, position VARCHAR)
|
SELECT T1.id FROM trip AS T1 JOIN weather AS T2 ON T1.zip_code = T2.zip_code GROUP BY T2.zip_code HAVING AVG(T2.mean_temperature_f) > 60
|
Give me ids for all the trip that took place in a zip code area with average mean temperature above 60.
|
CREATE TABLE trip (id VARCHAR, zip_code VARCHAR); CREATE TABLE weather (zip_code VARCHAR, mean_temperature_f INTEGER)
|
SELECT performer_s_ FROM table_name_45 WHERE recorded_at = "the cabin in the woods studio" AND time = "3:16"
|
Who performed the song recorded at the Cabin in the Woods Studio with a Time of 3:16?
|
CREATE TABLE table_name_45 (performer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR)
|
SELECT enrollment__2005_ FROM table_2076490_1 WHERE type = "Baccalaureate college" AND school = "Granite State College"
|
What was the enrollment (2005) for baccalaureate colleges , for Granite State College?
|
CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, type VARCHAR, school VARCHAR)
|
SELECT country FROM table_name_47 WHERE score = 72 - 65 = 137
|
For what country does the golfer play who has a score of 72-65=137?
|
CREATE TABLE table_name_47 (country VARCHAR, score VARCHAR)
|
SELECT MAX(laps) FROM table_name_89 WHERE rider = "ilario dionisi"
|
What is the most number of laps run by Ilario Dionisi?
|
CREATE TABLE table_name_89 (laps INTEGER, rider VARCHAR)
|
SELECT championship FROM table_name_31 WHERE opponent_in_the_final = "tommy haas"
|
What was the name of the opponent Tommy Haas played in the Championship?
|
CREATE TABLE table_name_31 (championship VARCHAR, opponent_in_the_final VARCHAR)
|
SELECT SUM(games) FROM table_name_77 WHERE points > 266 AND name = "juan carlos navarro"
|
What is the total number of games that has Juan Carlos Navarro and more than 266 points?
|
CREATE TABLE table_name_77 (games INTEGER, points VARCHAR, name VARCHAR)
|
SELECT AVG(fighting_spirit) FROM table_name_55 WHERE name = "tsurugamine" AND technique < 10
|
Which Fighting Spirit has a Name of tsurugamine, and a Technique smaller than 10?
|
CREATE TABLE table_name_55 (fighting_spirit INTEGER, name VARCHAR, technique VARCHAR)
|
SELECT original_airdate FROM table_name_89 WHERE written_by = "ed horowitz"
|
What was the original air date when ed horowitz wrote it?
|
CREATE TABLE table_name_89 (original_airdate VARCHAR, written_by VARCHAR)
|
SELECT COUNT(earnings___) AS $__ FROM table_name_33 WHERE player = "jim colbert" AND wins < 4
|
What are the earnings for jim colbert with under 4 wins?
|
CREATE TABLE table_name_33 (earnings___ VARCHAR, player VARCHAR, wins VARCHAR)
|
SELECT MIN(points) FROM table_name_22 WHERE engine = "climax v8" AND year < 1963
|
Before the year 1963 what was the fewest points the climax v8 engine had?
|
CREATE TABLE table_name_22 (points INTEGER, engine VARCHAR, year VARCHAR)
|
SELECT viewers__millions_ FROM table_22822468_2 WHERE rating = "2.1"
|
Name the viewers for 2.1 rating
|
CREATE TABLE table_22822468_2 (viewers__millions_ VARCHAR, rating VARCHAR)
|
SELECT MAX(losses) FROM table_name_15 WHERE draws < 0
|
Which Losses have Draws smaller than 0?
|
CREATE TABLE table_name_15 (losses INTEGER, draws INTEGER)
|
SELECT score FROM table_name_76 WHERE player = "raymond floyd"
|
Can you tell me the Score that has the Player of raymond floyd?
|
CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)
|
SELECT COUNT(total) FROM table_name_61 WHERE bronze < 1 AND silver < 1 AND gold < 1
|
What is the total number of medals when the Bronze, Silver, and Gold medals are smaller than 1?
|
CREATE TABLE table_name_61 (total VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
|
SELECT acl_qualification FROM table_name_11 WHERE finals_qualification = "dnq" AND minor_ladder_position = "5th"
|
What's the ACL qualification when the minor ladder position is 5th and the finals qualifications were DNQ?
|
CREATE TABLE table_name_11 (acl_qualification VARCHAR, finals_qualification VARCHAR, minor_ladder_position VARCHAR)
|
SELECT total_footage_remaining_from_missing_episodes__mm AS :ss_ FROM table_1889619_5 WHERE story_no = "018" AND source = "Private individual"
|
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)
|
SELECT european_competitions FROM table_name_49 WHERE tier = 2 AND season = "2004–05"
|
Tier of 2, and a Season of 2004–05 is what European competitions?
|
CREATE TABLE table_name_49 (european_competitions VARCHAR, tier VARCHAR, season VARCHAR)
|
SELECT skip FROM table_name_58 WHERE country = "denmark"
|
What skip has denmark as the country?
|
CREATE TABLE table_name_58 (skip VARCHAR, country VARCHAR)
|
SELECT no_in_season FROM table_2818164_5 WHERE original_air_date = "February 11, 1988"
|
What episoe number in the season originally aired on February 11, 1988?
|
CREATE TABLE table_2818164_5 (no_in_season VARCHAR, original_air_date VARCHAR)
|
SELECT SUM(wins) FROM table_name_66 WHERE events < 3
|
What is the total of wins when the evens is less than 3?
|
CREATE TABLE table_name_66 (wins INTEGER, events INTEGER)
|
SELECT date FROM table_name_98 WHERE home = "mavericks"
|
What is the date of the game when the Mavericks were the home team?
|
CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR)
|
SELECT band FROM table_name_61 WHERE area_served = "darwin" AND purpose = "commercial"
|
Which band serves darwin for commercial purpose?
|
CREATE TABLE table_name_61 (band VARCHAR, area_served VARCHAR, purpose VARCHAR)
|
SELECT team_2 FROM table_name_6 WHERE team_1 = "turnovo"
|
What is the team 2 with turnovo as team 1?
|
CREATE TABLE table_name_6 (team_2 VARCHAR, team_1 VARCHAR)
|
SELECT MAX(no) FROM table_1590652_4 WHERE tournament = "Madrid Masters"
|
Name the most number when tournament is madrid masters
|
CREATE TABLE table_1590652_4 (no INTEGER, tournament VARCHAR)
|
SELECT COUNT(loss) FROM table_name_84 WHERE coach = "john kowalski" AND pts < 9
|
What is the number of losses that coach John Kowalski has with a PTS smaller than 9?
|
CREATE TABLE table_name_84 (loss VARCHAR, coach VARCHAR, pts VARCHAR)
|
SELECT category FROM table_name_50 WHERE recipients_and_nominees = "libby goldstein and junie lowry-johnson"
|
Which Category were Libby Goldstein and Junie Lowry-Johnson recipients and nominees for?
|
CREATE TABLE table_name_50 (category VARCHAR, recipients_and_nominees VARCHAR)
|
SELECT driver FROM table_name_66 WHERE time_retired = "+1 lap"
|
Which driver has a Time/Retired of +1 lap?
|
CREATE TABLE table_name_66 (driver VARCHAR, time_retired VARCHAR)
|
SELECT last_10_meetings FROM table_name_48 WHERE at_norman = "ou, 18-6"
|
What is the Last 10 Meetings when Norman is ou, 18-6?
|
CREATE TABLE table_name_48 (last_10_meetings VARCHAR, at_norman VARCHAR)
|
SELECT MIN(span_metres) FROM table_name_23 WHERE year_opened = "2007" AND country = "china" AND rank < 13 AND span_feet < 1378
|
What is the lowest amount of Span metres when the year opened is 2007, the country is China, rank is less than 13, and the span feet is less than 1378?
|
CREATE TABLE table_name_23 (span_metres INTEGER, span_feet VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR)
|
SELECT city FROM table_name_29 WHERE venue = "mandalay bay resort"
|
Which City has mandalay bay resort
|
CREATE TABLE table_name_29 (city VARCHAR, venue VARCHAR)
|
SELECT first_elected FROM table_1434788_5 WHERE incumbent = "John Thomas Wilson"
|
When was incumbent John Thomas Wilson first elected?
|
CREATE TABLE table_1434788_5 (first_elected VARCHAR, incumbent VARCHAR)
|
SELECT district FROM table_25030512_26 WHERE incumbent = "Keith Ellison"
|
In what district was keith ellison the incumbent?
|
CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR)
|
SELECT general_classification FROM table_29077342_19 WHERE winner = "Steven Kruijswijk"
|
Name the general classification for steven kruijswijk
|
CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR)
|
SELECT score FROM table_name_97 WHERE home_team = "notts county"
|
What is the score for the home team Notts County?
|
CREATE TABLE table_name_97 (score VARCHAR, home_team VARCHAR)
|
SELECT year__ceremony_ FROM table_21790203_1 WHERE language_s_ = "Japanese"
|
Name the year for japanese
|
CREATE TABLE table_21790203_1 (year__ceremony_ VARCHAR, language_s_ VARCHAR)
|
SELECT SUM(week) FROM table_name_78 WHERE opponent = "dallas cowboys"
|
What week did the dallas cowboys play?
|
CREATE TABLE table_name_78 (week INTEGER, opponent VARCHAR)
|
SELECT away_team AS score FROM table_name_7 WHERE home_team = "north melbourne"
|
When north melbourne played as the home team, what was the away team score?
|
CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)
|
SELECT location_attendance FROM table_name_28 WHERE score = "l 90–91 (ot)"
|
What location has an attendance and a score of l 90–91 (ot)?
|
CREATE TABLE table_name_28 (location_attendance VARCHAR, score VARCHAR)
|
SELECT record FROM table_name_5 WHERE date = "april 8"
|
What is the record for April 8?
|
CREATE TABLE table_name_5 (record VARCHAR, date VARCHAR)
|
SELECT recnet FROM table_name_9 WHERE power = "199 watts"
|
What's the RECNet when the power is 199 watts?
|
CREATE TABLE table_name_9 (recnet VARCHAR, power VARCHAR)
|
SELECT manufacturer FROM table_name_43 WHERE fleet_numbers = "wlwr 2, 4, 11"
|
Who manufactured fleet numbers of wlwr 2, 4, 11?
|
CREATE TABLE table_name_43 (manufacturer VARCHAR, fleet_numbers VARCHAR)
|
SELECT COUNT(rank) FROM table_21109892_1 WHERE production__mt_ = 650000
|
When the production (mt) is 650000, what is the total number of rank?
|
CREATE TABLE table_21109892_1 (rank VARCHAR, production__mt_ VARCHAR)
|
SELECT results FROM table_name_44 WHERE choreographer = "kelly aykers"
|
What is the Result of the dance Choreographed by Kelly Aykers?
|
CREATE TABLE table_name_44 (results VARCHAR, choreographer VARCHAR)
|
SELECT COUNT(status) FROM table_24431348_20 WHERE new_points = 2690
|
How many times is the new points 2690?
|
CREATE TABLE table_24431348_20 (status VARCHAR, new_points VARCHAR)
|
SELECT category FROM book_club WHERE YEAR > 1989 GROUP BY category HAVING COUNT(*) >= 2
|
List categories that have at least two books after year 1989.
|
CREATE TABLE book_club (category VARCHAR, YEAR INTEGER)
|
SELECT rank FROM table_name_75 WHERE floors = "96"
|
What is the rank for the 96 floors?
|
CREATE TABLE table_name_75 (rank VARCHAR, floors VARCHAR)
|
SELECT COUNT(college) FROM table_11677691_1 WHERE school = "Hillcrest High school"
|
How many players attended Hillcrest High School?
|
CREATE TABLE table_11677691_1 (college VARCHAR, school VARCHAR)
|
SELECT AVG(Gold) FROM club_rank
|
What is the average number of gold medals for clubs?
|
CREATE TABLE club_rank (Gold INTEGER)
|
SELECT attendance FROM table_name_65 WHERE tie_no = "4"
|
How many attended the game when the score was tie at 4?
|
CREATE TABLE table_name_65 (attendance VARCHAR, tie_no VARCHAR)
|
SELECT writer_s_ FROM table_name_64 WHERE recorded_at = "funhouse studios" AND time = "3:27"
|
Who wrote the album recorded at funhouse studios with a time of 3:27?
|
CREATE TABLE table_name_64 (writer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR)
|
SELECT date FROM table_name_61 WHERE home_team = "sheffield wednesday"
|
On what Date is Sheffield Wednesday the Home team?
|
CREATE TABLE table_name_61 (date VARCHAR, home_team VARCHAR)
|
SELECT loss FROM table_name_7 WHERE record = "79-49"
|
Which loss had a record of 79-49?
|
CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR)
|
SELECT MIN(silver) FROM table_name_42 WHERE gold < 0
|
What is the fewest number of silvers have 0 golds?
|
CREATE TABLE table_name_42 (silver INTEGER, gold INTEGER)
|
SELECT horse FROM table_name_54 WHERE competition = "badminton horse trials"
|
What horse was at the Badminton Horse Trials?
|
CREATE TABLE table_name_54 (horse VARCHAR, competition VARCHAR)
|
SELECT us_viewers__million_ FROM table_25668962_1 WHERE no_in_series = 6
|
How many million U.S. viewers watched episode number 6 in the series?
|
CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, no_in_series VARCHAR)
|
SELECT MIN(tournaments_played) FROM table_name_62 WHERE year = 1998
|
what is the least tournaments played when the year is 1998?
|
CREATE TABLE table_name_62 (tournaments_played INTEGER, year VARCHAR)
|
SELECT date FROM table_name_59 WHERE surface = "hard" AND tournament = "maybelline classic" AND opponent = "wendy turnbull"
|
Name the date for hard surface at maybelline classic with opponent of wendy turnbull
|
CREATE TABLE table_name_59 (date VARCHAR, opponent VARCHAR, surface VARCHAR, tournament VARCHAR)
|
SELECT away_team AS score FROM table_name_14 WHERE venue = "western oval"
|
What was the away team's score at western oval?
|
CREATE TABLE table_name_14 (away_team VARCHAR, venue VARCHAR)
|
SELECT COUNT(losses) FROM table_name_1 WHERE games_played = 7 AND goals_against < 27
|
How many games did the team lose that played 7 games and has a GA of less than 27?
|
CREATE TABLE table_name_1 (losses VARCHAR, games_played VARCHAR, goals_against VARCHAR)
|
SELECT transfer_window FROM table_name_65 WHERE status = "transfer" AND country = "wal"
|
What is the transfer window with a status of transfer from the country of Wal?
|
CREATE TABLE table_name_65 (transfer_window VARCHAR, status VARCHAR, country VARCHAR)
|
SELECT MIN(losses) FROM table_name_83 WHERE goal_difference = -16 AND wins < 8
|
Which Losses have a Goal Difference of -16, and less than 8 wins?
|
CREATE TABLE table_name_83 (losses INTEGER, goal_difference VARCHAR, wins VARCHAR)
|
SELECT COUNT(record) FROM table_14477002_1 WHERE location = "Lambeau Field"
|
List the total number of records from Lambeau Field.
|
CREATE TABLE table_14477002_1 (record VARCHAR, location VARCHAR)
|
SELECT AVG(wins) FROM table_name_16 WHERE player = "bruce fleisher" AND events > 31
|
How many wins for bruce fleisher with over 31 events?
|
CREATE TABLE table_name_16 (wins INTEGER, player VARCHAR, events VARCHAR)
|
SELECT appearances¹ FROM table_24565004_2 WHERE name = "Bernard Allou"
|
Name the appearances for bernard allou
|
CREATE TABLE table_24565004_2 (appearances¹ VARCHAR, name VARCHAR)
|
SELECT SUM(attendance) FROM table_name_30 WHERE week = 16
|
Name the sum of attendacne for 16 weeks
|
CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR)
|
SELECT syracuse FROM table_name_20 WHERE utica = "union springs shale and limestone" AND rochester = "union springs shale and limestone"
|
What is Syracuse, when Utica is Union Springs Shale And Limestone, and when Rochester is Union Springs Shale And Limestone?
|
CREATE TABLE table_name_20 (syracuse VARCHAR, utica VARCHAR, rochester VARCHAR)
|
SELECT MIN(laps) FROM table_name_99 WHERE points < 118 AND driver = "kyle petty"
|
What is the lowest number of laps for kyle petty with under 118 points?
|
CREATE TABLE table_name_99 (laps INTEGER, points VARCHAR, driver VARCHAR)
|
SELECT MIN(seats) FROM table_name_28 WHERE _percentage_change = -3.7 AND _percentage_votes > 4.7
|
What are the fewest seats with a -3.7% change and more than 4.7% votes?
|
CREATE TABLE table_name_28 (seats INTEGER, _percentage_change VARCHAR, _percentage_votes VARCHAR)
|
SELECT name FROM mill WHERE LOCATION <> 'Donceel'
|
What are the names of the mills which are not located in 'Donceel'?
|
CREATE TABLE mill (name VARCHAR, LOCATION VARCHAR)
|
SELECT party FROM table_name_97 WHERE result = "retired democratic hold"
|
Which party had a Retired Democratic hold?
|
CREATE TABLE table_name_97 (party VARCHAR, result VARCHAR)
|
SELECT control FROM table_2076608_1 WHERE school = "Christopher Newport University"
|
What is the control for Christopher Newport University?
|
CREATE TABLE table_2076608_1 (control VARCHAR, school VARCHAR)
|
SELECT location_attendance FROM table_27756164_8 WHERE team = "Chicago"
|
When the team is chicago what is the location attendence?
|
CREATE TABLE table_27756164_8 (location_attendance VARCHAR, team VARCHAR)
|
SELECT class_aA FROM table_14747043_1 WHERE class_a = "Graford"
|
Which is the class AA when graford was the class A
|
CREATE TABLE table_14747043_1 (class_aA VARCHAR, class_a VARCHAR)
|
SELECT location_attendance FROM table_name_54 WHERE record = "9-6"
|
What was the location and attendance at the game when the record was 9-6?
|
CREATE TABLE table_name_54 (location_attendance VARCHAR, record VARCHAR)
|
SELECT class FROM table_name_20 WHERE dates = "22 april - 3 may 2009"
|
What is Class, when Dates is "22 April - 3 May 2009"?
|
CREATE TABLE table_name_20 (class VARCHAR, dates VARCHAR)
|
SELECT week_sent_to_third_island FROM table_11764007_2 WHERE week_arrived_on_main_island = "6"
|
What week was the member who arrived on the main island in week 6 sent to the third island?
|
CREATE TABLE table_11764007_2 (week_sent_to_third_island VARCHAR, week_arrived_on_main_island VARCHAR)
|
SELECT constellation FROM table_177766_1 WHERE area__sqdeg_ = "245.375"
|
What is the name of this constellation with an area of 245.375 sq. deg.?
|
CREATE TABLE table_177766_1 (constellation VARCHAR, area__sqdeg_ VARCHAR)
|
SELECT team FROM table_27091128_3 WHERE replaced_by = "Serhat Güller"
|
Which team replaced their manager with Serhat Güller?
|
CREATE TABLE table_27091128_3 (team VARCHAR, replaced_by VARCHAR)
|
SELECT COUNT(rank_world) FROM table_2248784_3 WHERE country = "Bhutan"
|
Name the number of rank world for bhutan
|
CREATE TABLE table_2248784_3 (rank_world VARCHAR, country VARCHAR)
|
SELECT score FROM table_17104539_12 WHERE date = "September 9"
|
What are the scores for games played on september 9?
|
CREATE TABLE table_17104539_12 (score VARCHAR, date VARCHAR)
|
SELECT date FROM table_name_75 WHERE record = "15-4"
|
What day did the record reach 15-4?
|
CREATE TABLE table_name_75 (date VARCHAR, record VARCHAR)
|
SELECT release_date FROM table_name_21 WHERE production_num < 5038 AND characters = "bosko"
|
When was the film released that a less than 5038 production number and was of the character Bosko?
|
CREATE TABLE table_name_21 (release_date VARCHAR, production_num VARCHAR, characters VARCHAR)
|
SELECT label FROM table_name_93 WHERE catalogue = "rt-346-5"
|
What is the label for catalogue of RT-346-5?
|
CREATE TABLE table_name_93 (label VARCHAR, catalogue VARCHAR)
|
SELECT MAX(Cows), MIN(Cows) FROM farm
|
What are the maximum and minimum number of cows across all farms.
|
CREATE TABLE farm (Cows INTEGER)
|
SELECT COUNT(avg_start) FROM table_1637041_2 WHERE position = "59th"
|
How many years did he finish in 59th?
|
CREATE TABLE table_1637041_2 (avg_start VARCHAR, position VARCHAR)
|
SELECT home_team FROM table_name_4 WHERE venue = "victoria park"
|
What home team plays at victoria park?
|
CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)
|
SELECT time FROM table_name_76 WHERE react > 0.187 AND athlete = "paul hession"
|
What the time of Paul Hession with more than an 0.187 react?
|
CREATE TABLE table_name_76 (time VARCHAR, react VARCHAR, athlete VARCHAR)
|
SELECT surface FROM table_name_65 WHERE round = "gii play-offs" AND edition = "2009 fed cup europe/africa group ii"
|
what is the surface when the round is gii play-offs and the edition is 2009 fed cup europe/africa group ii?
|
CREATE TABLE table_name_65 (surface VARCHAR, round VARCHAR, edition VARCHAR)
|
SELECT from_club FROM table_name_49 WHERE date = "20 oct. 2008"
|
Which From club has a Date of 20 oct. 2008?
|
CREATE TABLE table_name_49 (from_club VARCHAR, date VARCHAR)
|
SELECT tournament FROM table_name_76 WHERE year = 1889
|
I want the tournament for 1889
|
CREATE TABLE table_name_76 (tournament VARCHAR, year VARCHAR)
|
SELECT MAX(championship) FROM table_name_85 WHERE league_cup = 1 AND total = "17"
|
What is the highest championship that has 1 as the league cup, and 17 as the total?
|
CREATE TABLE table_name_85 (championship INTEGER, league_cup VARCHAR, total VARCHAR)
|
SELECT admits_boys_girls FROM table_104858_1 WHERE year_member_organization_was_founded = "1912" AND name_of_member_organization = "The Ghana Scout Association"
|
Does the Ghana Scout Association (founded in 1912) admit boys, girls, or both?
|
CREATE TABLE table_104858_1 (admits_boys_girls VARCHAR, year_member_organization_was_founded VARCHAR, name_of_member_organization VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.