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
Wygląda na to zadziała z Postres
Edycja:
Pozostawiam moją pierwotną odpowiedź, ponieważ sedno działa, ale Postgres nie ma pojęcia o zmiennych jak inne RDBMS, więc przepisałem to jako
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;
Oto SQL Fiddle pokazując, że