select * from sampleTable
where
case when @taxtype = 'P' then
(taxtype = 'P' or (taxtype = 'E' and code in ('MER','SER')))
Else
(taxtype = 'E' and code not in ('MER','SER'))
end
Sepertinya ini akan bekerja dengan Postres
Sunting:
Meninggalkan jawaban asli saya karena intinya berfungsi tetapi Postgres tidak memiliki konsep variabel seperti RDBMS lainnya jadi saya menulis ulang ini sebagai
WITH myconstants as (SELECT 'P'::text as vtaxtype)
select * from sampleTable
where
case when (select vTaxType from myconstants) = 'P' then
(taxtype = 'P' or (taxtype = 'E' and code in ('MER','SER')))
Else
(taxtype = 'E' and code not in ('MER','SER'))
end;
Berikut SQL Fiddle menunjukkan bahwa