Ludichrist wrote:SELECT * FROM data WHERE forum_id <> '12' AND forum_id <>'14'
or, if you've ever got more than a couple values you want to exclude, you can use something like this:
SELECT * FROM data WHERE forum_id NOT IN ('12', '14', '15');
good luck