Can someone tell me please on how to check this in the database? do i really have to use the AutoPlaylist "Accessible Songs" for this? How does this AutoPlaylist do that (there must be some SQL behind it)?
I think it would be best to have another WHERE clause in the initial SELECT statement so that only the accessible tracks are used:
Code: Select all
SELECT_Clause = " SELECT Songs.Id, IIF(" & weightedRatingFormula & ">10,10," & weightedRatingFormula & ") "
FROM_Clause = " FROM Songs "
WHERE_Clause = " WHERE " & weightedPlayCountFormula &" < " & ratingFormula & " AND DateDiff('d',Songs.LastTimePlayed, Now) > " & MinDaysRepeat
thanks
popper