problems with iif

SELECT BMEPPUPropuestas.PropuestaId, BMEPPUPropuestas.NombreTitular,

LEFT JOIN

FROM NILO.dbo.BMEPPUPropuestas BMEPPUPropuestas

NILO.dbo.BMEPREIntervinientes BMEPREIntervinientes

ON (BMEPPUPropuestas.PropuestaId = BMEPREIntervinientes.PreclaId)

The system says incorrect syntax error near = in line 3.

Can someone help

Hi
I am having problems with this statement. It works fine in Access but not in toad
Min((IIF(BMEPREIntervinientes.PerfilId=1),(BMEPREIntervinientes.UserId),null))

Try this statement. I don’t have your objects but I have changed the IIF so it should work. SELECT BMEPPUPropuestas.PropuestaId, BMEPPUPropuestas.NombreTitular, Min(IIF(BMEPREIntervinientes.PerfilId=1,BMEPREIntervinientes.UserId,null)) FROM NILO.dbo.BMEPPUPropuestas BMEPPUPropuestas LEFT JOIN NILO.dbo.BMEPREIntervinientes BMEPREIntervinientes ON (BMEPPUPropuestas.PropuestaId = BMEPREIntervinientes.PreclaId) group by BMEPPUPropuestas.PropuestaId, BMEPPUPropuestas.NombreTitular Debbie