answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT year FROM table_name_5 WHERE tournament = "world half marathon championships" AND result = "3rd"
CREATE TABLE table_name_5 (year VARCHAR, tournament VARCHAR, result VARCHAR)
What was the year of the World Half Marathon Championships with a result of 3rd?
SELECT result FROM table_name_67 WHERE year = 2001
CREATE TABLE table_name_67 (result VARCHAR, year VARCHAR)
What was the result of the tournament in 2001?
SELECT AVG(capacity) FROM table_name_89 WHERE navigator = "macneall"
CREATE TABLE table_name_89 (capacity INTEGER, navigator VARCHAR)
What is the average capacity for the vehicle having a navigator of Macneall?
SELECT vehicle FROM table_name_8 WHERE class = "cm14"
CREATE TABLE table_name_8 (vehicle VARCHAR, class VARCHAR)
Which vehicle had a class of CM14?
SELECT driver FROM table_name_86 WHERE class = "cm22" AND navigator = "macneall"
CREATE TABLE table_name_86 (driver VARCHAR, class VARCHAR, navigator VARCHAR)
Who was the driver of the vehicle having class of CM22 and navigator of Macneall?
SELECT total_time FROM table_name_79 WHERE navigator = "vandenberg"
CREATE TABLE table_name_79 (total_time VARCHAR, navigator VARCHAR)
What is the total time of the vehicle having a navigator of Vandenberg?
SELECT AVG(bronze) FROM table_name_86 WHERE gold > 2 AND total < 14 AND silver = 4
CREATE TABLE table_name_86 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)
What is the bronze with more than 2 gold and less than 14 total and 4 silver?
SELECT SUM(silver) FROM table_name_83 WHERE total = 11
CREATE TABLE table_name_83 (silver INTEGER, total VARCHAR)
How many silvers are there with a total of 11?
SELECT COUNT(silver) FROM table_name_81 WHERE gold > 2 AND nation = "germany"
CREATE TABLE table_name_81 (silver VARCHAR, gold VARCHAR, nation VARCHAR)
How many silvers are there with more than 2 golds in Germany?
SELECT AVG(reaction) FROM table_name_53 WHERE heat > 1 AND name = "brigitte foster-hylton"
CREATE TABLE table_name_53 (reaction INTEGER, heat VARCHAR, name VARCHAR)
What is the average reaction for brigitte foster-hylton after heat 1?
SELECT round FROM table_name_32 WHERE home_team = "pohang steelers"
CREATE TABLE table_name_32 (round VARCHAR, home_team VARCHAR)
What round did the home team Pohang Steelers play?
SELECT MAX(round) FROM table_name_28 WHERE away_team = "pohang steelers"
CREATE TABLE table_name_28 (round INTEGER, away_team VARCHAR)
What is the latest round for Pohang Steelers as the away team?
SELECT album FROM table_name_51 WHERE remix = "dead guys remix" AND year > 2003
CREATE TABLE table_name_51 (album VARCHAR, remix VARCHAR, year VARCHAR)
what is the album when the remix is dead guys remix and the year is after 2003?
SELECT SUM(pick) FROM table_name_96 WHERE player = "joselito escobar"
CREATE TABLE table_name_96 (pick INTEGER, player VARCHAR)
What is Joselito Escobar's Pick number?
SELECT player FROM table_name_67 WHERE college = "east" AND pick = 3
CREATE TABLE table_name_67 (player VARCHAR, college VARCHAR, pick VARCHAR)
What is the Pick 3 Player from East College?
SELECT pba_team FROM table_name_96 WHERE college = "ateneo de manila"
CREATE TABLE table_name_96 (pba_team VARCHAR, college VARCHAR)
What is Ateneo de Manila's PBA Team?
SELECT college FROM table_name_65 WHERE pick < 3 AND pba_team = "alaska milkmen"
CREATE TABLE table_name_65 (college VARCHAR, pick VARCHAR, pba_team VARCHAR)
What is the College of the Player from PBA Team Alaska Milkmen with a Pick number of 3 or less?
SELECT college FROM table_name_31 WHERE pba_team = "san miguel beermen"
CREATE TABLE table_name_31 (college VARCHAR, pba_team VARCHAR)
What is the College of the Player from San Miguel Beermen PBA Team?
SELECT Web AS client FROM table_name_18 WHERE client = "x" AND project = "goto servers vnc java server (gsvncj)"
CREATE TABLE table_name_18 (Web VARCHAR, client VARCHAR, project VARCHAR)
who is the web client when the client is x and the project is goto servers vnc java server (gsvncj)?
SELECT color_quality FROM table_name_9 WHERE relay = "✓"
CREATE TABLE table_name_9 (color_quality VARCHAR, relay VARCHAR)
what is the color quality when the relay is ✓?
SELECT proxy FROM table_name_59 WHERE image_quality = "✓" AND encryption = "ssl" AND license = "proprietary"
CREATE TABLE table_name_59 (proxy VARCHAR, license VARCHAR, image_quality VARCHAR, encryption VARCHAR)
what is the proxy when the image quality is ✓, the encryption is ssl and the license is proprietary?
SELECT image_quality FROM table_name_32 WHERE multiple_sessions = "x" AND authentication = "✓" AND date = "may 15, 2007"
CREATE TABLE table_name_32 (image_quality VARCHAR, date VARCHAR, multiple_sessions VARCHAR, authentication VARCHAR)
what is the image quality when the multiple sessions is x, the authentication is ✓ and the date is may 15, 2007?
SELECT cores FROM table_name_76 WHERE l3_cache = "8 mb" AND model_number = "core i7-860"
CREATE TABLE table_name_76 (cores VARCHAR, l3_cache VARCHAR, model_number VARCHAR)
What is listed for the Cores that has the L3 cache of 8 MB and Model number of Core i7-860?
SELECT memory FROM table_name_32 WHERE turbo = "2/2/4/5" AND release_date = "may 2010"
CREATE TABLE table_name_32 (memory VARCHAR, turbo VARCHAR, release_date VARCHAR)
What Memory has a Turbo of 2/2/4/5 and the Release date of May 2010?
SELECT model_number FROM table_name_30 WHERE sspec_number = "slbjg(b1)"
CREATE TABLE table_name_30 (model_number VARCHAR, sspec_number VARCHAR)
What Model number has the sSpec numebr of SLBJG(B1)?
SELECT turbo FROM table_name_29 WHERE release_price___usd__ = "$583"
CREATE TABLE table_name_29 (turbo VARCHAR, release_price___usd__ VARCHAR)
What Turbo has the Release price (USD) of $583?
SELECT MIN(prominence__m_) FROM table_name_87 WHERE elevation__m_ = 3 OFFSET 615
CREATE TABLE table_name_87 (prominence__m_ INTEGER, elevation__m_ VARCHAR)
What is the lowest prominence for a peak with elevation of 3,615 meters?
SELECT COUNT(col__m_) FROM table_name_86 WHERE elevation__m_ = 2 OFFSET 308
CREATE TABLE table_name_86 (col__m_ VARCHAR, elevation__m_ VARCHAR)
What is the Col entry for the peak with an elevation of 2,308 meters?
SELECT actor FROM table_name_64 WHERE character = "rachel mckenna"
CREATE TABLE table_name_64 (actor VARCHAR, character VARCHAR)
who is the actor that played rachel mckenna?
SELECT actor FROM table_name_31 WHERE soap_opera = "shortland street" AND years = "1993–1999, 2001–2003, 2007, 2009—"
CREATE TABLE table_name_31 (actor VARCHAR, soap_opera VARCHAR, years VARCHAR)
who is the actor for shortland street for the years 1993–1999, 2001–2003, 2007, 2009—?
SELECT soap_opera FROM table_name_10 WHERE years = "2000–2004, 2005—"
CREATE TABLE table_name_10 (soap_opera VARCHAR, years VARCHAR)
what is the soap opera when the years are 2000–2004, 2005—?
SELECT character FROM table_name_47 WHERE duration = "11 years"
CREATE TABLE table_name_47 (character VARCHAR, duration VARCHAR)
what is the character with the duration of 11 years?
SELECT soap_opera FROM table_name_48 WHERE actor = "elin sogn"
CREATE TABLE table_name_48 (soap_opera VARCHAR, actor VARCHAR)
what is the soap opera for elin sogn?
SELECT station FROM table_name_73 WHERE owned_since = 2011 AND channel___tv___rf__ = "27"
CREATE TABLE table_name_73 (station VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR)
What station was owned since 2011, and a channel (tv/rf) of 27?
SELECT affiliation FROM table_name_58 WHERE owned_since > 1991 AND channel___tv___rf__ = "42"
CREATE TABLE table_name_58 (affiliation VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR)
What affiliation has an owned since larger than 1991, and also has a channel (tv/rf) of 42?
SELECT city_of_license__market FROM table_name_75 WHERE owned_since < 2011 AND affiliation = "abc" AND channel___tv___rf__ = "9 (22)"
CREATE TABLE table_name_75 (city_of_license__market VARCHAR, channel___tv___rf__ VARCHAR, owned_since VARCHAR, affiliation VARCHAR)
What city of license/market has an owned since before 2011,and a affiliation of abc and channel (tv/rf) of 9 (22)?
SELECT SUM(prominence__m_) FROM table_name_69 WHERE elevation__m_ = 2 OFFSET 024
CREATE TABLE table_name_69 (prominence__m_ INTEGER, elevation__m_ VARCHAR)
COunt the sum of Prominence (m) of an Elevation (m) of 2,024?
SELECT AVG(prominence__m_) FROM table_name_9 WHERE col__m_ < 0
CREATE TABLE table_name_9 (prominence__m_ INTEGER, col__m_ INTEGER)
Count the Prominence (m) of Col (m) smaller than 0?
SELECT MIN(col__m_) FROM table_name_50 WHERE peak = "pico basilé" AND prominence__m_ < 3 OFFSET 011
CREATE TABLE table_name_50 (col__m_ INTEGER, peak VARCHAR, prominence__m_ VARCHAR)
Name the lowest Col (m) with a Peak of pico basilé, and a Prominence (m) smaller than 3,011?
SELECT COUNT(week) FROM table_name_81 WHERE tv_time = "fox 4:15et"
CREATE TABLE table_name_81 (week VARCHAR, tv_time VARCHAR)
What is the Week of the game with TV Time of Fox 4:15ET?
SELECT tv_time FROM table_name_51 WHERE date = "december 27, 2003"
CREATE TABLE table_name_51 (tv_time VARCHAR, date VARCHAR)
What is the TV Time of the game on December 27, 2003?
SELECT opponent FROM table_name_97 WHERE attendance = "68,436"
CREATE TABLE table_name_97 (opponent VARCHAR, attendance VARCHAR)
What is the Opponent at the game with Attendance of 68,436?
SELECT attendance FROM table_name_7 WHERE opponent = "cincinnati bengals"
CREATE TABLE table_name_7 (attendance VARCHAR, opponent VARCHAR)
What is the Attendance at the game against the Cincinnati Bengals?
SELECT opponent FROM table_name_86 WHERE week > 3 AND result = "l 10–6"
CREATE TABLE table_name_86 (opponent VARCHAR, week VARCHAR, result VARCHAR)
What is the Opponent of the game after Week 3 with a Result of L 10–6?
SELECT date FROM table_name_90 WHERE tv_time = "cbs 1:00et" AND result = "w 22–16"
CREATE TABLE table_name_90 (date VARCHAR, tv_time VARCHAR, result VARCHAR)
What is the Date of the Game with a Result of w 22–16 in TV Time of CBS 1:00ET?
SELECT venue FROM table_name_81 WHERE attendance = "47,678"
CREATE TABLE table_name_81 (venue VARCHAR, attendance VARCHAR)
At what Venue was the Attendance 47,678?
SELECT attendance FROM table_name_6 WHERE date = "new zealand scores in bold"
CREATE TABLE table_name_6 (attendance VARCHAR, date VARCHAR)
What is the Attendance of New Zealand Scores in bold?
SELECT lost FROM table_name_55 WHERE drawn = "2" AND bonus_points = "6"
CREATE TABLE table_name_55 (lost VARCHAR, drawn VARCHAR, bonus_points VARCHAR)
What is the number of lost games when 2 were drawn, and there were 6 bonus points?
SELECT bonus_points FROM table_name_28 WHERE drawn = "4"
CREATE TABLE table_name_28 (bonus_points VARCHAR, drawn VARCHAR)
What is the number of bonus points when there are 4 drawn?
SELECT bonus_points FROM table_name_83 WHERE drawn = "2" AND points_against = "599"
CREATE TABLE table_name_83 (bonus_points VARCHAR, drawn VARCHAR, points_against VARCHAR)
What is the number of bonus points when there are 2 drawn and the points against is 599?
SELECT lost FROM table_name_32 WHERE played = "26" AND points = "83"
CREATE TABLE table_name_32 (lost VARCHAR, played VARCHAR, points VARCHAR)
What is the lost number when the team played 26 games and there were 83 points?
SELECT lost FROM table_name_58 WHERE drawn = "2" AND points_against = "572"
CREATE TABLE table_name_58 (lost VARCHAR, drawn VARCHAR, points_against VARCHAR)
What is the lost number for the team with 2 drawn games, and 572 points against?
SELECT bonus_points FROM table_name_63 WHERE drawn = "2" AND points_for = "475"
CREATE TABLE table_name_63 (bonus_points VARCHAR, drawn VARCHAR, points_for VARCHAR)
What is the number of bonus points for the team with 2 drawn games and 475 points?
SELECT transfer_fee FROM table_name_23 WHERE name = "helguera"
CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR)
What is the transfer fee for Helguera?
SELECT transfer_fee FROM table_name_25 WHERE moving_from = "celta de vigo"
CREATE TABLE table_name_25 (transfer_fee VARCHAR, moving_from VARCHAR)
What was the transfer fee when the moving from was celta de Vigo?
SELECT transfer_window FROM table_name_21 WHERE moving_from = "fenerbahçe"
CREATE TABLE table_name_21 (transfer_window VARCHAR, moving_from VARCHAR)
What was the transfer window with a moving from of fenerbahçe?
SELECT nat FROM table_name_97 WHERE moving_from = "espanyol"
CREATE TABLE table_name_97 (nat VARCHAR, moving_from VARCHAR)
What nation had a moving from of espanyol?
SELECT transfer_fee FROM table_name_79 WHERE ends = 2007
CREATE TABLE table_name_79 (transfer_fee VARCHAR, ends VARCHAR)
What was the transfer fee for the player with an ends of 2007?
SELECT series FROM table_name_85 WHERE release_date = "1946-03-16"
CREATE TABLE table_name_85 (series VARCHAR, release_date VARCHAR)
What is the Series of the Filmography with a Release date of 1946-03-16?
SELECT director FROM table_name_76 WHERE production_number = "11-14"
CREATE TABLE table_name_76 (director VARCHAR, production_number VARCHAR)
Who is the Director of the Filmography with Production Number of 11-14?
SELECT series FROM table_name_1 WHERE release_date = "1946-01-05"
CREATE TABLE table_name_1 (series VARCHAR, release_date VARCHAR)
What is the Series of the Filmography with Release date of 1946-01-05?
SELECT series FROM table_name_37 WHERE production_number = "m-4-15"
CREATE TABLE table_name_37 (series VARCHAR, production_number VARCHAR)
What is the Series of the Filmography with a Production Number of M-4-15?
SELECT venue FROM table_name_26 WHERE score = "4-0" AND competition = "2002 tiger cup"
CREATE TABLE table_name_26 (venue VARCHAR, score VARCHAR, competition VARCHAR)
What venue has a score of 4-0 with the 2002 Tiger Cup listed as the competition?
SELECT competition FROM table_name_47 WHERE score = "1-3"
CREATE TABLE table_name_47 (competition VARCHAR, score VARCHAR)
What competition has a score of 1-3?
SELECT competition FROM table_name_32 WHERE date = "november 17, 2003"
CREATE TABLE table_name_32 (competition VARCHAR, date VARCHAR)
What competition listed is dated November 17, 2003?
SELECT venue FROM table_name_4 WHERE date = "february 22, 2003"
CREATE TABLE table_name_4 (venue VARCHAR, date VARCHAR)
What venue listed is dated February 22, 2003?
SELECT venue FROM table_name_88 WHERE competition = "friendly"
CREATE TABLE table_name_88 (venue VARCHAR, competition VARCHAR)
What venue is listed as having a competition titled Friendly?
SELECT notes FROM table_name_24 WHERE time___sec__ > 23.34 AND rank = 8
CREATE TABLE table_name_24 (notes VARCHAR, time___sec__ VARCHAR, rank VARCHAR)
Which Notes have a Time larger than 23.34, and a Rank of 8?
SELECT AVG(week) FROM table_name_68 WHERE date = "december 21, 1969"
CREATE TABLE table_name_68 (week INTEGER, date VARCHAR)
In what week was the December 21, 1969 game?
SELECT opposing_team FROM table_name_14 WHERE venue = "rectory ground, devonport"
CREATE TABLE table_name_14 (opposing_team VARCHAR, venue VARCHAR)
Which Opposing Team has a Venue of rectory ground, devonport?
SELECT date FROM table_name_72 WHERE opposing_team = "mid-districts"
CREATE TABLE table_name_72 (date VARCHAR, opposing_team VARCHAR)
When has an Opposing Team of mid-districts?
SELECT class__old__to_1868 FROM table_name_47 WHERE quantity > 8
CREATE TABLE table_name_47 (class__old__to_1868 VARCHAR, quantity INTEGER)
Can you tell me the Class (old) to 1868 that has the Quantity larger than 8?
SELECT date FROM table_name_20 WHERE year = "2008"
CREATE TABLE table_name_20 (date VARCHAR, year VARCHAR)
What was the date of the Cross Code debut that had an Int'l Debut in the year 2008?
SELECT year FROM table_name_92 WHERE player = "coenraad breytenbach"
CREATE TABLE table_name_92 (year VARCHAR, player VARCHAR)
What year did Coenraad Breytenbach have their Int'l Debut?
SELECT george_h_w_bush FROM table_name_84 WHERE result = "no opinion"
CREATE TABLE table_name_84 (george_h_w_bush VARCHAR, result VARCHAR)
What percent of respondents had no opinion on George H.W. Bush?
SELECT SUM(lane) FROM table_name_91 WHERE time = "dns" AND name = "christian kubusch" AND heat > 2
CREATE TABLE table_name_91 (lane INTEGER, heat VARCHAR, time VARCHAR, name VARCHAR)
What was Christian Kubusch's lane when the heat was more than 2 and time was DNS?
SELECT AVG(lane) FROM table_name_19 WHERE nationality = "bulgaria"
CREATE TABLE table_name_19 (lane INTEGER, nationality VARCHAR)
What's Bulgaria's lane?
SELECT AVG(lane) FROM table_name_40 WHERE nationality = "great britain" AND heat < 3
CREATE TABLE table_name_40 (lane INTEGER, nationality VARCHAR, heat VARCHAR)
What's Great Britain's lane with a heat less than 3?
SELECT AVG(lane) FROM table_name_93 WHERE nationality = "spain" AND heat < 4
CREATE TABLE table_name_93 (lane INTEGER, nationality VARCHAR, heat VARCHAR)
What's Spain's lane with a heat less than 4?
SELECT AVG(heat) FROM table_name_99 WHERE lane < 3 AND time = "14:48.39"
CREATE TABLE table_name_99 (heat INTEGER, lane VARCHAR, time VARCHAR)
What's the heat in the lane less than 3 with a time of 14:48.39?
SELECT SUM(heat) FROM table_name_61 WHERE nationality = "china" AND name = "zhang lin" AND lane > 6
CREATE TABLE table_name_61 (heat INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR)
What's China's heat for Zhang Lin in a lane after 6?
SELECT bronze FROM table_name_72 WHERE year = 1994
CREATE TABLE table_name_72 (bronze VARCHAR, year VARCHAR)
Who won bronze in 1994?
SELECT position FROM table_name_46 WHERE pick < 63 AND college = "oklahoma"
CREATE TABLE table_name_46 (position VARCHAR, pick VARCHAR, college VARCHAR)
Which position was picked before 63, for Oklahoma College?
SELECT college FROM table_name_68 WHERE position = "offensive tackle"
CREATE TABLE table_name_68 (college VARCHAR, position VARCHAR)
Which College has a Position of Offensive Tackle?
SELECT player FROM table_name_21 WHERE balls = 50
CREATE TABLE table_name_21 (player VARCHAR, balls VARCHAR)
Which player had 50 balls?
SELECT release_date FROM table_name_37 WHERE director = "friz freleng" AND production_number > 1496 AND series = "mm" AND title = "apes of wrath"
CREATE TABLE table_name_37 (release_date VARCHAR, title VARCHAR, series VARCHAR, director VARCHAR, production_number VARCHAR)
What date was Apes of Wrath written by Friz Freleng, production number higher than 1496 from series mm released?
SELECT SUM(production_number) FROM table_name_18 WHERE director = "robert mckimson" AND series = "mm" AND title = "people are bunny"
CREATE TABLE table_name_18 (production_number INTEGER, title VARCHAR, director VARCHAR, series VARCHAR)
What is the production number directed by Robert McKimson in series mm titled People Are Bunny?
SELECT series FROM table_name_63 WHERE director = "abe levitow" AND release_date = "1959-06-27"
CREATE TABLE table_name_63 (series VARCHAR, director VARCHAR, release_date VARCHAR)
What was the series of the episode directed by Abe Levitow released on 1959-06-27?
SELECT release_date FROM table_name_93 WHERE production_number < 1495 AND director = "robert mckimson" AND title = "mouse-placed kitten"
CREATE TABLE table_name_93 (release_date VARCHAR, title VARCHAR, production_number VARCHAR, director VARCHAR)
What is the release date of the episode named Mouse-Placed Kitten with an episode number less than 1495 directed by Robert McKimson?
SELECT player FROM table_name_50 WHERE round > 8
CREATE TABLE table_name_50 (player VARCHAR, round INTEGER)
Which Player has a Round larger than 8?
SELECT nationality FROM table_name_25 WHERE player = "tom cassidy"
CREATE TABLE table_name_25 (nationality VARCHAR, player VARCHAR)
What is tom cassidy's nationality?
SELECT college_junior_club_team FROM table_name_7 WHERE pick > 70 AND round < 7
CREATE TABLE table_name_7 (college_junior_club_team VARCHAR, pick VARCHAR, round VARCHAR)
Which College/Junior/Club Team has a Pick larger than 70, and a Round smaller than 7?
SELECT player FROM table_name_87 WHERE round > 8
CREATE TABLE table_name_87 (player VARCHAR, round INTEGER)
Which Player has a Round larger than 8?
SELECT county FROM table_name_74 WHERE location = "edinburgh"
CREATE TABLE table_name_74 (county VARCHAR, location VARCHAR)
Which County has a Location of edinburgh?
SELECT AVG(enrollment) FROM table_name_32 WHERE location = "hope"
CREATE TABLE table_name_32 (enrollment INTEGER, location VARCHAR)
COunt the average Enrollment in hope?
SELECT mascot FROM table_name_10 WHERE ihsaa_class = "aa" AND enrollment > 369
CREATE TABLE table_name_10 (mascot VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)
Which Mascot has IHSAA Class of aa, and a Enrollment larger than 369?
SELECT MIN(league_goals) FROM table_name_1 WHERE league_apps = "1" AND fa_cup_goals > 0
CREATE TABLE table_name_1 (league_goals INTEGER, league_apps VARCHAR, fa_cup_goals VARCHAR)
what is the lowest league goals when the league apps is 1 and the fa cup goals is more than 0?
SELECT MAX(fa_cup_goals) FROM table_name_75 WHERE total_goals > 3 AND total_apps = "31 (1)"
CREATE TABLE table_name_75 (fa_cup_goals INTEGER, total_goals VARCHAR, total_apps VARCHAR)
what is the highest fa cup goals when the total goals is more than 3 and total apps is 31 (1)?
SELECT league_goals FROM table_name_50 WHERE fa_cup_goals > 0 AND fa_cup_apps = "2" AND league_apps = "45"
CREATE TABLE table_name_50 (league_goals VARCHAR, league_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)
what is the league goals when the fa cup goals is higher than 0, the fa cup apps is 2 and the league apps is 45?
SELECT COUNT(total_goals) FROM table_name_40 WHERE total_apps = "1" AND name = "bob mountain" AND fa_cup_goals < 0
CREATE TABLE table_name_40 (total_goals VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, name VARCHAR)
how many times is the total apps 1 and the fa cup goals less than 0 for bob mountain?