question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the electoral district when total candidates were 35?
columns: - name: electoral_district type: VARCHAR - name: total_candidates type: VARCHAR table: table_2676980_4
SELECT electoral_district FROM table_2676980_4 WHERE total_candidates = 35
Which Score has a Couple comprised of jason & edyta, and a Style of freestyle?
columns: - name: score type: VARCHAR - name: couple type: VARCHAR - name: style type: VARCHAR table: table_name_2
SELECT score FROM table_name_2 WHERE couple = "jason & edyta" AND style = "freestyle"
Which Games has a Season of 2003/2004, and a Red Cards smaller than 5?
columns: - name: games type: INTEGER - name: season type: VARCHAR - name: red_cards type: VARCHAR table: table_name_65
SELECT AVG(games) FROM table_name_65 WHERE season = "2003/2004" AND red_cards < 5
What was the result of the game that was attended by 72,703 people?
columns: - name: result type: VARCHAR - name: attendance type: VARCHAR table: table_name_76
SELECT result FROM table_name_76 WHERE attendance = "72,703"
When are all years that tournament location is Western Turnpike Golf Course?
columns: - name: year type: VARCHAR - name: tournament_location type: VARCHAR table: table_15315816_1
SELECT year FROM table_15315816_1 WHERE tournament_location = "Western Turnpike Golf Course"
What is the smallest game number with a record of 16-7-2?
columns: - name: game type: INTEGER - name: record type: VARCHAR table: table_name_44
SELECT MIN(game) FROM table_name_44 WHERE record = "16-7-2"
What country is Greg Norman from?
columns: - name: country type: VARCHAR - name: player type: VARCHAR table: table_name_28
SELECT country FROM table_name_28 WHERE player = "greg norman"
What is Userpics Free, when Registration is Open, when Yearly Cost For Paid Account is "unknown", and when Name is Kraslan?
columns: - name: userpics_free type: VARCHAR - name: name type: VARCHAR - name: registration type: VARCHAR - name: yearly_cost_for_paid_account type: VARCHAR table: table_name_18
SELECT userpics_free FROM table_name_18 WHERE registration = "open" AND yearly_cost_for_paid_account = "unknown" AND name = "kraslan"
If seed number is 2, what is the maximum amount of points?
columns: - name: points type: INTEGER - name: seed type: VARCHAR table: table_23501776_18
SELECT MAX(points) FROM table_23501776_18 WHERE seed = 2
What is the lowest Pick #, when College is "Louisville", and when Round is less than 10?
columns: - name: pick__number type: INTEGER - name: college type: VARCHAR - name: round type: VARCHAR table: table_name_6
SELECT MIN(pick__number) FROM table_name_6 WHERE college = "louisville" AND round < 10
When mixed doubles is didit juang indrianto yayu rahayu what is the most current year?
columns: - name: year type: INTEGER - name: mixed_doubles type: VARCHAR table: table_14319023_2
SELECT MAX(year) FROM table_14319023_2 WHERE mixed_doubles = "Didit Juang Indrianto Yayu Rahayu"
Which location had previous champions of Mike Webb and Nick Fahrenheit?
columns: - name: location type: VARCHAR - name: previous_champion_s_ type: VARCHAR table: table_name_93
SELECT location FROM table_name_93 WHERE previous_champion_s_ = "mike webb and nick fahrenheit"
how many episode have 8.4 millions viewer.
columns: - name: episode type: VARCHAR - name: viewers__in_millions_ type: VARCHAR table: table_2112766_1
SELECT COUNT(episode) FROM table_2112766_1 WHERE viewers__in_millions_ = "8.4"
What event did Patti Lank have the winning skip?
columns: - name: event type: VARCHAR - name: winning_skip type: VARCHAR table: table_name_11
SELECT event FROM table_name_11 WHERE winning_skip = "patti lank"
Which driver starts 3?
columns: - name: driver type: VARCHAR - name: starts type: VARCHAR table: table_18811741_15
SELECT driver FROM table_18811741_15 WHERE starts = 3
What's the report in King Baudouin Stadium Brussels, Belgium?
columns: - name: report type: VARCHAR - name: venue type: VARCHAR table: table_name_31
SELECT report FROM table_name_31 WHERE venue = "king baudouin stadium brussels, belgium"
Name the hull number of Commissioned– Decommissioned of 1973–1996
columns: - name: hull_no type: VARCHAR - name: commissioned__decommissioned type: VARCHAR table: table_name_29
SELECT hull_no FROM table_name_29 WHERE commissioned__decommissioned = "1973–1996"
What is the Order and Title with an Elevated with 1261, december 17, and a Faction with angevin?
columns: - name: order_and_title type: VARCHAR - name: elevated type: VARCHAR - name: faction type: VARCHAR table: table_name_88
SELECT order_and_title FROM table_name_88 WHERE elevated = "1261, december 17" AND faction = "angevin"
Who had a save on September 2?
columns: - name: save type: VARCHAR - name: date type: VARCHAR table: table_name_49
SELECT save FROM table_name_49 WHERE date = "september 2"
What country'c capital is santiago?
columns: - name: country_or_territory_with_flag type: VARCHAR - name: capital type: VARCHAR table: table_14098_1
SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Santiago"
WHAT IS THE LEAGUE WITH HOME 1-1?
columns: - name: league type: VARCHAR - name: home type: VARCHAR table: table_name_63
SELECT league FROM table_name_63 WHERE home = "1-1"
How many wins happened with 8 draws?
columns: - name: wins type: VARCHAR - name: draws type: VARCHAR table: table_name_72
SELECT wins FROM table_name_72 WHERE draws = "8"
Which member is from the state of SA and the grey electorate?
columns: - name: member type: VARCHAR - name: state type: VARCHAR - name: electorate type: VARCHAR table: table_name_74
SELECT member FROM table_name_74 WHERE state = "sa" AND electorate = "grey"
What was the average crowd size when Melbourne was the home team?
columns: - name: crowd type: INTEGER - name: home_team type: VARCHAR table: table_name_9
SELECT AVG(crowd) FROM table_name_9 WHERE home_team = "melbourne"
what is the average total when silver is more than 2, bronze is 12 and gold is less than 12?
columns: - name: total type: INTEGER - name: gold type: VARCHAR - name: silver type: VARCHAR - name: bronze type: VARCHAR table: table_name_64
SELECT AVG(total) FROM table_name_64 WHERE silver > 2 AND bronze = 12 AND gold < 12
What is the highest rank of Tokyo International Airport?
columns: - name: rank type: INTEGER - name: airport type: VARCHAR table: table_name_72
SELECT MAX(rank) FROM table_name_72 WHERE airport = "tokyo international airport"
How many against when losses are 11 and wins are fewer than 5?
columns: - name: against type: INTEGER - name: losses type: VARCHAR - name: wins type: VARCHAR table: table_name_24
SELECT AVG(against) FROM table_name_24 WHERE losses = 11 AND wins < 5
When the type is "reset" what is the description?
columns: - name: description type: VARCHAR - name: type type: VARCHAR table: table_1507852_1
SELECT description FROM table_1507852_1 WHERE type = "reset"
What is the Born-Died dates of Xhafer Bej Ypi?
columns: - name: born_died type: VARCHAR - name: name type: VARCHAR table: table_name_39
SELECT born_died FROM table_name_39 WHERE name = "xhafer bej ypi"
What was the 2008 election status when glenn nye was the running democrat?
columns: - name: democratic type: VARCHAR table: table_17503169_1
SELECT 2008 AS _status FROM table_17503169_1 WHERE democratic = "Glenn Nye"
what are the tries where the game was lost by 4?
columns: - name: tries_against type: VARCHAR - name: lost type: VARCHAR table: table_13564637_3
SELECT tries_against FROM table_13564637_3 WHERE lost = "4"
What type of regular season/preseason game was played on August 25, 2007?
columns: - name: regular_season___preseason type: VARCHAR - name: date type: VARCHAR table: table_name_70
SELECT regular_season___preseason FROM table_name_70 WHERE date = "august 25, 2007"
What is the Location for the buick-goodwrench open?
columns: - name: location type: VARCHAR - name: tournament type: VARCHAR table: table_name_40
SELECT location FROM table_name_40 WHERE tournament = "buick-goodwrench open"
who was the successor for district ohio 15th?
columns: - name: successor type: VARCHAR - name: district type: VARCHAR table: table_1652224_5
SELECT successor FROM table_1652224_5 WHERE district = "Ohio 15th"
Name the laps for qual of 144.665
columns: - name: laps type: INTEGER - name: qual type: VARCHAR table: table_name_94
SELECT SUM(laps) FROM table_name_94 WHERE qual = "144.665"
How many laps were completed in the race with time of 3:03:50?
columns: - name: laps type: VARCHAR - name: race_time type: VARCHAR table: table_2175858_1
SELECT laps FROM table_2175858_1 WHERE race_time = "3:03:50"
What was the name of the player for pick 402?
columns: - name: player type: VARCHAR - name: pick type: VARCHAR table: table_name_57
SELECT player FROM table_name_57 WHERE pick = 402
What is the lowest Against, when Opposing Team is Queensland?
columns: - name: against type: INTEGER - name: opposing_team type: VARCHAR table: table_name_92
SELECT MIN(against) FROM table_name_92 WHERE opposing_team = "queensland"
In which championship did John Newcombe play against Ken Rosewall in the final match?
columns: - name: championship type: VARCHAR - name: opponent_in_the_final type: VARCHAR table: table_23259077_1
SELECT championship FROM table_23259077_1 WHERE opponent_in_the_final = "Ken Rosewall"
How many production codes are there for episode 10 in the season?
columns: - name: production_code type: VARCHAR - name: season type: VARCHAR table: table_24425976_2
SELECT COUNT(production_code) FROM table_24425976_2 WHERE season = "10"
What is the average overall value for a round less than 4 associated with the College of Georgia?
columns: - name: overall type: INTEGER - name: round type: VARCHAR - name: college type: VARCHAR table: table_name_32
SELECT AVG(overall) FROM table_name_32 WHERE round < 4 AND college = "georgia"
What is Player, when College/Junior/Club Team (League) is "Val d'Or Foreurs ( QMJHL )"?
columns: - name: player type: VARCHAR - name: college_junior_club_team__league_ type: VARCHAR table: table_name_23
SELECT player FROM table_name_23 WHERE college_junior_club_team__league_ = "val d'or foreurs ( qmjhl )"
Who was the opponent during the competition in which the bowling figures were 5-33 (10)?
columns: - name: versus type: VARCHAR - name: bowling_figures_wickets_runs__overs_ type: VARCHAR table: table_name_82
SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = "5-33 (10)"
Who was the opponent at the game with a score of 6–5 (10)?
columns: - name: opponent type: VARCHAR - name: score type: VARCHAR table: table_name_47
SELECT opponent FROM table_name_47 WHERE score = "6–5 (10)"
What's Chick Harbert's To par?
columns: - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_21
SELECT to_par FROM table_name_21 WHERE player = "chick harbert"
What is the date of the k-league cup, which has less than 28 goals, at the jeonju venue?
columns: - name: date type: VARCHAR - name: competition type: VARCHAR - name: venue type: VARCHAR - name: goals type: VARCHAR table: table_name_93
SELECT date FROM table_name_93 WHERE venue = "jeonju" AND goals < 28 AND competition = "k-league cup"
Name the total number in attendance for when the bulls visited
columns: - name: attendance type: VARCHAR - name: visitor type: VARCHAR table: table_name_50
SELECT COUNT(attendance) FROM table_name_50 WHERE visitor = "bulls"
What is the total on average for teams with 3 tournaments?
columns: - name: total type: INTEGER - name: tournament type: VARCHAR table: table_name_8
SELECT AVG(total) FROM table_name_8 WHERE tournament = 3
Which permanent account has registration of invite-only and userpics free of unknown?
columns: - name: permanent_account type: VARCHAR - name: userpics_free type: VARCHAR - name: registration type: VARCHAR table: table_name_46
SELECT permanent_account FROM table_name_46 WHERE userpics_free = "unknown" AND registration = "invite-only"
Can you tell me the Nation that has the Bronze of 1, and the Gold of 0?
columns: - name: nation type: VARCHAR - name: bronze type: VARCHAR - name: gold type: VARCHAR table: table_name_68
SELECT nation FROM table_name_68 WHERE bronze = 1 AND gold = 0
Which player has a Position of infielder, and a Hometown of atlanta, ga?
columns: - name: player type: VARCHAR - name: position type: VARCHAR - name: hometown type: VARCHAR table: table_name_48
SELECT player FROM table_name_48 WHERE position = "infielder" AND hometown = "atlanta, ga"
What competition, federation, or league are the Tennessee Titans a member of?
columns: - name: competition_ type: VARCHAR - name: _federation_ type: VARCHAR - name: _or_league type: VARCHAR - name: team type: VARCHAR table: table_name_7
SELECT competition_, _federation_, _or_league FROM table_name_7 WHERE team = "tennessee titans"
What is the average opening at Stadyum Samsun with a capacity smaller than 34,658?
columns: - name: opening type: INTEGER - name: stadium type: VARCHAR - name: capacity type: VARCHAR table: table_name_20
SELECT AVG(opening) FROM table_name_20 WHERE stadium = "stadyum samsun" AND capacity < 34 OFFSET 658
When dayton is the team what is the record?
columns: - name: record type: VARCHAR - name: team type: VARCHAR table: table_29556461_8
SELECT record FROM table_29556461_8 WHERE team = "Dayton"
In what place did the golfer representing Zimbabwe finish?
columns: - name: place type: VARCHAR - name: country type: VARCHAR table: table_name_60
SELECT place FROM table_name_60 WHERE country = "zimbabwe"
With the lost of 3, how many points?
columns: - name: points_against type: VARCHAR - name: lost type: VARCHAR table: table_name_9
SELECT points_against FROM table_name_9 WHERE lost = "3"
WHich Surface has an Opponent of gustavo kuerten?
columns: - name: surface type: VARCHAR - name: opponent type: VARCHAR table: table_name_13
SELECT surface FROM table_name_13 WHERE opponent = "gustavo kuerten"
Where is California Lutheran University located?
columns: - name: location type: VARCHAR - name: institution type: VARCHAR table: table_14976504_2
SELECT COUNT(location) FROM table_14976504_2 WHERE institution = "California Lutheran University"
How many receptions were smaller than 7?
columns: - name: reception type: VARCHAR - name: long type: INTEGER table: table_name_12
SELECT COUNT(reception) FROM table_name_12 WHERE long < 7
Name the Ont of N.B. of 10 and normal total of 77
columns: - name: ont type: VARCHAR - name: nb type: VARCHAR - name: normal_total type: VARCHAR table: table_name_5
SELECT ont FROM table_name_5 WHERE nb = "10" AND normal_total = "77"
What Playoffs had an Open Cup of 3rd round?
columns: - name: playoffs type: VARCHAR - name: open_cup type: VARCHAR table: table_name_83
SELECT playoffs FROM table_name_83 WHERE open_cup = "3rd round"
What is the Pick number of the Player from Syracuse?
columns: - name: pick type: VARCHAR - name: college type: VARCHAR table: table_name_76
SELECT pick FROM table_name_76 WHERE college = "syracuse"
What country has a to par less than 13, with wayne grady as the player?
columns: - name: country type: VARCHAR - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_6
SELECT country FROM table_name_6 WHERE to_par < 13 AND player = "wayne grady"
What ist he matches where the player is ms dhoni?
columns: - name: matches type: VARCHAR - name: player type: VARCHAR table: table_24039597_26
SELECT matches FROM table_24039597_26 WHERE player = "MS Dhoni"
What's the record on April 12 when the location was The Omni?
columns: - name: record type: VARCHAR - name: location_attendance type: VARCHAR - name: date type: VARCHAR table: table_name_25
SELECT record FROM table_name_25 WHERE location_attendance = "the omni" AND date = "april 12"
What is Top Par, when Country is Sweden?
columns: - name: to_par type: VARCHAR - name: country type: VARCHAR table: table_name_71
SELECT to_par FROM table_name_71 WHERE country = "sweden"
What is the cross section area (cm 2) for the moment of intertia in torsion (j) (cm 4) 2.54?
columns: - name: cross_section_area__cm_2__ type: VARCHAR - name: moment_of_inertia_in_torsion__j___cm_4__ type: VARCHAR table: table_2071644_1
SELECT cross_section_area__cm_2__ FROM table_2071644_1 WHERE moment_of_inertia_in_torsion__j___cm_4__ = "2.54"
List directors and producers when the celebrities involved were Bill Turnbull and Louise Minchin.
columns: - name: directed_and_produced_by type: VARCHAR - name: celebrities type: VARCHAR table: table_24725951_1
SELECT directed_and_produced_by FROM table_24725951_1 WHERE celebrities = "Bill Turnbull and Louise Minchin"
What is the nickname of the team whose 2013/2014 enrollment is 436?
columns: - name: nickname_s_ type: VARCHAR - name: enrollment__2013_14_ type: VARCHAR table: table_18304058_2
SELECT nickname_s_ FROM table_18304058_2 WHERE enrollment__2013_14_ = 436
What is the total number of averages with an interview of 8.75 when the evening gown number was bigger than 8.75?
columns: - name: average type: INTEGER - name: interview type: VARCHAR - name: evening_gown type: VARCHAR table: table_name_62
SELECT SUM(average) FROM table_name_62 WHERE interview = 8.75 AND evening_gown > 8.75
When Alinna D Penta was the cyber girl in week 3, who was the cyber girl in week 1?
columns: - name: week_1 type: VARCHAR - name: week_3 type: VARCHAR table: table_name_69
SELECT week_1 FROM table_name_69 WHERE week_3 = "alinna d penta"
How much capacity was installed in Wheatland?
columns: - name: installed_capacity__mw_ type: VARCHAR - name: county type: VARCHAR table: table_24837750_1
SELECT installed_capacity__mw_ FROM table_24837750_1 WHERE county = "Wheatland"
Which company has a market value greater than 1, Assets (US$ billion) smaller than 10.7, a Rank smaller than 10, and revenue (US$ billion) of 9.3?
columns: - name: company type: VARCHAR - name: revenues__us$_billion_ type: VARCHAR - name: rank type: VARCHAR - name: market_value__us$_billion_ type: VARCHAR - name: assets__us$_billion_ type: VARCHAR table: table_name_41
SELECT company FROM table_name_41 WHERE market_value__us$_billion_ > 1 AND assets__us$_billion_ < 10.7 AND rank < 10 AND revenues__us$_billion_ = 9.3
What is the Author of the Title with an Ongoing Last Issue?
columns: - name: author type: VARCHAR - name: last_issue type: VARCHAR table: table_name_1
SELECT author FROM table_name_1 WHERE last_issue = "ongoing"
Who was on the Republican ticket for the office of Inspector of state prisons?
columns: - name: republican_ticket type: VARCHAR - name: office type: VARCHAR table: table_name_8
SELECT republican_ticket FROM table_name_8 WHERE office = "inspector of state prisons"
How many times was the score 6–7(5), 6–2, 6–3?
columns: - name: opponents type: VARCHAR - name: score type: VARCHAR table: table_1920271_2
SELECT COUNT(opponents) FROM table_1920271_2 WHERE score = "6–7(5), 6–2, 6–3"
what character did naoko watanabe play
columns: - name: character_name type: VARCHAR - name: voice_actor__japanese_ type: VARCHAR table: table_name_82
SELECT character_name FROM table_name_82 WHERE voice_actor__japanese_ = "naoko watanabe"
Name who directed season 1
columns: - name: directed_by type: VARCHAR - name: season__number type: VARCHAR table: table_20704243_5
SELECT directed_by FROM table_20704243_5 WHERE season__number = 1
What was the nation that had 59 totals?
columns: - name: nation type: VARCHAR - name: total type: VARCHAR table: table_name_75
SELECT nation FROM table_name_75 WHERE total = 59
What was the Competition on September 29, 2003?
columns: - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_15
SELECT competition FROM table_name_15 WHERE date = "september 29, 2003"
Who is the Creator that has a version of 0.5.2 (part of compiz fusion release)?
columns: - name: creator type: VARCHAR - name: latest_stable_version type: VARCHAR table: table_name_45
SELECT creator FROM table_name_45 WHERE latest_stable_version = "0.5.2 (part of compiz fusion release)"
on the span of 1992-2000, what was the conv ?
columns: - name: conv type: VARCHAR - name: span type: VARCHAR table: table_name_19
SELECT conv FROM table_name_19 WHERE span = "1992-2000"
What is the number for overall for angelo craig?
columns: - name: overall type: VARCHAR - name: player type: VARCHAR table: table_name_30
SELECT COUNT(overall) FROM table_name_30 WHERE player = "angelo craig"
What was the score when Mark parterned with lorenzo manta?
columns: - name: score type: VARCHAR - name: partner type: VARCHAR table: table_name_19
SELECT score FROM table_name_19 WHERE partner = "lorenzo manta"
Which To par is the lowest one that has a Year(s) won of 1962, 1967, 1972, 1980, and a Total larger than 149?
columns: - name: to_par type: INTEGER - name: year_s__won type: VARCHAR - name: total type: VARCHAR table: table_name_90
SELECT MIN(to_par) FROM table_name_90 WHERE year_s__won = "1962, 1967, 1972, 1980" AND total > 149
WHich Evening Gown has a Swimsuit smaller than 7.99 and a Interview larger than 7.98?
columns: - name: evening_gown type: INTEGER - name: swimsuit type: VARCHAR - name: interview type: VARCHAR table: table_name_21
SELECT AVG(evening_gown) FROM table_name_21 WHERE swimsuit < 7.99 AND interview > 7.98
What year has a make & model of mci d4000n?
columns: - name: year type: VARCHAR - name: make_ type: VARCHAR - name: _model type: VARCHAR table: table_name_79
SELECT year FROM table_name_79 WHERE make_ & _model = "mci d4000n"
How many touchdowns were there when Heston was in play?
columns: - name: touchdowns type: INTEGER - name: player type: VARCHAR table: table_14342592_7
SELECT MAX(touchdowns) FROM table_14342592_7 WHERE player = "Heston"
Which Nationality has a Rank larger than 1, and a Time smaller than 22.12, and a Lane smaller than 4, and a Name of ashley callus?
columns: - name: nationality type: VARCHAR - name: name type: VARCHAR - name: lane type: VARCHAR - name: rank type: VARCHAR - name: time type: VARCHAR table: table_name_99
SELECT nationality FROM table_name_99 WHERE rank > 1 AND time < 22.12 AND lane < 4 AND name = "ashley callus"
What is the date the high rebounds were by lamarcus aldridge (6)?
columns: - name: date type: VARCHAR - name: high_rebounds type: VARCHAR table: table_27734769_8
SELECT date FROM table_27734769_8 WHERE high_rebounds = "LaMarcus Aldridge (6)"
What is the Average of Men in Pain with a Finale of less than 33?
columns: - name: average type: INTEGER - name: english_title type: VARCHAR - name: finale type: VARCHAR table: table_name_70
SELECT AVG(average) FROM table_name_70 WHERE english_title = "men in pain" AND finale < 33
Name the score for the mariners opponent on may 10
columns: - name: score type: VARCHAR - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_20
SELECT score FROM table_name_20 WHERE opponent = "mariners" AND date = "may 10"
Which player has a to par of +8?
columns: - name: player type: VARCHAR - name: to_par type: VARCHAR table: table_name_81
SELECT player FROM table_name_81 WHERE to_par = "+8"
How many times is the postion S?
columns: - name: overall type: VARCHAR - name: position type: VARCHAR table: table_name_4
SELECT COUNT(overall) FROM table_name_4 WHERE position = "s"
How many teams have an eagles mascot?
columns: - name: affiliation type: VARCHAR - name: mascot type: VARCHAR table: table_13456202_1
SELECT COUNT(affiliation) FROM table_13456202_1 WHERE mascot = "Eagles"
what was the result on 01x06
columns: - name: scores type: VARCHAR - name: episode type: VARCHAR table: table_29141354_1
SELECT scores FROM table_29141354_1 WHERE episode = "01x06"
What is the releases number under Season 2?
columns: - name: release type: VARCHAR - name: timeline type: VARCHAR table: table_16279520_1
SELECT release FROM table_16279520_1 WHERE timeline = "Season 2"
What's the gloss with Castitas(Latin)?
columns: - name: gloss type: VARCHAR - name: latin type: VARCHAR table: table_name_79
SELECT gloss FROM table_name_79 WHERE latin = "castitas"
Where was the game held and what was the attendance when they played Orlando?
columns: - name: location_attendance type: VARCHAR - name: team type: VARCHAR table: table_17311759_6
SELECT location_attendance FROM table_17311759_6 WHERE team = "Orlando"
What is the geust with a 0:1 result?
columns: - name: geust type: VARCHAR - name: result type: VARCHAR table: table_name_65
SELECT geust FROM table_name_65 WHERE result = "0:1"