this code works correctly
"SELECT * FROM categories WHERE category_name != 'Home' AND category_name !='About us' AND category_name !='Contact Us' ORDER BY category_order ASC";
but i wonder if there is a better (shorter) way to write it
ex
WHERE category_name !='Home' || 'About us' || 'Contact Us'
thanks