Kodi

From Torben's Wiki
Revision as of 07:26, 6 September 2023 by Torben (talk | contribs) (Created page with "==SQL== ===Update movies as watched=== UPDATE files SET playCount = 1, lastPlayed = '2012-03-04 12:34:56' WHERE idPath IN ( SELECT idPath from PATH WHERE strPath LIKE '%done/%' )")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SQL

Update movies as watched

UPDATE files SET playCount = 1, lastPlayed = '2012-03-04 12:34:56' 
WHERE idPath IN (
  SELECT idPath from PATH WHERE strPath LIKE '%done/%'
)