3
বিতরণ থেকে কি কোনওরকম বা সকলের সাথে একত্রিত করা যায়?
পোস্টগ্রিসের IS DISTINCT FROMসাথে একত্রিত হওয়ার উপায় ANYবা একই ফলাফল পাওয়ার কোনও অন্য ঝরঝরে উপায়? select count(*) from (select 'A' foo union all select 'Z' union all select null) z where foo <> any(array[null, 'A']); count ------- 1 (1 row) select count(*) from (select 'A' foo union all select 'Z' …