Team Game Stats Finder - Pro Football

Find individual games (or number of games) matching your criteria. • Video TutorialSample SearchesData Coverage
For single games, by the Cincinnati Bengals, against the Tampa Bay Buccaneers, in the regular season, sorted by descending Passing TD.
THIS QUESTION WAS ANSWERED USING
Stathead Football Logo POWERED BY Pro Football Reference Logo
Your All Access Pass to the Pro Football Database Go beyond the basics. Become a Stathead
Start Your FREE Trial
Display Query »
--------------------------------------

main

Page Setup Time: 0.00228 seconds

SELECT ts.name_abbr as team_name_abbr, ts.link as team_link, os.name_abbr as opp_name_abbr, opp_team_link, date, game_id, year_id as year_id_csk, year_id as year_id, IF(home_away_neutral="H","",IF(home_away_neutral="A","@","N")) as game_location, (SELECT points-points_opp+ifnull(points,0)/100 FROM sup_team_games tg2 WHERE tg2.game_id=st.game_id AND tg2.team_id=st.team_id) as game_result_csk, CONCAT((SELECT CONCAT(IF(win=1,'W',IF(loss=1,'L','T')),', ',points,'-',points_opp) FROM sup_team_games tg2 WHERE tg2.game_id=st.game_id AND tg2.team_id=st.team_id),IF(overtimes>0,IF(overtimes>1,CONCAT(' (',overtimes,'OT)'),' (OT)'),'')) as game_result, sup_games.link as game_link, comp_id, LEFT(DAYNAME(`date`), 3) as game_day_of_week, team_game_num_season as game_num, week_num_season as week_num, pass_cmp, pass_att, (pass_att-pass_cmp) AS pass_inc, IF(pass_att, pass_cmp/pass_att, NULL) as pass_cmp_pct_csk, ROUND(100 * (IF(pass_att, pass_cmp/pass_att, NULL)),1) AS pass_cmp_pct, pass_yds, pass_td, pass_int, IF(pass_att, pass_td/pass_att, NULL) as pass_td_pct_csk, ROUND(100 * (IF(pass_att, pass_td/pass_att, NULL)),1) AS pass_td_pct, IF(pass_att, pass_int/pass_att, NULL) as pass_int_pct_csk, ROUND(100 * (IF(pass_att, pass_int/pass_att, NULL)),1) AS pass_int_pct, IF(pass_att = 0, NULL, 
  ROUND(100 *
  (1.0 / 6.0) *
  (LEAST(GREATEST(((pass_cmp / pass_att) - 0.3) / 0.2, 0), 2.375)
  + LEAST(GREATEST((((pass_yds+ifnull(pass_sacked_yds,0))  / pass_att) - 3.0) / 4.0, 0.0), 2.375)
  + LEAST(GREATEST( (pass_td  / pass_att) / 0.05, 0.0), 2.375)
  + LEAST(GREATEST((0.095 - (pass_int / pass_att)) / 0.04, 0.0), 2.375)
  ),
   1)
  ) 
  as pass_rating_csk, ROUND(IF(pass_att = 0, NULL, 
  ROUND(100 *
  (1.0 / 6.0) *
  (LEAST(GREATEST(((pass_cmp / pass_att) - 0.3) / 0.2, 0), 2.375)
  + LEAST(GREATEST((((pass_yds+ifnull(pass_sacked_yds,0))  / pass_att) - 3.0) / 4.0, 0.0), 2.375)
  + LEAST(GREATEST( (pass_td  / pass_att) / 0.05, 0.0), 2.375)
  + LEAST(GREATEST((0.095 - (pass_int / pass_att)) / 0.04, 0.0), 2.375)
  ),
   1)
  ) ,
  1) AS pass_rating, pass_sacked, pass_sacked_yds, IF(pass_sacked IS NULL, NULL, pass_sacked/(pass_sacked+pass_att) ) as pass_sacked_pct_csk, ROUND(100 * (IF(pass_sacked IS NULL, NULL, pass_sacked/(pass_sacked+pass_att) )),2) AS pass_sacked_pct, IF(pass_att, ((pass_yds)/(pass_att)), NULL) as pass_yds_per_att_csk, ROUND(IF(pass_att, ((pass_yds)/(pass_att)), NULL),1) AS pass_yds_per_att, (pass_yds)/(pass_sacked+pass_att) as pass_net_yds_per_att_csk, ROUND((pass_yds)/(pass_sacked+pass_att),2) AS pass_net_yds_per_att, IF(pass_att,((pass_yds + (20.0 * pass_td) - (45.0 * pass_int))/(pass_att)),NULL) as pass_adj_yds_per_att_csk, ROUND(IF(pass_att,((pass_yds + (20.0 * pass_td) - (45.0 * pass_int))/(pass_att)),NULL),2) AS pass_adj_yds_per_att, IF(pass_sacked is NULL,NULL,((pass_yds + (20.0 * pass_td) - (45.0 * pass_int))/(pass_sacked+pass_att))) as pass_adj_net_yds_per_att_csk, ROUND(IF(pass_sacked is NULL,NULL,((pass_yds + (20.0 * pass_td) - (45.0 * pass_int))/(pass_sacked+pass_att))),2) AS pass_adj_net_yds_per_att, IF(pass_cmp, pass_yds/pass_cmp, NULL) as pass_yds_per_cmp_csk, ROUND(IF(pass_cmp, pass_yds/pass_cmp, NULL),1) AS pass_yds_per_cmp
