Dal momento che non hai specificato l'aspetto della tua tabella e quale sarebbe il risultato che vorresti, questa è solo un'ipotesi.
SELECT
a.post_id,
a.organisation_id,
b.organisation_id
FROM your_table a
LEFT JOIN your_table b
ON a.post_id = b.post_id AND a.organisation_id < b.organisation_id