1
0
Fork 0

Remove superflous WHERE condition

This commit is contained in:
Roan Horning 2022-11-28 19:55:51 -05:00
parent 1312e3d374
commit 2b4802508d
Signed by untrusted user: rho_n
GPG Key ID: 234AEF20B72D5769
2 changed files with 1 additions and 4 deletions

View File

@ -7,7 +7,6 @@
WITH episode_maxmin AS (
SELECT MAX(id) AS \'latest\', MIN(id) AS \'earliest\', ? AS \'id\'
FROM twat_eps AS eps
WHERE eps.date < DATE_ADD(NOW(), INTERVAL 1 DAY)
),
episode_date AS (
SELECT eps.date
@ -26,7 +25,6 @@
FROM twat_eps AS eps
INNER JOIN episode_date
ON eps.date > episode_date.date
WHERE eps.date < NOW()
)
SELECT eps.id, eps.date, eps.title, eps.duration,
eps.summary, eps.notes, eps.explicit, eps.license,

View File

@ -1,7 +1,6 @@
<!--% USE DBI(constants.driver, constants.user, constants.password) %-->
<!--% FOREACH episode IN DBI.query(
'select eps.id from twat_eps AS eps
where eps.date < DATE_ADD(NOW(), INTERVAL 1 DAY) '
'select eps.id from twat_eps AS eps'
) %-->
,<!--% episode.id %-->
<!--% END %-->