answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT surface FROM table_name_79 WHERE partnering = "paul goldstein" AND date = "october 2, 2006"
Name the surface for paul goldstein and date of october 2, 2006
CREATE TABLE table_name_79 (surface VARCHAR, partnering VARCHAR, date VARCHAR)
SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "Elite Shopping TV"
How many values of HDTV apply when television service is elite shopping tv?
CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)
SELECT MAX(rank) FROM table_name_13 WHERE earnings___$__ > 533 OFFSET 929
What is the high rank for players earning over $533,929?
CREATE TABLE table_name_13 (rank INTEGER, earnings___$__ INTEGER)
SELECT game FROM table_name_81 WHERE location = "boston garden" AND record = "49-17"
Which game is located in Boston Garden and has a record of 49-17?
CREATE TABLE table_name_81 (game VARCHAR, location VARCHAR, record VARCHAR)
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'park' UNION SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'shopping'
What are the names of the tourist attractions that have parking or shopping as their feature details?
CREATE TABLE Tourist_Attraction_Features (tourist_attraction_id VARCHAR, Feature_ID VARCHAR); CREATE TABLE Features (Feature_ID VARCHAR, feature_Details VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, tourist_attraction_id VARCHAR)
SELECT us_national_average_electric_mix FROM table_24620684_2 WHERE dirty_electric_grid_rocky_mountains__denver_ = "380 g/mi (236 g/km)"
When 380 g/mi (236 g/km) is the dirty electric grid rocky mountains (denver) what is the u.s national average electric mix?
CREATE TABLE table_24620684_2 (us_national_average_electric_mix VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR)
SELECT tournament FROM table_name_19 WHERE partner = "karel nováček"
Which Tournament has a Partner of karel nováček?
CREATE TABLE table_name_19 (tournament VARCHAR, partner VARCHAR)
SELECT founded FROM table_name_69 WHERE institution = "lynn university"
What is the date that the Institution of Lynn University was founded on?
CREATE TABLE table_name_69 (founded VARCHAR, institution VARCHAR)
SELECT title FROM table_name_21 WHERE appointed_by = "millard fillmore"
Which Title has an Appointed by of Millard Fillmore?
CREATE TABLE table_name_21 (title VARCHAR, appointed_by VARCHAR)
SELECT 2004 FROM table_name_72 WHERE 2013 = "2r"
What is the results in 2004 that has a 2013 result of 2r?
CREATE TABLE table_name_72 (Id VARCHAR)
SELECT college FROM table_11677691_5 WHERE player = "John Theus"
Which college does the player John Theus associate with?
CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR)
SELECT COUNT(goals_against) FROM table_name_44 WHERE team = "clitheroe" AND lost > 2
How many goals against did Clitheroe have when the loss was larger than 2?
CREATE TABLE table_name_44 (goals_against VARCHAR, team VARCHAR, lost VARCHAR)
SELECT date FROM table_name_53 WHERE opponent = "flavia pennetta"
What is the Date with an Opponent that is flavia pennetta?
CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR)
SELECT away_team AS score FROM table_name_68 WHERE home_team = "geelong"
What is the away team score with geelong home team?
CREATE TABLE table_name_68 (away_team VARCHAR, home_team VARCHAR)
SELECT COUNT(year) FROM table_name_35 WHERE playoffs = "quarterfinals"
Name the total number of years for quarterfinals
CREATE TABLE table_name_35 (year VARCHAR, playoffs VARCHAR)
SELECT MIN(image) FROM table_name_51 WHERE harrison = "20w" AND ashmolean < 20
What is the lowest image with a 20w Harrison, and less than 20 for Ashmolean?
CREATE TABLE table_name_51 (image INTEGER, harrison VARCHAR, ashmolean VARCHAR)
SELECT score1 FROM table_name_53 WHERE competition_or_tour = "friendly" AND match = 7
What is the score of the competition of friendly, at match 7?
CREATE TABLE table_name_53 (score1 VARCHAR, competition_or_tour VARCHAR, match VARCHAR)
SELECT incumbent FROM table_1341897_6 WHERE district = "Arkansas 2"
Who was the incumbent in the Arkansas 2 district election?
CREATE TABLE table_1341897_6 (incumbent VARCHAR, district VARCHAR)
SELECT 2008 FROM table_name_30 WHERE tournament = "hamburg masters"
What is the 2008 value of the hamburg masters?
CREATE TABLE table_name_30 (tournament VARCHAR)
SELECT result FROM table_name_79 WHERE opponent = "new orleans saints"
Who was the opponent of the New Orleans Saints?
CREATE TABLE table_name_79 (result VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_58 WHERE ground = "humber college north" AND home = "toronto downtown dingos"
What time has humber college north as the ground, and toronto downtown dingos as the home?
CREATE TABLE table_name_58 (time VARCHAR, ground VARCHAR, home VARCHAR)
SELECT result FROM table_14102379_4 WHERE opponent = "at Oakland Raiders"
what's the result with opponent being at oakland raiders
CREATE TABLE table_14102379_4 (result VARCHAR, opponent VARCHAR)
SELECT player FROM table_name_43 WHERE round > 5 AND college_junior_club_team__league_ = "dynamo-2 moscow (rus)"
Who is the player who was from Dynamo-2 moscow (rus) and was picked after round 5?
CREATE TABLE table_name_43 (player VARCHAR, round VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT directed_by FROM table_19417244_2 WHERE us_viewers__millions_ = "14.59"
who directed the episode that have 14.59 million viewers
CREATE TABLE table_19417244_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT stream_s__and___or_lake_s_ FROM table_name_42 WHERE date_founded = 1959
what is the stream(s) and / or lake(s) when the date founded is 1959?
CREATE TABLE table_name_42 (stream_s__and___or_lake_s_ VARCHAR, date_founded VARCHAR)
SELECT casualties FROM table_name_71 WHERE circumstances = "combat" AND location = "fayzabad area"
How many casualties from the combat in the Fayzabad area?
CREATE TABLE table_name_71 (casualties VARCHAR, circumstances VARCHAR, location VARCHAR)
SELECT man_of_the_match FROM table_name_73 WHERE result = "lost 2-5"
What is the Man of the Match of the Competition with a Result of lost 2-5?
CREATE TABLE table_name_73 (man_of_the_match VARCHAR, result VARCHAR)
SELECT directed_by FROM table_2226817_2 WHERE production_code = "1.02"
Who directed when the production code is 1.02?
CREATE TABLE table_2226817_2 (directed_by VARCHAR, production_code VARCHAR)
SELECT location_code, date_in_location_from, date_in_locaton_to FROM Document_locations
Show the location code, the starting date and ending data in that location for all the documents.
CREATE TABLE Document_locations (location_code VARCHAR, date_in_location_from VARCHAR, date_in_locaton_to VARCHAR)
SELECT MAX(goals_against) FROM table_name_12 WHERE points > 31 AND goal_difference < 9 AND wins = 13 AND draws > 6
What is the highest goals against when points are larger than 31, the goal difference is smaller than 9, wins are 13, and draws are larger than 6?
CREATE TABLE table_name_12 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, points VARCHAR, goal_difference VARCHAR)
SELECT womens_singles FROM table_14496232_2 WHERE tour = "Korea Open Super Series"
Name the womens singles for korea open super series
CREATE TABLE table_14496232_2 (womens_singles VARCHAR, tour VARCHAR)
SELECT location FROM table_26466528_1 WHERE colors = "Black, Orange"
Name the location for black, orange
CREATE TABLE table_26466528_1 (location VARCHAR, colors VARCHAR)
SELECT title FROM table_28212888_2 WHERE us_viewers__millions_ = "12.85"
What's the title of the episode seen by 12.85 millions of people in the US?
CREATE TABLE table_28212888_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_2791668_1 WHERE directed_by = "Michael Pressman" AND no_in_season < 10.0
what is the name of the episode whose director is Michael Pressman and the number of that episode in that season is less than 10.0?
CREATE TABLE table_2791668_1 (title VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)
SELECT country FROM table_name_58 WHERE player = "sam snead"
What was the country for Sam Snead?
CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)
SELECT us_airdate FROM table_12294557_3 WHERE canadian_airdate = "May 4, 2009"
what are the u.s. air dates with a Canadian air date of may 4, 2009
CREATE TABLE table_12294557_3 (us_airdate VARCHAR, canadian_airdate VARCHAR)
SELECT away_team AS score FROM table_name_3 WHERE away_team = "melbourne"
What did the Melbourne team score in their away game?
CREATE TABLE table_name_3 (away_team VARCHAR)
SELECT tally FROM table_name_36 WHERE county = "kerry"
What is the Tally in Kerry County?
CREATE TABLE table_name_36 (tally VARCHAR, county VARCHAR)
SELECT SUM(rank) FROM table_name_4 WHERE silver > 1 AND gold = 2 AND total > 4
What is the total of rank when silver is more than 1, gold is 2, and total is more than 4?
CREATE TABLE table_name_4 (rank INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT loss FROM table_name_19 WHERE record = "16–15"
What was the loss of the game when the record was 16–15?
CREATE TABLE table_name_19 (loss VARCHAR, record VARCHAR)
SELECT kaz_hayashi FROM table_name_47 WHERE block_a = "shuji kondo"
Name the kaz hayashi with block A of Shuji Kondo
CREATE TABLE table_name_47 (kaz_hayashi VARCHAR, block_a VARCHAR)
SELECT episode FROM table_24689168_5 WHERE viewers__millions_ = "11.73"
what episode number had 11.73 million viewers?
CREATE TABLE table_24689168_5 (episode VARCHAR, viewers__millions_ VARCHAR)
SELECT COUNT(naming) FROM table_2088_1 WHERE type_of_aphasia = "Anomic aphasia"
Name the number of naming for anomic aphasia
CREATE TABLE table_2088_1 (naming VARCHAR, type_of_aphasia VARCHAR)
SELECT tyre FROM table_name_47 WHERE engine_† = "asiatech at02" AND driver = "alex yoong"
what is the tyre when the engine is asiatech at02 and the driver is alex yoong?
CREATE TABLE table_name_47 (tyre VARCHAR, engine_† VARCHAR, driver VARCHAR)
SELECT MIN(entries) FROM table_26455614_1 WHERE winner = "Paris Saint-Germain"
What is the fewest recorded entrants against paris saint-germain?
CREATE TABLE table_26455614_1 (entries INTEGER, winner VARCHAR)
SELECT score FROM table_name_62 WHERE date = "26 july 1930"
What was the score on 26 July 1930?
CREATE TABLE table_name_62 (score VARCHAR, date VARCHAR)
SELECT type FROM table_262495_1 WHERE nickname = "Falcons"
When falcons are the nickname what is the type?
CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)
SELECT iata FROM table_name_39 WHERE icao = "eheh"
what's the iata for the icao of eheh?
CREATE TABLE table_name_39 (iata VARCHAR, icao VARCHAR)
SELECT site FROM table_name_39 WHERE city = "delaware"
What is the site where the game was held in the city of Delaware?
CREATE TABLE table_name_39 (site VARCHAR, city VARCHAR)
SELECT extra FROM table_name_90 WHERE tournament = "commonwealth games"
What was the extra info for the Commonwealth Games?
CREATE TABLE table_name_90 (extra VARCHAR, tournament VARCHAR)
SELECT played FROM table_name_89 WHERE points_for = "369"
How many games played when the points for is 369?
CREATE TABLE table_name_89 (played VARCHAR, points_for VARCHAR)
SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid' EXCEPT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie'
Find the names of states that have some college students playing in the mid position but not in the goalie position.
CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)
SELECT player FROM table_name_32 WHERE position = "full back" AND apps = 0
What Full Back Player has 0 Apps?
CREATE TABLE table_name_32 (player VARCHAR, position VARCHAR, apps VARCHAR)
SELECT record FROM table_name_78 WHERE visitor = "new jersey devils" AND date = "may 7"
Which record had a visitor of New Jersey Devils on May 7?
CREATE TABLE table_name_78 (record VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT order__number FROM table_12175755_1 WHERE original_artist = "Luis Fonsi"
What is the order number for songs by the original artist Luis Fonsi?
CREATE TABLE table_12175755_1 (order__number VARCHAR, original_artist VARCHAR)
SELECT date FROM table_name_87 WHERE away_team = "hawthorn"
What date did Hawthorn play as the away team?
CREATE TABLE table_name_87 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_28 WHERE circuit = "portland international raceway"
When was the circuit portland international raceway?
CREATE TABLE table_name_28 (date VARCHAR, circuit VARCHAR)
SELECT 20 AS _questions FROM table_1566848_6 WHERE centerfold_model = "Cherie Witter"
Name the 20 questions when centerfold model is cherie witter
CREATE TABLE table_1566848_6 (centerfold_model VARCHAR)
SELECT year_s__won FROM table_name_78 WHERE player = "tom watson"
What year did Tom Watson win?
CREATE TABLE table_name_78 (year_s__won VARCHAR, player VARCHAR)
SELECT 2010 FROM table_name_66 WHERE 2011 = "grand slam tournaments"
What is the 2010 of the Grand Slam Tournaments in 2011?
CREATE TABLE table_name_66 (Id VARCHAR)
SELECT res FROM table_name_95 WHERE event = "ufc 87"
What is the result of the UFC 87?
CREATE TABLE table_name_95 (res VARCHAR, event VARCHAR)
SELECT current_streak FROM table_15740666_6 WHERE last_meeting = "12/5/1987"
if they played last on 12/5/1987 what is their record
CREATE TABLE table_15740666_6 (current_streak VARCHAR, last_meeting VARCHAR)
SELECT fcc_info FROM table_name_68 WHERE frequency_mhz = "104.5 fm"
What is the FCC information of 104.5 fm frequency?
CREATE TABLE table_name_68 (fcc_info VARCHAR, frequency_mhz VARCHAR)
SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code GROUP BY t1.document_code ORDER BY COUNT(*) DESC LIMIT 1
What is the name of the document with the most number of sections?
CREATE TABLE document_sections (document_code VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR)
SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = "san miguel beermen" AND player = "rommel daep"
What is the total number of picks for PBA team san miguel beermen who picked rommel daep?
CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR)
SELECT location FROM table_name_25 WHERE league_division = "first division" AND club = "sun pegasus"
What is the location for the first division, Sun Pegasus Club?
CREATE TABLE table_name_25 (location VARCHAR, league_division VARCHAR, club VARCHAR)
SELECT COUNT(year) FROM table_name_67 WHERE result = "nominated" AND category = "best supporting actress"
What are the years that had someone nominated for best supporting actress?
CREATE TABLE table_name_67 (year VARCHAR, result VARCHAR, category VARCHAR)
SELECT opponent FROM table_name_61 WHERE zone = "europe/africa group i"
Who was the Europe/Africa group i's opponent?
CREATE TABLE table_name_61 (opponent VARCHAR, zone VARCHAR)
SELECT tyres FROM table_name_15 WHERE points = "1" AND chassis = "ensign n177"
What tyres have 1 point and an ensign n177 chassis?
CREATE TABLE table_name_15 (tyres VARCHAR, points VARCHAR, chassis VARCHAR)
SELECT name FROM table_name_59 WHERE pick = 5 AND round < 25 AND position = "ot" AND college = "boston college"
What name has 5 as the pick, a round less than 25, ot as the position, at boston college?
CREATE TABLE table_name_59 (name VARCHAR, college VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR)
SELECT location FROM table_name_67 WHERE league_division = "second division" AND position_in_2012_13 = "4th, third division (promoted)"
What Location is in the second division and has 4th, third division (promoted) as its Position in 2012-13?
CREATE TABLE table_name_67 (location VARCHAR, league_division VARCHAR, position_in_2012_13 VARCHAR)
SELECT opponent FROM table_name_89 WHERE location = "pontiac silverdome"
Who was the opposing team during a game in the Pontiac Silverdome?
CREATE TABLE table_name_89 (opponent VARCHAR, location VARCHAR)
SELECT COUNT(title) FROM table_24222929_2 WHERE production_code = "3X5655"
Name the total number of titles for 3x5655
CREATE TABLE table_24222929_2 (title VARCHAR, production_code VARCHAR)
SELECT launch_date__utc_ FROM table_name_32 WHERE cospar_id_satcat_№ = "1995-022a"
What is the launch date of the satellite with a COSPAR ID of 1995-022a?
CREATE TABLE table_name_32 (launch_date__utc_ VARCHAR, cospar_id_satcat_№ VARCHAR)
SELECT crew FROM table_name_87 WHERE lunar_lander = "falcon"
Who were the crew for the Falcon?
CREATE TABLE table_name_87 (crew VARCHAR, lunar_lander VARCHAR)
SELECT date FROM table_name_15 WHERE score = "1-0" AND competition = "fifa world cup"
What is the Date of the Fifa World Cup with a Score of 1-0?
CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, competition VARCHAR)
SELECT ranking FROM table_21471897_2 WHERE rr2_pts = 8
Name the ranking for rr2 pts being 8
CREATE TABLE table_21471897_2 (ranking VARCHAR, rr2_pts VARCHAR)
SELECT tries_for FROM table_13564637_5 WHERE try_bonus = "8"
What were all the tries for when the try bonus was 8?
CREATE TABLE table_13564637_5 (tries_for VARCHAR, try_bonus VARCHAR)
SELECT MIN(code) FROM table_1404456_1 WHERE area__km_2__ = "12,245.9"
what is the minimum code with area (km 2 ) being 12,245.9
CREATE TABLE table_1404456_1 (code INTEGER, area__km_2__ VARCHAR)
SELECT COUNT(viewers__millions_) FROM table_11253290_2 WHERE rank__night_ = 11
How many times was the rank (night) 11?
CREATE TABLE table_11253290_2 (viewers__millions_ VARCHAR, rank__night_ VARCHAR)
SELECT MAX(no_in_season) FROM table_20726262_4 WHERE usviewers__million_ = "2.59"
what is the maximum number in the season wher the us viewers is 2.59?
CREATE TABLE table_20726262_4 (no_in_season INTEGER, usviewers__million_ VARCHAR)
SELECT winnings FROM table_2463383_2 WHERE position = "23rd"
Name the winnings for 23rd position
CREATE TABLE table_2463383_2 (winnings VARCHAR, position VARCHAR)
SELECT week FROM table_name_57 WHERE tournament = "cincinnati"
What week was the tournament at Cincinnati?
CREATE TABLE table_name_57 (week VARCHAR, tournament VARCHAR)
SELECT pepe_michinoku FROM table_name_28 WHERE ryuji_hijikata = "sabin (12:33)"
What is the PEPE Michinoku value for a Ryuji Hijikata value of sabin (12:33)?
CREATE TABLE table_name_28 (pepe_michinoku VARCHAR, ryuji_hijikata VARCHAR)
SELECT constructor FROM table_name_39 WHERE time_retired = "brakes" AND grid < 14
I want the constructor for brakes and grid less than 14
CREATE TABLE table_name_39 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)
SELECT T1.director, T1.title FROM Movie AS T1 JOIN Rating AS T2 ON T1.mID = T2.mID WHERE T2.stars = 5
What are the names of directors who directed movies with 5 star rating? Also return the title of these movies.
CREATE TABLE Movie (director VARCHAR, title VARCHAR, mID VARCHAR); CREATE TABLE Rating (mID VARCHAR, stars VARCHAR)
SELECT allied_forces FROM table_1160161_12 WHERE target = "Woensdrecht"
Which Allied Force targetted Woensdrecht?
CREATE TABLE table_1160161_12 (allied_forces VARCHAR, target VARCHAR)
SELECT position_in_table FROM table_28181347_6 WHERE replaced_by = "Mark Stimson"
When Mark Stimson started his job in 2007-08 what posiiton was the team on the table
CREATE TABLE table_28181347_6 (position_in_table VARCHAR, replaced_by VARCHAR)
SELECT region FROM table_name_7 WHERE date = "19 june 2007"
From which region is the album with release date of 19 June 2007?
CREATE TABLE table_name_7 (region VARCHAR, date VARCHAR)
SELECT MIN(year) FROM table_name_49 WHERE city = "chester-le-street" AND score = "345 runs"
What is the lowest year that has chester-le-street as the city, with 345 runs as the score?
CREATE TABLE table_name_49 (year INTEGER, city VARCHAR, score VARCHAR)
SELECT SUM(matches) FROM table_name_13 WHERE wins < 1 AND pos > 8
How many total matches with less than 1 win and a position higher than 8?
CREATE TABLE table_name_13 (matches INTEGER, wins VARCHAR, pos VARCHAR)
SELECT player FROM table_28628309_6 WHERE totals = "105-161"
Who was the player when totals were 105-161?
CREATE TABLE table_28628309_6 (player VARCHAR, totals VARCHAR)
SELECT number_one_single_s_ FROM table_27441210_5 WHERE artist = "Desvarieux, Jacob"
Name the number one singles for desvarieux, jacob
CREATE TABLE table_27441210_5 (number_one_single_s_ VARCHAR, artist VARCHAR)
SELECT home_team FROM table_name_48 WHERE venue = "victoria park"
What's the Home teams Venue near Victoria Park?
CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR)
SELECT MAX(cuts_made) FROM table_name_47 WHERE top_10 < 8 AND wins > 0
What is the highest number of Cuts made that has a Top 10 smaller than 8 and Wins larger than 0?
CREATE TABLE table_name_47 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR)
SELECT points FROM table_name_64 WHERE played = "20" AND club = "caldicot rfc"
What is Points, when Played is "20", and when Club is "Caldicot RFC"?
CREATE TABLE table_name_64 (points VARCHAR, played VARCHAR, club VARCHAR)
SELECT played FROM table_name_31 WHERE points_for = "473"
How many matches were played by the team that has 473 points for?
CREATE TABLE table_name_31 (played VARCHAR, points_for VARCHAR)
SELECT COUNT(roll) FROM table_name_69 WHERE decile > 1 AND authority = "integrated" AND name = "bishop viard college"
What is the roll of Bishop Viard College (An Integrated College), which has a decile larger than 1?
CREATE TABLE table_name_69 (roll VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)
SELECT score_points FROM table_name_27 WHERE event = "wc milan" AND total = "23"
Name Event of wc milan and a Total of 23?
CREATE TABLE table_name_27 (score_points VARCHAR, event VARCHAR, total VARCHAR)
SELECT team FROM table_name_60 WHERE head_coach = "michalis pamboris"
Which Team has a Head Coach of michalis pamboris?
CREATE TABLE table_name_60 (team VARCHAR, head_coach VARCHAR)