| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.points) + SUM(pt.PostPoints) AS total_points, |
| SUM(pt.fgAttempted) + SUM(pt.PostfgAttempted) AS total_fgAttempted, |
| SUM(pt.ftAttempted) + SUM(pt.PostftAttempted) AS total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1965-07-16' |
| AND p.college = 'Pittsburgh' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.points) as total_points, |
| SUM(pt.fgAttempted) as total_fgAttempted, |
| SUM(pt.ftAttempted) as total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1965-07-16' |
| AND p.college = 'Pittsburgh' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.PostPoints) as total_points, |
| SUM(pt.PostfgAttempted) as total_fgAttempted, |
| SUM(pt.PostftAttempted) as total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1965-07-16' |
| AND p.college = 'Pittsburgh' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.points) + SUM(pt.PostPoints) AS total_points, |
| SUM(pt.fgAttempted) + SUM(pt.PostfgAttempted) AS total_fgAttempted, |
| SUM(pt.ftAttempted) + SUM(pt.PostftAttempted) AS total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1967-11-29' |
| AND p.college = 'Georgetown' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.points) as total_points, |
| SUM(pt.fgAttempted) as total_fgAttempted, |
| SUM(pt.ftAttempted) as total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1967-11-29' |
| AND p.college = 'Georgetown' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.PostPoints) as total_points, |
| SUM(pt.PostfgAttempted) as total_fgAttempted, |
| SUM(pt.PostftAttempted) as total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1967-11-29' |
| AND p.college = 'Georgetown' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.points) + SUM(pt.PostPoints) AS total_points, |
| SUM(pt.fgAttempted) + SUM(pt.PostfgAttempted) AS total_fgAttempted, |
| SUM(pt.ftAttempted) + SUM(pt.PostftAttempted) AS total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1968-06-14' |
| AND p.college = 'Marquette' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.points) as total_points, |
| SUM(pt.fgAttempted) as total_fgAttempted, |
| SUM(pt.ftAttempted) as total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1968-06-14' |
| AND p.college = 'Marquette' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.PostPoints) as total_points, |
| SUM(pt.PostfgAttempted) as total_fgAttempted, |
| SUM(pt.PostftAttempted) as total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1968-06-14' |
| AND p.college = 'Marquette' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.points) + SUM(pt.PostPoints) AS total_points, |
| SUM(pt.fgAttempted) + SUM(pt.PostfgAttempted) AS total_fgAttempted, |
| SUM(pt.ftAttempted) + SUM(pt.PostftAttempted) AS total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1975-08-22' |
| AND p.college = 'New Mexico' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.points) as total_points, |
| SUM(pt.fgAttempted) as total_fgAttempted, |
| SUM(pt.ftAttempted) as total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1975-08-22' |
| AND p.college = 'New Mexico' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| WITH charles_smith_stats AS ( |
| SELECT |
| pt.year, |
| SUM(pt.PostPoints) as total_points, |
| SUM(pt.PostfgAttempted) as total_fgAttempted, |
| SUM(pt.PostftAttempted) as total_ftAttempted |
| FROM players_teams pt |
| JOIN players p ON pt.playerID = p.playerID |
| WHERE p.firstName = 'Charles' |
| AND p.lastName = 'Smith' |
| AND p.birthDate = '1975-08-22' |
| AND p.college = 'New Mexico' |
| GROUP BY pt.year |
| ) |
| SELECT |
| year, |
| CASE |
| WHEN total_fgAttempted + 0.44 * total_ftAttempted > 0 |
| THEN total_points / (2.0 * (total_fgAttempted + 0.44 * total_ftAttempted)) |
| ELSE 0 |
| END AS true_shooting_percentage |
| FROM charles_smith_stats |
| ORDER BY true_shooting_percentage DESC |
| LIMIT 1; |
| |
| |
| |
| |
| |