Hi all. For you Sqlite experts out there, is there...
# announcements
t
Hi all. For you Sqlite experts out there, is there an obvious, more concise representation of this:
Copy code
(SELECT count(*) FROM songs WHERE songs.albumId == albums.id AND songs.blacklisted == 0) as songCount
s
Looks fine. If this subquery is for count songs for many albums then you might get better performance using group by