In a fetchAll() I'm trying to filter out some options I don't want to fetch. But using NOT IN does give a empty array. While using only IN with the same parameters it's working:
$model->fetchbysql("shortcut NOT IN (2, 3)", null, null); // Not working
$model->fetchbysql("shortcut IN (2, 3)", null, null); // Working