SELECT email from sending
WHERE `subject` LIKE '%wildcard1%'
AND email NOT In (SELECT email FROM sending where subject LIKE '%wildcard2%' );
Hi. I ran this query in my phpmyadmin on a 160.000 entries table. Since then, my database and website get stuck anytime i am trying to to access that certain table. The size of the table seems pretty big, too ( 160 MB )
Any idea what the problem is? I was just trying to find emails that received a campaign notification but have not been sent a second notification.