Customer SQL Statement

Jamie Whittingham

Active Member
@twisted1919

How would I / what query could i run to find out all campaigns that are waiting to be processed / waiting to sending to start.

Not ones that are scheduled for next week but ones that should start now, should have started a minute ago but the cron's have not caught up yet etc etc

thanks
 
Something like:
Code:
SELECT * FROM mw_campaign WHERE `status` IN('sending', 'pending-sending') and start_at <= NOW();
 
Back
Top