FROM sup_team_games as st
  JOIN sup_games USING (game_id)
  JOIN sup_phase_seasons USING (comp_id, phase_id, year_id)
  JOIN sup_comp_seasons USING (comp_id, year_id)
  JOIN (SELECT team_id, year_id, name_abbr, name, link FROM sup_team_seasons GROUP BY team_id, year_id ) as ts USING (team_id, year_id)
  LEFT JOIN (SELECT team_id as opp_team_id, link as opp_team_link, year_id, name_abbr FROM sup_team_seasons GROUP BY team_id, year_id ) as os USING (opp_team_id, year_id)
WHERE type="reg"
  AND team_id=?
  AND opp_team_id=?
  AND date < current_date() 
ORDER BY pass_td DESC, date DESC, team_id LIMIT 0, 20

SQL PARAMS -- $VAR1 = [
          'cin',
          'tam'
        ];

Query Time: 0.05 seconds
Table Build Time: 0.04 seconds


--------------------------------------
SH->PARAM -- $VAR1 = {
          'team_game_num_season_max' => 17,
          'comp_type' => 'reg',
          'team_id' => 'cin',
          'week_num_season_max' => 22,
          'order_by' => 'pass_td',
          'match' => 'team_game',
          'week_num_season_min' => 1,
          'timeframe' => 'seasons',
          'team_game_num_season_min' => 1,
          'opp_team_id' => 'tam'
        };
SH->PARAM_NO_DEFAULT -- $VAR1 = {
          'opp_team_id' => 'tam',
          'team_id' => 'cin'
        };
Show Criteria
Share Results

Search Criteria

Click on the red text to pre-fill the form with various values

Sort By
Sorting options are only available for subscribers. Sign up now for a free trial.

Total Matching Criteria

Total Matching Criteria

Total Matching Criteria

Timeframe
Your search is currently looking for the individual games in the chosen span of days or seasons. You can also Switch to the search for totals from all games.
Your search is currently looking for the total of all games in the chosen span of days or seasons.
Game Type
Playoff Round
Span of Games
Team Game of Season
Min  
Max  
Week Number of Season
Min  
Max  

Statistical Filters (pts., pts. allowed, total yds., etc.)

x

Team Filters (team, conference, scheme, etc.)

Team
Team Success

Based on team's finish at the end of the season. For 2025 season, based on current standing. For combined season searches, only the seasons that match criteria are included in results. "By Division Finish" will use Conference or League finish when Division is not relevant.

League
Conference
Division
Offensive Scheme
Defensive Alignment

Game Filters (result, location, day, etc...)

Opponent
Opponent Success

Based on team's finish at the end of the season. For 2025 season, based on current standing. For combined season searches, only the seasons that match criteria are included in results. "By Division Finish" will use Conference or League finish when Division is not relevant.

Opp Conference
Opp Division
Opp Offensive Scheme
Opp Defensive Alignment
Game Result
Game Location
Stadium
Time Zone
Game Month
Game Day of Week
Game Time Eastern Time
Overtime Game
Conference Game
Division Game
Game Followed Bye Week
Coin Toss Result
First Score
Led at some point during game
Trailed at some point during game
Score/Margin by Quarter
Quarter
Points Scored
Points Allowed
Margin
Temperature
°F
Roof Type
Surface

You have edited your search criteria

or keep editing your search

clear changes

Fetching Results

Stathead spinner

Query Results

Subscribe to Stathead Pro Football for full results.

Go inside the Pro Football database and access the sports search engine that was made for fans like you. Subscriptions start at just $9/month. Learn More.

Get your first month FREE

Already a paid subscriber? Log in for full results.

Data coverage: since 1920. Before 1933, only wins, losses, points for, and points allowed are available. Scoring statistics (TD, XP, FG) are complete since 1920. Rushing yardage and attempts statistics complete since 1933. Passing yardage and attempts statistics are mostly complete since 1933 and fully complete since 1939. Please see our data coverage page for details.

If you utilize material unique to a Sports Reference site for a tweet, an article, or for research for a broadcast or podcast, please strongly consider citing this site as the source for the material. It would be greatly appreciated and would help us continue to produce this material.