question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74
CREATE TABLE table_name_54 (frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR, call_sign VARCHAR)
SELECT COUNT(frequency_mhz) FROM table_name_54 WHERE class = "d" AND call_sign = "k201bm" AND erp_w < 74
What is Country, when Player is "Hale Irwin"?
CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_96 WHERE player = "hale irwin"
Give me all the information about hiring.
CREATE TABLE hiring (Id VARCHAR)
SELECT * FROM hiring
How many Fastest Laps have Poles of 4, and Races larger than 178?
CREATE TABLE table_name_81 (fastest_laps INTEGER, poles VARCHAR, races VARCHAR)
SELECT SUM(fastest_laps) FROM table_name_81 WHERE poles = 4 AND races > 178
Which Year has a Competition of european indoor championships, and a Venue of budapest , hungary?
CREATE TABLE table_name_80 (year INTEGER, competition VARCHAR, venue VARCHAR)
SELECT SUM(year) FROM table_name_80 WHERE competition = "european indoor championships" AND venue = "budapest , hungary"
How many games have rebounds larger than 1048?
CREATE TABLE table_name_78 (games VARCHAR, total_rebounds INTEGER)
SELECT COUNT(games) FROM table_name_78 WHERE total_rebounds > 1048
Which School has a Previous Conference of none (new school), and a Year Joined larger than 1960, and a Location of versailles?
CREATE TABLE table_name_78 (school VARCHAR, location VARCHAR, previous_conference VARCHAR, year_joined VARCHAR)
SELECT school FROM table_name_78 WHERE previous_conference = "none (new school)" AND year_joined > 1960 AND location = "versailles"
How many viewers (in millions) did episode 1 have?
CREATE TABLE table_25356350_2 (viewers__in_millions_ VARCHAR, series__number VARCHAR)
SELECT viewers__in_millions_ FROM table_25356350_2 WHERE series__number = 1
Which Opponent has Attendance of 71,740?
CREATE TABLE table_name_53 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_53 WHERE attendance = "71,740"
Which CONMEBOL 1995 has river plate team?
CREATE TABLE table_name_61 (conmebol_1995 VARCHAR, team VARCHAR)
SELECT conmebol_1995 FROM table_name_61 WHERE team = "river plate"
What is the highest total number of medals associated with 1 gold, more than 0 silver, and 2 bronze?
CREATE TABLE table_name_33 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT MAX(total) FROM table_name_33 WHERE bronze = 2 AND gold = 1 AND silver > 0
Who was team #1 on 9 September 2006?
CREATE TABLE table_2015453_1 (team__number1 VARCHAR, date VARCHAR)
SELECT team__number1 FROM table_2015453_1 WHERE date = "9 September 2006"
In 2014, what are the id and rank of the team that has the largest average number of attendance?
CREATE TABLE team (team_id VARCHAR, rank VARCHAR); CREATE TABLE home_game (team_id VARCHAR, year VARCHAR, attendance INTEGER)
SELECT T2.team_id, T2.rank FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id WHERE T1.year = 2014 GROUP BY T1.team_id ORDER BY AVG(T1.attendance) DESC LIMIT 1
What is the order id and order details for the order more than two invoices.
CREATE TABLE Orders (order_id VARCHAR, order_details VARCHAR); CREATE TABLE Invoices (order_id VARCHAR)
SELECT T2.order_id, T2.order_details FROM Invoices AS T1 JOIN Orders AS T2 ON T1.order_id = T2.order_id GROUP BY T2.order_id HAVING COUNT(*) > 2
Name the winner for ss14
CREATE TABLE table_name_82 (winner VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_82 WHERE stage = "ss14"
What is the branding of the callsign DWBA-TV?
CREATE TABLE table_2610582_3 (branding VARCHAR, callsign VARCHAR)
SELECT branding FROM table_2610582_3 WHERE callsign = "DWBA-TV"
What is the name of the Constructor with a 19 Grid?
CREATE TABLE table_name_98 (constructor VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_98 WHERE grid = 19
What is every state and District of Columbia with 60.0% overweight or obese adults?
CREATE TABLE table_18958648_1 (state_and_district_of_columbia VARCHAR, overweight__incl_obese__adults VARCHAR)
SELECT state_and_district_of_columbia FROM table_18958648_1 WHERE overweight__incl_obese__adults = "60.0%"
Name the opponent for 2-27-10
CREATE TABLE table_22875369_3 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_22875369_3 WHERE date = "2-27-10"
How many top-10 numbers had a top 25 of more than 6 with less than 2 wins?
CREATE TABLE table_name_61 (top_10 VARCHAR, top_25 VARCHAR, wins VARCHAR)
SELECT COUNT(top_10) FROM table_name_61 WHERE top_25 > 6 AND wins < 2
What is the number of bonus points when there are 4 drawn?
CREATE TABLE table_name_28 (bonus_points VARCHAR, drawn VARCHAR)
SELECT bonus_points FROM table_name_28 WHERE drawn = "4"
what is the club when the runners-up is 1 and the last final won is 1999?
CREATE TABLE table_name_35 (club VARCHAR, runners_up VARCHAR, last_final_won VARCHAR)
SELECT club FROM table_name_35 WHERE runners_up = 1 AND last_final_won = "1999"
What dance had a score total of 31?
CREATE TABLE table_2803106_1 (dance_song VARCHAR, total VARCHAR)
SELECT dance_song FROM table_2803106_1 WHERE total = "31"
What is the name of the dead end type ranked 22?
CREATE TABLE table_name_42 (name VARCHAR, type VARCHAR, rank VARCHAR)
SELECT name FROM table_name_42 WHERE type = "dead end" AND rank = "22"
What year was Jennifer Tilly's Film of Bullets Over Broadway up in the best supporting actress category?
CREATE TABLE table_name_80 (year VARCHAR, actor VARCHAR, film VARCHAR, category VARCHAR)
SELECT year FROM table_name_80 WHERE film = "bullets over broadway" AND category = "best supporting actress" AND actor = "jennifer tilly"
What is the invoice number and invoice date for the invoice with most number of transactions?
CREATE TABLE Invoices (invoice_number VARCHAR, invoice_date VARCHAR); CREATE TABLE Financial_transactions (invoice_number VARCHAR)
SELECT T2.invoice_number, T2.invoice_date FROM Financial_transactions AS T1 JOIN Invoices AS T2 ON T1.invoice_number = T2.invoice_number GROUP BY T1.invoice_number ORDER BY COUNT(*) DESC LIMIT 1
Which class has laps under 77?
CREATE TABLE table_name_85 (class VARCHAR, laps INTEGER)
SELECT class FROM table_name_85 WHERE laps < 77
Which commission was launched 28 june 1934, and has a Pennant number of h.78?
CREATE TABLE table_name_40 (commissioned VARCHAR, launched VARCHAR, pennant_number VARCHAR)
SELECT commissioned FROM table_name_40 WHERE launched = "28 june 1934" AND pennant_number = "h.78"
who is the athlete when the rank is less than 13, time more than 11.13, country is bahamas and the heat more than 2?
CREATE TABLE table_name_33 (athlete VARCHAR, heat VARCHAR, country VARCHAR, rank VARCHAR, time VARCHAR)
SELECT athlete FROM table_name_33 WHERE rank < 13 AND time > 11.13 AND country = "bahamas" AND heat > 2
what was the score on september 14
CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_43 WHERE date = "september 14"
What type of 3D game did Valve Corporation release?
CREATE TABLE table_name_4 (genre VARCHAR, type VARCHAR, developer_s_ VARCHAR)
SELECT genre FROM table_name_4 WHERE type = "3d" AND developer_s_ = "valve corporation"
Who took the loss against the California Angels when the attendance was 10,886?
CREATE TABLE table_name_90 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT loss FROM table_name_90 WHERE opponent = "california angels" AND attendance = "10,886"
What are the average points White made with 0 extra points?
CREATE TABLE table_name_14 (points INTEGER, extra_points VARCHAR, player VARCHAR)
SELECT AVG(points) FROM table_name_14 WHERE extra_points = 0 AND player = "white"
What are the names of wrestlers days held less than 100?
CREATE TABLE wrestler (Name VARCHAR, Days_held INTEGER)
SELECT Name FROM wrestler WHERE Days_held < 100
Which elevation groundstation has a capacity in persons/hour larger than 820, and a Name or route of lager 1, and a slope length smaller than 336?
CREATE TABLE table_name_68 (elevation_groundstation INTEGER, slope_length VARCHAR, capacity_in_persons_hour VARCHAR, name_or_route VARCHAR)
SELECT AVG(elevation_groundstation) FROM table_name_68 WHERE capacity_in_persons_hour > 820 AND name_or_route = "lager 1" AND slope_length < 336
The Detroit Lions were played against what week?
CREATE TABLE table_name_17 (week VARCHAR, opponent VARCHAR)
SELECT week FROM table_name_17 WHERE opponent = "detroit lions"
what is the competition name when the age group is 17 or younger for athletics?
CREATE TABLE table_name_42 (competition_name VARCHAR, age_groups VARCHAR, sport VARCHAR)
SELECT competition_name FROM table_name_42 WHERE age_groups = "17 or younger" AND sport = "athletics"
Where is Odjidja-Ofoe, with an undisclosed transfer fee, moving to?
CREATE TABLE table_name_64 (moving_to VARCHAR, transfer_fee VARCHAR, name VARCHAR)
SELECT moving_to FROM table_name_64 WHERE transfer_fee = "undisclosed" AND name = "odjidja-ofoe"
Tell me the north america for phantom brave
CREATE TABLE table_name_74 (north_america VARCHAR, title VARCHAR)
SELECT north_america FROM table_name_74 WHERE title = "phantom brave"
How many Gold medals did Puerto Rico receive with 1 Silver and a Total of 1 or less?
CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT COUNT(gold) FROM table_name_79 WHERE silver = 1 AND nation = "puerto rico" AND total < 1
What is the time for a lane less than 6, and a heat less than 4 for Joanne Malar?
CREATE TABLE table_name_19 (time VARCHAR, name VARCHAR, lane VARCHAR, heat VARCHAR)
SELECT time FROM table_name_19 WHERE lane < 6 AND heat < 4 AND name = "joanne malar"
What is ion life network's PSIP Short Name?
CREATE TABLE table_name_58 (psip_short_name VARCHAR, network VARCHAR)
SELECT psip_short_name FROM table_name_58 WHERE network = "ion life"
Which Attendance has a Date of september 7?
CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_84 WHERE date = "september 7"
Who was the opponent for the 2003 davis cup europe/africa group ii?
CREATE TABLE table_name_23 (opponent VARCHAR, edition VARCHAR)
SELECT opponent FROM table_name_23 WHERE edition = "2003 davis cup europe/africa group ii"
Which call sign has ERP Wlarger than 250, and Frequency MHZ smaller than 99.3?
CREATE TABLE table_name_3 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT call_sign FROM table_name_3 WHERE erp_w > 250 AND frequency_mhz < 99.3
Where did Scott Fitzgerald rank on the UK charts?
CREATE TABLE table_name_84 (uk_chart VARCHAR, artist VARCHAR)
SELECT uk_chart FROM table_name_84 WHERE artist = "scott fitzgerald"
What is the average week number of all the matches where less than 22,604 people attended?
CREATE TABLE table_name_75 (week INTEGER, attendance INTEGER)
SELECT AVG(week) FROM table_name_75 WHERE attendance < 22 OFFSET 604
If the hometown is Windhoek, what is the represented?
CREATE TABLE table_23576576_2 (represented VARCHAR, hometown VARCHAR)
SELECT represented FROM table_23576576_2 WHERE hometown = "Windhoek"
What is Runner(s)-Up, when Margin of Victory is 1 Stroke, and when Tournament is Joburg Open 1?
CREATE TABLE table_name_51 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT runner_s__up FROM table_name_51 WHERE margin_of_victory = "1 stroke" AND tournament = "joburg open 1"
What was the percentage in 2006 whose natives is Polish?
CREATE TABLE table_2328113_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)
SELECT percentage__2006_ FROM table_2328113_1 WHERE mother_tongue = "Polish"
Who won after 1999 with changwon lg sakers as runners-up?
CREATE TABLE table_name_47 (champions VARCHAR, year VARCHAR, runners_up VARCHAR)
SELECT champions FROM table_name_47 WHERE year > 1999 AND runners_up = "changwon lg sakers"
What is the lowest To Par, when Player is "Johnny Miller"?
CREATE TABLE table_name_76 (to_par INTEGER, player VARCHAR)
SELECT MIN(to_par) FROM table_name_76 WHERE player = "johnny miller"
What is the Format for Branding of 1290 wkbk w281au 104.1?
CREATE TABLE table_10333757_1 (format VARCHAR, branding VARCHAR)
SELECT format FROM table_10333757_1 WHERE branding = "1290 WKBK W281AU 104.1"
What is the most recent year where the final score is 4–6, 3–6, 6–4, 5–7?
CREATE TABLE table_22839669_1 (year INTEGER, score_in_the_final VARCHAR)
SELECT MAX(year) FROM table_22839669_1 WHERE score_in_the_final = "4–6, 3–6, 6–4, 5–7"
On what date was elimination on final night?
CREATE TABLE table_name_43 (date VARCHAR, eliminated VARCHAR)
SELECT date FROM table_name_43 WHERE eliminated = "final night"
What is the points against when try diff is +23?
CREATE TABLE table_name_67 (points_against VARCHAR, try_diff VARCHAR)
SELECT points_against FROM table_name_67 WHERE try_diff = "+23"
Name the highest Parallel Bars of the united states with a Vault smaller than 63.85?
CREATE TABLE table_name_61 (parallel_bars INTEGER, country VARCHAR, vault VARCHAR)
SELECT MAX(parallel_bars) FROM table_name_61 WHERE country = "united states" AND vault < 63.85
What was the ratings for episode 11?
CREATE TABLE table_26591434_1 (ratings__kanto_ VARCHAR, episode VARCHAR)
SELECT ratings__kanto_ FROM table_26591434_1 WHERE episode = 11
What nation won fewer than 14 total medals, 1 silver medal, and rank 5?
CREATE TABLE table_name_62 (nation VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT nation FROM table_name_62 WHERE total < 14 AND silver = 1 AND rank = "5"
What is the total rank with more than 2 silver and total larger than 10?
CREATE TABLE table_name_55 (rank INTEGER, silver VARCHAR, total VARCHAR)
SELECT SUM(rank) FROM table_name_55 WHERE silver = 2 AND total > 10
What is the fewest steals any player had?
CREATE TABLE table_25353861_5 (steals INTEGER)
SELECT MIN(steals) FROM table_25353861_5
What is the lowest pole with a Flap larger than 5, and a before race 155?
CREATE TABLE table_name_49 (pole INTEGER, flap VARCHAR, race VARCHAR)
SELECT MIN(pole) FROM table_name_49 WHERE flap > 5 AND race < 155
Where is the home on march 12?
CREATE TABLE table_name_34 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_34 WHERE date = "march 12"
Name the frequency with on-air ID of 1way fm
CREATE TABLE table_name_18 (frequency VARCHAR, on_air_id VARCHAR)
SELECT frequency FROM table_name_18 WHERE on_air_id = "1way fm"
What position was taken out of Louisiana-Lafayette?
CREATE TABLE table_16575609_1 (position VARCHAR, college VARCHAR)
SELECT position FROM table_16575609_1 WHERE college = "Louisiana-Lafayette"
What is the smallest city area?
CREATE TABLE table_18425346_2 (city_area_km_2__ INTEGER)
SELECT MIN(city_area_km_2__) FROM table_18425346_2
What opponent did the Broncos play on November 16?
CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_93 WHERE date = "november 16"
What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?
CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR)
SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = "alessandria" AND density__inhabitants_km_2__ < 461.8
What is the score of Australia?
CREATE TABLE table_name_55 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_55 WHERE country = "australia"
Which Game is the highest one that has a February of 25?
CREATE TABLE table_name_96 (game INTEGER, february VARCHAR)
SELECT MAX(game) FROM table_name_96 WHERE february = 25
What MLB Drafts have the position pitcher/infielder?
CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, position VARCHAR)
SELECT mlb_draft FROM table_11677100_16 WHERE position = "Pitcher/Infielder"
What are the countries where either English or Dutch is the official language ?
CREATE TABLE countrylanguage (countrycode VARCHAR, language VARCHAR); CREATE TABLE country (name VARCHAR, code VARCHAR)
SELECT t1.name FROM country AS t1 JOIN countrylanguage AS t2 ON t1.code = t2.countrycode WHERE t2.language = "english" AND isofficial = "t" UNION SELECT t1.name FROM country AS t1 JOIN countrylanguage AS t2 ON t1.code = t2.countrycode WHERE t2.language = "dutch" AND isofficial = "t"
What was the result when the time was 4:15?
CREATE TABLE table_name_66 (res VARCHAR, time VARCHAR)
SELECT res FROM table_name_66 WHERE time = "4:15"
What is the highest Attendance when the away team was Wrexham?
CREATE TABLE table_name_39 (attendance INTEGER, away_team VARCHAR)
SELECT MAX(attendance) FROM table_name_39 WHERE away_team = "wrexham"
What record occurred on April 3?
CREATE TABLE table_name_17 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_17 WHERE date = "april 3"
How many records were there when opponents were 9?
CREATE TABLE table_22815265_1 (record VARCHAR, opponents VARCHAR)
SELECT COUNT(record) FROM table_22815265_1 WHERE opponents = 9
What is the first and last name of the oldest employee?
CREATE TABLE employee (emp_fname VARCHAR, emp_lname VARCHAR, emp_dob VARCHAR)
SELECT emp_fname, emp_lname FROM employee ORDER BY emp_dob LIMIT 1
What is the losing bonus with 1 draw and 13 losses?
CREATE TABLE table_name_22 (losing_bonus VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT losing_bonus FROM table_name_22 WHERE drawn = "1" AND lost = "13"
Who is listed as the Visitor that has a Home of Boston Bruins and a Date of November 15?
CREATE TABLE table_name_97 (visitor VARCHAR, home VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_97 WHERE home = "boston bruins" AND date = "november 15"
Name the opponents for outcome of runner-up and date of august 7, 2011
CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT opponents_in_the_final FROM table_name_19 WHERE outcome = "runner-up" AND date = "august 7, 2011"
Name the sabaean for sabʕ-
CREATE TABLE table_26919_6 (sabaean VARCHAR, arabic VARCHAR)
SELECT sabaean FROM table_26919_6 WHERE arabic = "sabʕ-"
Name the total number of total for rank of 7 and bronze less than 1
CREATE TABLE table_name_68 (total VARCHAR, rank VARCHAR, bronze VARCHAR)
SELECT COUNT(total) FROM table_name_68 WHERE rank = "7" AND bronze < 1
Which Mall has 140 stores?
CREATE TABLE table_name_3 (mall_name VARCHAR, stores VARCHAR)
SELECT mall_name FROM table_name_3 WHERE stores = "140"
What was the circumstance that happened on the road to Jalalabad?
CREATE TABLE table_name_89 (circumstances VARCHAR, location VARCHAR)
SELECT circumstances FROM table_name_89 WHERE location = "road to jalalabad"
Album # of 3rd is what chinese title?
CREATE TABLE table_name_57 (chinese_title VARCHAR, album_number VARCHAR)
SELECT chinese_title FROM table_name_57 WHERE album_number = "3rd"
What city had a july high below 84, and a january low of 34.3?
CREATE TABLE table_name_84 (city VARCHAR, july__avg_high_°f_ VARCHAR, january__avg_low_°f_ VARCHAR)
SELECT city FROM table_name_84 WHERE july__avg_high_°f_ < 84 AND january__avg_low_°f_ = "34.3"
how many times is the production code is 201a?
CREATE TABLE table_2701851_3 (title VARCHAR, production_code VARCHAR)
SELECT COUNT(title) FROM table_2701851_3 WHERE production_code = "201a"
What are the result description of the project whose detail is 'sint'?
CREATE TABLE Project_outcomes (outcome_code VARCHAR, project_id VARCHAR); CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR)
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code JOIN Projects AS T3 ON T2.project_id = T3.project_id WHERE T3.project_details = 'sint'
What is the highest Rank, when Publication is Dagsavisen, and when Year is less than 2005?
CREATE TABLE table_name_81 (rank INTEGER, publication VARCHAR, year VARCHAR)
SELECT MAX(rank) FROM table_name_81 WHERE publication = "dagsavisen" AND year < 2005
What country did Day & Age rank number 1 in Q prior to 2011?
CREATE TABLE table_name_52 (country VARCHAR, publication VARCHAR, year VARCHAR, rank VARCHAR)
SELECT country FROM table_name_52 WHERE year < 2011 AND rank > 1 AND publication = "q"
How many rebound did the person who scored 147 points have?
CREATE TABLE table_22824199_1 (rebounds VARCHAR, points VARCHAR)
SELECT COUNT(rebounds) FROM table_22824199_1 WHERE points = 147
How many Goals against have Goals for smaller than 33, and Points smaller than 16?
CREATE TABLE table_name_54 (goals_against INTEGER, goals_for VARCHAR, points VARCHAR)
SELECT SUM(goals_against) FROM table_name_54 WHERE goals_for < 33 AND points < 16
What was the voting order when the commentator was renato tagliani?
CREATE TABLE table_name_95 (voting_order VARCHAR, commentator VARCHAR)
SELECT voting_order FROM table_name_95 WHERE commentator = "renato tagliani"
Which Tournament has Opponents of marc lópez santiago ventura?
CREATE TABLE table_name_16 (tournament VARCHAR, opponents VARCHAR)
SELECT tournament FROM table_name_16 WHERE opponents = "marc lópez santiago ventura"
What final was Farhad Rezaei in?
CREATE TABLE table_name_46 (final VARCHAR, athlete VARCHAR)
SELECT final FROM table_name_46 WHERE athlete = "farhad rezaei"
Name the youth classification for michael barry
CREATE TABLE table_23944514_15 (youth_classification VARCHAR, aggressive_rider VARCHAR)
SELECT youth_classification FROM table_23944514_15 WHERE aggressive_rider = "Michael Barry"
What is the sum of Draws for a season later than 1964?
CREATE TABLE table_name_67 (draws INTEGER, season INTEGER)
SELECT SUM(draws) FROM table_name_67 WHERE season > 1964
What was the score for the 1st ranked team?
CREATE TABLE table_24765815_1 (score VARCHAR, rank VARCHAR)
SELECT score FROM table_24765815_1 WHERE rank = "1st"
Can you tell me the English translation that has the Artist of camillo felgen?
CREATE TABLE table_name_61 (english_translation VARCHAR, artist VARCHAR)
SELECT english_translation FROM table_name_61 WHERE artist = "camillo felgen"
What prize money has michelob light challenge of champions as the commercial name?
CREATE TABLE table_name_56 (prize_money VARCHAR, commercial_name VARCHAR)
SELECT prize_money FROM table_name_56 WHERE commercial_name = "michelob light challenge of champions"