I have the following join below and I was wanting to know is there a better way to write it as I am getting Unknown table 'id' in MULTI DELETE and I cannot seem to pin point where.
Join:
$query = $dbConnection->prepare('
    DELETE c.id, r.id, s.id,f.id,ip.id,ct.id
    FROM campaigns c
    JOIN campaignsFroms f ON f.id = c.id
    JOIN campaignsRaw r ON r.id = c.id
    JOIN campaignsSubjects s ON s.id = c.id
    JOIN campaignIPTracking ip ON ip.id = c.id
    JOIN campaignTracking ct ON ct.id = c.id
    WHERE c.id = :campaign_id');
$query->execute(array(':campaign_id' => $campaign_id));
 
    