Subject Re: [firebird-support] conditional where clause
Author Ivan Prenosil
> Hi. Is there a way to do a conditional where clause?
> I mean something like this:
>
> select * from <table>
> where iif(<something>, true, <filter>)

select * from <table>
where <something> or <filter>

Ivan