I'm not sure how in SQL you'd do the "negate" of a certain function (in PHP, it's "!", as in, if (!isset())), but it'd be the negate of "LIKE".
"SELECT FROM table WHERE name LIKE '%Battlefield'" will get you all results with the name containing "Battlefield", either in the beginning or end ("%" is the wildcard character). Find out how to negate it, and you've got yourself a query! ("SELECT FROM table WHERE name !LIKE '%Battlefield%'" ????)
Or you can do that, find out all the IDs of those rows, and make another query selecting anything BUT those IDs. But that'd be too over-the-top!