UPDATE wpyn_term_taxonomy SET count = (
SELECT COUNT(*) FROM wp_term_relationships rel
LEFT JOIN wp
yn_posts po ON (po.ID = rel.object_id)
WHERE
rel.term_taxonomy_id = wp
yn_term_taxonomy.term_taxonomy_id
AND
wp
yn_term_taxonomy.taxonomy NOT IN ('link_category')
AND
po.post_status IN ('publish', 'future')
)