テーブルがどのように見えるか、そしてどのような結果になるかを指定しなかったので、これは単なる推測です。
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
テーブルがどのように見えるか、そしてどのような結果になるかを指定しなかったので、これは単なる推測です。
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