I am having these texts in my database,
categories_posts
categories_news
posts_add
news_add
And I don't need to select the rows with categories, I use the query something like this,
SELECT *
FROM developer_configurations_cms
WHERE developer_configurations_cms.cat_id = '1'
AND developer_configurations_cms.cfg_variables LIKE '%parent_id=2%'
AND developer_configurations_cms.cfg_name_unique NOT LIKE '%categories%'
Though it returns these two in the output as well..
categories_posts
categories_news
How can I ignore them in my query?