*$%*^, I lost my whole replynynaevelan wrote:I c where I missed that 'AND', unfortunately I threw that one in after I completed my testing because I do not have any 'Skits' in my collection. Were you able to give any thought on how to accomplish all the "Not Likes' in some kind of list? I would really be interested in knowing because Mizery_Made's idea has given me some thoughts on a new node or two but I would like to have that multvalue list in a better format if possible? Just when I thought my nodes were complete.![]()
Nyn
Well, here it goes again.
-----
Mizery_Made / Nyn,
Here are some queries that may be in the right direction to what Mizery_Made originally asked for:
1. This one lists tracks that are in an Album where "at least some tracks are missing Conductor":
Code: Select all
trackCriteria="trackCriteria="((SELECT count(*) FROM Songs AS Songs2 WHERE (Songs2.IDAlbum = Songs.IDAlbum)) <> (SELECT count(*) FROM Songs AS Songs2 WHERE ((Songs2.IDAlbum = Songs.IDAlbum) AND (Songs2.Conductor = ''))))"Code: Select all
trackCriteria="trackCriteria="((SELECT count(*) FROM Songs AS Songs2 WHERE ((Songs2.IDAlbum = Songs.IDAlbum) AND (Songs2.Conductor <> ''))) = 0)"Note the SQL/SQLite syntax for using "AS" to compare the same field in the same table with a sub-query.
Regards,
Steve
