|
|
|
@ -54,8 +54,8 @@ namespace NzbDrone.Core.SeriesStats
|
|
|
|
|
{
|
|
|
|
|
return @"SELECT
|
|
|
|
|
SeriesId,
|
|
|
|
|
SUM(CASE WHEN Monitored = 1 AND AirdateUtc <= @currentDate THEN 1 ELSE 0 END) AS EpisodeCount,
|
|
|
|
|
SUM(CASE WHEN Monitored = 1 AND Episodes.EpisodeFileId > 0 AND AirDateUtc <= @currentDate THEN 1 ELSE 0 END) AS EpisodeFileCount,
|
|
|
|
|
SUM(CASE WHEN (Monitored = 1 OR Episodes.EpisodeFileId > 0) AND (AirdateUtc <= @currentDate OR Episodes.EpisodeFileId > 0) THEN 1 ELSE 0 END) AS EpisodeCount,
|
|
|
|
|
SUM(CASE WHEN (Monitored = 1 OR Episodes.EpisodeFileId > 0) AND Episodes.EpisodeFileId > 0 THEN 1 ELSE 0 END) AS EpisodeFileCount,
|
|
|
|
|
MAX(Episodes.SeasonNumber) as SeasonCount,
|
|
|
|
|
MIN(CASE WHEN AirDateUtc < @currentDate THEN NULL ELSE AirDateUtc END) AS NextAiringString
|
|
|
|
|
FROM Episodes";
|
|
|
|
|