
06/07/2006, 01:52
|
| | Fecha de Ingreso: junio-2006
Mensajes: 87
Antigüedad: 18 años, 9 meses Puntos: 0 | |
Prueba con
IF (dbo.PFA_FUNCDT2ASO.C0001= 1,'SI','NO')
y por si hubiese más opciones con algo asi:
SELECT CASE dbo.PFA_FUNCDT2ASO.C0001
WHEN 1 THEN 'SI'
ELSE 'NO' end
FROM dbo.PCTAS INNER JOIN
dbo.PFA_FUNCDT2ASO ON dbo.PCTAS.Codigo = dbo.PFA_FUNCDT2ASO.Cuenta |