Subject Re: [firebird-support] how to compare a value who comes from sub-select ref/eDN3012773479
Author Anderson Farias
Hi,

> Is there any way in where statement to get the value by column like Delphi
> expression: field[2].value ?

AFAIK, no.

I think you'd have to redeclare the select, like:

select a.*, (select somefield from sp) as somealias from table a
where (select somefield from sp)=somevalue


Regards,
Anderson