चूंकि आपने यह निर्दिष्ट नहीं किया था कि आपकी तालिका कैसी दिखती है और आप क्या परिणाम चाहते हैं, यह केवल एक अनुमान है।
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