context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_61 (tv_season VARCHAR, season VARCHAR, households__in_millions_ VARCHAR)
Which TV season has a Season smaller than 8, and a Household (in millions) of 15.92 (17.1 rating)?
SELECT tv_season FROM table_name_61 WHERE season < 8 AND households__in_millions_ = "15.92 (17.1 rating)"
CREATE TABLE table_name_3 (code INTEGER, place VARCHAR, area__km_2__ VARCHAR, population VARCHAR, most_spoken_language VARCHAR)
What is the lowest code number for the remainder of the municipality that has an area bigger than 15.34 squared kilometers, a population greater than 762 and a language of xhosa spoken?
SELECT MIN(code) FROM table_name_3 WHERE population > 762 AND most_spoken_language = "xhosa" AND area__km_2__ > 15.34 AND place = "remainder of the municipality"
CREATE TABLE table_name_31 (area__km_2__ INTEGER, most_spoken_language VARCHAR, place VARCHAR)
What is the lowest area for cannonvale that speaks afrikaans?
SELECT MIN(area__km_2__) FROM table_name_31 WHERE most_spoken_language = "afrikaans" AND place = "cannonvale"
CREATE TABLE table_name_91 (title VARCHAR, length VARCHAR, producer_s_ VARCHAR)
Which Title has a Length of 3:32, and a Producer(s) of hadise açıkgöz, yves jongen?
SELECT title FROM table_name_91 WHERE length = "3:32" AND producer_s_ = "hadise açıkgöz, yves jongen"
CREATE TABLE table_name_46 (producer_s_ VARCHAR, length VARCHAR, track VARCHAR, songwriter_s_ VARCHAR)
Which Producer(s) has a Track smaller than 8, and a Songwriter(s) of hadise açıkgöz, yves jongen, and a Length of 3:08?
SELECT producer_s_ FROM table_name_46 WHERE track < 8 AND songwriter_s_ = "hadise açıkgöz, yves jongen" AND length = "3:08"
CREATE TABLE table_name_5 (accreditation_type VARCHAR, accreditation_level VARCHAR, company_name VARCHAR)
When the Nokia corporation had an accreditation level of joyn, what was the accreditation type?
SELECT accreditation_type FROM table_name_5 WHERE accreditation_level = "joyn" AND company_name = "nokia corporation"
CREATE TABLE table_name_43 (opponent VARCHAR, record VARCHAR, location VARCHAR, method VARCHAR)
What is Opponent, when Location is "Tokyo , Japan", when Method is "Decision (unanimous)", and when Record is "4-1"?
SELECT opponent FROM table_name_43 WHERE location = "tokyo , japan" AND method = "decision (unanimous)" AND record = "4-1"
CREATE TABLE table_name_45 (number_of_seats INTEGER, leader VARCHAR)
What is Jillian Evans highest number of seats?
SELECT MAX(number_of_seats) FROM table_name_45 WHERE leader = "jillian evans"
CREATE TABLE table_name_31 (score VARCHAR, opponent VARCHAR, decision VARCHAR, november VARCHAR)
What is the Score of the game with a decision of Lundqvist, the November less than 28, and opponent was Boston Bruins?
SELECT score FROM table_name_31 WHERE decision = "lundqvist" AND november < 28 AND opponent = "boston bruins"
CREATE TABLE table_name_87 (model VARCHAR, resolution VARCHAR, sensor_size VARCHAR, active_pixels VARCHAR)
Which model has a sensor sized 48x36 mm, pixels of 6726 x 5040, and a 33 mp resolution?
SELECT model FROM table_name_87 WHERE sensor_size = "48x36 mm" AND active_pixels = "6726 x 5040" AND resolution = "33 mp"
CREATE TABLE table_name_20 (bachelorette VARCHAR, winner VARCHAR)
Who was the bachelorette of the season where ian mckee was the winner?
SELECT bachelorette FROM table_name_20 WHERE winner = "ian mckee"
CREATE TABLE table_name_21 (lead VARCHAR, season VARCHAR, third VARCHAR, second VARCHAR)
Which Lead has a Third of randy ferbey (skip), a Second of scott pfeifer, and a Season of 2009–10?
SELECT lead FROM table_name_21 WHERE third = "randy ferbey (skip)" AND second = "scott pfeifer" AND season = "2009–10"
CREATE TABLE table_name_16 (democrat VARCHAR, sample_size VARCHAR, republican VARCHAR)
Which Democrat was selected in the poll with a sample size smaller than 516 where the Republican chosen was Ron Paul?
SELECT democrat FROM table_name_16 WHERE sample_size < 516 AND republican = "ron paul"
CREATE TABLE table_name_92 (elector VARCHAR, nationality VARCHAR, elevated VARCHAR)
Who was the French Elector Elevated on 1288, May 16?
SELECT elector FROM table_name_92 WHERE nationality = "french" AND elevated = "1288, may 16"
CREATE TABLE table_name_5 (nationality VARCHAR, title VARCHAR)
What is the Nationality of the Deacon of S. Maria in Via Lata?
SELECT nationality FROM table_name_5 WHERE title = "deacon of s. maria in via lata"
CREATE TABLE table_name_76 (no_5 VARCHAR, no_4 VARCHAR, no_1 VARCHAR, no_8 VARCHAR, no_2 VARCHAR)
When Chloe was number 8, Olivia was number 2, Emma was number 1, and Ava was number 4, who was number 5?
SELECT no_5 FROM table_name_76 WHERE no_8 = "chloe" AND no_2 = "olivia" AND no_1 = "emma" AND no_4 = "ava"
CREATE TABLE table_name_70 (race_name VARCHAR, year VARCHAR, winner VARCHAR)
Jud Larson who which race after 1956?
SELECT race_name FROM table_name_70 WHERE year > 1956 AND winner = "jud larson"
CREATE TABLE table_name_22 (sambalpuri_saree VARCHAR, sambalpuri_language VARCHAR)
What is the sambalpuri saree with a samaleswari temple as sambalpuri language?
SELECT sambalpuri_saree FROM table_name_22 WHERE sambalpuri_language = "samaleswari temple"
CREATE TABLE table_name_45 (date VARCHAR, winner VARCHAR, competition_round VARCHAR, venue VARCHAR, season VARCHAR)
On what date did Universitario win the Torneo Apertura round after 2003 at Estadio Alejandro Villanueva?
SELECT date FROM table_name_45 WHERE venue = "estadio alejandro villanueva" AND season > 2003 AND competition_round = "torneo apertura" AND winner = "universitario"
CREATE TABLE table_name_90 (director VARCHAR, primary_language_s_ VARCHAR, original_title VARCHAR)
What is Director, when Primary Language(s) is "Azerbaijani", and when Original Title is "Buta"?
SELECT director FROM table_name_90 WHERE primary_language_s_ = "azerbaijani" AND original_title = "buta"
CREATE TABLE table_name_50 (date VARCHAR, discipline VARCHAR, season VARCHAR)
What is the date of Super G in the 2010 season?
SELECT date FROM table_name_50 WHERE discipline = "super g" AND season = 2010
CREATE TABLE table_name_80 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)
What was the time of the race that was on a grid smaller than 9 with jeremy mcwilliams as the rider doing 21 laps?
SELECT time_retired FROM table_name_80 WHERE grid < 9 AND laps = 21 AND rider = "jeremy mcwilliams"
CREATE TABLE table_name_89 (winner VARCHAR, notes VARCHAR, venue VARCHAR)
Who was the winner for the world championship formula 1 at the venue, circuit de monaco?
SELECT winner FROM table_name_89 WHERE notes = "world championship formula 1" AND venue = "circuit de monaco"
CREATE TABLE table_name_47 (left_office VARCHAR, took_office VARCHAR, minister VARCHAR)
What is Left Office, when Took Office is "11 June 2001", and when Minister is "Mirko Tremaglia"?
SELECT left_office FROM table_name_47 WHERE took_office = "11 june 2001" AND minister = "mirko tremaglia"
CREATE TABLE table_name_16 (left_office VARCHAR, party VARCHAR, took_office VARCHAR)
What is Left Office, when Party is "UDC", and when Took Office is "11 June 2001"?
SELECT left_office FROM table_name_16 WHERE party = "udc" AND took_office = "11 june 2001"
CREATE TABLE table_name_97 (minister VARCHAR, portfolio VARCHAR, took_office VARCHAR)
What is Minister, when Portfolio is "Minister of Pubblic Administration", and when Took Office is "14 November 2002"?
SELECT minister FROM table_name_97 WHERE portfolio = "minister of pubblic administration" AND took_office = "14 november 2002"
CREATE TABLE table_name_14 (record VARCHAR, event VARCHAR)
What is the record during the event, UFC 27?
SELECT record FROM table_name_14 WHERE event = "ufc 27"
CREATE TABLE table_name_49 (venue VARCHAR, year VARCHAR, competition VARCHAR)
Where was the world race walking cup held before 2001?
SELECT venue FROM table_name_49 WHERE year < 2001 AND competition = "world race walking cup"
CREATE TABLE table_name_66 (competition VARCHAR, res VARCHAR)
WHAT COMPETITION HAS MARIAN SANDU?
SELECT competition FROM table_name_66 WHERE res = "marian sandu"
CREATE TABLE table_name_65 (venue VARCHAR, score VARCHAR, date VARCHAR)
What Venue on October 27, 2005 had a Score of 5-0?
SELECT venue FROM table_name_65 WHERE score = "5-0" AND date = "october 27, 2005"
CREATE TABLE table_name_91 (player VARCHAR, year_s__won VARCHAR)
Who is the player who won in 1994?
SELECT player FROM table_name_91 WHERE year_s__won = "1994"
CREATE TABLE table_name_36 (year VARCHAR, championship VARCHAR)
Which year was the peter jackson classic?
SELECT year FROM table_name_36 WHERE championship = "peter jackson classic"
CREATE TABLE table_name_71 (attendance INTEGER, visitor VARCHAR)
What is the average Attendance, when Visitor is Toronto?
SELECT AVG(attendance) FROM table_name_71 WHERE visitor = "toronto"
CREATE TABLE table_name_49 (round VARCHAR, record VARCHAR)
What round has 3-4 as the record?
SELECT round FROM table_name_49 WHERE record = "3-4"
CREATE TABLE table_name_70 (country VARCHAR, player VARCHAR)
What country does Bobby Nichols play for?
SELECT country FROM table_name_70 WHERE player = "bobby nichols"
CREATE TABLE table_name_22 (grid VARCHAR, time_retired VARCHAR, manufacturer VARCHAR, laps VARCHAR)
WHAT IS THE GRID OF HONDA, WITH 24 LAPS AND Time/Retired of +13.997?
SELECT grid FROM table_name_22 WHERE manufacturer = "honda" AND laps = "24" AND time_retired = "+13.997"
CREATE TABLE table_name_14 (number VARCHAR, party VARCHAR, président VARCHAR)
What number corresponds to Presidet Yves Krattinger of the Socialist party?
SELECT number FROM table_name_14 WHERE party = "socialist party" AND président = "yves krattinger"
CREATE TABLE table_name_54 (départment__or_collectivity_ VARCHAR, since VARCHAR, président VARCHAR)
Which department has Guy-Dominique Kennel as president since 2008?
SELECT départment__or_collectivity_ FROM table_name_54 WHERE since = 2008 AND président = "guy-dominique kennel"
CREATE TABLE table_name_13 (to_par VARCHAR, country VARCHAR, player VARCHAR)
What's the to par for Hale Irwin of the United States?
SELECT to_par FROM table_name_13 WHERE country = "united states" AND player = "hale irwin"
CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR)
Which Bronze has a Silver larger than 1, a Total larger than 3, a Nation of turkey, and a Gold smaller than 2?
SELECT SUM(bronze) FROM table_name_53 WHERE silver > 1 AND total > 3 AND nation = "turkey" AND gold < 2
CREATE TABLE table_name_29 (position__eliminated VARCHAR, age¹ VARCHAR, full_name VARCHAR)
What is Position/ Eliminated, when Age¹ is less than 22, and when Full Name is "Muhammad Fairul Azreen Bin Mohd Zahid"?
SELECT position__eliminated FROM table_name_29 WHERE age¹ < 22 AND full_name = "muhammad fairul azreen bin mohd zahid"
CREATE TABLE table_name_98 (site VARCHAR, score VARCHAR)
Which site has a Score of 0-1?
SELECT site FROM table_name_98 WHERE score = "0-1"
CREATE TABLE table_name_76 (sport VARCHAR, league VARCHAR, city VARCHAR, venue VARCHAR)
Which sport was held in Huntsville at the Von Braun Center as part of the Southern Indoor Football League?
SELECT sport FROM table_name_76 WHERE city = "huntsville" AND venue = "von braun center" AND league = "southern indoor football league"
CREATE TABLE table_name_85 (crowd INTEGER, away_team VARCHAR)
Which Crowd has a Away team of sydney?
SELECT MAX(crowd) FROM table_name_85 WHERE away_team = "sydney"
CREATE TABLE table_name_29 (attendance INTEGER, score VARCHAR)
Which Attendance has a Score of 0:2?
SELECT MAX(attendance) FROM table_name_29 WHERE score = "0:2"
CREATE TABLE table_name_15 (date VARCHAR, location_attendance VARCHAR)
Which Date has a Location/Attendance of verizon center 7,448?
SELECT date FROM table_name_15 WHERE location_attendance = "verizon center 7,448"
CREATE TABLE table_name_24 (status VARCHAR, newspaper_magazine VARCHAR)
What is Status, when Newspaper/Magazine is Al-Thawra?
SELECT status FROM table_name_24 WHERE newspaper_magazine = "al-thawra"
CREATE TABLE table_name_1 (draws INTEGER, goals_for VARCHAR, goals_against VARCHAR, losses VARCHAR)
What is the most draws when goals against are more than 33, losses are 13 and goals for is less than 51?
SELECT MAX(draws) FROM table_name_1 WHERE goals_against > 33 AND losses = 13 AND goals_for < 51
CREATE TABLE table_name_13 (released VARCHAR, series_sorted VARCHAR)
What was the date of release for the episode sorted value of 6Y/AA?
SELECT released FROM table_name_13 WHERE series_sorted = "6y/aa"
CREATE TABLE table_name_56 (elevator VARCHAR, order_and_title VARCHAR)
Who was the elevator when the Cardinal-Deacon of S. Nicola in Carcere Tulliano was the order and title?
SELECT elevator FROM table_name_56 WHERE order_and_title = "cardinal-deacon of s. nicola in carcere tulliano"
CREATE TABLE table_name_98 (nationality VARCHAR, elevator VARCHAR)
When the elevator was Innocent IV what was the nationality?
SELECT nationality FROM table_name_98 WHERE elevator = "innocent iv"
CREATE TABLE table_name_63 (elevator VARCHAR, elector VARCHAR)
When Giovanni Gaetano Orsini was the elector who was the elevator?
SELECT elevator FROM table_name_63 WHERE elector = "giovanni gaetano orsini"
CREATE TABLE table_name_56 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)
What is the Score of the Rabat Tournament with Opponent in the final of Frederico Gil?
SELECT score FROM table_name_56 WHERE tournament = "rabat" AND opponent_in_the_final = "frederico gil"
CREATE TABLE table_name_71 (wheels INTEGER, type VARCHAR, location VARCHAR)
What average wheels has accounting as the type, with IBM Collection as the location?
SELECT AVG(wheels) FROM table_name_71 WHERE type = "accounting" AND location = "ibm collection"
CREATE TABLE table_name_54 (borough VARCHAR, location VARCHAR, listed VARCHAR)
What is the Borough for the Seward listing on 1977-11-23?
SELECT borough FROM table_name_54 WHERE location = "seward" AND listed = "1977-11-23"
What is the lowest numbered episode that had a rating/share of 0.9/4 and more than 3.79 million viewers?
SELECT MIN(episode__number) FROM table_name_89 WHERE rating/share = 0.9 / 4 AND viewers__millions_ > 3.79
CREATE TABLE table_name_28 (years_of_nba_experience_ VARCHAR, a_ VARCHAR, pos VARCHAR, team VARCHAR)
How many years of NBA experience does the player who plays position g for the Portland Trail Blazers?
SELECT years_of_nba_experience_[a_] FROM table_name_28 WHERE pos = "g" AND team = "portland trail blazers"
CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, previous_team VARCHAR, career_with_the_franchise_ VARCHAR, b_ VARCHAR)
Who is the player from the Buffalo Braves with the previous team Los Angeles Lakers and a career with the franchase in 1970?
SELECT player FROM table_name_89 WHERE team = "buffalo braves" AND previous_team = "los angeles lakers" AND career_with_the_franchise_[b_] = "1970"
CREATE TABLE table_name_16 (player VARCHAR, place VARCHAR, score VARCHAR)
Who placed t7 with a score of 70-71=141?
SELECT player FROM table_name_16 WHERE place = "t7" AND score = 70 - 71 = 141
CREATE TABLE table_name_38 (nation VARCHAR, total VARCHAR, bronze VARCHAR, gold VARCHAR)
What nation had more than 3 bronze, 0 gold, and a total of 9?
SELECT nation FROM table_name_38 WHERE bronze > 3 AND gold = 0 AND total = 9
CREATE TABLE table_name_59 (avg_g INTEGER, name VARCHAR, loss VARCHAR)
Which Avg/G has a Name of josh freeman, and a Loss smaller than 134?
SELECT SUM(avg_g) FROM table_name_59 WHERE name = "josh freeman" AND loss < 134
CREATE TABLE table_name_21 (area_km_2 INTEGER, population INTEGER)
What is Area km 2, when Population is greater than 1,395?
SELECT MIN(area_km_2) FROM table_name_21 WHERE population > 1 OFFSET 395
CREATE TABLE table_name_45 (pick__number INTEGER, college VARCHAR)
Which Pick # has a College of concordia?
SELECT MAX(pick__number) FROM table_name_45 WHERE college = "concordia"
CREATE TABLE table_name_15 (team VARCHAR, previous_team VARCHAR)
What is the team of the player who was previously on the indiana pacers?
SELECT team FROM table_name_15 WHERE previous_team = "indiana pacers"
CREATE TABLE table_name_9 (position VARCHAR, round VARCHAR, overall VARCHAR)
WHAT IS THE POSITION WITH A ROUND LARGER THAN 6, AND OVERALL OF 191?
SELECT position FROM table_name_9 WHERE round > 6 AND overall = 191
CREATE TABLE table_name_58 (nba_years_ VARCHAR, a_ VARCHAR, nationality VARCHAR, previous_team VARCHAR)
How many NBA years did the player from the United States who was previously on the los angeles lakers have?
SELECT nba_years_[a_] FROM table_name_58 WHERE nationality = "united states" AND previous_team = "los angeles lakers"
CREATE TABLE table_name_95 (sets VARCHAR, nadal VARCHAR, federer VARCHAR)
What were the sets when Federer had 6 and a nadal of 13?
SELECT sets FROM table_name_95 WHERE nadal = 13 AND federer = 6
CREATE TABLE table_name_9 (country VARCHAR, year VARCHAR, publication VARCHAR)
What country had a paste publication in 2009?
SELECT country FROM table_name_9 WHERE year = 2009 AND publication = "paste"
CREATE TABLE table_name_86 (date VARCHAR, road_team VARCHAR, result VARCHAR)
WHAT IS THE DATE WITH BOSTON ROAD TEAM AND 126-105 RESULT?
SELECT date FROM table_name_86 WHERE road_team = "boston" AND result = "126-105"
CREATE TABLE table_name_31 (name VARCHAR, country VARCHAR, transfer_fee VARCHAR, status VARCHAR)
What is the name of the free transfer fee with a transfer status and an ENG country?
SELECT name FROM table_name_31 WHERE transfer_fee = "free" AND status = "transfer" AND country = "eng"
CREATE TABLE table_name_94 (series INTEGER, premiere VARCHAR, episodes VARCHAR)
Which season premiered on 29 October 1990 and had more than 6 episodes?
SELECT MAX(series) FROM table_name_94 WHERE premiere = "29 october 1990" AND episodes > 6
CREATE TABLE table_name_62 (club VARCHAR, played VARCHAR, try_bonus VARCHAR)
What is the name of the club when the played number is 22, and the try bonus was 0?
SELECT club FROM table_name_62 WHERE played = "22" AND try_bonus = "0"
CREATE TABLE table_name_33 (captain VARCHAR, alternate__1_ VARCHAR)
Which captain has Gintare Karpaviciute as an alternate?
SELECT captain FROM table_name_33 WHERE alternate__1_ = "gintare karpaviciute"
CREATE TABLE table_name_86 (game INTEGER, high_assists VARCHAR)
What is the highest Game, when High Assists is "Hedo Türkoğlu (7)"?
SELECT MAX(game) FROM table_name_86 WHERE high_assists = "hedo türkoğlu (7)"
CREATE TABLE table_name_62 (height__ft_ INTEGER, height__m_ VARCHAR, year_built VARCHAR, location VARCHAR)
What is the lowest height in feet for the building located in platz der einheit 1, gallus, that was built after 1961 with a height less than 130 meters?
SELECT MIN(height__ft_) FROM table_name_62 WHERE year_built > 1961 AND location = "platz der einheit 1, gallus" AND height__m_ < 130
CREATE TABLE table_name_26 (year_built INTEGER, location VARCHAR, height__m_ VARCHAR)
What is the earliest year that the building in sonnemannstraße/rückertstraße, ostend was built with a height larger than 185 meters?
SELECT MIN(year_built) FROM table_name_26 WHERE location = "sonnemannstraße/rückertstraße, ostend" AND height__m_ > 185
CREATE TABLE table_name_73 (attendance INTEGER, h___a VARCHAR, round VARCHAR)
What is the lowest attendance when the h/A is H in the Semi-Finals Second Leg?
SELECT MIN(attendance) FROM table_name_73 WHERE h___a = "h" AND round = "semi-finals second leg"
CREATE TABLE table_name_60 (serials_issued VARCHAR, serial_format VARCHAR, issued VARCHAR)
What is the serials issued in 1982 with a format of ABC-123?
SELECT serials_issued FROM table_name_60 WHERE serial_format = "abc-123" AND issued = "1982"
CREATE TABLE table_name_30 (name VARCHAR, county VARCHAR, built VARCHAR)
What bridge in Sheridan county was built in 1915?
SELECT name FROM table_name_30 WHERE county = "sheridan" AND built = "1915"
CREATE TABLE table_name_86 (listed VARCHAR, county VARCHAR, location VARCHAR)
What is the listed for the bridge at Daniel in Sublette county?
SELECT listed FROM table_name_86 WHERE county = "sublette" AND location = "daniel"
CREATE TABLE table_name_25 (pick VARCHAR, position VARCHAR, overall VARCHAR)
How many times is the position lb and the overall is less than 46?
SELECT COUNT(pick) FROM table_name_25 WHERE position = "lb" AND overall < 46
CREATE TABLE table_name_59 (date VARCHAR, score VARCHAR, location VARCHAR, game VARCHAR)
On what date did Fleetcenter have a game lower than 9 with a score of 104-94?
SELECT date FROM table_name_59 WHERE location = "fleetcenter" AND game < 9 AND score = "104-94"
CREATE TABLE table_name_97 (location VARCHAR, reservation VARCHAR)
What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8?
SELECT AVG(2000) FROM table_name_97 WHERE location = "montana" AND reservation = "fort peck indian reservation" AND 1979 < 26.8
CREATE TABLE table_name_1 (placings VARCHAR, points VARCHAR, name VARCHAR)
How many Placings have Points smaller than 330.84, and a Name of silvo svajger?
SELECT COUNT(placings) FROM table_name_1 WHERE points < 330.84 AND name = "silvo svajger"
CREATE TABLE table_name_40 (round INTEGER, pick VARCHAR, college_junior_club_team VARCHAR, player VARCHAR)
What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23?
SELECT SUM(round) FROM table_name_40 WHERE college_junior_club_team = "brandon wheat kings ( whl )" AND player = "mike perovich (d)" AND pick < 23
CREATE TABLE table_name_9 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
What was the manner of depature of the manager with a date of appointment on 23 November 2008?
SELECT manner_of_departure FROM table_name_9 WHERE date_of_appointment = "23 november 2008"
CREATE TABLE table_name_24 (date_of_vacancy VARCHAR, team VARCHAR, date_of_appointment VARCHAR)
What is the date of vacancy of team fc bayern munich, which had a date of appointment on 27 April 2009?
SELECT date_of_vacancy FROM table_name_24 WHERE team = "fc bayern munich" AND date_of_appointment = "27 april 2009"
CREATE TABLE table_name_26 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)
What is the date of appointment of outgoing manager fred rutten, who had a sacked manner of departure?
SELECT date_of_appointment FROM table_name_26 WHERE manner_of_departure = "sacked" AND outgoing_manager = "fred rutten"
CREATE TABLE table_name_24 (overall INTEGER, pick VARCHAR, college VARCHAR)
How many overalls have a pick greater than 19, with florida as the college?
SELECT SUM(overall) FROM table_name_24 WHERE pick > 19 AND college = "florida"
CREATE TABLE table_name_12 (format VARCHAR, catalogue VARCHAR, label VARCHAR, date VARCHAR)
What is Format, when Label is Bronze, when Date is 1982, and when Catalogue is 204 636?
SELECT format FROM table_name_12 WHERE label = "bronze" AND date = "1982" AND catalogue = "204 636"
CREATE TABLE table_name_57 (cycle INTEGER, number_of_contestants VARCHAR, international_destinations VARCHAR)
What is the lowest Cycle, when Number Of Contestants is 11, and when International Destinations is Paris Gran Canaria?
SELECT MIN(cycle) FROM table_name_57 WHERE number_of_contestants = "11" AND international_destinations = "paris gran canaria"
CREATE TABLE table_name_55 (number_of_contestants VARCHAR, international_destinations VARCHAR)
What is Number of Contestants, when International Destinations is London Lisbon?
SELECT number_of_contestants FROM table_name_55 WHERE international_destinations = "london lisbon"
CREATE TABLE table_name_21 (score VARCHAR, location_attendance VARCHAR, high_assists VARCHAR)
What was the score for Groves High School when the high assist was Giovanni Riley (9)?
SELECT score FROM table_name_21 WHERE location_attendance = "groves high school" AND high_assists = "giovanni riley (9)"
CREATE TABLE table_name_38 (opponent VARCHAR, location_attendance VARCHAR)
What opponent is at Richmond Academy?
SELECT opponent FROM table_name_38 WHERE location_attendance = "richmond academy"
CREATE TABLE table_name_42 (game INTEGER, opponent VARCHAR)
How many total games were played against @ St. Louis Hawks this season?
SELECT SUM(game) FROM table_name_42 WHERE opponent = "@ st. louis hawks"
CREATE TABLE table_name_40 (notes VARCHAR, network VARCHAR, year VARCHAR, language VARCHAR)
What are the notes for the Mandarin Chinese program on CTV earlier than 2013?
SELECT notes FROM table_name_40 WHERE year < 2013 AND language = "mandarin chinese" AND network = "ctv"
CREATE TABLE table_name_70 (network VARCHAR, year VARCHAR, title VARCHAR)
What is the network that aired Star King prior to 2011?
SELECT network FROM table_name_70 WHERE year < 2011 AND title = "star king"
CREATE TABLE table_name_85 (bush_number INTEGER, kerry_number VARCHAR, others_percentage VARCHAR, others_number VARCHAR)
What is the highest Bush#, when Others% is "1.7%", when Others# is less than 75, and when Kerry# is greater than 1,524?
SELECT MAX(bush_number) FROM table_name_85 WHERE others_percentage = "1.7%" AND others_number < 75 AND kerry_number > 1 OFFSET 524
CREATE TABLE table_name_51 (english_translation VARCHAR, artist VARCHAR, language VARCHAR, draw VARCHAR)
what is the english translation when the Language is english, Draw is smaller than 16, and the Artist is aysel and arash?
SELECT english_translation FROM table_name_51 WHERE language = "english" AND draw < 16 AND artist = "aysel and arash"
CREATE TABLE table_name_85 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
Which Player has position of power forward and School/Club Team of Depaul?
SELECT player FROM table_name_85 WHERE position = "power forward" AND school_club_team = "depaul"