question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Which Competition has a Venue of manchester in 2009?
columns: - name: competition type: VARCHAR - name: venue type: VARCHAR - name: year type: VARCHAR table: table_name_92
SELECT competition FROM table_name_92 WHERE venue = "manchester" AND year = 2009
The OMEGA transmitter Chabrier has what country listed?
columns: - name: country type: VARCHAR - name: structure type: VARCHAR table: table_name_59
SELECT country FROM table_name_59 WHERE structure = "omega transmitter chabrier"
Which region has Stanford University as host?
columns: - name: region type: VARCHAR - name: host type: VARCHAR table: table_name_12
SELECT region FROM table_name_12 WHERE host = "stanford university"
Rank smaller than 5, and a Time larger than 10.7, and a Date of 10 july 2009 has what location?
columns: - name: location type: VARCHAR - name: date type: VARCHAR - name: rank type: VARCHAR - name: time type: VARCHAR table: table_name_37
SELECT location FROM table_name_37 WHERE rank < 5 AND time > 10.7 AND date = "10 july 2009"
Which Cuts made has a Tournament of totals, and Wins smaller than 11?
columns: - name: cuts_made type: INTEGER - name: tournament type: VARCHAR - name: wins type: VARCHAR table: table_name_25
SELECT AVG(cuts_made) FROM table_name_25 WHERE tournament = "totals" AND wins < 11
Which Surface has an Opponent of kerry melville reid, and a Score of 6–3, 2–6, 3–6?
columns: - name: surface type: VARCHAR - name: opponent type: VARCHAR - name: score type: VARCHAR table: table_name_53
SELECT surface FROM table_name_53 WHERE opponent = "kerry melville reid" AND score = "6–3, 2–6, 3–6"
Who is the home team on 31 January 1951 when away team was Sheffield United?
columns: - name: home_team type: VARCHAR - name: date type: VARCHAR - name: away_team type: VARCHAR table: table_name_75
SELECT home_team FROM table_name_75 WHERE date = "31 january 1951" AND away_team = "sheffield united"
What is the lowest numbered game against Phoenix with a record of 29-17?
columns: - name: game type: INTEGER - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_name_61
SELECT MIN(game) FROM table_name_61 WHERE opponent = "phoenix" AND record = "29-17"
What type has the characters 廣丙?
columns: - name: type type: VARCHAR - name: characters type: VARCHAR table: table_name_25
SELECT type FROM table_name_25 WHERE characters = "廣丙"
What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games?
columns: - name: year type: INTEGER - name: position type: VARCHAR - name: competition type: VARCHAR table: table_name_68
SELECT SUM(year) FROM table_name_68 WHERE position = "6th" AND competition = "commonwealth games"
What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?
columns: - name: balls_faced type: INTEGER - name: average type: VARCHAR - name: sr type: VARCHAR - name: innings type: VARCHAR table: table_name_99
SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5
Did Flamengo play in the Recopa Sudamericana in 1998
columns: - name: recopa_sudamericana_1998 type: VARCHAR - name: team type: VARCHAR table: table_14962316_9
SELECT recopa_sudamericana_1998 FROM table_14962316_9 WHERE team = "Flamengo"
What was the average Value ($M) when the Country was England, the Operating income($m) was greater than -5, and the Revenue ($M) was smaller than 103?
columns: - name: value__ type: INTEGER - name: revenue__$m_ type: VARCHAR - name: country type: VARCHAR - name: operating_income_$m_ type: VARCHAR table: table_name_95
SELECT AVG(value__) AS $m_ FROM table_name_95 WHERE country = "england" AND operating_income_$m_ > -5 AND revenue__$m_ < 103
what shows for 3rd place in 1990?
columns: - name: year type: VARCHAR table: table_name_60
SELECT 3 AS rd_place FROM table_name_60 WHERE year = "1990"
Which team has Top division titles larger than 0, a Founded larger than 1927, and a Stadium of miguel grau?
columns: - name: team type: VARCHAR - name: stadium type: VARCHAR - name: top_division_titles type: VARCHAR - name: founded type: VARCHAR table: table_name_69
SELECT team FROM table_name_69 WHERE top_division_titles > 0 AND founded > 1927 AND stadium = "miguel grau"
who won on 29 may?
columns: - name: winner type: VARCHAR - name: date type: VARCHAR table: table_name_32
SELECT winner FROM table_name_32 WHERE date = "29 may"
What is the record when the method is decision and the location is Martigues, France?
columns: - name: record type: VARCHAR - name: method type: VARCHAR - name: location type: VARCHAR table: table_name_86
SELECT record FROM table_name_86 WHERE method = "decision" AND location = "martigues, france"
What date has a game smaller than 4, and a score of 116-114?
columns: - name: date type: VARCHAR - name: game type: VARCHAR - name: score type: VARCHAR table: table_name_73
SELECT date FROM table_name_73 WHERE game < 4 AND score = "116-114"
How many games have a Result of l, and a Record of 2-6?
columns: - name: game type: VARCHAR - name: result type: VARCHAR - name: record type: VARCHAR table: table_name_17
SELECT COUNT(game) FROM table_name_17 WHERE result = "l" AND record = "2-6"
Who played as the home team when the attendance was more than 30,080?
columns: - name: home_team type: VARCHAR - name: crowd type: INTEGER table: table_name_21
SELECT home_team FROM table_name_21 WHERE crowd > 30 OFFSET 080
What is the position of the player from the college of North Carolina with an overall less than 100?
columns: - name: position type: VARCHAR - name: overall type: VARCHAR - name: college type: VARCHAR table: table_name_47
SELECT position FROM table_name_47 WHERE overall < 100 AND college = "north carolina"
What was the method of resolution when Katsuhisa Fujii's record was 0-1?
columns: - name: method type: VARCHAR - name: record type: VARCHAR table: table_name_31
SELECT method FROM table_name_31 WHERE record = "0-1"
What was the margin of victory when the winning score was –14 (70-68-67=205)?
columns: - name: margin_of_victory type: VARCHAR - name: winning_score type: VARCHAR table: table_name_59
SELECT margin_of_victory FROM table_name_59 WHERE winning_score = –14(70 - 68 - 67 = 205)
What is the percentage of total area in the ecozone that the percentage of land area is 2.2?
columns: - name: percentage_of_total_area type: VARCHAR - name: percentage_of_land_area type: VARCHAR table: table_15555661_2
SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_of_land_area = "2.2"
Which qualifying 1 time has a best under 58.669 and a qualifying 2 time under 57.897?
columns: - name: qual_1 type: VARCHAR - name: best type: VARCHAR - name: qual_2 type: VARCHAR table: table_name_50
SELECT qual_1 FROM table_name_50 WHERE best < 58.669 AND qual_2 < 57.897
What is 2007, when 2003 is 1R?
columns: - name: Id type: VARCHAR table: table_name_54
SELECT 2007 FROM table_name_54 WHERE 2003 = "1r"
I want the D 42 with R 51 of r 11
columns: - name: d_42 type: VARCHAR - name: r_51 type: VARCHAR table: table_name_41
SELECT d_42 FROM table_name_41 WHERE r_51 = "r 11"
What rank did the time of 7:31.90 receive?
columns: - name: rank type: VARCHAR - name: time type: VARCHAR table: table_name_62
SELECT COUNT(rank) FROM table_name_62 WHERE time = "7:31.90"
What is Loris Capirossi's time?
columns: - name: time type: VARCHAR - name: rider type: VARCHAR table: table_name_30
SELECT time FROM table_name_30 WHERE rider = "loris capirossi"
When did South Melbourne play as the home team?
columns: - name: date type: VARCHAR - name: home_team type: VARCHAR table: table_name_66
SELECT date FROM table_name_66 WHERE home_team = "south melbourne"
Which transfer window was moving from borussia dortmund?
columns: - name: transfer_window type: VARCHAR - name: moving_from type: VARCHAR table: table_name_38
SELECT transfer_window FROM table_name_38 WHERE moving_from = "borussia dortmund"
What nominees had a net vote of 34.46%?
columns: - name: nominee type: VARCHAR - name: net_vote type: VARCHAR table: table_15162479_8
SELECT nominee FROM table_15162479_8 WHERE net_vote = "34.46%"
What is Segment B for series episode 12-08?
columns: - name: segment_b type: VARCHAR - name: series_ep type: VARCHAR table: table_15187735_12
SELECT segment_b FROM table_15187735_12 WHERE series_ep = "12-08"
What competition took place on 28/04/1906?
columns: - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_11
SELECT competition FROM table_name_11 WHERE date = "28/04/1906"
Whose term expired in 1996 and was from the province of Central Highlands?
columns: - name: name type: VARCHAR - name: province type: VARCHAR - name: term_expires type: VARCHAR table: table_name_74
SELECT name FROM table_name_74 WHERE province = "central highlands" AND term_expires = 1996
How many South Asians on average were in Alberta in 2001 and in 2011 had 159,055?
columns: - name: south_asians_2001 type: INTEGER - name: province type: VARCHAR - name: south_asians_2011 type: VARCHAR table: table_name_86
SELECT AVG(south_asians_2001) FROM table_name_86 WHERE province = "alberta" AND south_asians_2011 > 159 OFFSET 055
Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best?
columns: - name: best type: INTEGER - name: qual_2 type: VARCHAR - name: team type: VARCHAR - name: name type: VARCHAR table: table_name_34
SELECT MIN(best) FROM table_name_34 WHERE team = "n/h/l racing" AND name = "graham rahal" AND qual_2 > 59.384
What is the total against on 08/12/1992?
columns: - name: against type: INTEGER - name: date type: VARCHAR table: table_name_82
SELECT SUM(against) FROM table_name_82 WHERE date = "08/12/1992"
What is the average defenses a champion with 404 days held and a reign larger than 1 has?
columns: - name: defenses type: INTEGER - name: days_held type: VARCHAR - name: reign type: VARCHAR table: table_name_57
SELECT AVG(defenses) FROM table_name_57 WHERE days_held = "404" AND reign > 1
What is the Away when the Club is Neath?
columns: - name: away type: VARCHAR - name: club type: VARCHAR table: table_name_5
SELECT away FROM table_name_5 WHERE club = "neath"
When tim bridgman gregor fisken is the pole position who is the gt3 winner?
columns: - name: gt3_winner type: VARCHAR - name: pole_position type: VARCHAR table: table_30062172_3
SELECT gt3_winner FROM table_30062172_3 WHERE pole_position = "Tim Bridgman Gregor Fisken"
What is the result of the 2007 AFC asian cup?
columns: - name: result type: VARCHAR - name: competition type: VARCHAR table: table_name_19
SELECT result FROM table_name_19 WHERE competition = "2007 afc asian cup"
How many games are played?
columns: - name: played type: INTEGER table: table_15405904_1
SELECT MIN(played) FROM table_15405904_1
What is the pba team for the player who went to santo tomas college?
columns: - name: pba_team type: VARCHAR - name: college type: VARCHAR table: table_name_50
SELECT pba_team FROM table_name_50 WHERE college = "santo tomas"
What are all the conjugated forms of the verb where the el/ ella/usted verb is piense?
columns: - name: nosotros___nosotras type: VARCHAR - name: "\xE9l___ella___usted" type: VARCHAR table: table_1977630_2
SELECT nosotros___nosotras FROM table_1977630_2 WHERE él___ella___usted = "piense"
What is the title of episode 2?
columns: - name: title type: VARCHAR - name: episode_no type: VARCHAR table: table_2430014_8
SELECT title FROM table_2430014_8 WHERE episode_no = 2
Name the most pick number for cfl team being edmonton eskimos
columns: - name: pick__number type: INTEGER - name: cfl_team type: VARCHAR table: table_16575609_4
SELECT MAX(pick__number) FROM table_16575609_4 WHERE cfl_team = "Edmonton Eskimos"
What opponent used the Ko method, and a 6-0 record?
columns: - name: opponent type: VARCHAR - name: method type: VARCHAR - name: record type: VARCHAR table: table_name_12
SELECT opponent FROM table_name_12 WHERE method = "ko" AND record = "6-0"
What year had the supernova award?
columns: - name: year type: VARCHAR - name: category type: VARCHAR table: table_name_46
SELECT year FROM table_name_46 WHERE category = "supernova award"
Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8?
columns: - name: fa_cup type: INTEGER - name: malaysia_cup type: VARCHAR - name: total type: VARCHAR table: table_name_44
SELECT SUM(fa_cup) FROM table_name_44 WHERE malaysia_cup > 0 AND total = 8
Who was the opponent at the game attended by 70,012?
columns: - name: opponent type: VARCHAR - name: attendance type: VARCHAR table: table_name_81
SELECT opponent FROM table_name_81 WHERE attendance = "70,012"
What club is robert gallery a part of
columns: - name: nfl_club type: VARCHAR - name: player type: VARCHAR table: table_name_51
SELECT nfl_club FROM table_name_51 WHERE player = "robert gallery"
What competition has the club villareal?
columns: - name: competition type: VARCHAR - name: club type: VARCHAR table: table_name_89
SELECT competition FROM table_name_89 WHERE club = "villareal"
What is the points that is more than 636 and has a value of 50?
columns: - name: pts_ type: VARCHAR - name: b_ type: VARCHAR - name: reb_ type: VARCHAR - name: no_ type: VARCHAR - name: a_ type: VARCHAR table: table_name_82
SELECT pts_[b_] FROM table_name_82 WHERE reb_[b_] > 636 AND no_[a_] = "50"
What was the informational CVBS Lines of the encoding with max character of 32 and has B (global) standard?
columns: - name: informational_cvbs_lines type: VARCHAR - name: max_characters__per_page_row_ type: VARCHAR - name: standard type: VARCHAR table: table_1926240_1
SELECT informational_cvbs_lines FROM table_1926240_1 WHERE max_characters__per_page_row_ = 32 AND standard = "B (global)"
What is the earliest year won with a total bigger than 156?
columns: - name: year_won type: INTEGER - name: total type: INTEGER table: table_name_81
SELECT MIN(year_won) FROM table_name_81 WHERE total > 156
What was Tony Bettenhausen's qualifying time in 1947?
columns: - name: qual type: VARCHAR - name: year type: VARCHAR table: table_name_61
SELECT qual FROM table_name_61 WHERE year = "1947"
How many ends were lost by the country whose points for (PF) was 87?
columns: - name: Ends type: INTEGER - name: pf type: VARCHAR table: table_1644857_2
SELECT MAX(Ends) AS lost FROM table_1644857_2 WHERE pf = 87
How many attended the game with a record of 43-34?
columns: - name: attendance type: VARCHAR - name: record type: VARCHAR table: table_name_59
SELECT COUNT(attendance) FROM table_name_59 WHERE record = "43-34"
Which city is Lawrenceburg school, with an IHSAA football class of aaa and less than 676 enrollments, located in?
columns: - name: city type: VARCHAR - name: school type: VARCHAR - name: ihsaa_football_class type: VARCHAR - name: enrollment type: VARCHAR table: table_name_84
SELECT city FROM table_name_84 WHERE ihsaa_football_class = "aaa" AND enrollment < 676 AND school = "lawrenceburg"
What are the points for the GP3 series with 2 podiums?
columns: - name: points type: VARCHAR - name: series type: VARCHAR - name: podiums type: VARCHAR table: table_name_92
SELECT points FROM table_name_92 WHERE series = "gp3 series" AND podiums = "2"
When was moray firth built?
columns: - name: whenbuilt type: VARCHAR - name: name type: VARCHAR table: table_name_32
SELECT whenbuilt FROM table_name_32 WHERE name = "moray firth"
In what Year was Rhode Island the National Champion?
columns: - name: year type: VARCHAR - name: national_champion type: VARCHAR table: table_name_77
SELECT year FROM table_name_77 WHERE national_champion = "rhode island"
What is the 2009 average when the 2007 average is more than 0,18?
columns: - name: Id type: VARCHAR table: table_name_4
SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 18
I want the highest Grid for Toyota and jarno trulli
columns: - name: grid type: INTEGER - name: constructor type: VARCHAR - name: driver type: VARCHAR table: table_name_95
SELECT MAX(grid) FROM table_name_95 WHERE constructor = "toyota" AND driver = "jarno trulli"
What Rider had a Time of 1:01.50.57?
columns: - name: rider type: VARCHAR - name: time type: VARCHAR table: table_name_46
SELECT rider FROM table_name_46 WHERE time = "1:01.50.57"
What is the time for the racer on grid 19?
columns: - name: time_retired type: VARCHAR - name: grid type: VARCHAR table: table_name_70
SELECT time_retired FROM table_name_70 WHERE grid = 19
What is the qual for rank 20?
columns: - name: qual type: VARCHAR - name: rank type: VARCHAR table: table_name_5
SELECT qual FROM table_name_5 WHERE rank = "20"
Which Season has a Score of 3 – 3 aet , 4–3 pen
columns: - name: season type: VARCHAR - name: score type: VARCHAR table: table_name_31
SELECT season FROM table_name_31 WHERE score = "3 – 3 aet , 4–3 pen"
What is the name when the country is ESP and the transfer fee is € 7m?
columns: - name: name type: VARCHAR - name: country type: VARCHAR - name: transfer_fee type: VARCHAR table: table_name_20
SELECT name FROM table_name_20 WHERE country = "esp" AND transfer_fee = "€ 7m"
Which Whitten has a Stuart of bass, and a Paul McCartney of electric guitar?
columns: - name: whitten type: VARCHAR - name: stuart type: VARCHAR - name: paul_mccartney type: VARCHAR table: table_name_12
SELECT whitten FROM table_name_12 WHERE stuart = "bass" AND paul_mccartney = "electric guitar"
When did the DC Comics title that debuted in 1937 end?
columns: - name: last_year type: VARCHAR - name: first_year type: VARCHAR - name: publisher type: VARCHAR table: table_name_65
SELECT last_year FROM table_name_65 WHERE first_year = "1937" AND publisher = "dc comics"
What is the year when Scuderia Lancia Corse competed?
columns: - name: year type: VARCHAR - name: team type: VARCHAR table: table_name_51
SELECT COUNT(year) FROM table_name_51 WHERE team = "scuderia lancia corse"
What is the attendance that has fedex field as the game site with 3 as the week?
columns: - name: attendance type: VARCHAR - name: game_site type: VARCHAR - name: week type: VARCHAR table: table_name_24
SELECT attendance FROM table_name_24 WHERE game_site = "fedex field" AND week = 3
WHO WAS THE COVER MODEL OF PLAYBOY WHERE THE CENTERFOLD MODEL WAS SHALLAN MEIERS?
columns: - name: cover_model type: VARCHAR - name: centerfold_model type: VARCHAR table: table_1566852_3
SELECT cover_model FROM table_1566852_3 WHERE centerfold_model = "Shallan Meiers"
Where the number of exports are 6,099.06, what is the total trade?
columns: - name: total_trade type: VARCHAR - name: exports type: VARCHAR table: table_26160007_1
SELECT total_trade FROM table_26160007_1 WHERE exports = "6,099.06"
Who is the opponent in the match with final score 3–6, 4–6, 7–5, 4–6?
columns: - name: opponent_in_the_final type: VARCHAR - name: score_in_the_final type: VARCHAR table: table_22839669_1
SELECT opponent_in_the_final FROM table_22839669_1 WHERE score_in_the_final = "3–6, 4–6, 7–5, 4–6"
What country placed 3?
columns: - name: country type: VARCHAR - name: place type: VARCHAR table: table_name_16
SELECT country FROM table_name_16 WHERE place = "3"
When the home team was Woking, what was the tie no?
columns: - name: tie_no type: VARCHAR - name: home_team type: VARCHAR table: table_name_12
SELECT tie_no FROM table_name_12 WHERE home_team = "woking"
What's the name of the person in the CF Pos?
columns: - name: name type: VARCHAR - name: pos type: VARCHAR table: table_name_43
SELECT name FROM table_name_43 WHERE pos = "cf"
Which bumping/blocking has a yes for both the ankle tap and steal/intercept ball?
columns: - name: bumping_blocking type: VARCHAR - name: ankle_tap type: VARCHAR - name: steal_intercept_ball type: VARCHAR table: table_name_49
SELECT bumping_blocking FROM table_name_49 WHERE ankle_tap = "yes" AND steal_intercept_ball = "yes"
On what date is Hawthorn the home team?
columns: - name: date type: VARCHAR - name: home_team type: VARCHAR table: table_name_10
SELECT date FROM table_name_10 WHERE home_team = "hawthorn"
How many floors does the Custom House Tower have?
columns: - name: floors type: VARCHAR - name: name type: VARCHAR table: table_name_95
SELECT COUNT(floors) FROM table_name_95 WHERE name = "custom house tower"
Name the total number of winnings for 1995
columns: - name: winnings type: VARCHAR - name: year type: VARCHAR table: table_1671401_2
SELECT COUNT(winnings) FROM table_1671401_2 WHERE year = 1995
What is the venue of the team race that was after 2008?
columns: - name: venue type: VARCHAR - name: year type: VARCHAR - name: notes type: VARCHAR table: table_name_23
SELECT venue FROM table_name_23 WHERE year > 2008 AND notes = "team"
Which record has 2:57 as the time?
columns: - name: record type: VARCHAR - name: time type: VARCHAR table: table_name_91
SELECT record FROM table_name_91 WHERE time = "2:57"
What is the total number for the position that has less than 2 draws, less than 9 losses and more than 24?
columns: - name: position type: VARCHAR - name: points type: VARCHAR - name: drawn type: VARCHAR - name: lost type: VARCHAR table: table_name_24
SELECT COUNT(position) FROM table_name_24 WHERE drawn < 2 AND lost < 9 AND points > 24
Which % GDP has a Year smaller than 2011, and an Expenditure larger than 41.3, and an Income smaller than 48, and a Surplus(Deficit) of (24.6)?
columns: - name: _percentage_gdp type: VARCHAR - name: surplus_deficit_ type: VARCHAR - name: income type: VARCHAR - name: year type: VARCHAR - name: expenditure type: VARCHAR table: table_name_19
SELECT _percentage_gdp FROM table_name_19 WHERE year < 2011 AND expenditure > 41.3 AND income < 48 AND surplus_deficit_ = "(24.6)"
Name the country for t3 place
columns: - name: country type: VARCHAR - name: place type: VARCHAR table: table_name_45
SELECT country FROM table_name_45 WHERE place = "t3"
What is the attendance of the game that has the opponent of The Nationals with a record of 68-51?
columns: - name: attendance type: INTEGER - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_name_42
SELECT SUM(attendance) FROM table_name_42 WHERE opponent = "nationals" AND record = "68-51"
What is the city and region of the team in the dalhús arena?
columns: - name: city type: VARCHAR - name: _region type: VARCHAR - name: arena type: VARCHAR table: table_name_35
SELECT city, _region FROM table_name_35 WHERE arena = "dalhús"
What is the Canada singles in 1979 with a US A.C. of 24?
columns: - name: canada_singles type: VARCHAR - name: year type: VARCHAR - name: us_ac type: VARCHAR table: table_name_75
SELECT canada_singles FROM table_name_75 WHERE year = 1979 AND us_ac = "24"
Who directed Tequila?
columns: - name: director type: VARCHAR - name: title type: VARCHAR table: table_name_50
SELECT director FROM table_name_50 WHERE title = "tequila"
What is the highest Number of Households, when Per Capita Income is "$25,557", and when Population is less than "22,330"?
columns: - name: number_of_households type: INTEGER - name: per_capita_income type: VARCHAR - name: population type: VARCHAR table: table_name_57
SELECT MAX(number_of_households) FROM table_name_57 WHERE per_capita_income = "$25,557" AND population < 22 OFFSET 330
Which party was first elected in 1898?
columns: - name: party type: VARCHAR - name: first_elected type: VARCHAR table: table_name_19
SELECT party FROM table_name_19 WHERE first_elected = "1898"
Who is the runner(s)-up for a winning score of −3 (71-74-66-66=277)?
columns: - name: runner_s__up type: VARCHAR - name: winning_score type: VARCHAR table: table_name_65
SELECT runner_s__up FROM table_name_65 WHERE winning_score = −3(71 - 74 - 66 - 66 = 277)
Which Romaji Title has 11 Episodes, and a TV Station of fuji tv, and Average Ratings of 14.9%?
columns: - name: romaji_title type: VARCHAR - name: average_ratings type: VARCHAR - name: episodes type: VARCHAR - name: tv_station type: VARCHAR table: table_name_24
SELECT romaji_title FROM table_name_24 WHERE episodes = 11 AND tv_station = "fuji tv" AND average_ratings = "14.9%"
What team does F Trey Gilder play for?
columns: - name: team type: VARCHAR - name: pos type: VARCHAR - name: player type: VARCHAR table: table_name_63
SELECT team FROM table_name_63 WHERE pos = "f" AND player = "trey gilder"
Can you tell me the Winning party of 2003 that has the Constituency of aberdeen north?
columns: - name: winning_party_2003 type: VARCHAR - name: constituency type: VARCHAR table: table_name_62
SELECT winning_party_2003 FROM table_name_62 WHERE constituency = "aberdeen north"
What is the current code for the club trophy, in 1867 only?
columns: - name: current_code type: VARCHAR - name: type type: VARCHAR - name: years type: VARCHAR table: table_name_20
SELECT current_code FROM table_name_20 WHERE type = "club trophy" AND years = "1867 only"