My MySQL qwery wont load the contacts from the database. I am running a MySQL qwery:
SELECT
emailaddress.EmailAddressID,
emailaddress.EmailAddress,
emailaddress.FirstName,
emailaddress.LastName,
schooldistrict.SchoolDistrict,
schooldistrict.County,
State.State,
'11366' AS CampaignID FROM emailaddress
LEFT JOIN schooldistrict ON schooldistrict.SchoolDistrictID=emailaddress.SchoolDistrictID LEFT JOIN State ON State.Abbreviation=EmailAddress.State WHERE 1 AND emailaddress.LastEmailCampaignID=11366 ORDER BY RAND()
This qwery works on 4 other machines with the exact same settings. Does anyone have any idea what could be causing this to happen? I have even uninstalled this application and reinstalled MaxBulk Mailer.
Thanks in advance
Cole
SELECT
emailaddress.EmailAddressID,
emailaddress.EmailAddress,
emailaddress.FirstName,
emailaddress.LastName,
schooldistrict.SchoolDistrict,
schooldistrict.County,
State.State,
'11366' AS CampaignID FROM emailaddress
LEFT JOIN schooldistrict ON schooldistrict.SchoolDistrictID=emailaddress.SchoolDistrictID LEFT JOIN State ON State.Abbreviation=EmailAddress.State WHERE 1 AND emailaddress.LastEmailCampaignID=11366 ORDER BY RAND()
This qwery works on 4 other machines with the exact same settings. Does anyone have any idea what could be causing this to happen? I have even uninstalled this application and reinstalled MaxBulk Mailer.
Thanks in advance
Cole