question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is WSU Year(s), when Pro Year(s) is 1974-77?
columns: - name: wsu_year_s_ type: VARCHAR - name: pro_year_s_ type: VARCHAR table: table_name_88
SELECT wsu_year_s_ FROM table_name_88 WHERE pro_year_s_ = "1974-77"
What is Ashton Cobb's class in Game 2?
columns: - name: class type: VARCHAR - name: "games\u2191" type: VARCHAR - name: name type: VARCHAR table: table_name_87
SELECT class FROM table_name_87 WHERE games↑ = 2 AND name = "ashton cobb"
What was the score for the opponent lukáš dlouhý leander paes?
columns: - name: score type: VARCHAR - name: opponents type: VARCHAR table: table_name_75
SELECT score FROM table_name_75 WHERE opponents = "lukáš dlouhý leander paes"
Who are the quarterfinalists for runner-up jimmy connors?
columns: - name: quarterfinalists type: VARCHAR - name: runner_up type: VARCHAR table: table_21584646_10
SELECT quarterfinalists FROM table_21584646_10 WHERE runner_up = "Jimmy Connors"
Which virtue is Invidia(Latin)?
columns: - name: virtue type: VARCHAR - name: invidia type: VARCHAR - name: latin type: VARCHAR table: table_name_20
SELECT virtue FROM table_name_20 WHERE (latin) = invidia
What College/junior/club had a player of United States nationality drafted by the Toronto Maple Leafs?
columns: - name: college_junior_club_team type: VARCHAR - name: nhl_team type: VARCHAR - name: nationality type: VARCHAR table: table_name_12
SELECT college_junior_club_team FROM table_name_12 WHERE nhl_team = "toronto maple leafs" AND nationality = "united states"
Which Reservoir capacity has an Impounded body of water of tumut two pondage?
columns: - name: reservoir_capacity type: VARCHAR - name: impounded_body_of_water type: VARCHAR table: table_name_41
SELECT reservoir_capacity FROM table_name_41 WHERE impounded_body_of_water = "tumut two pondage"
Which tournament had a winning score of −5 (69-69-73=211)?
columns: - name: tournament type: VARCHAR - name: winning_score type: VARCHAR table: table_name_37
SELECT tournament FROM table_name_37 WHERE winning_score = −5(69 - 69 - 73 = 211)
What is Points, when Played is "20", and when Club is "Caldicot RFC"?
columns: - name: points type: VARCHAR - name: played type: VARCHAR - name: club type: VARCHAR table: table_name_64
SELECT points FROM table_name_64 WHERE played = "20" AND club = "caldicot rfc"
How many average speeds are listed in the year 2003?
columns: - name: average_speed__mph_ type: VARCHAR - name: year type: VARCHAR table: table_2268216_1
SELECT COUNT(average_speed__mph_) FROM table_2268216_1 WHERE year = "2003"
Who wrote the episode with series number 56?
columns: - name: writer_s_ type: VARCHAR - name: series__number type: VARCHAR table: table_25800134_1
SELECT writer_s_ FROM table_25800134_1 WHERE series__number = 56
Who was the visitor that led to a 3-0-2 record?
columns: - name: visitor type: VARCHAR - name: record type: VARCHAR table: table_name_15
SELECT visitor FROM table_name_15 WHERE record = "3-0-2"
What was the Against when the Opposing Team was sheffield wednesday?
columns: - name: against type: VARCHAR - name: opposing_team type: VARCHAR table: table_name_24
SELECT against FROM table_name_24 WHERE opposing_team = "sheffield wednesday"
What was the attendance of the game in week 6?
columns: - name: attendance type: VARCHAR - name: week type: VARCHAR table: table_name_9
SELECT attendance FROM table_name_9 WHERE week = 6
What is every growth rate in 1991-2001 when sex ratio in 2001 is 937?
columns: - name: growth_rate_1991_01 type: VARCHAR - name: "sex_ratio_\u2021_2001" type: VARCHAR table: table_19589113_5
SELECT growth_rate_1991_01 FROM table_19589113_5 WHERE sex_ratio_‡_2001 = 937
How many figures are there for Rank 07-11 when the world ranking is 4?
columns: - name: rank_07_11 type: VARCHAR - name: world_ranking type: VARCHAR table: table_167354_2
SELECT COUNT(rank_07_11) FROM table_167354_2 WHERE world_ranking = "4"
What's the total number of gold where the total is less than 23 and the rank is over 10?
columns: - name: gold type: VARCHAR - name: total type: VARCHAR - name: rank type: VARCHAR table: table_name_96
SELECT COUNT(gold) FROM table_name_96 WHERE total < 23 AND rank > 10
When the VFL played Victoria Park what was the home team score?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_11
SELECT home_team AS score FROM table_name_11 WHERE venue = "victoria park"
What is the game that has the phoenix suns as the opponent played against?
columns: - name: result type: VARCHAR - name: opponent type: VARCHAR table: table_name_72
SELECT result FROM table_name_72 WHERE opponent = "phoenix suns"
How many districts had an depravity level of 27.7
columns: - name: district type: VARCHAR - name: income_poverty_f type: VARCHAR table: table_13618358_1
SELECT COUNT(district) FROM table_13618358_1 WHERE income_poverty_f = "27.7"
What is the production code for the episode that had 1.32 million U.S. viewers?
columns: - name: production_code type: VARCHAR - name: us_viewers__million_ type: VARCHAR table: table_22347090_6
SELECT production_code FROM table_22347090_6 WHERE us_viewers__million_ = "1.32"
What is the average of the Series #s that were directed by Matthew Penn?
columns: - name: series__number type: INTEGER - name: directed_by type: VARCHAR table: table_name_42
SELECT AVG(series__number) FROM table_name_42 WHERE directed_by = "matthew penn"
What is the Location when the team was seve ballesteros & manuel piñero?
columns: - name: location type: VARCHAR - name: team type: VARCHAR table: table_name_61
SELECT location FROM table_name_61 WHERE team = "seve ballesteros & manuel piñero"
What is the name of the parish that has a former local authority of St Neots urban district?
columns: - name: name type: VARCHAR - name: former_local_authority type: VARCHAR table: table_name_71
SELECT name FROM table_name_71 WHERE former_local_authority = "st neots urban district"
What is the current map designation of the feature for which derain crater was the namesake?
columns: - name: current_map type: VARCHAR - name: namesake type: VARCHAR table: table_name_25
SELECT current_map FROM table_name_25 WHERE namesake = "derain crater"
How many times did drinking games win the poll?
columns: - name: _number type: VARCHAR - name: poll_winner type: VARCHAR table: table_15781170_3
SELECT COUNT(_number) FROM table_15781170_3 WHERE poll_winner = "Drinking Games"
what is the date the high assists was andre miller (7)?
columns: - name: date type: VARCHAR - name: high_assists type: VARCHAR table: table_27734769_8
SELECT date FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)"
Where did Richmond play as the away team?
columns: - name: venue type: VARCHAR - name: away_team type: VARCHAR table: table_name_51
SELECT venue FROM table_name_51 WHERE away_team = "richmond"
Who's the Writer with an Original Airdate of september 4, 2005 (hbo)?
columns: - name: writer type: VARCHAR - name: original_airdate type: VARCHAR table: table_name_91
SELECT writer FROM table_name_91 WHERE original_airdate = "september 4, 2005 (hbo)"
Which 2010 has a 2002 of 2r?
columns: - name: Id type: VARCHAR table: table_name_20
SELECT 2010 FROM table_name_20 WHERE 2002 = "2r"
What is the largest number for karianne gulliksen?
columns: - name: karianne_gulliksen type: INTEGER table: table_28677723_5
SELECT MAX(karianne_gulliksen) FROM table_28677723_5
Who won the III Coppa Acerbo title?
columns: - name: driver_s type: VARCHAR - name: race_title type: VARCHAR table: table_name_67
SELECT driver_s FROM table_name_67 WHERE race_title = "iii coppa acerbo"
What kind of car has the NASCAR Camping World Truck Series record?
columns: - name: car_make type: VARCHAR - name: record type: VARCHAR table: table_name_7
SELECT car_make FROM table_name_7 WHERE record = "nascar camping world truck series"
Which City has a Date of may 19, 1976?
columns: - name: city type: VARCHAR - name: date type: VARCHAR table: table_name_23
SELECT city FROM table_name_23 WHERE date = "may 19, 1976"
Which ERP W is the lowest one that has a Frequency MHz of 91.3?
columns: - name: erp_w type: INTEGER - name: frequency_mhz type: VARCHAR table: table_name_58
SELECT MIN(erp_w) FROM table_name_58 WHERE frequency_mhz = 91.3
What was the average points in the quarterfinals domestic cup?
columns: - name: points type: INTEGER - name: domestic_cup type: VARCHAR table: table_name_72
SELECT AVG(points) FROM table_name_72 WHERE domestic_cup = "quarterfinals"
After pick number 158, what is the next round a USC player was picked?
columns: - name: round type: INTEGER - name: school type: VARCHAR - name: pick type: VARCHAR table: table_name_20
SELECT MIN(round) FROM table_name_20 WHERE school = "usc" AND pick > 158
What dipole moment has a density of 1.092 g/ml?
columns: - name: dipole_moment___d__ type: VARCHAR - name: density type: VARCHAR table: table_name_18
SELECT dipole_moment___d__ FROM table_name_18 WHERE density = "1.092 g/ml"
What was the week 2 before Lara Leverence was week 3?
columns: - name: week_2 type: VARCHAR - name: week_3 type: VARCHAR table: table_name_40
SELECT week_2 FROM table_name_40 WHERE week_3 = "lara leverence"
Which acquisition via has a position of forward and is on the state school or club?
columns: - name: acquisition_via type: VARCHAR - name: position type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_79
SELECT acquisition_via FROM table_name_79 WHERE position = "forward" AND school_club_team = "state"
What is the time/retired when the grid is 19?
columns: - name: time_retired type: VARCHAR - name: grid type: VARCHAR table: table_name_42
SELECT time_retired FROM table_name_42 WHERE grid = "19"
Who played 20 questions during the issue in which Pamela Horton is on the cover?
columns: - name: cover_model type: VARCHAR table: table_24425491_3
SELECT 20 AS _questions FROM table_24425491_3 WHERE cover_model = "Pamela Horton"
What is the maximum miles per hour recorded when the CHI (Carvill Hurricane Index) is equal to 13.5
columns: - name: v_mph_ type: INTEGER - name: chi type: VARCHAR table: table_15416002_1
SELECT MAX(v_mph_) FROM table_15416002_1 WHERE chi = "13.5"
Who has a Construction of 1870, foochow navy yard, and a Name (Wade Giles) of fu-hsing?
columns: - name: characters type: VARCHAR - name: construction type: VARCHAR - name: name__wade_giles_ type: VARCHAR table: table_name_1
SELECT characters FROM table_name_1 WHERE construction = "1870, foochow navy yard" AND name__wade_giles_ = "fu-hsing"
Which school left in 1968 and has the team name of Panthers?
columns: - name: school type: VARCHAR - name: team_name type: VARCHAR - name: year_left type: VARCHAR table: table_name_81
SELECT school FROM table_name_81 WHERE team_name = "panthers" AND year_left = "1968"
When Princeton was the regular season winner, who was the tournament winner?
columns: - name: tournament_winner type: VARCHAR - name: regular_season_winner type: VARCHAR table: table_22733636_1
SELECT tournament_winner FROM table_22733636_1 WHERE regular_season_winner = "Princeton"
Can you tell me the Competing entities that has the First held smaller than 1970?
columns: - name: competing_entities type: VARCHAR - name: first_held type: INTEGER table: table_name_4
SELECT competing_entities FROM table_name_4 WHERE first_held < 1970
Who was the Opponent when the Attendance was 38,150?
columns: - name: opponent type: VARCHAR - name: attendance type: VARCHAR table: table_name_25
SELECT opponent FROM table_name_25 WHERE attendance = "38,150"
What is the location of game 7?
columns: - name: location type: VARCHAR - name: game type: VARCHAR table: table_name_1
SELECT location FROM table_name_1 WHERE game = 7
What is the maximum elevation in netherlands?
columns: - name: maximum_elevation type: VARCHAR - name: country_or_region type: VARCHAR table: table_24285393_1
SELECT maximum_elevation FROM table_24285393_1 WHERE country_or_region = "Netherlands"
Which tournament has a hard surface and final opponents rohan bopanna & mustafa ghouse?
columns: - name: tournament type: VARCHAR - name: surface type: VARCHAR - name: opponents_in_the_final type: VARCHAR table: table_name_19
SELECT tournament FROM table_name_19 WHERE surface = "hard" AND opponents_in_the_final = "rohan bopanna & mustafa ghouse"
Which venue is in the city of Villanova?
columns: - name: venue type: VARCHAR - name: city type: VARCHAR table: table_name_3
SELECT venue FROM table_name_3 WHERE city = "villanova"
What is the English translation of 哀郢?
columns: - name: english_translation type: VARCHAR - name: traditional_chinese type: VARCHAR table: table_1805919_1
SELECT english_translation FROM table_1805919_1 WHERE traditional_chinese = "哀郢"
What is the sum of Runners-Up, when Champions is greater than 5?
columns: - name: runners_up type: INTEGER - name: champions type: INTEGER table: table_name_2
SELECT SUM(runners_up) FROM table_name_2 WHERE champions > 5
What is the title of the episode with production code 2alf03?
columns: - name: title type: VARCHAR - name: production_code type: VARCHAR table: table_26199130_1
SELECT title FROM table_26199130_1 WHERE production_code = "2ALF03"
How many different total number of transit passengers are there in London Luton?
columns: - name: transit_passengers type: VARCHAR - name: airport type: VARCHAR table: table_13836704_7
SELECT COUNT(transit_passengers) FROM table_13836704_7 WHERE airport = "London Luton"
When did they play the swindon wildcats away?
columns: - name: date type: VARCHAR - name: venue type: VARCHAR - name: opponent type: VARCHAR table: table_name_14
SELECT date FROM table_name_14 WHERE venue = "away" AND opponent = "swindon wildcats"
What is the total when matches is less than 3, and rank is smaller than 2?
columns: - name: total type: INTEGER - name: matches type: VARCHAR - name: rank type: VARCHAR table: table_name_41
SELECT MIN(total) FROM table_name_41 WHERE matches < 3 AND rank < 2
What venue did Richmond play as the away team?
columns: - name: venue type: VARCHAR - name: away_team type: VARCHAR table: table_name_29
SELECT venue FROM table_name_29 WHERE away_team = "richmond"
Which Award has a nominated, and outstanding choreography?
columns: - name: award type: VARCHAR - name: result type: VARCHAR - name: category type: VARCHAR table: table_name_92
SELECT award FROM table_name_92 WHERE result = "nominated" AND category = "outstanding choreography"
What is the highest silver that has 57 as the total, with a bronze greater than 20?
columns: - name: silver type: INTEGER - name: total type: VARCHAR - name: bronze type: VARCHAR table: table_name_82
SELECT MAX(silver) FROM table_name_82 WHERE total = 57 AND bronze > 20
What are McCain's Percent when Obama has 36.47%?
columns: - name: mccain_percentage type: VARCHAR - name: obama_percentage type: VARCHAR table: table_20688030_1
SELECT mccain_percentage FROM table_20688030_1 WHERE obama_percentage = "36.47%"
What is Brian Gay's place?
columns: - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_77
SELECT place FROM table_name_77 WHERE player = "brian gay"
What is every value for change% for area of 1835.01?
columns: - name: change___percentage_ type: VARCHAR - name: "area__km\xB2_" type: VARCHAR table: table_26321719_1
SELECT change___percentage_ FROM table_26321719_1 WHERE area__km²_ = "1835.01"
What is the Label of the CD released in Germany on June 6, 2005?
columns: - name: label type: VARCHAR - name: format type: VARCHAR - name: date type: VARCHAR - name: region type: VARCHAR table: table_name_8
SELECT label FROM table_name_8 WHERE date = "june 6, 2005" AND region = "germany" AND format = "cd"
What group has a Population of see hoy?
columns: - name: group type: VARCHAR - name: population type: VARCHAR table: table_name_23
SELECT group FROM table_name_23 WHERE population = "see hoy"
Name the most male life expectancy for pakistan
columns: - name: male_life_expectancy type: INTEGER - name: country type: VARCHAR table: table_2701625_1
SELECT MAX(male_life_expectancy) FROM table_2701625_1 WHERE country = "Pakistan"
What is the sum of draws for teams with against of 1731 and under 10 losses?
columns: - name: draws type: INTEGER - name: against type: VARCHAR - name: losses type: VARCHAR table: table_name_67
SELECT SUM(draws) FROM table_name_67 WHERE against = 1731 AND losses < 10
Name the london great britain for championship record
columns: - name: london_ type: VARCHAR - name: _great_britain type: VARCHAR - name: world_record type: VARCHAR table: table_23619492_3
SELECT london_, _great_britain FROM table_23619492_3 WHERE world_record = "Championship record"
who is the driver with the engine era 1.5 l6 s and the chassis is era b?
columns: - name: driver type: VARCHAR - name: engine type: VARCHAR - name: chassis type: VARCHAR table: table_name_17
SELECT driver FROM table_name_17 WHERE engine = "era 1.5 l6 s" AND chassis = "era b"
what was the maxiumum for the first elected?
columns: - name: first_elected type: INTEGER table: table_1342270_24
SELECT MAX(first_elected) FROM table_1342270_24
What is Name when Qual 2 is 1:15.582?
columns: - name: name type: VARCHAR - name: qual_2 type: VARCHAR table: table_name_36
SELECT name FROM table_name_36 WHERE qual_2 = "1:15.582"
What team was the away team when they played at lake oval?
columns: - name: away_team type: VARCHAR - name: venue type: VARCHAR table: table_name_84
SELECT away_team AS score FROM table_name_84 WHERE venue = "lake oval"
What is the name of feature with a longitude 246.0e?
columns: - name: name type: VARCHAR - name: longitude type: VARCHAR table: table_16799784_14
SELECT name FROM table_16799784_14 WHERE longitude = "246.0E"
What is the highest Against for a game against Bristol City?
columns: - name: against type: INTEGER - name: opposing_team type: VARCHAR table: table_name_7
SELECT MAX(against) FROM table_name_7 WHERE opposing_team = "bristol city"
Who's the Socialist ticket with a Socialist Labor ticket of charles m. carlson?
columns: - name: socialist_ticket type: VARCHAR - name: socialist_labor_ticket type: VARCHAR table: table_name_89
SELECT socialist_ticket FROM table_name_89 WHERE socialist_labor_ticket = "charles m. carlson"
What's the location of the National event with Kevin Martin winning?
columns: - name: location type: VARCHAR - name: winning_skip type: VARCHAR - name: event type: VARCHAR table: table_name_49
SELECT location FROM table_name_49 WHERE winning_skip = "kevin martin" AND event = "the national"
Name the total number of years where runner-up and championship is us open
columns: - name: year type: VARCHAR - name: outcome type: VARCHAR - name: championship type: VARCHAR table: table_1547951_3
SELECT COUNT(year) FROM table_1547951_3 WHERE outcome = "Runner-up" AND championship = "US Open"
What is the result on November 1, 1992?
columns: - name: result type: VARCHAR - name: date type: VARCHAR table: table_name_53
SELECT result FROM table_name_53 WHERE date = "november 1, 1992"
Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9?
columns: - name: matches type: INTEGER - name: goals type: VARCHAR - name: rank type: VARCHAR table: table_name_7
SELECT SUM(matches) FROM table_name_7 WHERE goals = 103 AND rank > 9
What is the Set 1 with a Set 2 of 15–5, and a Set 3 with 15–3?
columns: - name: set_1 type: VARCHAR - name: set_2 type: VARCHAR - name: set_3 type: VARCHAR table: table_name_6
SELECT set_1 FROM table_name_6 WHERE set_2 = "15–5" AND set_3 = "15–3"
Which station has park & ride lot parking?
columns: - name: stations type: VARCHAR - name: parking type: VARCHAR table: table_2093995_1
SELECT stations FROM table_2093995_1 WHERE parking = "Park & Ride Lot"
On what date was the 4th round, with home team Itabuna, played?
columns: - name: date type: VARCHAR - name: round type: VARCHAR - name: home_team type: VARCHAR table: table_name_4
SELECT date FROM table_name_4 WHERE round = "4th" AND home_team = "itabuna"
What is the total of rank when gold is 2 and total is more than 4?
columns: - name: rank type: INTEGER - name: gold type: VARCHAR - name: total type: VARCHAR table: table_name_99
SELECT SUM(rank) FROM table_name_99 WHERE gold = 2 AND total > 4
What is the highest number of byes when draws are larger than 0?
columns: - name: byes type: INTEGER - name: draws type: INTEGER table: table_name_37
SELECT MAX(byes) FROM table_name_37 WHERE draws > 0
What rank has a population of 4839400?
columns: - name: rank type: INTEGER - name: population type: VARCHAR table: table_name_87
SELECT MIN(rank) FROM table_name_87 WHERE population = "4839400"
How many games have a Result of 4–0, and an Attendance larger than 12,256?
columns: - name: game type: VARCHAR - name: result type: VARCHAR - name: attendance type: VARCHAR table: table_name_29
SELECT COUNT(game) FROM table_name_29 WHERE result = "4–0" AND attendance > 12 OFFSET 256
what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5?
columns: - name: seats_2006 type: INTEGER - name: parties_and_voter_communities type: VARCHAR - name: _percentage_2006 type: VARCHAR table: table_name_33
SELECT SUM(seats_2006) FROM table_name_33 WHERE parties_and_voter_communities = "voter turnout in %" AND _percentage_2006 > 51.5
WHAT IS THE POSITION WITH A ROUND LARGER THAN 6, AND OVERALL OF 191?
columns: - name: position type: VARCHAR - name: round type: VARCHAR - name: overall type: VARCHAR table: table_name_9
SELECT position FROM table_name_9 WHERE round > 6 AND overall = 191
Can you tell me the average Total that had the Silver of 0, and the Rank of 6, and the Gold smaller than 0?
columns: - name: total type: INTEGER - name: gold type: VARCHAR - name: silver type: VARCHAR - name: rank type: VARCHAR table: table_name_92
SELECT AVG(total) FROM table_name_92 WHERE silver = 0 AND rank = "6" AND gold < 0
In how many different years did the race happen on February 27?
columns: - name: year type: VARCHAR - name: date type: VARCHAR table: table_2241101_1
SELECT COUNT(year) FROM table_2241101_1 WHERE date = "February 27"
What is the Gecko value for the item that has a Prince XML value of 'no' and a KHTML value of 'yes'?
columns: - name: gecko type: VARCHAR - name: prince_xml type: VARCHAR - name: khtml type: VARCHAR table: table_name_6
SELECT gecko FROM table_name_6 WHERE prince_xml = "yes" AND khtml = "yes"
WHen jaime aff and christine langner are the performers what is the subject?
columns: - name: subject type: VARCHAR - name: performed_by type: VARCHAR table: table_191105_3
SELECT subject FROM table_191105_3 WHERE performed_by = "Jaime Aff and Christine Langner"
If the district is Virginia 8, who is the Incumbent?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_2668416_18
SELECT incumbent FROM table_2668416_18 WHERE district = "Virginia 8"
What is the smallest number of points with an Engine of climax v8, and a Year of 1966?
columns: - name: points type: INTEGER - name: engine type: VARCHAR - name: year type: VARCHAR table: table_name_87
SELECT MIN(points) FROM table_name_87 WHERE engine = "climax v8" AND year = 1966
Name the last time for club of newell's old boys
columns: - name: last_title type: VARCHAR - name: club type: VARCHAR table: table_name_11
SELECT last_title FROM table_name_11 WHERE club = "newell's old boys"
What is the title of #33?
columns: - name: title type: VARCHAR - name: season__number type: VARCHAR table: table_25800134_4
SELECT title FROM table_25800134_4 WHERE season__number = 33
What is the second leg that has kk bosna?
columns: - name: team__number1 type: VARCHAR table: table_name_49
SELECT 2 AS nd_leg FROM table_name_49 WHERE team__number1 = "kk bosna"
What is the Week of the game with a Result of w 48–20?
columns: - name: week type: VARCHAR - name: result type: VARCHAR table: table_name_58
SELECT week FROM table_name_58 WHERE result = "w 48–20"
How many Years have Ratings of 10.9/23?
columns: - name: year type: VARCHAR - name: ratings type: VARCHAR table: table_name_7
SELECT COUNT(year) FROM table_name_7 WHERE ratings = "10.9/23"