question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
For which jockey was the weight in kg 53.5?
CREATE TABLE table_24915874_1 (jockey VARCHAR, weight__kg_ VARCHAR)
SELECT jockey FROM table_24915874_1 WHERE weight__kg_ = "53.5"
Who coached the team in the season with a 6-1 conference record?
CREATE TABLE table_20319085_2 (coach VARCHAR, conference_record VARCHAR)
SELECT coach FROM table_20319085_2 WHERE conference_record = "6-1"
Which Played is the highest one that has an Against smaller than 18, and Points smaller than 10?
CREATE TABLE table_name_92 (played INTEGER, against VARCHAR, points VARCHAR)
SELECT MAX(played) FROM table_name_92 WHERE against < 18 AND points < 10
What is every value on Thursday August 25 for rank 3?
CREATE TABLE table_30058355_3 (thurs_25_aug VARCHAR, rank VARCHAR)
SELECT thurs_25_aug FROM table_30058355_3 WHERE rank = 3
What is the duration of the character Bartha Zsolt?
CREATE TABLE table_name_93 (duration VARCHAR, character VARCHAR)
SELECT duration FROM table_name_93 WHERE character = "bartha zsolt"
Which frequency has 40kw power?
CREATE TABLE table_name_5 (frequency VARCHAR, power__kw_ VARCHAR)
SELECT frequency FROM table_name_5 WHERE power__kw_ = "40kw"
What is the Set 1 with a Set 2 of 15–5, and a Set 3 with 15–3?
CREATE TABLE table_name_6 (set_1 VARCHAR, set_2 VARCHAR, set_3 VARCHAR)
SELECT set_1 FROM table_name_6 WHERE set_2 = "15–5" AND set_3 = "15–3"
What is the cross section area (cm 2) for the moment of intertia in torsion (j) (cm 4) 2.54?
CREATE TABLE table_2071644_1 (cross_section_area__cm_2__ VARCHAR, moment_of_inertia_in_torsion__j___cm_4__ VARCHAR)
SELECT cross_section_area__cm_2__ FROM table_2071644_1 WHERE moment_of_inertia_in_torsion__j___cm_4__ = "2.54"
What is the firefox value with a 1.8% opera on 30 July 2007?
CREATE TABLE table_name_22 (firefox VARCHAR, opera VARCHAR, date VARCHAR)
SELECT firefox FROM table_name_22 WHERE opera = "1.8%" AND date = "30 july 2007"
List the name of the colleges whose enrollment is greater 18000 sorted by the college's name.
CREATE TABLE College (cName VARCHAR, enr INTEGER)
SELECT cName FROM College WHERE enr > 18000 ORDER BY cName
Which city has the cincinnati hockey website?
CREATE TABLE table_16384648_2 (location VARCHAR, team_website VARCHAR)
SELECT location FROM table_16384648_2 WHERE team_website = "Cincinnati Hockey"
What is the s7 4.0 tfsi quattro engine torque?
CREATE TABLE table_21154679_1 (torque VARCHAR, model VARCHAR)
SELECT torque FROM table_21154679_1 WHERE model = "S7 4.0 TFSI quattro"
What's the lowest number of a game where S. Johnson (3) did the most high assists?
CREATE TABLE table_19789597_6 (game INTEGER, high_assists VARCHAR)
SELECT MIN(game) FROM table_19789597_6 WHERE high_assists = "S. Johnson (3)"
What was the finishing time of the stage that featured a distance of 18.25km and a start time of 11:31?
CREATE TABLE table_name_16 (time VARCHAR, distance VARCHAR, start_time VARCHAR)
SELECT time FROM table_name_16 WHERE distance = "18.25km" AND start_time = "11:31"
Which Record has a Score of 4–4, and Points of 17?
CREATE TABLE table_name_91 (record VARCHAR, score VARCHAR, points VARCHAR)
SELECT record FROM table_name_91 WHERE score = "4–4" AND points = 17
What is the total of the first season in Segunda División that has a City of cañete?
CREATE TABLE table_name_44 (first_season_of_current_spell_in_segunda_división INTEGER, city VARCHAR)
SELECT SUM(first_season_of_current_spell_in_segunda_división) FROM table_name_44 WHERE city = "cañete"
Which method has a 1:46 time?
CREATE TABLE table_name_63 (method VARCHAR, time VARCHAR)
SELECT method FROM table_name_63 WHERE time = "1:46"
Name the champion for 2000
CREATE TABLE table_name_52 (champion VARCHAR, year VARCHAR)
SELECT champion FROM table_name_52 WHERE year = "2000"
what is the to par when the score is 67-68-76=211?
CREATE TABLE table_name_42 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_42 WHERE score = 67 - 68 - 76 = 211
Which country won in 1988?
CREATE TABLE table_name_19 (country VARCHAR, year_s__won VARCHAR)
SELECT country FROM table_name_19 WHERE year_s__won = "1988"
Find the total revenue of companies whose revenue is larger than the revenue of some companies based in Austin.
CREATE TABLE manufacturers (revenue INTEGER, headquarter VARCHAR)
SELECT SUM(revenue) FROM manufacturers WHERE revenue > (SELECT MIN(revenue) FROM manufacturers WHERE headquarter = 'Austin')
What is the production code of the episode written by José Molina that aired on October 12, 2004?
CREATE TABLE table_10935548_1 (production_code VARCHAR, written_by VARCHAR, original_air_date VARCHAR)
SELECT production_code FROM table_10935548_1 WHERE written_by = "José Molina" AND original_air_date = "October 12, 2004"
What is the largest week that has t 35-35 as the result?
CREATE TABLE table_name_69 (week INTEGER, result VARCHAR)
SELECT MAX(week) FROM table_name_69 WHERE result = "t 35-35"
Which country has the most of TV Channels? List the country and number of TV Channels it has.
CREATE TABLE TV_Channel (Country VARCHAR)
SELECT Country, COUNT(*) FROM TV_Channel GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1
Spain had what time with lanes smaller than 4?
CREATE TABLE table_name_84 (time VARCHAR, lane VARCHAR, nationality VARCHAR)
SELECT time FROM table_name_84 WHERE lane < 4 AND nationality = "spain"
the episode directed by art dielhenn was what number in the series?
CREATE TABLE table_2818164_8 (no_in_series VARCHAR, directed_by VARCHAR)
SELECT no_in_series FROM table_2818164_8 WHERE directed_by = "Art Dielhenn"
what models are produced where the plant is scarborough?
CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR)
SELECT models_produced FROM table_250309_1 WHERE plant = "Scarborough"
What is the school of the player from Lake Charles, LA?
CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR)
SELECT school FROM table_11677100_18 WHERE hometown = "Lake Charles, LA"
What is 17th c., when American is "ə"?
CREATE TABLE table_name_25 (american VARCHAR)
SELECT 17 AS th_c FROM table_name_25 WHERE american = "ə"
What was the surface for Julie Halard when the final score was 6–3, 6–2?
CREATE TABLE table_name_55 (surface VARCHAR, partner VARCHAR, score_in_the_final VARCHAR)
SELECT surface FROM table_name_55 WHERE partner = "julie halard" AND score_in_the_final = "6–3, 6–2"
tries against correct as of 2007-10-15 has what tries for?
CREATE TABLE table_name_54 (tries_for VARCHAR, tries_against VARCHAR)
SELECT tries_for FROM table_name_54 WHERE tries_against = "correct as of 2007-10-15"
Which Reigns has 92 days held?
CREATE TABLE table_name_53 (reigns VARCHAR, days_held VARCHAR)
SELECT reigns FROM table_name_53 WHERE days_held = 92
how many matches did wayne mardle play
CREATE TABLE table_20301877_2 (played VARCHAR, player VARCHAR)
SELECT COUNT(played) FROM table_20301877_2 WHERE player = "Wayne Mardle"
What horse does todd pletcher ride with odds of 14.20-1?
CREATE TABLE table_name_84 (horse_name VARCHAR, jockey VARCHAR, post_time_odds VARCHAR)
SELECT horse_name FROM table_name_84 WHERE jockey = "todd pletcher" AND post_time_odds = "14.20-1"
What was the outcome of the Tournament of lugano , switzerland wta virginia slims, against bonnie gadusek?
CREATE TABLE table_name_68 (outcome VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT outcome FROM table_name_68 WHERE tournament = "lugano , switzerland wta virginia slims" AND opponent_in_the_final = "bonnie gadusek"
Which College has a Pick # larger than 25, and a Round of 7, and a Name of chris white?
CREATE TABLE table_name_13 (college VARCHAR, name VARCHAR, pick__number VARCHAR, round VARCHAR)
SELECT college FROM table_name_13 WHERE pick__number > 25 AND round = 7 AND name = "chris white"
Who was the skip with 14 stolen ends?
CREATE TABLE table_1644876_2 (skip VARCHAR, stolen_ends VARCHAR)
SELECT skip FROM table_1644876_2 WHERE stolen_ends = 14
What is Brown Motors best point total using the Offenhauser L4 engine since 1950?
CREATE TABLE table_name_72 (points INTEGER, entrant VARCHAR, year VARCHAR, engine VARCHAR)
SELECT MAX(points) FROM table_name_72 WHERE year > 1950 AND engine = "offenhauser l4" AND entrant = "brown motors"
Which college has a pick number of 155?
CREATE TABLE table_name_19 (college VARCHAR, pick__number VARCHAR)
SELECT college FROM table_name_19 WHERE pick__number = 155
What was the number of nominations for natalia raskokoha?
CREATE TABLE table_10236830_1 (nomination VARCHAR, actors_name VARCHAR)
SELECT COUNT(nomination) FROM table_10236830_1 WHERE actors_name = "Natalia Raskokoha"
What is the 2012 value with A in 2007 and qf in 2011?
CREATE TABLE table_name_11 (Id VARCHAR)
SELECT 2012 FROM table_name_11 WHERE 2007 = "a" AND 2011 = "qf"
Who's the incumbent in Florida 6?
CREATE TABLE table_1341453_11 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341453_11 WHERE district = "Florida 6"
What is the total number that has a height of 2.06?
CREATE TABLE table_12962773_13 (no VARCHAR, height VARCHAR)
SELECT COUNT(no) FROM table_12962773_13 WHERE height = "2.06"
If the director is Yannick Bisson, what was the Canadian amount of viewers?
CREATE TABLE table_25640730_7 (canadian_viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT COUNT(canadian_viewers__millions_) FROM table_25640730_7 WHERE directed_by = "Yannick Bisson"
What's the highest frequency of the KBDR callsign?
CREATE TABLE table_name_4 (frequency INTEGER, callsign VARCHAR)
SELECT MAX(frequency) FROM table_name_4 WHERE callsign = "kbdr"
What is Chesterfield Spires average?
CREATE TABLE table_21991074_1 (average VARCHAR, club VARCHAR)
SELECT average FROM table_21991074_1 WHERE club = "Chesterfield Spires"
What is the number for R Bacon in Passaic County?
CREATE TABLE table_name_98 (r_bacon VARCHAR, county VARCHAR)
SELECT r_bacon FROM table_name_98 WHERE county = "passaic"
How many total Gold medals did the nation ranked #3 receive?
CREATE TABLE table_name_22 (gold INTEGER, rank VARCHAR)
SELECT SUM(gold) FROM table_name_22 WHERE rank = "3"
How many aircrafts do we have?
CREATE TABLE Aircraft (Id VARCHAR)
SELECT COUNT(*) FROM Aircraft
Which Speed has a Rank smaller than 9 in kawasaki zx6 600cc Team?
CREATE TABLE table_name_6 (speed VARCHAR, rank VARCHAR, team VARCHAR)
SELECT speed FROM table_name_6 WHERE rank < 9 AND team = "kawasaki zx6 600cc"
What is To par, when Total is less than 148, and when Country is "South Africa"?
CREATE TABLE table_name_7 (to_par VARCHAR, total VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_7 WHERE total < 148 AND country = "south africa"
How many receptions were smaller than 161 receiving yards but also had less than 14 rushing TDs?
CREATE TABLE table_name_6 (receptions VARCHAR, receiving_yards VARCHAR, rushing_tds VARCHAR)
SELECT COUNT(receptions) FROM table_name_6 WHERE receiving_yards < 161 AND rushing_tds < 14
Who was the husband date that was married in 1858?
CREATE TABLE table_name_54 (husband_dates VARCHAR, date_married VARCHAR)
SELECT husband_dates FROM table_name_54 WHERE date_married = "1858"
In which season was the average league attendance 2.572?
CREATE TABLE table_1816947_2 (season INTEGER, average_attendance_league VARCHAR)
SELECT MAX(season) FROM table_1816947_2 WHERE average_attendance_league = "2.572"
Corey Maggette from the United States plays what position?
CREATE TABLE table_name_70 (position VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT position FROM table_name_70 WHERE nationality = "united states" AND player = "corey maggette"
Who has the title and rank 14, and a worldwide gross of $202,292,902?
CREATE TABLE table_name_83 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR)
SELECT title FROM table_name_83 WHERE rank > 14 AND worldwide_gross = "$202,292,902"
What is the sign of Burmese taninganwe တနင်္ဂနွေ?
CREATE TABLE table_name_87 (sign VARCHAR, burmese VARCHAR)
SELECT sign FROM table_name_87 WHERE burmese = "taninganwe တနင်္ဂနွေ"
Which Social Democratic Party has a Green smaller than 0?
CREATE TABLE table_name_10 (social_democratic_party INTEGER, green INTEGER)
SELECT AVG(social_democratic_party) FROM table_name_10 WHERE green < 0
Who was the champion in the tournament where Scott Davis Chris Dunk was the runner up?
CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_29295463_9 WHERE runner_up = "Scott Davis Chris Dunk"
Where was the game played on 2004-06-23?
CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_43 WHERE date = "2004-06-23"
Name the team classification for thomas de gendt
CREATE TABLE table_29077342_19 (team_classification VARCHAR, winner VARCHAR)
SELECT team_classification FROM table_29077342_19 WHERE winner = "Thomas De Gendt"
What was Team 1 Junior's points?
CREATE TABLE table_27603010_14 (points VARCHAR, team__number1 VARCHAR)
SELECT points FROM table_27603010_14 WHERE team__number1 = "Junior"
Name the centerfold model when interview subject is steve jobs
CREATE TABLE table_1566848_6 (centerfold_model VARCHAR, interview_subject VARCHAR)
SELECT centerfold_model FROM table_1566848_6 WHERE interview_subject = "Steve Jobs"
How many friends does the high school student Kyle have?
CREATE TABLE Friend (student_id VARCHAR); CREATE TABLE Highschooler (id VARCHAR, name VARCHAR)
SELECT COUNT(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = "Kyle"
How many points does Swedish America's Cup Challenge have for rr1?
CREATE TABLE table_21515673_2 (rr1_pts VARCHAR, team_name VARCHAR)
SELECT COUNT(rr1_pts) FROM table_21515673_2 WHERE team_name = "Swedish America's Cup Challenge"
What is the average Silver, when Gold is less than 0?
CREATE TABLE table_name_47 (silver INTEGER, gold INTEGER)
SELECT AVG(silver) FROM table_name_47 WHERE gold < 0
Who was the visitor when the record was 24–14–2?
CREATE TABLE table_name_69 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_69 WHERE record = "24–14–2"
Which party is sydney sampson a member of?
CREATE TABLE table_name_10 (party VARCHAR, member VARCHAR)
SELECT party FROM table_name_10 WHERE member = "sydney sampson"
What is the location that had a driver named Pierre de Caters?
CREATE TABLE table_18893428_1 (location VARCHAR, driver VARCHAR)
SELECT location FROM table_18893428_1 WHERE driver = "Pierre de Caters"
Find the number of rooms for each bed type.
CREATE TABLE Rooms (bedType VARCHAR)
SELECT bedType, COUNT(*) FROM Rooms GROUP BY bedType
When did the episode directed by David Duchovny originally air?
CREATE TABLE table_13336122_3 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_13336122_3 WHERE directed_by = "David Duchovny"
Who was the finalist when the MVP was Romain Sato?
CREATE TABLE table_19651669_1 (finalist VARCHAR, mvp VARCHAR)
SELECT finalist FROM table_19651669_1 WHERE mvp = "Romain Sato"
what's the district with incumbent being richard j. welch
CREATE TABLE table_1342359_5 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1342359_5 WHERE incumbent = "Richard J. Welch"
How many members arrived on the main island in week 4?
CREATE TABLE table_11764007_2 (member VARCHAR, week_arrived_on_main_island VARCHAR)
SELECT COUNT(member) FROM table_11764007_2 WHERE week_arrived_on_main_island = "4"
What is the median income for the region where 24.4% pf people make below 60% of the median income?
CREATE TABLE table_25042332_16 (median_income___intl INTEGER, below_60_percentage_of_median_income VARCHAR)
SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE below_60_percentage_of_median_income = "24.4%"
Name the team anthem that was written by quentin eyers and les kaczmarek.
CREATE TABLE table_28243323_1 (name_of_team_song VARCHAR, writer_composer VARCHAR)
SELECT name_of_team_song FROM table_28243323_1 WHERE writer_composer = "Quentin Eyers and Les Kaczmarek"
What is Power, when Identifier is CBEB-FM?
CREATE TABLE table_name_48 (power VARCHAR, identifier VARCHAR)
SELECT power FROM table_name_48 WHERE identifier = "cbeb-fm"
What is the total championships of James Henry that has a league cup more than 1?
CREATE TABLE table_name_4 (championship INTEGER, league_cup VARCHAR, name VARCHAR)
SELECT SUM(championship) FROM table_name_4 WHERE league_cup > 1 AND name = "james henry"
If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?
CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)
SELECT mountains_classification FROM table_15059783_1 WHERE winner = "Alejandro Valverde" AND points_classification = "Erik Zabel"
What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75?
CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ VARCHAR, standard_torque__lb_ft_ VARCHAR, modified_torque__lb_ft_ VARCHAR)
SELECT modified_speed__6th_gear_ FROM table_19704392_1 WHERE standard_torque__lb_ft_ = "10.3" AND modified_torque__lb_ft_ = "8.75"
Where the wins are 46, what is the win%?
CREATE TABLE table_name_9 (win_percentage VARCHAR, wins VARCHAR)
SELECT win_percentage FROM table_name_9 WHERE wins = "46"
What is the to par of player john buczek, who has a t9 place and is from the United States?
CREATE TABLE table_name_36 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_36 WHERE place = "t9" AND country = "united states" AND player = "john buczek"
What outcome has September 23, 2013 as the date?
CREATE TABLE table_name_68 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_68 WHERE date = "september 23, 2013"
What is the lowest Score, when Place is "1"?
CREATE TABLE table_name_32 (score INTEGER, place VARCHAR)
SELECT MIN(score) FROM table_name_32 WHERE place = "1"
Name the first downs for points against being 0
CREATE TABLE table_15607589_2 (first_downs VARCHAR, points_against VARCHAR)
SELECT first_downs FROM table_15607589_2 WHERE points_against = 0
What is the lowest year for stage 12, category 1?
CREATE TABLE table_name_33 (year INTEGER, category VARCHAR, stage VARCHAR)
SELECT MIN(year) FROM table_name_33 WHERE category = "1" AND stage = 12
Name the date with a hard surface and tournament of usa f5, brownsville
CREATE TABLE table_name_83 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_83 WHERE surface = "hard" AND tournament = "usa f5, brownsville"
What is the total listed when the average is 0.667 and the category is 3-pt field goal percentage?
CREATE TABLE table_28628309_9 (totals VARCHAR, average VARCHAR, category VARCHAR)
SELECT totals FROM table_28628309_9 WHERE average = "0.667" AND category = "3-pt field goal percentage"
what's the highest position with artbeingt being frankie avalon
CREATE TABLE table_13805432_2 (highest_position VARCHAR, artist VARCHAR)
SELECT highest_position FROM table_13805432_2 WHERE artist = "Frankie Avalon"
What torque does daewoo have?
CREATE TABLE table_name_18 (torque VARCHAR, type VARCHAR)
SELECT torque FROM table_name_18 WHERE type = "daewoo"
How many items are listed under viewers column when the bbd three weekly ranking was 1?
CREATE TABLE table_24399615_4 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR)
SELECT COUNT(viewers) FROM table_24399615_4 WHERE bbc_three_weekly_ranking = "1"
What is the Record of the game on November 15 against Visitor Chicago Black Hawks with a Score of 1–3?
CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_32 WHERE score = "1–3" AND visitor = "chicago black hawks" AND date = "november 15"
On the Date of March 13, who was the Home team?
CREATE TABLE table_name_96 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_96 WHERE date = "march 13"
How many rushing yards where there when the opponent was Indiana and there was 503 passing yards?
CREATE TABLE table_26108103_2 (rushing_yards VARCHAR, opponent VARCHAR, passing_yards VARCHAR)
SELECT rushing_yards FROM table_26108103_2 WHERE opponent = "Indiana" AND passing_yards = 503
What percent is the lead margin of 25 that Republican: Jeff Beatty has according to poll source Rasmussen Reports?
CREATE TABLE table_name_79 (republican VARCHAR, lead_margin VARCHAR, poll_source VARCHAR)
SELECT republican AS :_jeff_beatty FROM table_name_79 WHERE lead_margin = 25 AND poll_source = "rasmussen reports"
Which Position has Goals against smaller than 59, and Goals for larger than 32, and Draws larger than 9, and Points larger than 35?
CREATE TABLE table_name_90 (position INTEGER, points VARCHAR, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR)
SELECT AVG(position) FROM table_name_90 WHERE goals_against < 59 AND goals_for > 32 AND draws > 9 AND points > 35
Which To par is the lowest one that has a Year(s) won of 1962, 1967, 1972, 1980, and a Total larger than 149?
CREATE TABLE table_name_90 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR)
SELECT MIN(to_par) FROM table_name_90 WHERE year_s__won = "1962, 1967, 1972, 1980" AND total > 149
When in 2009 season has a Group of group b, and cancha del mystic with a Club of el tecal?
CREATE TABLE table_name_17 (club VARCHAR, group VARCHAR, stadium VARCHAR)
SELECT 2009 AS _season FROM table_name_17 WHERE group = "group b" AND stadium = "cancha del mystic" AND club = "el tecal"
What constructor has a grid less than 13 with under 9 laps?
CREATE TABLE table_name_19 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT constructor FROM table_name_19 WHERE grid < 13 AND laps < 9
What's the attendance of the game with a score of 5-4?
CREATE TABLE table_name_52 (attendance VARCHAR, score VARCHAR)
SELECT attendance FROM table_name_52 WHERE score = "5-4"