question
stringlengths
19
162
table_info
stringlengths
39
951
sql_query
stringlengths
24
181
what is the most weeks on chart when the peak position is less than 5 and from Sweden?
CREATE TABLE table_79845 ( "Title" text, "Album" text, "Country" text, "Peak position" real, "Weeks on chart" real )
SELECT MAX("Weeks on chart") FROM table_79845 WHERE "Peak position" < 5 AND "Country" LIKE '%sweden%'
What was the series in season 2009?
CREATE TABLE table_name_61 ( series VARCHAR, season VARCHAR )
SELECT series FROM table_name_61 WHERE season LIKE '%2009%'
What is the international mail with the highest number that has a change of +0,2% and less than 0 domestic mail?
CREATE TABLE table_45338 ( "Year" real, "Domestic freight" real, "Domestic mail" real, "International freight" real, "International mail" real, "Total freight and mail" real, "Change" text )
SELECT MAX("International mail") FROM table_45338 WHERE "Change" LIKE '+0,2%' AND "Domestic mail" < 0
How is the crowd of the team Geelong?
CREATE TABLE table_53964 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT AVG("Crowd") FROM table_53964 WHERE "Away team" LIKE '%geelong%'
September 23, 1973 landed on which week of the season?
CREATE TABLE table_70568 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT "Week" FROM table_70568 WHERE "Date" LIKE '%september 23, 1973%'
Where was the method of tko?
CREATE TABLE table_name_34 ( location VARCHAR, method VARCHAR )
SELECT location FROM table_name_34 WHERE method LIKE "%tko%"
What Partner has a Construction Start of 2008 january?
CREATE TABLE table_name_2 ( partner VARCHAR, construction_start VARCHAR )
SELECT partner FROM table_name_2 WHERE construction_start LIKE "%2008 january%"
When was the date of death for the person married to Charles II?
CREATE TABLE table_name_86 ( death VARCHAR, spouse VARCHAR )
SELECT death FROM table_name_86 WHERE spouse LIKE "%charles ii%"
In the final, who are the opponents of partner Simon Aspelin?
CREATE TABLE table_35942 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Partner" text, "Opponents in the final" text, "Score in the final" text )
SELECT "Opponents in the final" FROM table_35942 WHERE "Partner" LIKE '%simon aspelin%'
Name the representative for party of whig
CREATE TABLE table_69618 ( "Representative" text, "Years" text, "State" text, "Party" text, "Lifespan" text )
SELECT "Representative" FROM table_69618 WHERE "Party" LIKE '%whig%'
What is the status of the district where the result is 63% 37%?
CREATE TABLE table_16185956_1 ( status VARCHAR, results VARCHAR )
SELECT status FROM table_16185956_1 WHERE results LIKE "%63% 37%"
Which City of license has a Call sign of k241an?
CREATE TABLE table_name_68 ( city_of_license VARCHAR, call_sign VARCHAR )
SELECT city_of_license FROM table_name_68 WHERE call_sign LIKE "%k241an%"
Where is the orchestra when the year of recording is 1934?
CREATE TABLE table_73366 ( "Piano" text, "Conductor" text, "Orchestra" text, "Record Company" text, "Year of Recording" real, "Format" text )
SELECT "Orchestra" FROM table_73366 WHERE "Year of Recording" = 1934
How many number of site have May 1, 2004 as the date?
CREATE TABLE table_22098274_1 ( site VARCHAR, date VARCHAR )
SELECT COUNT(site) FROM table_22098274_1 WHERE date LIKE "%may 1, 2004%"
What is Current Rank, when Ring Name is Kimurayama Mamoru?
CREATE TABLE table_40076 ( "Ring name" text, "Current rank" text, "Debut" text, "Stable" text, "Birthplace" text )
SELECT "Current rank" FROM table_40076 WHERE "Ring name" LIKE '%kimurayama mamoru%'
What is the total number of To Par, when Score is '70-75-76=221'?
CREATE TABLE table_45574 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" real )
SELECT COUNT("To par") FROM table_45574 WHERE "Score" LIKE '%70-75-76=221%'
With a rank of 2 what is the second quarter?
CREATE TABLE table_36998 ( "Rank" real, "First quarter" text, "Second quarter" text, "Third quarter" text, "Fourth quarter" text )
SELECT "Second quarter" FROM table_36998 WHERE "Rank" = 2
What party did hilda solis represent?
CREATE TABLE table_22126 ( "District" text, "Incumbent" text, "Party" text, "First elected" real, "Results" text, "Candidates" text )
SELECT "Party" FROM table_22126 WHERE "Incumbent" LIKE '%hilda solis%'
What is the score for Greg Norman
CREATE TABLE table_12721 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text )
SELECT "Score" FROM table_12721 WHERE "Player" LIKE '%greg norman%'
What is the Artist with a Date that is june 1979?
CREATE TABLE table_40579 ( "Spoofed Title" text, "Actual Title" text, "Writer" text, "Artist" text, "Issue" real, "Date" text )
SELECT "Artist" FROM table_40579 WHERE "Date" LIKE '%june 1979%'
Name the total number of series for march 19, 2000
CREATE TABLE table_22590 ( "No. in series" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" text )
SELECT COUNT("No. in series") FROM table_22590 WHERE "Original air date" LIKE '%march 19, 2000%'
What is the line of the station in Toolamba that is currently demolished and closed in the late 1970s?
CREATE TABLE table_14710 ( "Name" text, "Line" text, "Location" text, "Closed" text, "Current Status" text )
SELECT "Line" FROM table_14710 WHERE "Current Status" LIKE '%demolished%' AND "Closed" LIKE '%late 1970s%' AND "Location" LIKE '%toolamba%'
What is every value on Thursday August 25 for rank 3?
CREATE TABLE table_30058355_3 ( thurs_25_aug VARCHAR, rank VARCHAR )
SELECT thurs_25_aug FROM table_30058355_3 WHERE rank LIKE '%3%'
How many values of total top 3 placements does Taiwan have?
CREATE TABLE table_2876467_3 ( total_top_3_placements VARCHAR, region_represented VARCHAR )
SELECT COUNT(total_top_3_placements) FROM table_2876467_3 WHERE region_represented LIKE "%taiwan%"
What is the Date for the game at michie stadium west point, ny?
CREATE TABLE table_name_80 ( date VARCHAR, location VARCHAR )
SELECT date FROM table_name_80 WHERE location LIKE "%michie stadium • west point, ny%"
Can you tell me the highest Against that has the Losses larger than 9, and the Byes of 2, and the Draws larger than 0?
CREATE TABLE table_name_56 ( against INTEGER, draws VARCHAR, losses VARCHAR, byes VARCHAR )
SELECT MAX(against) FROM table_name_56 WHERE losses > '9' AND byes LIKE '%2%' AND draws > '0'
When is a Type of tko, and an Opponent of jesse brinkley
CREATE TABLE table_name_53 ( date VARCHAR, type VARCHAR, opponent VARCHAR )
SELECT date FROM table_name_53 WHERE type LIKE "%tko%" AND opponent LIKE "%jesse brinkley%"
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 LIKE "%28 june 1934%" AND pennant_number LIKE "%h.78%"
Which Total Pts have a 2001 02 Pts smaller than 38?
CREATE TABLE table_78639 ( "Team" text, "2003\u201304 Pts" text, "2004\u201305 Pts" text, "2001\u201302 Pts" real, "Total Pts" real, "Total Pld" real )
SELECT MIN("Total Pts") FROM table_78639 WHERE "2001\u201302 Pts" < 38
What is the acronym for the name Malay of Kolej Komuniti Sungai Petani?
CREATE TABLE table_61910 ( "Name in English" text, "Name in Malay" text, "Acronym" text, "Foundation" text, "Location" text )
SELECT "Acronym" FROM table_61910 WHERE "Name in Malay" LIKE '%kolej komuniti sungai petani%'
what's the points against with won being 11
CREATE TABLE table_14058433_4 ( points_against VARCHAR, won VARCHAR )
SELECT points_against FROM table_14058433_4 WHERE won LIKE "%11%"
What was the team score when Tim Duncan (12) got the high rebounds?
CREATE TABLE table_29788 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT "Score" FROM table_29788 WHERE "High rebounds" LIKE '%tim duncan (12)%'
Which Constellation has an Apparent magnitude larger that 7.7, and an NGC number of 7777
CREATE TABLE table_name_60 ( constellation VARCHAR, apparent_magnitude VARCHAR, ngc_number VARCHAR )
SELECT constellation FROM table_name_60 WHERE apparent_magnitude > '7.7' AND ngc_number LIKE '%7777%'
What is the place of the Pinyin transcription Xi Wangri?
CREATE TABLE table_1805919_1 ( standard_order INTEGER, transcription__based_on_pinyin_ VARCHAR )
SELECT MAX(standard_order) FROM table_1805919_1 WHERE transcription__based_on_pinyin_ LIKE '%xi wangri%'
Name the least game for score of l 93 109 (ot)
CREATE TABLE table_23186738_9 ( game INTEGER, score VARCHAR )
SELECT MIN(game) FROM table_23186738_9 WHERE score LIKE '%l 93–109 (ot)%'
who was the pitcher in seasons 1982, 1984, 1985, 1987, 1988, 1989
CREATE TABLE table_19864214_3 ( pitcher VARCHAR, seasons VARCHAR )
SELECT pitcher FROM table_19864214_3 WHERE seasons LIKE "%1982, 1984, 1985, 1987, 1988, 1989%"
What is the player listed when the score is 68-70-68-69=275
CREATE TABLE table_28498999_5 ( player VARCHAR, score VARCHAR )
SELECT player FROM table_28498999_5 WHERE score = '275'
What is the maximum renewable energy (gw h) for the state of Delaware?
CREATE TABLE table_25244412_1 ( renewable_electricity__gw INTEGER, state VARCHAR )
SELECT MAX(renewable_electricity__gw) AS •h_ FROM table_25244412_1 WHERE state LIKE "%delaware%"
Which game had a result of 126-95?
CREATE TABLE table_75338 ( "Game" text, "Date" text, "Home Team" text, "Result" text, "Road Team" text )
SELECT "Game" FROM table_75338 WHERE "Result" LIKE '%126-95%'
Which team had 21 points?
CREATE TABLE table_20007 ( "Position" real, "Team" text, "Points" real, "Played" real, "Won" real, "Drawn" real, "Lost" real, "For" real, "Against" real, "Difference" text )
SELECT "Team" FROM table_20007 WHERE "Points" = 21
With Round 3 and Pick # over 10, what is the higher Overall number?
CREATE TABLE table_name_38 ( overall INTEGER, round VARCHAR, pick__number VARCHAR )
SELECT MAX(overall) FROM table_name_38 WHERE round LIKE '%3%' AND pick__number > 10
Who is the tournament winner in the Atlantic Coast Conference?
CREATE TABLE table_22779004_1 ( tournament_winner VARCHAR, conference VARCHAR )
SELECT tournament_winner FROM table_22779004_1 WHERE conference LIKE "%atlantic coast conference%"
What is the title and source for the game developed by Hydravision Entertainment?
CREATE TABLE table_3580 ( "Title and source" text, "Developer" text, "Publisher" text, "First released" text, "Japan" text, "Europe" text, "North America" text, "Exclusive" text, "Move-only" text )
SELECT "Title and source" FROM table_3580 WHERE "Developer" LIKE '%hydravision entertainment%'
Which college has fewer than 2 rounds?
CREATE TABLE table_35540 ( "Round" real, "Pick #" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT "College" FROM table_35540 WHERE "Round" < 2
What was the score for a game with the odds of p + 2 after 1847?
CREATE TABLE table_name_36 ( score VARCHAR, odds VARCHAR, date VARCHAR )
SELECT score FROM table_name_36 WHERE odds LIKE "%p + 2%" AND date > '1847'
What is the district with the result mac collins (r) unopposed?
CREATE TABLE table_27021001_1 ( district VARCHAR, result VARCHAR )
SELECT district FROM table_27021001_1 WHERE result LIKE "%mac collins (r) unopposed%"
Name the least world rank for south american rank 3
CREATE TABLE table_2249087_1 ( world_rank INTEGER, south_american_rank VARCHAR )
SELECT MIN(world_rank) FROM table_2249087_1 WHERE south_american_rank LIKE '%3%'
what is the color quality when the proxy is x, the encryption is x, the webclient is x and authentication is ?
CREATE TABLE table_65068 ( "Project" text, "License" text, "Date" text, "Protocol" text, "Technology" text, "Server" text, "Client" text, "Web Client" text, "Multiple Sessions" text, "Encryption" text, "Authentication" text, "Data Compression" text, "Image Quality" te...
SELECT "Color Quality" FROM table_65068 WHERE "Proxy" LIKE '%x%' AND "Encryption" LIKE '%x%' AND "Web Client" LIKE '%x%' AND "Authentication" LIKE '%✓%'
what was the number of winners from spain ?
CREATE TABLE table_203_600 ( id number, "rank" text, "country" text, "winners" number, "runners-up" number, "finals total" number )
SELECT "winners" FROM table_203_600 WHERE "country" LIKE '%spain%'
What is the for the f136fb engine?
CREATE TABLE table_14101 ( "Engine" text, "Displacement" text, "Years" text, "Usage" text, "Power" text )
SELECT "Usage" FROM table_14101 WHERE "Engine" LIKE '%f136fb%'
When middle assyrian empire is the ubaid period in mesopotamia what is the copper age?
CREATE TABLE table_23537091_1 ( copper_age VARCHAR, ubaid_period_in_mesopotamia VARCHAR )
SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia LIKE "%middle assyrian empire%"
How many Against have a Team of hespanha, and Points smaller than 30?
CREATE TABLE table_40250 ( "Position" real, "Team" text, "Points" real, "Played" real, "Drawn" real, "Lost" real, "Against" real, "Difference" text )
SELECT COUNT("Against") FROM table_40250 WHERE "Team" LIKE '%hespanha%' AND "Points" < 30
who is the replacement when the team is milton keynes dons?
CREATE TABLE table_name_10 ( replaced_by VARCHAR, team VARCHAR )
SELECT replaced_by FROM table_name_10 WHERE team LIKE "%milton keynes dons%"
What is every value for Under-17 if Under-15 is Maria Elena Ubina?
CREATE TABLE table_26368963_2 ( under_17 VARCHAR, under_15 VARCHAR )
SELECT under_17 FROM table_26368963_2 WHERE under_15 LIKE "%maria elena ubina%"
What league has a value of 0 29 (152) for Europe?
CREATE TABLE table_15444 ( "Name" text, "Years" text, "League" text, "FA Cup" text, "League Cup" text, "Europe" text, "Other [C ]" text, "Total" text )
SELECT "League" FROM table_15444 WHERE "Europe" LIKE '%0 29 (152)%'
Which Tally has a County of limerick, and a Rank larger than 1?
CREATE TABLE table_13261 ( "Rank" real, "Player" text, "County" text, "Tally" text, "Total" real, "Opposition" text )
SELECT "Tally" FROM table_13261 WHERE "County" LIKE '%limerick%' AND "Rank" > 1
Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77?
CREATE TABLE table_name_19 ( comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR )
SELECT MAX(comp) FROM table_name_19 WHERE yds_game > '0' AND name LIKE '%bostick%' AND rating < '91.77'
What is year Built of the Moulin de Momalle Mill?
CREATE TABLE table_79591 ( "Location" text, "Name of mill" text, "Type" text, "Built" real, "Notes" text )
SELECT MAX("Built") FROM table_79591 WHERE "Name of mill" LIKE '%moulin de momalle%'
If Thursday 3 June is 20' 27.93 110.615mph, what are the names of the riders?
CREATE TABLE table_25220821_3 ( rider VARCHAR, thurs_3_june VARCHAR )
SELECT rider FROM table_25220821_3 WHERE thurs_3_june LIKE "%20' 27.93 110.615mph%"
What is the total capacity of venues that opened in 1999?
CREATE TABLE table_name_15 ( capacity VARCHAR, opened VARCHAR )
SELECT COUNT(capacity) FROM table_name_15 WHERE opened LIKE "%1999%"
Name the most middle schools for 2005-2006
CREATE TABLE table_2367847_2 ( middle_schools INTEGER, year VARCHAR )
SELECT MAX(middle_schools) FROM table_2367847_2 WHERE year LIKE "%2005-2006%"
What was the record set during the game played at Hubert H. Humphrey Metrodome?
CREATE TABLE table_13258851_2 ( record VARCHAR, game_site VARCHAR )
SELECT record FROM table_13258851_2 WHERE game_site LIKE '%hubert h. humphrey metrodome%'
Name the tournament for march 25, 2012
CREATE TABLE table_name_24 ( tournament VARCHAR, date VARCHAR )
SELECT tournament FROM table_name_24 WHERE date LIKE "%march 25, 2012%"
what were the number of innings albert clapp had ?
CREATE TABLE table_204_154 ( id number, "player" text, "matches" number, "innings" number, "runs" number, "average" number, "100s" number, "50s" number )
SELECT "innings" FROM table_204_154 WHERE "player" LIKE '%albert clapp%'
Name the tries against when tries for is 30
CREATE TABLE table_22025 ( "Club" text, "Played" text, "Won" text, "Drawn" text, "Lost" text, "Points for" text, "Points against" text, "Tries for" text, "Tries against" text, "Try bonus" text, "Losing bonus" text, "Points" text )
SELECT "Tries against" FROM table_22025 WHERE "Tries for" LIKE '%30%'
How many people attended the game on week 3?
CREATE TABLE table_name_26 ( attendance INTEGER, week VARCHAR )
SELECT AVG(attendance) FROM table_name_26 WHERE week LIKE '%3%'
what is the total number of priests that have held the job in resita ?
CREATE TABLE table_204_734 ( id number, "first name" text, "surname" text, "death year" number, "beginning of\nservice" text, "end of\nservice" text, "notes" text )
SELECT COUNT("first name") FROM table_204_734
Which school was Lawrence Roberts from ?
CREATE TABLE table_46045 ( "Player" text, "Nationality" text, "Position" text, "Years for Grizzlies" text, "School/Club Team" text )
SELECT "School/Club Team" FROM table_46045 WHERE "Player" LIKE '%lawrence roberts%'
What was the date of the game that had a goal of 3?
CREATE TABLE table_71388 ( "Goal" real, "Date" text, "Score" text, "Result" text, "Competition" text )
SELECT "Date" FROM table_71388 WHERE "Goal" = 3
What is the total number of games for the opponent in Washington?
CREATE TABLE table_name_89 ( game VARCHAR, opponent VARCHAR )
SELECT COUNT(game) FROM table_name_89 WHERE opponent LIKE "%washington%"
What player that has a Position of df, and Loaned to is Stoke City?
CREATE TABLE table_name_89 ( player VARCHAR, position VARCHAR, loaned_to VARCHAR )
SELECT player FROM table_name_89 WHERE position LIKE "%df%" AND loaned_to LIKE "%stoke city%"
What stadium was the game held in when the final score was 17-31?
CREATE TABLE table_name_88 ( stadium VARCHAR, final_score VARCHAR )
SELECT stadium FROM table_name_88 WHERE final_score LIKE "%17-31%"
What is the first year for Popgun?
CREATE TABLE table_55144 ( "Title" text, "Publisher" text, "First Year" text, "Last Year" text, "Genre" text )
SELECT "First Year" FROM table_55144 WHERE "Title" LIKE '%popgun%'
What is To Par, when Place is 3?
CREATE TABLE table_name_43 ( to_par VARCHAR, place VARCHAR )
SELECT to_par FROM table_name_43 WHERE place LIKE "%3%"
What away team has 7 as the tie no.?
CREATE TABLE table_name_38 ( away_team VARCHAR, tie_no VARCHAR )
SELECT away_team FROM table_name_38 WHERE tie_no LIKE "%7%"
Which runner-up placed in a year prior to 2006 and whose Champion was Elon?
CREATE TABLE table_name_66 ( runner_up VARCHAR, year VARCHAR, champion VARCHAR )
SELECT runner_up FROM table_name_66 WHERE year < '2006' AND champion LIKE '%elon%'
what was the last winner 's album name ?
CREATE TABLE table_204_655 ( id number, "year" number, "winner" text, "album" text, "other finalists" text )
SELECT "album" FROM table_204_655 ORDER BY "year" DESC LIMIT 1
What is the number of the player who attended Delta State?
CREATE TABLE table_20200 ( "Player" text, "No." real, "Nationality" text, "Position" text, "Years in Orlando" text, "School/Club Team" text )
SELECT MAX("No.") FROM table_20200 WHERE "School/Club Team" LIKE '%delta state%'
Name the regions for usf45
CREATE TABLE table_21530474_1 ( region_s_ VARCHAR, chassis_code VARCHAR )
SELECT region_s_ FROM table_21530474_1 WHERE chassis_code LIKE '%usf45%'
How many laps for robin montgomerie-charrington, and a Grid smaller than 15?
CREATE TABLE table_name_18 ( laps VARCHAR, driver VARCHAR, grid VARCHAR )
SELECT COUNT(laps) FROM table_name_18 WHERE driver LIKE "%robin montgomerie-charrington%" AND CAST(grid AS INTEGER) < 15
who is the opponent when the method is tko (punches) at 4:26 of round 1?
CREATE TABLE table_43573 ( "Result" text, "TUF Competitor" text, "Opponent" text, "Method" text, "Event" text, "Date" text )
SELECT "Opponent" FROM table_43573 WHERE "Method" LIKE '%tko (punches) at 4:26 of round 1%'
What's the sum of draw for artist hari mata hari with less than 70 points?
CREATE TABLE table_11271 ( "Draw" real, "Artist" text, "Song" text, "Points" real, "Place" real )
SELECT SUM("Draw") FROM table_11271 WHERE "Artist" LIKE '%hari mata hari%' AND "Points" < 70
What number pick was the player for the Oakland Athletics who plays the 1B position?
CREATE TABLE table_15226 ( "Pick" real, "Player" text, "Team" text, "Position" text, "School" text )
SELECT "Pick" FROM table_15226 WHERE "Position" LIKE '%1b%' AND "Team" LIKE '%oakland athletics%'
What is the oder part number for the model with 10x mult. 1?
CREATE TABLE table_27277284_28 ( order_part_number VARCHAR, mult_1 VARCHAR )
SELECT order_part_number FROM table_27277284_28 WHERE mult_1 LIKE '%10x%'
What is the date for the episode performed by Sue Manchester?
CREATE TABLE table_191105_4 ( first_aired VARCHAR, performed_by VARCHAR )
SELECT first_aired FROM table_191105_4 WHERE performed_by LIKE "%sue manchester%"
What is the largest numbered?
CREATE TABLE table_14723382_1 ( division INTEGER )
SELECT MAX(division) FROM table_14723382_1
Who was the Republican when the green was Harold Burbank?
CREATE TABLE table_name_27 ( republican VARCHAR, green VARCHAR )
SELECT republican FROM table_name_27 WHERE green LIKE "%harold burbank%"
what is the number of delegates younger than 20 ?
CREATE TABLE table_204_20 ( id number, "represent" text, "contestant" text, "age" number, "height" text, "hometown" text )
SELECT COUNT("contestant") FROM table_204_20 WHERE "age" < 20
current plasma creatinine >= 0.5 mg / dl
CREATE TABLE table_train_111 ( "id" int, "mini_mental_state_examination_mmse" int, "liver_disease" bool, "geriatric_depression_scale_gds" int, "rosen_modified_hachinski_ischemic_score" int, "plasma_creatinine" float, "NOUSE" float )
SELECT * FROM table_train_111 WHERE plasma_creatinine >= 0.5
Which venue has 16 against?
CREATE TABLE table_name_5 ( venue VARCHAR, against VARCHAR )
SELECT venue FROM table_name_5 WHERE against = '16'
When was the first beatification in Korea that was canonised before 1984?
CREATE TABLE table_32112 ( "Name" text, "Martyred" real, "Place" text, "Beatified" real, "Canonised" real )
SELECT MIN("Beatified") FROM table_32112 WHERE "Place" LIKE '%korea%' AND "Canonised" < 1984
How many schools did Derrick Green attend?
CREATE TABLE table_17075 ( "Player" text, "Position" text, "School" text, "Hometown" text, "College" text )
SELECT COUNT("School") FROM table_17075 WHERE "Player" LIKE '%derrick green%'
What Russian has an Avoirdupois value of 0.686 gr?
CREATE TABLE table_name_16 ( russian VARCHAR, avoirdupois_value VARCHAR )
SELECT russian FROM table_name_16 WHERE avoirdupois_value LIKE "%0.686 gr%"
What player has The United States as the country, with t2 as the place?
CREATE TABLE table_name_9 ( player VARCHAR, country VARCHAR, place VARCHAR )
SELECT player FROM table_name_9 WHERE country LIKE "%united states%" AND place LIKE "%t2%"
What was the highest points on October 12, when the attendance where is over 10,701?
CREATE TABLE table_43705 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Attendance" real, "Record" text, "Points" real )
SELECT MAX("Points") FROM table_43705 WHERE "Date" LIKE '%october 12%' AND "Attendance" > 10701
Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?
CREATE TABLE table_40077 ( "Date" text, "Cover model" text, "Centerfold model" text, "Interview subject" text, "Pictorials" text )
SELECT "Interview subject" FROM table_40077 WHERE "Pictorials" LIKE '%christie brinkley%'
What is the accreditation level for the approved (awarded 05.12.12) date?
CREATE TABLE table_name_72 ( accreditation_level VARCHAR, date VARCHAR )
SELECT accreditation_level FROM table_name_72 WHERE date LIKE "%approved (awarded 05.12.12)%"
Who is the mixed doubled on the tour korea super series?
CREATE TABLE table_27753492_2 ( mixed_doubles VARCHAR, tour VARCHAR )
SELECT mixed_doubles FROM table_27753492_2 WHERE tour LIKE '%korea super series%'
Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification?
CREATE TABLE table_25679 ( "Stage" real, "Winner" text, "General classification" text, "Mountains classification" text, "Points classification" text, "Youth classification" text, "Team Classification" text )
SELECT "Mountains classification" FROM table_25679 WHERE "Youth classification" LIKE '%nick frey%' AND "Points classification" LIKE '%tom zirbel%'
What Region has a Catalog of crgd 86136?
CREATE TABLE table_name_47 ( region VARCHAR, catalog VARCHAR )
SELECT region FROM table_name_47 WHERE catalog LIKE "%crgd 86136%"