question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Which was the home team for game 3?
columns: - name: home_team type: VARCHAR - name: game type: VARCHAR table: table_name_14
SELECT home_team FROM table_name_14 WHERE game = "game 3"
What was the par for the t5 place player Steve Jones?
columns: - name: to_par type: VARCHAR - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_16
SELECT to_par FROM table_name_16 WHERE place = "t5" AND player = "steve jones"
What was the highest rank of an area with a population density larger than 5.7 and a 2006–2011 percentage growth of 5.7%?
columns: - name: rank type: INTEGER - name: population_density___km_2__ type: VARCHAR - name: _percentage_growth__2006_11_ type: VARCHAR table: table_name_45
SELECT MAX(rank) FROM table_name_45 WHERE population_density___km_2__ > 5.7 AND _percentage_growth__2006_11_ = "5.7%"
Which Attendance has a Score of 4–3, and Points smaller than 5?
columns: - name: attendance type: INTEGER - name: score type: VARCHAR - name: points type: VARCHAR table: table_name_13
SELECT MAX(attendance) FROM table_name_13 WHERE score = "4–3" AND points < 5
What crew's EVA started on 20 February 20:09?
columns: - name: crew type: VARCHAR - name: start_date_time type: VARCHAR table: table_name_33
SELECT crew FROM table_name_33 WHERE start_date_time = "20 february 20:09"
What is the sum of Round, when Record is "19-25-5"?
columns: - name: round type: INTEGER - name: record type: VARCHAR table: table_name_70
SELECT SUM(round) FROM table_name_70 WHERE record = "19-25-5"
What is the Finish of 28 Wins?
columns: - name: finish type: VARCHAR - name: wins type: VARCHAR table: table_name_8
SELECT finish FROM table_name_8 WHERE wins = "28"
What is the total number of games played that correlates with a first game in 1991, a percentage of 22.22%, and less than 7 losses?
columns: - name: played type: VARCHAR - name: lost type: VARCHAR - name: first_game type: VARCHAR - name: percentage type: VARCHAR table: table_name_22
SELECT COUNT(played) FROM table_name_22 WHERE first_game = 1991 AND percentage = "22.22%" AND lost > 7
What was Juan Manuel Fangio's reported pole position and the tire of C?
columns: - name: report type: VARCHAR - name: pole_position type: VARCHAR - name: tyre type: VARCHAR table: table_name_34
SELECT report FROM table_name_34 WHERE pole_position = "juan manuel fangio" AND tyre = "c"
Who were the candidates when Noah M. Mason was incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1342249_13
SELECT candidates FROM table_1342249_13 WHERE incumbent = "Noah M. Mason"
who is the the judges with seasons and winners being season 1, 2013–2014: upcoming season
columns: - name: judges type: VARCHAR - name: seasons_and_winners type: VARCHAR table: table_13779832_1
SELECT judges FROM table_13779832_1 WHERE seasons_and_winners = "Season 1, 2013–2014: Upcoming season"
When 6.66 is the amount of viewers what is the lowest production code?
columns: - name: production_code type: INTEGER - name: viewers type: VARCHAR table: table_24781886_2
SELECT MIN(production_code) FROM table_24781886_2 WHERE viewers = "6.66"
Which date has a Goal of deacon 4/4, withers 1 dg?
columns: - name: date type: VARCHAR - name: goals type: VARCHAR table: table_name_32
SELECT date FROM table_name_32 WHERE goals = "deacon 4/4, withers 1 dg"
Which Player has 0 Pens and 12 Starts?
columns: - name: player type: VARCHAR - name: pens type: VARCHAR - name: start type: VARCHAR table: table_name_42
SELECT player FROM table_name_42 WHERE pens = "0" AND start = "12"
Who was the home team when the away team was Hawthorn?
columns: - name: home_team type: VARCHAR - name: away_team type: VARCHAR table: table_name_15
SELECT home_team FROM table_name_15 WHERE away_team = "hawthorn"
Name the week for december 4, 2009
columns: - name: week type: VARCHAR - name: date type: VARCHAR table: table_name_80
SELECT week FROM table_name_80 WHERE date = "december 4, 2009"
Location of hemisfair arena had what record?
columns: - name: record type: VARCHAR - name: location type: VARCHAR table: table_name_43
SELECT record FROM table_name_43 WHERE location = "hemisfair arena"
What is the Week number on December 18, 1960?
columns: - name: week type: VARCHAR - name: date type: VARCHAR table: table_name_17
SELECT COUNT(week) FROM table_name_17 WHERE date = "december 18, 1960"
Name the entrant for chassis of gh1
columns: - name: entrant type: VARCHAR - name: chassis type: VARCHAR table: table_name_27
SELECT entrant FROM table_name_27 WHERE chassis = "gh1"
What's the release price of a processor that has a frequency of 3.2 ghz and 1 × 6.4 gt/s qpi I/O?
columns: - name: release_price___usd__ type: VARCHAR - name: frequency type: VARCHAR - name: i_o_bus type: VARCHAR table: table_name_76
SELECT release_price___usd__ FROM table_name_76 WHERE frequency = "3.2 ghz" AND i_o_bus = "1 × 6.4 gt/s qpi"
Who got the loss for the game ending in a record of 55-41?
columns: - name: loss type: VARCHAR - name: record type: VARCHAR table: table_name_74
SELECT loss FROM table_name_74 WHERE record = "55-41"
What is the name of the Leftfielder when the Shortstop was bill russell, and the Second Baseman was steve sax in 1983?
columns: - name: leftfielder type: VARCHAR - name: year type: VARCHAR - name: shortstop type: VARCHAR - name: second_baseman type: VARCHAR table: table_name_25
SELECT leftfielder FROM table_name_25 WHERE shortstop = "bill russell" AND second_baseman = "steve sax" AND year = 1983
Name the home with visitor of kings
columns: - name: home type: VARCHAR - name: visitor type: VARCHAR table: table_name_81
SELECT home FROM table_name_81 WHERE visitor = "kings"
what is the result where the candidates is robert l. f. sikes (d) unopposed?
columns: - name: result type: VARCHAR - name: candidates type: VARCHAR table: table_1341672_10
SELECT result FROM table_1341672_10 WHERE candidates = "Robert L. F. Sikes (D) Unopposed"
What is Score, when Player is "Ernie Els"?
columns: - name: score type: VARCHAR - name: player type: VARCHAR table: table_name_15
SELECT score FROM table_name_15 WHERE player = "ernie els"
What is the Catalog number of the CD Reissue Universal release?
columns: - name: catalog type: VARCHAR - name: format type: VARCHAR - name: label type: VARCHAR table: table_name_79
SELECT catalog FROM table_name_79 WHERE format = "cd reissue" AND label = "universal"
Which country won in 1986?
columns: - name: country type: VARCHAR - name: year_s__won type: VARCHAR table: table_name_59
SELECT country FROM table_name_59 WHERE year_s__won = "1986"
What is Joanne Carner's average score in Canadian Women's Open games that she has won?
columns: - name: score type: INTEGER - name: champion type: VARCHAR table: table_name_70
SELECT AVG(score) FROM table_name_70 WHERE champion = "joanne carner"
Where were the New York Jets visiting?
columns: - name: stadium type: VARCHAR - name: visiting_team type: VARCHAR table: table_name_65
SELECT stadium FROM table_name_65 WHERE visiting_team = "new york jets"
Which region has a date of 1970?
columns: - name: region type: VARCHAR - name: date type: VARCHAR table: table_name_58
SELECT region FROM table_name_58 WHERE date = "1970"
What's the value for utah when colorado and new mexico are bush?
columns: - name: utah type: VARCHAR - name: colorado type: VARCHAR - name: new_mexico type: VARCHAR table: table_name_7
SELECT utah FROM table_name_7 WHERE colorado = "bush" AND new_mexico = "bush"
What is the average number of draws that have a total of 1 and a goal difference of 2:0?
columns: - name: draws type: INTEGER - name: total type: VARCHAR - name: goal_difference type: VARCHAR table: table_name_67
SELECT AVG(draws) FROM table_name_67 WHERE total = 1 AND goal_difference = "2:0"
What date was the ship 'Wyandotte' launched?
columns: - name: launched type: VARCHAR - name: ship type: VARCHAR table: table_name_45
SELECT launched FROM table_name_45 WHERE ship = "wyandotte"
What is the IHSAA class for Crown Point?
columns: - name: ihsaa_class type: VARCHAR - name: school type: VARCHAR table: table_name_98
SELECT ihsaa_class FROM table_name_98 WHERE school = "crown point"
What is the class of the word who's second participle is laug?
columns: - name: class type: VARCHAR - name: part_2 type: VARCHAR table: table_1745843_5
SELECT class FROM table_1745843_5 WHERE part_2 = "laug"
What building is in ljubljana, proposed in 2010, and has 15 floors?
columns: - name: name type: VARCHAR - name: floors type: VARCHAR - name: location type: VARCHAR - name: year_proposed type: VARCHAR table: table_name_21
SELECT name FROM table_name_21 WHERE location = "ljubljana" AND year_proposed = "2010" AND floors = "15"
how much sesamin is in sesame seed?
columns: - name: sesamin type: VARCHAR - name: foodstuff type: VARCHAR table: table_1831262_2
SELECT sesamin FROM table_1831262_2 WHERE foodstuff = "Sesame seed"
Who won the bronze medal in Hiroshima?
columns: - name: bronze type: VARCHAR - name: location type: VARCHAR table: table_name_90
SELECT bronze FROM table_name_90 WHERE location = "hiroshima"
What is the lowest overall money list rank?
columns: - name: money_list_rank type: INTEGER table: table_24330912_1
SELECT MIN(money_list_rank) FROM table_24330912_1
What is the Yogi Bear that aired on 1959.12.21?
columns: - name: yogi_bear type: VARCHAR - name: air_date type: VARCHAR table: table_19860361_3
SELECT yogi_bear FROM table_19860361_3 WHERE air_date = "1959.12.21"
What GLF Premiership did the Magpies have?
columns: - name: gfl_premierships type: VARCHAR - name: nickname type: VARCHAR table: table_name_70
SELECT gfl_premierships FROM table_name_70 WHERE nickname = "magpies"
What city has riverside ground as the venue, with a year prior to 1998?
columns: - name: city type: VARCHAR - name: venue type: VARCHAR - name: year type: VARCHAR table: table_name_16
SELECT city FROM table_name_16 WHERE venue = "riverside ground" AND year < 1998
What is the Location of the Competition with a Rank-Final of 10?
columns: - name: location type: VARCHAR - name: rank_final type: VARCHAR table: table_name_63
SELECT location FROM table_name_63 WHERE rank_final = "10"
Which Date has an Against smaller than 21, and a Status of second test?
columns: - name: date type: VARCHAR - name: against type: VARCHAR - name: status type: VARCHAR table: table_name_37
SELECT date FROM table_name_37 WHERE against < 21 AND status = "second test"
Who was the home team that played against the visiting team Minnesota?
columns: - name: home type: VARCHAR - name: visitor type: VARCHAR table: table_name_63
SELECT home FROM table_name_63 WHERE visitor = "minnesota"
With less than 7 Silver medals, how many Gold medals did Canada receive?
columns: - name: gold type: INTEGER - name: nation type: VARCHAR - name: silver type: VARCHAR table: table_name_30
SELECT MAX(gold) FROM table_name_30 WHERE nation = "canada" AND silver < 7
Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24)
columns: - name: shuji_kondo type: VARCHAR - name: mazada type: VARCHAR - name: ryuji_hijikata type: VARCHAR table: table_name_90
SELECT shuji_kondo FROM table_name_90 WHERE mazada = "x" AND ryuji_hijikata = "hijikata (14:24)"
What country is the IATA BLQ located in?
columns: - name: country type: VARCHAR - name: iata type: VARCHAR table: table_name_68
SELECT country FROM table_name_68 WHERE iata = "blq"
What was the season where Evelyn Smith was on?
columns: - name: original_season type: VARCHAR - name: player type: VARCHAR table: table_18974269_1
SELECT original_season FROM table_18974269_1 WHERE player = "Evelyn Smith"
What's the minimal number of points scored in any game?
columns: - name: points type: INTEGER table: table_23308178_5
SELECT MIN(points) FROM table_23308178_5
When the Mole was Petrina Edge, what was the potential prize money?
columns: - name: potential_prize_money type: VARCHAR - name: mole type: VARCHAR table: table_name_70
SELECT potential_prize_money FROM table_name_70 WHERE mole = "petrina edge"
What was the score for the away team when the home team was richmond?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_75
SELECT away_team AS score FROM table_name_75 WHERE home_team = "richmond"
What was the smallest crowd for a Melbourne away game?
columns: - name: crowd type: INTEGER - name: away_team type: VARCHAR table: table_name_83
SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "melbourne"
What was the opponent in the final when the score was 6–3, 2–6, 7–5?
columns: - name: opponent_in_the_final type: VARCHAR - name: score type: VARCHAR table: table_name_69
SELECT opponent_in_the_final FROM table_name_69 WHERE score = "6–3, 2–6, 7–5"
Who is the replaced by when the date of vacancy is 27 december 2010?
columns: - name: replaced_by type: VARCHAR - name: date_of_vacancy type: VARCHAR table: table_26998135_2
SELECT replaced_by FROM table_26998135_2 WHERE date_of_vacancy = "27 December 2010"
Name the most extra points for john heston
columns: - name: extra_points type: INTEGER - name: player type: VARCHAR table: table_14341967_2
SELECT MAX(extra_points) FROM table_14341967_2 WHERE player = "John Heston"
Which Notes have a Time larger than 23.34, and a Rank of 8?
columns: - name: notes type: VARCHAR - name: time___sec__ type: VARCHAR - name: rank type: VARCHAR table: table_name_24
SELECT notes FROM table_name_24 WHERE time___sec__ > 23.34 AND rank = 8
What's the average amount of Runs that has 40 innings, and Not outs larger than 6?
columns: - name: runs type: INTEGER - name: innings type: VARCHAR - name: not_outs type: VARCHAR table: table_name_70
SELECT AVG(runs) FROM table_name_70 WHERE innings = 40 AND not_outs > 6
Which goverment had a party of yisrael beiteinu?
columns: - name: governments type: VARCHAR - name: party type: VARCHAR table: table_name_60
SELECT governments FROM table_name_60 WHERE party = "yisrael beiteinu"
Which team had a score of 103-96?
columns: - name: team type: VARCHAR - name: score type: VARCHAR table: table_name_29
SELECT team FROM table_name_29 WHERE score = "103-96"
What state has a swimsuit less than 9.277, gown more than 8.944 and preliminary greater than 8.483?
columns: - name: state type: VARCHAR - name: preliminary type: VARCHAR - name: swimsuit type: VARCHAR - name: evening_gown type: VARCHAR table: table_name_19
SELECT state FROM table_name_19 WHERE swimsuit < 9.277 AND evening_gown > 8.944 AND preliminary < 8.483
Who are the writers for the episode number in series 129?
columns: - name: written_by type: VARCHAR - name: no_in_series type: VARCHAR table: table_21312959_1
SELECT written_by FROM table_21312959_1 WHERE no_in_series = 129
What is the 1993 value with a 1r in 1991 and sf in 1990?
columns: - name: Id type: VARCHAR table: table_name_75
SELECT 1993 FROM table_name_75 WHERE 1991 = "1r" AND 1990 = "sf"
Who constructed the car that won the Canadian Grand Prix?
columns: - name: constructor type: VARCHAR - name: grand_prix type: VARCHAR table: table_name_97
SELECT constructor FROM table_name_97 WHERE grand_prix = "canadian grand prix"
Name the high assists for chauncey billups , carmelo anthony (18)
columns: - name: high_assists type: VARCHAR - name: high_points type: VARCHAR table: table_17355408_4
SELECT high_assists FROM table_17355408_4 WHERE high_points = "Chauncey Billups , Carmelo Anthony (18)"
What is the total number of Attempts when Rank was larger than 4, and Net Yds was smaller than 1674?
columns: - name: attempts type: VARCHAR - name: rank type: VARCHAR - name: net_yds type: VARCHAR table: table_name_95
SELECT COUNT(attempts) FROM table_name_95 WHERE rank > 4 AND net_yds < 1674
What is the site of the game with a Record of 6-2?
columns: - name: game_site type: VARCHAR - name: record type: VARCHAR table: table_name_35
SELECT game_site FROM table_name_35 WHERE record = "6-2"
What is the power of the Chassis code w123.130?
columns: - name: power type: VARCHAR - name: chassis_code type: VARCHAR table: table_name_67
SELECT power FROM table_name_67 WHERE chassis_code = "w123.130"
When the year won is 1981, 1987, and the finish is t46, what is the lowest total?
columns: - name: total type: INTEGER - name: finish type: VARCHAR - name: year_s__won type: VARCHAR table: table_name_58
SELECT MIN(total) FROM table_name_58 WHERE finish = "t46" AND year_s__won = "1981, 1987"
Who was the host country when bronze is [[|]] (1) and host city is Krynica?
columns: - name: host_country___countries type: VARCHAR - name: bronze type: VARCHAR - name: host_city___cities type: VARCHAR table: table_name_45
SELECT host_country___countries FROM table_name_45 WHERE bronze = "[[|]] (1)" AND host_city___cities = "krynica"
How many goals were conceded against the Chepo F.C. team where they lost 7 games?
columns: - name: goals_conceded__gc_ type: VARCHAR - name: lost__pp_ type: VARCHAR - name: team__equipo_ type: VARCHAR table: table_name_32
SELECT goals_conceded__gc_ FROM table_name_32 WHERE lost__pp_ = 7 AND team__equipo_ = "chepo f.c."
What athlete has a Grenoble place?
columns: - name: athlete type: VARCHAR - name: place type: VARCHAR table: table_name_96
SELECT athlete FROM table_name_96 WHERE place = "grenoble"
What is the name of the race when Lineth Chepkurui is the athlete?
columns: - name: race type: VARCHAR - name: athlete type: VARCHAR table: table_name_17
SELECT race FROM table_name_17 WHERE athlete = "lineth chepkurui"
what's the pts with team being kopron team scot
columns: - name: pts type: VARCHAR - name: team type: VARCHAR table: table_14139408_1
SELECT pts FROM table_14139408_1 WHERE team = "Kopron team Scot"
What is the latest result where a person from the Philippines won?
columns: - name: year type: INTEGER - name: nation_represented type: VARCHAR table: table_name_72
SELECT MAX(year) FROM table_name_72 WHERE nation_represented = "philippines"
What was the tie number with the home team of Swindon Town?
columns: - name: tie_no type: VARCHAR - name: home_team type: VARCHAR table: table_name_13
SELECT tie_no FROM table_name_13 WHERE home_team = "swindon town"
What's the frequency of the device that has a Multi 1 of 7.5×?
columns: - name: frequency type: VARCHAR - name: multi_1 type: VARCHAR table: table_name_28
SELECT frequency FROM table_name_28 WHERE multi_1 = "7.5×"
What is the second party that has a conservative first party in the 1834 election?
columns: - name: second_party type: VARCHAR - name: first_party type: VARCHAR - name: election type: VARCHAR table: table_name_71
SELECT second_party FROM table_name_71 WHERE first_party = "conservative" AND election = "1834"
What was the score for the player from Scotland?
columns: - name: score type: VARCHAR - name: country type: VARCHAR table: table_name_76
SELECT score FROM table_name_76 WHERE country = "scotland"
In what City was Bulgaria the Opponent with Results¹ of 1:0?
columns: - name: city type: VARCHAR - name: "results\xB9" type: VARCHAR - name: opponent type: VARCHAR table: table_name_6
SELECT city FROM table_name_6 WHERE results¹ = "1:0" AND opponent = "bulgaria"
What was drawn for 6 bonus points and is against 410 points?
columns: - name: drawn type: VARCHAR - name: bonus_points type: VARCHAR - name: points_against type: VARCHAR table: table_name_87
SELECT drawn FROM table_name_87 WHERE bonus_points = "6" AND points_against = "410"
Which Reg Season has a Division of 2?
columns: - name: reg_season type: VARCHAR - name: division type: VARCHAR table: table_name_31
SELECT reg_season FROM table_name_31 WHERE division = 2
Which driver's grid was 24?
columns: - name: driver type: VARCHAR - name: grid type: VARCHAR table: table_name_10
SELECT driver FROM table_name_10 WHERE grid = 24
Which Season was the Division Two Fownhope Reserves champions?
columns: - name: season type: VARCHAR - name: division_two type: VARCHAR table: table_name_92
SELECT season FROM table_name_92 WHERE division_two = "fownhope reserves"
Which Baltimore group is non-enveloped and is of the papillomaviridae family?
columns: - name: baltimore_group type: VARCHAR - name: envelopment type: VARCHAR - name: family type: VARCHAR table: table_name_85
SELECT baltimore_group FROM table_name_85 WHERE envelopment = "non-enveloped" AND family = "papillomaviridae"
What is the largest drawn number when 14 is the position, and goals for is more than 66?
columns: - name: drawn type: INTEGER - name: position type: VARCHAR - name: goals_for type: VARCHAR table: table_name_17
SELECT MAX(drawn) FROM table_name_17 WHERE position = 14 AND goals_for > 66
What Engine has a Finish of 21?
columns: - name: engine type: VARCHAR - name: finish type: VARCHAR table: table_name_68
SELECT engine FROM table_name_68 WHERE finish = "21"
What is the launch date odds of winning 1 in 4.23 with a top prize of $15,000?
columns: - name: launch_date type: VARCHAR - name: odds_of_winning type: VARCHAR - name: top_prize type: VARCHAR table: table_name_30
SELECT launch_date FROM table_name_30 WHERE odds_of_winning = "1 in 4.23" AND top_prize = "$15,000"
What is the callsign that has a station type of relay and a channel number of TV-2?
columns: - name: callsign type: VARCHAR - name: station_type type: VARCHAR - name: ch__number type: VARCHAR table: table_24673888_1
SELECT callsign FROM table_24673888_1 WHERE station_type = "Relay" AND ch__number = "TV-2"
What is the title of the Series 40 Season 5 show?
columns: - name: title type: VARCHAR - name: season__number type: VARCHAR table: table_27911342_1
SELECT title FROM table_27911342_1 WHERE season__number = 5
What is the Location when the opponent shows vs. ole miss, and a Loss of mckean (4-1)?
columns: - name: location type: VARCHAR - name: opponent type: VARCHAR - name: loss type: VARCHAR table: table_name_41
SELECT location FROM table_name_41 WHERE opponent = "vs. ole miss" AND loss = "mckean (4-1)"
How many weeks had an attendance of over 68,000?
columns: - name: week type: VARCHAR - name: attendance type: INTEGER table: table_name_74
SELECT COUNT(week) FROM table_name_74 WHERE attendance > 68 OFFSET 000
What is the average hoop when the all around is less than 9.7?
columns: - name: hoop type: INTEGER - name: all_around type: INTEGER table: table_name_37
SELECT AVG(hoop) FROM table_name_37 WHERE all_around < 9.7
Which points classification shares a general classification of Bernard Hinault, a Trofeo Fast Tem of Bianchi, was won by Urs Freuler, and was stage 4?
columns: - name: points_classification type: VARCHAR - name: stage type: VARCHAR - name: winner type: VARCHAR - name: general_classification type: VARCHAR - name: trofeo_fast_team type: VARCHAR table: table_name_7
SELECT points_classification FROM table_name_7 WHERE general_classification = "bernard hinault" AND trofeo_fast_team = "bianchi" AND winner = "urs freuler" AND stage = "4"
Name the most abama number for mccain being 29266
columns: - name: obama_number type: INTEGER - name: mccain_number type: VARCHAR table: table_20468206_1
SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_number = 29266
How many clubs were founded in belo horizonte?
columns: - name: founded type: VARCHAR - name: city type: VARCHAR table: table_26218124_1
SELECT COUNT(founded) FROM table_26218124_1 WHERE city = "Belo Horizonte"
What is Team (B), when S No is greater than 17?
columns: - name: team__b_ type: VARCHAR - name: s_no type: INTEGER table: table_name_10
SELECT team__b_ FROM table_name_10 WHERE s_no > 17
What is the highest score with a Result of 1–1 on 4 march 2001?
columns: - name: scored type: INTEGER - name: result type: VARCHAR - name: date type: VARCHAR table: table_name_59
SELECT MAX(scored) FROM table_name_59 WHERE result = "1–1" AND date = "4 march 2001"
What is the record when the opposing team was the Pittsburgh Penguins?
columns: - name: record type: VARCHAR - name: opponent type: VARCHAR table: table_23486853_6
SELECT record FROM table_23486853_6 WHERE opponent = "Pittsburgh Penguins"
What is the Total Apps listing for Paul Wilson?
columns: - name: total_apps type: VARCHAR - name: name type: VARCHAR table: table_name_78
SELECT total_apps FROM table_name_78 WHERE name = "paul wilson"