answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT COUNT(points_2) FROM table_17358515_1 WHERE team = "Goole Town"
How many points did Goole Town accumulate?
CREATE TABLE table_17358515_1 (points_2 VARCHAR, team VARCHAR)
SELECT median_income FROM table_14946657_3 WHERE age_band = "Under 20"
Name the median income for age band being under 20
CREATE TABLE table_14946657_3 (median_income VARCHAR, age_band VARCHAR)
SELECT 1 AS st_leg FROM table_name_37 WHERE team__number2 = "akasvayu girona"
What is the 1st leg that has akasvayu girona as team #2?
CREATE TABLE table_name_37 (team__number2 VARCHAR)
SELECT SUM(events) FROM table_name_77 WHERE top_10 = 2 AND cuts_made > 5
How many events does the tournament with a top-10 of 2 and more than 5 cuts have?
CREATE TABLE table_name_77 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR)
SELECT date FROM table_name_97 WHERE score = "123-112"
When was the score 123-112?
CREATE TABLE table_name_97 (date VARCHAR, score VARCHAR)
SELECT height__ft_ FROM table_13463790_2 WHERE name = "52-54 Lime Street"
what's the height (ft) with name being 52-54 lime street
CREATE TABLE table_13463790_2 (height__ft_ VARCHAR, name VARCHAR)
SELECT MIN(average_climb___percentage_) FROM table_16654785_2 WHERE name = "Tenbosse"
What is the average climb for Tenbosse?
CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER, name VARCHAR)
SELECT place FROM table_name_22 WHERE player = "tom watson"
Where has a Player of tom watson?
CREATE TABLE table_name_22 (place VARCHAR, player VARCHAR)
SELECT date FROM table_name_58 WHERE pitcher = "aníbal sánchez"
I want the date for aníbal sánchez
CREATE TABLE table_name_58 (date VARCHAR, pitcher VARCHAR)
SELECT COUNT(interview_subject) FROM table_1566848_7 WHERE centerfold_model = "Sherry Arnett"
Who was the interview subject when the centerfold model was Sherry Arnett?
CREATE TABLE table_1566848_7 (interview_subject VARCHAR, centerfold_model VARCHAR)
SELECT T3.name, T2.title, T1.date, T1.price FROM schedule AS T1 JOIN film AS T2 ON T1.film_id = T2.film_id JOIN cinema AS T3 ON T1.cinema_id = T3.cinema_id
Show cinema name, film title, date, and price for each record in schedule.
CREATE TABLE schedule (date VARCHAR, price VARCHAR, film_id VARCHAR, cinema_id VARCHAR); CREATE TABLE cinema (name VARCHAR, cinema_id VARCHAR); CREATE TABLE film (title VARCHAR, film_id VARCHAR)
SELECT date FROM table_20745706_1 WHERE _number = "5"
What is the date of game 5?
CREATE TABLE table_20745706_1 (date VARCHAR, _number VARCHAR)
SELECT COUNT(week) FROM table_name_10 WHERE attendance = "50,814"
In which week was attendance at 50,814?
CREATE TABLE table_name_10 (week VARCHAR, attendance VARCHAR)
SELECT 2008 FROM table_name_36 WHERE 2009 = "a" AND 2011 = "2r"
What was the 2008 result associated with a 2009 of A and a 2011 of 2R?
CREATE TABLE table_name_36 (Id VARCHAR)
SELECT position FROM table_name_60 WHERE players = "jake johnson"
What is Jake Johnson's position?
CREATE TABLE table_name_60 (position VARCHAR, players VARCHAR)
SELECT d_47 FROM table_name_92 WHERE d_49 = "r 32"
What is the D 47 when the D 49 is r 32?
CREATE TABLE table_name_92 (d_47 VARCHAR, d_49 VARCHAR)
SELECT AVG(round) FROM table_name_52 WHERE location = "bahia, brazil"
Which Round has a Location of bahia, brazil?
CREATE TABLE table_name_52 (round INTEGER, location VARCHAR)
SELECT res FROM table_name_67 WHERE opponent = "enrique guzman"
What was the resolution for the fight against enrique guzman?
CREATE TABLE table_name_67 (res VARCHAR, opponent VARCHAR)
SELECT socket FROM table_name_16 WHERE fsb_speed = "400 mhz" AND voltage_range = "1.004 v"
Which Socket has a FSB Speed of 400 mhz, and a Voltage Range of 1.004 v?
CREATE TABLE table_name_16 (socket VARCHAR, fsb_speed VARCHAR, voltage_range VARCHAR)
SELECT MAX(events) FROM table_name_65 WHERE wins > 2 AND earnings___$__ < 446 OFFSET 893
What is the largest events number for more than 2 wins and less than $446,893 in earnings?
CREATE TABLE table_name_65 (events INTEGER, wins VARCHAR, earnings___$__ VARCHAR)
SELECT SUM(laps) FROM table_name_46 WHERE year = 2010
How many Laps were there in 2010?
CREATE TABLE table_name_46 (laps INTEGER, year VARCHAR)
SELECT player FROM table_name_88 WHERE round = "2" AND position = "center"
Which player is in position center for round 2?
CREATE TABLE table_name_88 (player VARCHAR, round VARCHAR, position VARCHAR)
SELECT home FROM table_name_32 WHERE visitor = "phoenix"
Who did team phoenix visit in their home?
CREATE TABLE table_name_32 (home VARCHAR, visitor VARCHAR)
SELECT SUM(ngc_number) FROM table_name_31 WHERE object_type = "spiral galaxy" AND right_ascension___j2000__ = "08h14m40.4s"
I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s
CREATE TABLE table_name_31 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT institution FROM table_26476336_2 WHERE new_conference = "SELC"
What school has the new conference as SELC?
CREATE TABLE table_26476336_2 (institution VARCHAR, new_conference VARCHAR)
SELECT 2008 FROM table_name_77 WHERE 2009 = "1r" AND 2006 = "3r"
What is the value in 2008 when 1R is 2009 and 3R?
CREATE TABLE table_name_77 (Id VARCHAR)
SELECT MAX(2007) FROM table_name_56 WHERE 1985 > 52 AND 1987 > 130 AND 1990 < 1990
What is the highest 2007 value with a 1985 value greater than 52, a 1987 value greater than 130, and a 1990 less than 1990?
CREATE TABLE table_name_56 (Id VARCHAR)
SELECT SUM(number_of_electorates__2009_) FROM table_name_11 WHERE district = "fatehpur" AND name = "jahanabad"
Count the Number of electorates (2009) that has a District of fatehpur and jahanabad?
CREATE TABLE table_name_11 (number_of_electorates__2009_ INTEGER, district VARCHAR, name VARCHAR)
SELECT time_retired FROM table_name_80 WHERE grid < 9 AND laps = 21 AND rider = "jeremy mcwilliams"
What was the time of the race that was on a grid smaller than 9 with jeremy mcwilliams as the rider doing 21 laps?
CREATE TABLE table_name_80 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT score FROM table_name_18 WHERE opponent = "phoenix suns"
What was the score of the game against the phoenix suns?
CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR)
SELECT AVG(crowd) FROM table_name_59 WHERE away_team = "carlton"
What is the average crowd for Carlton?
CREATE TABLE table_name_59 (crowd INTEGER, away_team VARCHAR)
SELECT title FROM table_25604014_8 WHERE written_by = "William M. Finkelstein"
What is the name of the episode that William M. Finkelstein wrote?
CREATE TABLE table_25604014_8 (title VARCHAR, written_by VARCHAR)
SELECT city_of_license__market FROM table_name_61 WHERE station = "kdka-tv"
What is the city containing the KDKA-TV station?
CREATE TABLE table_name_61 (city_of_license__market VARCHAR, station VARCHAR)
SELECT MIN(game) FROM table_name_49 WHERE opponent = "pittsburgh penguins"
What game is the first with the Pittsburgh Penguins the opponent?
CREATE TABLE table_name_49 (game INTEGER, opponent VARCHAR)
SELECT date_of_appointment FROM table_27782699_3 WHERE replaced_by = "Kim Fogh"
On what date did Kim Fogh replace the previous manager?
CREATE TABLE table_27782699_3 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT date FROM table_name_23 WHERE attendance = 3686
When was the attendance 3686?
CREATE TABLE table_name_23 (date VARCHAR, attendance VARCHAR)
SELECT release_date FROM table_name_31 WHERE catalogue = "epa 4054" AND recorded = "1/12/57"
When was the cataglogue EPA 4054 released with a 1/12/57 recorded?
CREATE TABLE table_name_31 (release_date VARCHAR, catalogue VARCHAR, recorded VARCHAR)
SELECT format FROM table_name_8 WHERE date = "october 29, 2004"
What format is dated October 29, 2004?
CREATE TABLE table_name_8 (format VARCHAR, date VARCHAR)
SELECT MAX(bronze) FROM table_name_49 WHERE total > 1 AND rank > 1 AND gold > 1
What is the most number of Bronze medals won among the countries that have won more than 1 medal, more than 1 gold medal, and have a rank bigger than 1?
CREATE TABLE table_name_49 (bronze INTEGER, gold VARCHAR, total VARCHAR, rank VARCHAR)
SELECT time_retired FROM table_name_5 WHERE laps < 24 AND manufacturer = "aprilia" AND grid < 12 AND rider = "ángel rodríguez"
Which Time/Retired has Laps smaller than 24, and a Manufacturer of aprilia, and a Grid smaller than 12, and a Rider of ángel rodríguez?
CREATE TABLE table_name_5 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR)
SELECT COUNT(total) FROM table_name_71 WHERE to_par = 12
What is the total number of Total, when To Par is 12?
CREATE TABLE table_name_71 (total VARCHAR, to_par VARCHAR)
SELECT local_host_s_ FROM table_name_86 WHERE country = "united states" AND year < 2007
Who are the local hosts for the United States in years earlier than 2007?
CREATE TABLE table_name_86 (local_host_s_ VARCHAR, country VARCHAR, year VARCHAR)
SELECT home_team FROM table_name_76 WHERE away_team = "fitzroy"
Who was the home team when Fitzroy was the away team?
CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR)
SELECT COUNT(celebrity) FROM table_11642945_1 WHERE original_air_date = "18October2007"
How many celebrities had an 18October2007 Original air Date?
CREATE TABLE table_11642945_1 (celebrity VARCHAR, original_air_date VARCHAR)
SELECT Name FROM pilot WHERE Age <= 30 ORDER BY Name DESC
List names of all pilot aged 30 or younger in descending alphabetical order.
CREATE TABLE pilot (Name VARCHAR, Age VARCHAR)
SELECT MAX(T1.length_meters), T2.name FROM bridge AS T1 JOIN architect AS T2 ON T1.architect_id = T2.id
What is the maximum length in meters for the bridges and what are the architects' names?
CREATE TABLE architect (name VARCHAR, id VARCHAR); CREATE TABLE bridge (length_meters INTEGER, architect_id VARCHAR)
SELECT MIN(total_goals) FROM table_name_64 WHERE name = "mark ward"
What is the total goals for Mark Ward?
CREATE TABLE table_name_64 (total_goals INTEGER, name VARCHAR)
SELECT promoted_to_league FROM table_23927423_4 WHERE relegated_to_league = "Coventry"
Who was promoted to the league when Coventry was relegated to the league?
CREATE TABLE table_23927423_4 (promoted_to_league VARCHAR, relegated_to_league VARCHAR)
SELECT chassis FROM table_name_95 WHERE year > 1964 AND engine = "ford" AND pts = 13
Which chassis has a year later than 1964, a Ford engine, and 13 points?
CREATE TABLE table_name_95 (chassis VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR)
SELECT AVG(l_100km_urban__cold_) FROM table_name_27 WHERE engine_capacity > 1910 AND mpg_us_urban < 25.3 AND mpg_uk_combined > 27.2 AND mpg_uk_urban__cold_ = 22.4
What is the average L/100km urban (cold) for engine capacities over 1910, mpg in the US (urban) under 25.3, mpg in the UK (combined) over 27.2, and mpg in the UK (urban, cold) of 22.4?
CREATE TABLE table_name_27 (l_100km_urban__cold_ INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR, engine_capacity VARCHAR, mpg_us_urban VARCHAR)
SELECT episode FROM table_23575917_6 WHERE davids_team = "Bill Oddie and Frank Skinner"
When bill oddie and frank skinner are both on the davids team what is the episode?
CREATE TABLE table_23575917_6 (episode VARCHAR, davids_team VARCHAR)
SELECT province FROM table_name_46 WHERE 2006 < 153748 AND date_of_official_foundation_of_municipality > 1958 AND city = "pakdasht"
What is Province, when 2006 is less than 153748, when Date of Official Foundation of Municipality is after 1958, and when City is "Pakdasht"?
CREATE TABLE table_name_46 (province VARCHAR, city VARCHAR, date_of_official_foundation_of_municipality VARCHAR)
SELECT SUM(diff) FROM table_name_48 WHERE drawn = 9 AND played > 18
What is the sum of the difference for 9 draws and over 18 played?
CREATE TABLE table_name_48 (diff INTEGER, drawn VARCHAR, played VARCHAR)
SELECT T2.Name FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Monterey" AND T2.price < 50
What are the wines that have prices lower than 50 and have appelations in Monterey county?
CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR); CREATE TABLE WINE (Name VARCHAR, Appelation VARCHAR, price VARCHAR)
SELECT label FROM table_name_9 WHERE formats = "digital" AND title = "nebula remixes"
Tell me the label for digital format with nebula remixes
CREATE TABLE table_name_9 (label VARCHAR, formats VARCHAR, title VARCHAR)
SELECT date FROM table_name_49 WHERE venue = "nuku'alofa" AND player = "josh taumalolo"
What date did Josh Taumalolo play at Nuku'alofa?
CREATE TABLE table_name_49 (date VARCHAR, venue VARCHAR, player VARCHAR)
SELECT number_of_episodes FROM table_name_90 WHERE actor = "jessica napier"
What is Number Of Episodes, when Actor is "Jessica Napier"
CREATE TABLE table_name_90 (number_of_episodes VARCHAR, actor VARCHAR)
SELECT january_15_16 FROM table_25284864_3 WHERE november_3 = "november_3, 2013"
What January 15-16 is is that corresponds to November 3, 2013?
CREATE TABLE table_25284864_3 (january_15_16 VARCHAR, november_3 VARCHAR)
SELECT away_team AS score FROM table_name_23 WHERE away_team = "south melbourne"
Tell me the away team score for away team of south melbourne
CREATE TABLE table_name_23 (away_team VARCHAR)
SELECT date FROM table_name_43 WHERE week = 16
What was the Date of Week 16?
CREATE TABLE table_name_43 (date VARCHAR, week VARCHAR)
SELECT MAX(monthly_rental), MIN(monthly_rental) FROM Student_Addresses
Find the maximum and minimum monthly rental for all student addresses.
CREATE TABLE Student_Addresses (monthly_rental INTEGER)
SELECT MIN(attendance) FROM table_name_34 WHERE date = "october 11" AND game > 4
Where Date is october 11, and game greater than 4 what is the lowest attendance?
CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR, game VARCHAR)
SELECT street_address FROM table_name_17 WHERE name = "prudential tower"
What is the street address for the Prudential Tower building?
CREATE TABLE table_name_17 (street_address VARCHAR, name VARCHAR)
SELECT park_and_ride_lot FROM table_name_97 WHERE station_name = "temple square"
What is the park & ride lot for the Temple Square station?
CREATE TABLE table_name_97 (park_and_ride_lot VARCHAR, station_name VARCHAR)
SELECT opponent FROM table_name_10 WHERE week = 3
Who was the opponent on week 3?
CREATE TABLE table_name_10 (opponent VARCHAR, week VARCHAR)
SELECT date_released FROM table_name_53 WHERE green_communist = "9.7%"
What's the date released when there was 9.7% of Green communist?
CREATE TABLE table_name_53 (date_released VARCHAR, green_communist VARCHAR)
SELECT second_couple FROM table_25664518_3 WHERE itv1_weekly_ranking = 29
Who was the second couple for the episode having an ITV1 ranking of 29?
CREATE TABLE table_25664518_3 (second_couple VARCHAR, itv1_weekly_ranking VARCHAR)
SELECT hr_no FROM table_name_36 WHERE lms_no = 14758
What's the HR number when the LMS number is 14758?
CREATE TABLE table_name_36 (hr_no VARCHAR, lms_no VARCHAR)
SELECT tournament FROM table_name_78 WHERE surface = "hard" AND date = "february 25, 1996"
What tournament had a hard surface on February 25, 1996?
CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, date VARCHAR)
SELECT COUNT(crowd) FROM table_name_6 WHERE home_team = "north melbourne"
What was the attendance of the North Melbourne's home game?
CREATE TABLE table_name_6 (crowd VARCHAR, home_team VARCHAR)
SELECT attendance FROM table_name_4 WHERE date = "bye"
What attendance is listed against the date of bye?
CREATE TABLE table_name_4 (attendance VARCHAR, date VARCHAR)
SELECT country FROM table_name_67 WHERE event = "rip curl women's pro"
What is Country, when Event is Rip Curl Women's Pro?
CREATE TABLE table_name_67 (country VARCHAR, event VARCHAR)
SELECT COUNT(year) FROM table_name_70 WHERE venue = "singapore"
In what years did Salina Kosgei compete in Singapore?
CREATE TABLE table_name_70 (year VARCHAR, venue VARCHAR)
SELECT MAX(week) FROM table_name_51 WHERE date = "december 14, 1986" AND attendance < 47 OFFSET 096
When was the last time, since December 14, 1986, that the attendance was lower than 47,096?
CREATE TABLE table_name_51 (week INTEGER, date VARCHAR, attendance VARCHAR)
SELECT tickets_sold___available FROM table_name_51 WHERE gross_revenue__2011_ = "$333,100"
How many tickets were sold / available for the venue that had a gross revenue of $333,100 in 2011?
CREATE TABLE table_name_51 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)
SELECT MAX(series_episode) FROM table_27987623_1 WHERE us_viewers__in_million_ = "7.43"
What was the episode number veiwed by 7.43 million viewers?
CREATE TABLE table_27987623_1 (series_episode INTEGER, us_viewers__in_million_ VARCHAR)
SELECT SUM(laps) FROM table_name_5 WHERE grid = 2
What is the total of laps with grid of 2
CREATE TABLE table_name_5 (laps INTEGER, grid VARCHAR)
SELECT COUNT(difficulty) FROM table_28140141_1 WHERE year = 1994
How many shows were in 1994?
CREATE TABLE table_28140141_1 (difficulty VARCHAR, year VARCHAR)
SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE operating_mode = "All-electric" AND dirty_electric_grid_rocky_mountains__denver_ = "330 g/mi (205 g/km)"
What is the epa rated combined fuel economy for the all-electric vehicle with dirty electric grid rocky mountains (denver) of 330 g/mi (205 g/km)?
CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, operating_mode VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR)
SELECT no_of_s_barangay FROM table_255885_1 WHERE municipality = "Paracale"
What is the number of S Barangay for Paracale?
CREATE TABLE table_255885_1 (no_of_s_barangay VARCHAR, municipality VARCHAR)
SELECT part_3 FROM table_1745843_9 WHERE part_1 = "treffen"
Name the part 3 for treffen
CREATE TABLE table_1745843_9 (part_3 VARCHAR, part_1 VARCHAR)
SELECT COUNT(field_goals) FROM table_name_6 WHERE extra_points > 0 AND touchdowns = 5
What is the total number of field goals a player had when there were more than 0 extra points and there were 5 touchdowns?
CREATE TABLE table_name_6 (field_goals VARCHAR, extra_points VARCHAR, touchdowns VARCHAR)
SELECT 2 AS nd_leg FROM table_name_4 WHERE team_2 = "budoni (sardinia)"
What was the 2nd leg where the team 2 was budoni (sardinia)?
CREATE TABLE table_name_4 (team_2 VARCHAR)
SELECT unit FROM table_name_94 WHERE location = "argentina"
What unit is in Argentina?
CREATE TABLE table_name_94 (unit VARCHAR, location VARCHAR)
SELECT championship FROM table_name_72 WHERE session = "race" AND event = "indianapolis sweepstakes"
In the Indianapolis Sweepstakes race session, what is the championship?
CREATE TABLE table_name_72 (championship VARCHAR, session VARCHAR, event VARCHAR)
SELECT high_points FROM table_27700530_15 WHERE date = "April 22"
Who had the most points and how many did they have on April 22?
CREATE TABLE table_27700530_15 (high_points VARCHAR, date VARCHAR)
SELECT hometown FROM table_name_33 WHERE college = "usc"
What is the hometown of the player who went to college at USC?
CREATE TABLE table_name_33 (hometown VARCHAR, college VARCHAR)
SELECT result FROM table_name_43 WHERE date = "22 january 2008"
What is the Result with a Date with 22 january 2008?
CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)
SELECT 1990 FROM table_name_3 WHERE 1993 = "1r"
WHICH 1990 has a 1993 of 1r?
CREATE TABLE table_name_3 (Id VARCHAR)
SELECT MAX(sales), _receipts, _or_shipments__$1, 000 AS _ FROM table_23802822_1 WHERE establishments = 49319
If the establishment is 49319, what is the sales, receipts or shipments maximum amount?
CREATE TABLE table_23802822_1 (_receipts VARCHAR, _or_shipments__$1 VARCHAR, sales INTEGER, establishments VARCHAR)
SELECT country FROM table_28634206_1 WHERE miss_universe = "8"
Which country has had 8 miss universes?
CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)
SELECT aggressive_rider FROM table_25580292_13 WHERE winner = "Luis León Sánchez"
Who was the aggressive rider when the winner was luis león sánchez?
CREATE TABLE table_25580292_13 (aggressive_rider VARCHAR, winner VARCHAR)
SELECT class FROM table_name_5 WHERE weight = 220
Weight of 220 has what class?
CREATE TABLE table_name_5 (class VARCHAR, weight VARCHAR)
SELECT SUM(rank) FROM table_name_76 WHERE notes = "q, pb" AND time___sec__ = 11.15 AND lane > 7
What is the rank when time is 11.15 and lane is bigger than 7 with notes Q, PB?
CREATE TABLE table_name_76 (rank INTEGER, lane VARCHAR, notes VARCHAR, time___sec__ VARCHAR)
SELECT MAX(season) FROM table_name_29 WHERE game = "fcs midwest region" AND score = "40-33"
Which Season has a Game of fcs midwest region, and a Score of 40-33?
CREATE TABLE table_name_29 (season INTEGER, game VARCHAR, score VARCHAR)
SELECT tie_no FROM table_name_39 WHERE score = "3–0" AND home_team = "bristol rovers"
Which Tie # has a Score of 3–0, and a Home team of bristol rovers?
CREATE TABLE table_name_39 (tie_no VARCHAR, score VARCHAR, home_team VARCHAR)
SELECT category FROM table_21716139_1 WHERE train_no = "16609/16610"
What is the category for trains numbered 16609/16610?
CREATE TABLE table_21716139_1 (category VARCHAR, train_no VARCHAR)
SELECT status FROM table_24431348_18 WHERE player = "Philipp Kohlschreiber"
What is the status of player Philipp Kohlschreiber?
CREATE TABLE table_24431348_18 (status VARCHAR, player VARCHAR)
SELECT working_tax_credit FROM table_name_20 WHERE employment___salaries_ & _wages_ = "64%" AND occupational_pensions = "6%"
Employment ( salaries & wages) of 64%, and a Occupational pensions of 6% has what working tax credit?
CREATE TABLE table_name_20 (working_tax_credit VARCHAR, occupational_pensions VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR)
SELECT COUNT(*), country FROM airport GROUP BY country
how many airports are there in each country?
CREATE TABLE airport (country VARCHAR)